030_Spark-gdelt-1.1-examples(Scala)

Plugging into GDELT Streams

This is just a breif teaser into the world of the GDELT-project:

This is from Mastering Spark for Data Science which we will try to dive into in the geospatial modules.

import com.aamend.spark.gdelt._

import com.aamend.spark.gdelt._

This is just dipping our pinky toe in this ocean of information!

Download from gdelt-project

%sh
ls -al 
total 428 drwxr-xr-x 1 root root 4096 May 24 02:32 . drwxr-xr-x 1 root root 4096 May 24 02:32 .. drwxr-xr-x 2 root root 4096 Jan 1 1970 conf -rw-r--r-- 1 root root 731 May 23 23:24 derby.log drwxr-xr-x 3 root root 4096 May 23 23:24 eventlogs drwxr-xr-x 2 root root 4096 May 24 09:45 ganglia drwxr-xr-x 2 root root 4096 May 23 23:24 library-install-logs drwxr-xr-x 2 root root 4096 May 24 09:00 logs -rw-r--r-- 1 root root 402147 Apr 9 19:51 social-media-usage.csv
%sh
curl -O http://data.gdeltproject.org/gdeltv2/20190517121500.gkg.csv.zip
% Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 7966k 100 7966k 0 0 12.0M 0 --:--:-- --:--:-- --:--:-- 12.0M
%sh
curl -O http://data.gdeltproject.org/gdeltv2/20190523121500.gkg.csv.zip
% Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 44 9167k 44 4112k 0 0 5271k 0 0:00:01 --:--:-- 0:00:01 5271k 100 9167k 100 9167k 0 0 11.2M 0 --:--:-- --:--:-- --:--:-- 11.2M
%sh
unzip 20190517121500.gkg.csv.zip
Archive: 20190517121500.gkg.csv.zip inflating: 20190517121500.gkg.csv
%sh
unzip 20190523121500.gkg.csv.zip
Archive: 20190523121500.gkg.csv.zip inflating: 20190523121500.gkg.csv
%sh
curl -O http://data.gdeltproject.org/gdeltv2/20180416121500.gkg.csv.zip
% Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 10.3M 100 10.3M 0 0 11.4M 0 --:--:-- --:--:-- --:--:-- 11.4M
%sh
unzip 20180416121500.gkg.csv.zip
Archive: 20180416121500.gkg.csv.zip inflating: 20180416121500.gkg.csv
%fs cp "file:///databricks/driver/20180416121500.gkg.csv" "dbfs:///datasets/"
res0: Boolean = true
%fs cp "file:///databricks/driver/20190523121500.gkg.csv" "dbfs:///datasets/"
res0: Boolean = true
%fs cp "file:///databricks/driver/20190517121500.gkg.csv" "dbfs:///datasets/"
res5: Boolean = true
%fs ls "dbfs:///datasets/"
dbfs:/datasets/20180416121500.gkg.csv20180416121500.gkg.csv34277858
dbfs:/datasets/20190517121500.gkg.csv20190517121500.gkg.csv25728991
dbfs:/datasets/20190523121500.gkg.csv20190523121500.gkg.csv29695688
dbfs:/datasets/MEP/MEP/0
dbfs:/datasets/books/books/0
dbfs:/datasets/obo/obo/0
dbfs:/datasets/sds/sds/0
dbfs:/datasets/social-media-usage.csvsocial-media-usage.csv402147
dbfs:/datasets/sou/sou/0
dbfs:/datasets/tweetsStreamTmp/tweetsStreamTmp/0
dbfs:/datasets/wiki-clickstream/wiki-clickstream/0
dbfs:/datasets/wiki-clickstream-curr_id/wiki-clickstream-curr_id/0
dbfs:/datasets/wiki-clickstream-prev_titled/wiki-clickstream-prev_titled/0
dbfs:/datasets/wikipedia-datasets/wikipedia-datasets/0
import com.aamend.spark.gdelt._
// For implicit conversions like converting RDDs to DataFrames
import spark.implicits._
import org.apache.spark.sql.Dataset
//val gdeltEventDS: Dataset[Event] = spark.read.gdeltEvent("/path/to/event.csv")
val gdeltGkgDS: Dataset[GKGEvent] = spark.read.gdeltGkg("dbfs:/datasets/20190523121500.gkg.csv")
//val gdeltMention: Dataset[Mention] = spark.read.gdeltMention("/path/to/mention.csv")
import com.aamend.spark.gdelt._ import spark.implicits._ import org.apache.spark.sql.Dataset gdeltGkgDS: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.GKGEvent] = [gkgRecordId: struct<publishDate: timestamp, translingual: boolean ... 1 more field>, publishDate: timestamp ... 25 more fields]
gdeltGkgDS.printSchema()
root |-- gkgRecordId: struct (nullable = true) | |-- publishDate: timestamp (nullable = true) | |-- translingual: boolean (nullable = false) | |-- numberInBatch: integer (nullable = false) |-- publishDate: timestamp (nullable = true) |-- sourceCollectionIdentifier: string (nullable = true) |-- sourceCommonName: string (nullable = true) |-- documentIdentifier: string (nullable = true) |-- counts: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- countType: string (nullable = true) | | |-- count: long (nullable = false) | | |-- objectType: string (nullable = true) | | |-- location: struct (nullable = true) | | | |-- geoType: string (nullable = true) | | | |-- geoName: string (nullable = true) | | | |-- countryCode: string (nullable = true) | | | |-- adm1Code: string (nullable = true) | | | |-- adm2Code: string (nullable = true) | | | |-- geoPoint: struct (nullable = true) | | | | |-- latitude: float (nullable = false) | | | | |-- longitude: float (nullable = false) | | | |-- featureId: string (nullable = true) |-- enhancedCounts: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- count: struct (nullable = true) | | | |-- countType: string (nullable = true) | | | |-- count: long (nullable = false) | | | |-- objectType: string (nullable = true) | | | |-- location: struct (nullable = true) | | | | |-- geoType: string (nullable = true) | | | | |-- geoName: string (nullable = true) | | | | |-- countryCode: string (nullable = true) | | | | |-- adm1Code: string (nullable = true) | | | | |-- adm2Code: string (nullable = true) | | | | |-- geoPoint: struct (nullable = true) | | | | | |-- latitude: float (nullable = false) | | | | | |-- longitude: float (nullable = false) | | | | |-- featureId: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- themes: array (nullable = true) | |-- element: string (containsNull = true) |-- enhancedThemes: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- theme: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- locations: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- geoType: string (nullable = true) | | |-- geoName: string (nullable = true) | | |-- countryCode: string (nullable = true) | | |-- adm1Code: string (nullable = true) | | |-- adm2Code: string (nullable = true) | | |-- geoPoint: struct (nullable = true) | | | |-- latitude: float (nullable = false) | | | |-- longitude: float (nullable = false) | | |-- featureId: string (nullable = true) |-- enhancedLocations: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- location: struct (nullable = true) | | | |-- geoType: string (nullable = true) | | | |-- geoName: string (nullable = true) | | | |-- countryCode: string (nullable = true) | | | |-- adm1Code: string (nullable = true) | | | |-- adm2Code: string (nullable = true) | | | |-- geoPoint: struct (nullable = true) | | | | |-- latitude: float (nullable = false) | | | | |-- longitude: float (nullable = false) | | | |-- featureId: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- persons: array (nullable = true) | |-- element: string (containsNull = true) |-- enhancedPersons: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- person: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- organisations: array (nullable = true) | |-- element: string (containsNull = true) |-- enhancedOrganisations: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- organisation: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- tone: struct (nullable = true) | |-- tone: float (nullable = false) | |-- positiveScore: float (nullable = false) | |-- negativeScore: float (nullable = false) | |-- polarity: float (nullable = false) | |-- activityReferenceDensity: float (nullable = false) | |-- selfGroupReferenceDensity: float (nullable = false) | |-- wordCount: integer (nullable = false) |-- enhancedDates: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- dateResolution: integer (nullable = false) | | |-- month: integer (nullable = false) | | |-- day: integer (nullable = false) | | |-- year: integer (nullable = false) | | |-- charOffset: integer (nullable = false) |-- gcams: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- gcamCode: string (nullable = true) | | |-- gcamValue: double (nullable = false) |-- sharingImage: string (nullable = true) |-- relatedImages: array (nullable = true) | |-- element: string (containsNull = true) |-- socialImageEmbeds: array (nullable = true) | |-- element: string (containsNull = true) |-- socialVideoEmbeds: array (nullable = true) | |-- element: string (containsNull = true) |-- quotations: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- charLength: integer (nullable = false) | | |-- verb: string (nullable = true) | | |-- quote: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- allNames: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- name: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- amounts: array (nullable = true) | |-- element: struct (containsNull = true) | | |-- amount: double (nullable = false) | | |-- amountType: string (nullable = true) | | |-- charOffset: integer (nullable = false) |-- translationInfo: struct (nullable = true) | |-- SRCLC: string (nullable = true) | |-- ENG: string (nullable = true) |-- extrasXML: string (nullable = true)
display(gdeltGkgDS)
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBbusinessinsider.comhttps://markets.businessinsider.com/news/stocks/stock-market-news-opening-bell-may-23-2019-2019-5-1028225308[][]["EPU_CATS_REGULATION","TAX_FNCACT","TAX_FNCACT_INSIDER","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_POLICY","EPU_ECONOMY_HISTORIC","ECON_STOCKMARKET"][{"theme":"ECON_STOCKMARKET","charOffset":307},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":262},{"theme":"EPU_CATS_REGULATION","charOffset":10},{"theme":"USPEC_POLICY1","charOffset":200},{"theme":"USPEC_POLICY1","charOffset":219},{"theme":"USPEC_POLICY1","charOffset":269},{"theme":"EPU_POLICY_POLICY","charOffset":200},{"theme":"EPU_POLICY_POLICY","charOffset":219},{"theme":"EPU_POLICY_POLICY","charOffset":269},{"theme":"TAX_FNCACT_INSIDER","charOffset":26}][][][""][]["terms of service","insider inc"][{"organisation":"Terms Of Service","charOffset":184},{"organisation":"Insider Inc","charOffset":30}]{"tone":0,"positiveScore":1.7857143,"negativeScore":1.7857143,"polarity":3.5714285,"activityReferenceDensity":16.071428,"selfGroupReferenceDensity":1.7857143,"wordCount":42}[][{"gcamCode":"wc","gcamValue":42},{"gcamCode":"c12.1","gcamValue":1},{"gcamCode":"c12.10","gcamValue":3},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.5","gcamValue":1},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":4},{"gcamCode":"c14.2","gcamValue":3},{"gcamCode":"c14.5","gcamValue":2},{"gcamCode":"c14.7","gcamValue":1},{"gcamCode":"c15.77","gcamValue":1},{"gcamCode":"c16.109","gcamValue":2},{"gcamCode":"c16.110","gcamValue":1},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":1},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":1},{"gcamCode":"c16.12","gcamValue":4},{"gcamCode":"c16.120","gcamValue":4},{"gcamCode":"c16.121","gcamValue":4},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":2},{"gcamCode":"c16.127","gcamValue":1},{"gcamCode":"c16.129","gcamValue":3},{"gcamCode":"c16.134","gcamValue":3},{"gcamCode":"c16.140","gcamValue":1},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":3},{"gcamCode":"c16.146","gcamValue":2},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.159","gcamValue":1},{"gcamCode":"c16.161","gcamValue":2},{"gcamCode":"c16.162","gcamValue":1},{"gcamCode":"c16.163","gcamValue":2},{"gcamCode":"c16.2","gcamValue":5},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.26","gcamValue":2},{"gcamCode":"c16.31","gcamValue":2},{"gcamCode":"c16.33","gcamValue":3},{"gcamCode":"c16.37","gcamValue":5},{"gcamCode":"c16.38","gcamValue":1},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.47","gcamValue":11},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.52","gcamValue":3},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":21},{"gcamCode":"c16.58","gcamValue":2},{"gcamCode":"c16.6","gcamValue":3},{"gcamCode":"c16.61","gcamValue":3},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.78","gcamValue":2},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.84","gcamValue":6},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":9},{"gcamCode":"c16.88","gcamValue":2},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.91","gcamValue":2},{"gcamCode":"c16.94","gcamValue":1},{"gcamCode":"c16.95","gcamValue":4},{"gcamCode":"c16.96","gcamValue":4},{"gcamCode":"c16.98","gcamValue":2},{"gcamCode":"c17.1","gcamValue":9},{"gcamCode":"c17.10","gcamValue":5},{"gcamCode":"c17.11","gcamValue":11},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":4},{"gcamCode":"c17.16","gcamValue":1},{"gcamCode":"c17.19","gcamValue":2},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":1},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":4},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":1},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":4},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.4","gcamValue":7},{"gcamCode":"c17.41","gcamValue":5},{"gcamCode":"c17.42","gcamValue":3},{"gcamCode":"c17.5","gcamValue":9},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":6},{"gcamCode":"c17.8","gcamValue":7},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.59","gcamValue":1},{"gcamCode":"c2.1","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":3},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.114","gcamValue":2},{"gcamCode":"c2.116","gcamValue":2},{"gcamCode":"c2.119","gcamValue":13},{"gcamCode":"c2.121","gcamValue":1},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.127","gcamValue":1},{"gcamCode":"c2.128","gcamValue":1},{"gcamCode":"c2.129","gcamValue":3},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.138","gcamValue":3},{"gcamCode":"c2.14","gcamValue":2},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.143","gcamValue":4},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":6},{"gcamCode":"c2.148","gcamValue":3},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.155","gcamValue":4},{"gcamCode":"c2.157","gcamValue":2},{"gcamCode":"c2.158","gcamValue":1},{"gcamCode":"c2.160","gcamValue":1},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.185","gcamValue":3},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.193","gcamValue":2},{"gcamCode":"c2.195","gcamValue":3},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.198","gcamValue":2},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.209","gcamValue":1},{"gcamCode":"c2.210","gcamValue":1},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":2},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.220","gcamValue":1},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.25","gcamValue":1},{"gcamCode":"c2.30","gcamValue":1},{"gcamCode":"c2.34","gcamValue":1},{"gcamCode":"c2.39","gcamValue":3},{"gcamCode":"c2.44","gcamValue":4},{"gcamCode":"c2.45","gcamValue":6},{"gcamCode":"c2.46","gcamValue":1},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.63","gcamValue":1},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":4},{"gcamCode":"c2.76","gcamValue":22},{"gcamCode":"c2.78","gcamValue":2},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":3},{"gcamCode":"c2.82","gcamValue":2},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.95","gcamValue":3},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":3},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.1","gcamValue":2},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.31","gcamValue":3},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":2},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.3","gcamValue":1},{"gcamCode":"c4.16","gcamValue":2},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c5.10","gcamValue":3},{"gcamCode":"c5.12","gcamValue":3},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":5},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":1},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.46","gcamValue":6},{"gcamCode":"c5.49","gcamValue":2},{"gcamCode":"c5.50","gcamValue":2},{"gcamCode":"c5.52","gcamValue":2},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":1},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":2},{"gcamCode":"c5.62","gcamValue":9},{"gcamCode":"c5.8","gcamValue":8},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.38","gcamValue":3},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":3},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.262","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.653","gcamValue":2},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.720","gcamValue":3},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":1},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.208333333333333},{"gcamCode":"v10.2","gcamValue":0.1953125},{"gcamCode":"v11.1","gcamValue":0.0684893181818182},{"gcamCode":"v19.1","gcamValue":5.49333333333333},{"gcamCode":"v19.2","gcamValue":4.53111111111111},{"gcamCode":"v19.3","gcamValue":4.96888888888889},{"gcamCode":"v19.4","gcamValue":5.35777777777778},{"gcamCode":"v19.5","gcamValue":4.59888888888889},{"gcamCode":"v19.6","gcamValue":5.02888888888889},{"gcamCode":"v19.7","gcamValue":5.61888888888889},{"gcamCode":"v19.8","gcamValue":4.46111111111111},{"gcamCode":"v19.9","gcamValue":4.95333333333333},{"gcamCode":"v20.13","gcamValue":0.3792},{"gcamCode":"v20.15","gcamValue":0.3792},{"gcamCode":"v21.1","gcamValue":5.44558823529412},{"gcamCode":"v26.1","gcamValue":2.64285714285714}]https://images.markets.businessinsider.com/image/5ce67ad5f85e162493319c63-2400/2019-05-23t095921z2022798351rc14bee069e0rtrmadp3eu-election-britain-farage.jpg[""][""][""][][{"name":"Cookie Policy","charOffset":236},{"name":"Commerce Policy","charOffset":326}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://nytm.org/made;http://www.businessinsider.com/commerce-on-business-insider;http://www.businessinsider.com/cookies-policy;http://www.businessinsider.com/disclaimer-finance;http://www.businessinsider.com/privacy-policy;http://www.businessinsider.com/terms;https://www.finanzen.net;https://www.finanzen.net/impressum</PAGE_LINKS><PAGE_AUTHORS>finanzen.net GmbH</PAGE_AUTHORS><PAGE_ALTURL_AMP>https://markets.businessinsider.com/amp/news/stock-market-news-opening-bell-may-23-2019-2019-5-1028225308</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBwkar.orghttps://www.wkar.org/people/daniella-cheslow[][]["GENERAL_HEALTH","MEDICAL","WB_635_PUBLIC_HEALTH","WB_621_HEALTH_NUTRITION_AND_POPULATION","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","WB_2670_JOBS","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","SOC_POINTSOFINTEREST_COLLEGE","TAX_FNCACT","TAX_FNCACT_COUNSELOR","TAX_FNCACT_CAREER_COUNSELOR"][{"theme":"TAX_FNCACT_CAREER_COUNSELOR","charOffset":361},{"theme":"TAX_FNCACT_COUNSELOR","charOffset":361},{"theme":"GENERAL_HEALTH","charOffset":83},{"theme":"MEDICAL","charOffset":83},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":344},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":83},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":83},{"theme":"EDUCATION","charOffset":103},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":103},{"theme":"WB_2670_JOBS","charOffset":175},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":175},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":175},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":175},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":175}][{"geoType":"USSTATE","geoName":"Michigan, United States","countryCode":"US","adm1Code":"USMI","adm2Code":"","geoPoint":{"latitude":43.3504,"longitude":-84.5603},"featureId":"MI"}][{"location":{"geoType":"USSTATE","geoName":"Michigan, United States","countryCode":"US","adm1Code":"USMI","adm2Code":"","geoPoint":{"latitude":43.3504,"longitude":-84.5603},"featureId":"MI"},"charOffset":115}]["sam smith","brittany smith"][{"person":"Sam Smith","charOffset":295},{"person":"Brittany Smith","charOffset":14}]["university of michigan"][{"organisation":"University Of Michigan","charOffset":115}]{"tone":0,"positiveScore":5,"negativeScore":5,"polarity":10,"activityReferenceDensity":23.75,"selfGroupReferenceDensity":0,"wordCount":69}[{"dateResolution":1,"month":0,"day":0,"year":2013,"charOffset":213}][{"gcamCode":"wc","gcamValue":69},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":9},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":6},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":3},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":9},{"gcamCode":"c14.7","gcamValue":4},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.110","gcamValue":10},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.114","gcamValue":2},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":3},{"gcamCode":"c16.12","gcamValue":6},{"gcamCode":"c16.120","gcamValue":5},{"gcamCode":"c16.121","gcamValue":5},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":3},{"gcamCode":"c16.129","gcamValue":7},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":5},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":4},{"gcamCode":"c16.146","gcamValue":10},{"gcamCode":"c16.153","gcamValue":2},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":5},{"gcamCode":"c16.161","gcamValue":4},{"gcamCode":"c16.162","gcamValue":4},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.2","gcamValue":3},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":7},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":5},{"gcamCode":"c16.33","gcamValue":5},{"gcamCode":"c16.35","gcamValue":2},{"gcamCode":"c16.37","gcamValue":2},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":4},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":2},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":9},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":2},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":37},{"gcamCode":"c16.58","gcamValue":4},{"gcamCode":"c16.6","gcamValue":7},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":2},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":8},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":4},{"gcamCode":"c16.88","gcamValue":4},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":4},{"gcamCode":"c16.92","gcamValue":4},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":3},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":3},{"gcamCode":"c17.1","gcamValue":18},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":5},{"gcamCode":"c17.12","gcamValue":2},{"gcamCode":"c17.15","gcamValue":4},{"gcamCode":"c17.16","gcamValue":3},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":5},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":5},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":10},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":5},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":2},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":3},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":4},{"gcamCode":"c17.4","gcamValue":12},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":2},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":1},{"gcamCode":"c17.5","gcamValue":17},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":10},{"gcamCode":"c17.8","gcamValue":4},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":9},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.114","gcamValue":4},{"gcamCode":"c2.119","gcamValue":17},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.121","gcamValue":2},{"gcamCode":"c2.122","gcamValue":6},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.128","gcamValue":4},{"gcamCode":"c2.129","gcamValue":4},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":2},{"gcamCode":"c2.147","gcamValue":12},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.155","gcamValue":5},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":4},{"gcamCode":"c2.158","gcamValue":4},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":4},{"gcamCode":"c2.179","gcamValue":3},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":10},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":2},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":8},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":7},{"gcamCode":"c2.198","gcamValue":8},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":7},{"gcamCode":"c2.204","gcamValue":5},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.210","gcamValue":2},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.214","gcamValue":3},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.23","gcamValue":2},{"gcamCode":"c2.25","gcamValue":3},{"gcamCode":"c2.26","gcamValue":5},{"gcamCode":"c2.27","gcamValue":5},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":2},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":3},{"gcamCode":"c2.35","gcamValue":4},{"gcamCode":"c2.36","gcamValue":3},{"gcamCode":"c2.37","gcamValue":4},{"gcamCode":"c2.39","gcamValue":10},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":4},{"gcamCode":"c2.46","gcamValue":7},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":8},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":11},{"gcamCode":"c2.76","gcamValue":48},{"gcamCode":"c2.77","gcamValue":5},{"gcamCode":"c2.78","gcamValue":5},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":7},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.83","gcamValue":2},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":5},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":12},{"gcamCode":"c2.98","gcamValue":3},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.31","gcamValue":8},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":2},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c4.1","gcamValue":2},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":5},{"gcamCode":"c5.10","gcamValue":9},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":15},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":1},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":7},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":12},{"gcamCode":"c5.47","gcamValue":4},{"gcamCode":"c5.49","gcamValue":8},{"gcamCode":"c5.50","gcamValue":9},{"gcamCode":"c5.51","gcamValue":6},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":7},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.6","gcamValue":3},{"gcamCode":"c5.60","gcamValue":6},{"gcamCode":"c5.61","gcamValue":7},{"gcamCode":"c5.62","gcamValue":34},{"gcamCode":"c5.7","gcamValue":5},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":6},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.128","gcamValue":2},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.384","gcamValue":3},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.579","gcamValue":2},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.642","gcamValue":3},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.718","gcamValue":2},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.220521255060729},{"gcamCode":"v10.2","gcamValue":0.184115761689291},{"gcamCode":"v11.1","gcamValue":0.148483064516129},{"gcamCode":"v19.1","gcamValue":5.31333333333333},{"gcamCode":"v19.2","gcamValue":4.94},{"gcamCode":"v19.3","gcamValue":4.85666666666667},{"gcamCode":"v19.4","gcamValue":5.12833333333333},{"gcamCode":"v19.5","gcamValue":4.88333333333333},{"gcamCode":"v19.6","gcamValue":4.73833333333333},{"gcamCode":"v19.7","gcamValue":5.47},{"gcamCode":"v19.8","gcamValue":5.01833333333333},{"gcamCode":"v19.9","gcamValue":4.925},{"gcamCode":"v20.1","gcamValue":0.281},{"gcamCode":"v20.10","gcamValue":-0.521},{"gcamCode":"v20.11","gcamValue":0.3905},{"gcamCode":"v20.12","gcamValue":-0.521},{"gcamCode":"v20.13","gcamValue":0.388428571428571},{"gcamCode":"v20.14","gcamValue":-0.521},{"gcamCode":"v20.15","gcamValue":0.371125},{"gcamCode":"v20.16","gcamValue":-0.430666666666667},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.281},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.281},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.281},{"gcamCode":"v20.8","gcamValue":-0.521},{"gcamCode":"v20.9","gcamValue":0.281},{"gcamCode":"v21.1","gcamValue":5.32825396825397},{"gcamCode":"v26.1","gcamValue":-0.166666666666667}][""][""][""][][{"name":"Brittany Smith","charOffset":15},{"name":"Sam Smith","charOffset":323}][]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Daniella Cheslow</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBakp.gov.khhttp://www.akp.gov.kh/post/detail/9759[][]["GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_GOVERNMENT","UNGP_FORESTS_RIVERS_OCEANS","WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","WB_137_WATER","WB_286_TELECOMMUNICATIONS_AND_BROADBAND_ACCESS","WB_2120_SATELLITES","WB_2329_ACCESS_AND_CONNECTIVITY","TAX_FNCACT","TAX_FNCACT_SPOKESPERSON"][{"theme":"WB_286_TELECOMMUNICATIONS_AND_BROADBAND_ACCESS","charOffset":350},{"theme":"WB_2120_SATELLITES","charOffset":350},{"theme":"WB_2329_ACCESS_AND_CONNECTIVITY","charOffset":350},{"theme":"GENERAL_GOVERNMENT","charOffset":45},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":45},{"theme":"WB_137_WATER","charOffset":227},{"theme":"TAX_FNCACT_SPOKESPERSON","charOffset":452},{"theme":"TAX_FNCACT_SPOKESPERSON","charOffset":825},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":161},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":161},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":161},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":134},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":625}][{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},{"geoType":"WORLDCITY","geoName":"Bassac, Svay Rieng, Cambodia","countryCode":"CB","adm1Code":"CB18","adm2Code":"","geoPoint":{"latitude":11.0526,"longitude":105.837},"featureId":"-1024141"},{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"}][{"location":{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"12390","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},"charOffset":15},{"location":{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"},"charOffset":25},{"location":{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"},"charOffset":121},{"location":{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"},"charOffset":694},{"location":{"geoType":"WORLDCITY","geoName":"Bassac, Svay Rieng, Cambodia","countryCode":"CB","adm1Code":"CB18","adm2Code":"12446","geoPoint":{"latitude":11.0526,"longitude":105.837},"featureId":"-1024141"},"charOffset":684}]["h e chan youtha"][]["ministry of water resources","european union space agency"][{"organisation":"Ministry Of Water Resources","charOffset":237},{"organisation":"European Union Space Agency","charOffset":399}]{"tone":0.6756757,"positiveScore":0.6756757,"negativeScore":0,"polarity":0.6756757,"activityReferenceDensity":20.27027,"selfGroupReferenceDensity":0,"wordCount":128}[][{"gcamCode":"wc","gcamValue":128},{"gcamCode":"c12.1","gcamValue":3},{"gcamCode":"c12.10","gcamValue":5},{"gcamCode":"c12.13","gcamValue":3},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.8","gcamValue":3},{"gcamCode":"c12.9","gcamValue":4},{"gcamCode":"c13.3","gcamValue":3},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":7},{"gcamCode":"c14.2","gcamValue":4},{"gcamCode":"c14.3","gcamValue":2},{"gcamCode":"c14.5","gcamValue":4},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":3},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.106","gcamValue":6},{"gcamCode":"c16.109","gcamValue":14},{"gcamCode":"c16.11","gcamValue":6},{"gcamCode":"c16.110","gcamValue":15},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.112","gcamValue":1},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":9},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":5},{"gcamCode":"c16.118","gcamValue":7},{"gcamCode":"c16.12","gcamValue":11},{"gcamCode":"c16.120","gcamValue":5},{"gcamCode":"c16.121","gcamValue":7},{"gcamCode":"c16.124","gcamValue":6},{"gcamCode":"c16.125","gcamValue":1},{"gcamCode":"c16.126","gcamValue":2},{"gcamCode":"c16.127","gcamValue":11},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":16},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.131","gcamValue":6},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":15},{"gcamCode":"c16.138","gcamValue":9},{"gcamCode":"c16.139","gcamValue":7},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":2},{"gcamCode":"c16.145","gcamValue":5},{"gcamCode":"c16.146","gcamValue":7},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":3},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.158","gcamValue":5},{"gcamCode":"c16.159","gcamValue":9},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":14},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":11},{"gcamCode":"c16.164","gcamValue":10},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":9},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":12},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":11},{"gcamCode":"c16.33","gcamValue":12},{"gcamCode":"c16.35","gcamValue":6},{"gcamCode":"c16.37","gcamValue":12},{"gcamCode":"c16.38","gcamValue":4},{"gcamCode":"c16.4","gcamValue":10},{"gcamCode":"c16.41","gcamValue":6},{"gcamCode":"c16.45","gcamValue":12},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":16},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":6},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":56},{"gcamCode":"c16.58","gcamValue":8},{"gcamCode":"c16.6","gcamValue":10},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":3},{"gcamCode":"c16.70","gcamValue":8},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.75","gcamValue":8},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":4},{"gcamCode":"c16.88","gcamValue":19},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.90","gcamValue":5},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":12},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":11},{"gcamCode":"c16.95","gcamValue":9},{"gcamCode":"c16.96","gcamValue":4},{"gcamCode":"c16.98","gcamValue":18},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":22},{"gcamCode":"c17.10","gcamValue":21},{"gcamCode":"c17.11","gcamValue":21},{"gcamCode":"c17.12","gcamValue":4},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":1},{"gcamCode":"c17.15","gcamValue":8},{"gcamCode":"c17.16","gcamValue":4},{"gcamCode":"c17.18","gcamValue":5},{"gcamCode":"c17.19","gcamValue":9},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.23","gcamValue":3},{"gcamCode":"c17.24","gcamValue":10},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":11},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":7},{"gcamCode":"c17.32","gcamValue":9},{"gcamCode":"c17.33","gcamValue":4},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":3},{"gcamCode":"c17.37","gcamValue":1},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":22},{"gcamCode":"c17.40","gcamValue":5},{"gcamCode":"c17.41","gcamValue":2},{"gcamCode":"c17.42","gcamValue":2},{"gcamCode":"c17.5","gcamValue":33},{"gcamCode":"c17.7","gcamValue":27},{"gcamCode":"c17.8","gcamValue":9},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.35","gcamValue":2},{"gcamCode":"c2.1","gcamValue":3},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":9},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":16},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.109","gcamValue":3},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.114","gcamValue":7},{"gcamCode":"c2.116","gcamValue":7},{"gcamCode":"c2.119","gcamValue":37},{"gcamCode":"c2.12","gcamValue":12},{"gcamCode":"c2.120","gcamValue":3},{"gcamCode":"c2.121","gcamValue":10},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.125","gcamValue":3},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":11},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":10},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.14","gcamValue":12},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":7},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":20},{"gcamCode":"c2.148","gcamValue":4},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":11},{"gcamCode":"c2.156","gcamValue":6},{"gcamCode":"c2.157","gcamValue":10},{"gcamCode":"c2.158","gcamValue":6},{"gcamCode":"c2.16","gcamValue":2},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":6},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":6},{"gcamCode":"c2.183","gcamValue":6},{"gcamCode":"c2.185","gcamValue":24},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":7},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":6},{"gcamCode":"c2.193","gcamValue":8},{"gcamCode":"c2.195","gcamValue":12},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.198","gcamValue":14},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":7},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":1},{"gcamCode":"c2.210","gcamValue":12},{"gcamCode":"c2.212","gcamValue":1},{"gcamCode":"c2.213","gcamValue":5},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.220","gcamValue":1},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":5},{"gcamCode":"c2.23","gcamValue":7},{"gcamCode":"c2.25","gcamValue":8},{"gcamCode":"c2.26","gcamValue":1},{"gcamCode":"c2.27","gcamValue":1},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":7},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.34","gcamValue":4},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":27},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":8},{"gcamCode":"c2.46","gcamValue":9},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":14},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":15},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.62","gcamValue":6},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":15},{"gcamCode":"c2.76","gcamValue":83},{"gcamCode":"c2.77","gcamValue":13},{"gcamCode":"c2.78","gcamValue":15},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":15},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":17},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":7},{"gcamCode":"c35.1","gcamValue":6},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.31","gcamValue":12},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":5},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.10","gcamValue":2},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.3","gcamValue":5},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":5},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.20","gcamValue":1},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c4.9","gcamValue":1},{"gcamCode":"c40.3","gcamValue":2},{"gcamCode":"c41.1","gcamValue":9},{"gcamCode":"c5.10","gcamValue":7},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":15},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":3},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":3},{"gcamCode":"c5.3","gcamValue":2},{"gcamCode":"c5.30","gcamValue":8},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":4},{"gcamCode":"c5.40","gcamValue":6},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":19},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":10},{"gcamCode":"c5.50","gcamValue":19},{"gcamCode":"c5.51","gcamValue":8},{"gcamCode":"c5.52","gcamValue":19},{"gcamCode":"c5.53","gcamValue":22},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.6","gcamValue":7},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":2},{"gcamCode":"c5.62","gcamValue":56},{"gcamCode":"c5.7","gcamValue":5},{"gcamCode":"c5.8","gcamValue":13},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":4},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.18","gcamValue":4},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":2},{"gcamCode":"c8.24","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":5},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c9.1","gcamValue":6},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.1039","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.200","gcamValue":5},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.23","gcamValue":5},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.348","gcamValue":1},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.357","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.38","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.470","gcamValue":5},{"gcamCode":"c9.476","gcamValue":5},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":6},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":6},{"gcamCode":"c9.581","gcamValue":5},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.620","gcamValue":5},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":7},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.648","gcamValue":6},{"gcamCode":"c9.653","gcamValue":8},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.659","gcamValue":4},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":5},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":7},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.812","gcamValue":2},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":6},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":6},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.994","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.312815656565657},{"gcamCode":"v10.2","gcamValue":0.153211805555556},{"gcamCode":"v11.1","gcamValue":0.129865987654321},{"gcamCode":"v19.1","gcamValue":6.01866666666667},{"gcamCode":"v19.2","gcamValue":5.10666666666667},{"gcamCode":"v19.3","gcamValue":5.35933333333333},{"gcamCode":"v19.4","gcamValue":5.96066666666667},{"gcamCode":"v19.5","gcamValue":5.05666666666667},{"gcamCode":"v19.6","gcamValue":5.28466666666667},{"gcamCode":"v19.7","gcamValue":6.08666666666667},{"gcamCode":"v19.8","gcamValue":5.17466666666667},{"gcamCode":"v19.9","gcamValue":5.41533333333333},{"gcamCode":"v20.11","gcamValue":0.5},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.391181818181818},{"gcamCode":"v20.14","gcamValue":-0.325},{"gcamCode":"v20.15","gcamValue":0.346071428571429},{"gcamCode":"v20.16","gcamValue":-0.325},{"gcamCode":"v21.1","gcamValue":5.51238095238096},{"gcamCode":"v26.1","gcamValue":0.85}][""][""]["https://youtube.com/channel/UC_pMdWNb4Ta3n44fAMMf98g"][][{"name":"Water Resources","charOffset":252},{"name":"European Union Space Agency","charOffset":417},{"name":"Upper Mekong","charOffset":690},{"name":"Lower Mekong","charOffset":708}][{"amount":2,"amountType":"phases of the study","charOffset":60},{"amount":3,"amountType":"key rivers","charOffset":106},{"amount":2,"amountType":"phases of the study","charOffset":247},{"amount":3,"amountType":"rivers being studied","charOffset":528}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Sor Vichey</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBksby.comhttps://ksby.com/ap-national-news/2019/05/23/3-deaths-in-missouri-as-tornado-strikes-state-capital[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":158},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":392},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":392},{"count":{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":791}]["NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_T03_DEAD","UNGP_CRIME_VIOLENCE","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","AFFECT"][{"theme":"AFFECT","charOffset":819},{"theme":"KILL","charOffset":175},{"theme":"KILL","charOffset":758},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":447},{"theme":"CRISISLEX_T03_DEAD","charOffset":423},{"theme":"LEADER","charOffset":554},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":554},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":56},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":309},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":56},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":309},{"theme":"CRISISLEX_O01_WEATHER","charOffset":56},{"theme":"CRISISLEX_O01_WEATHER","charOffset":309},{"theme":"SECURITY_SERVICES","charOffset":724},{"theme":"TAX_FNCACT_POLICE","charOffset":724},{"theme":"CRISISLEX_C07_SAFETY","charOffset":724},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":80},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":80},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":123}][{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":92},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":433},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":525},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":488},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":332},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":702}]["mike parson","david williams"][{"person":"Mike Parson","charOffset":404},{"person":"David Williams","charOffset":743}]["jefferson city police","national weather service"][{"organisation":"National Weather Service","charOffset":262}]{"tone":-5.46875,"positiveScore":3.90625,"negativeScore":9.375,"polarity":13.28125,"activityReferenceDensity":25.78125,"selfGroupReferenceDensity":0,"wordCount":129}[][{"gcamCode":"wc","gcamValue":129},{"gcamCode":"c12.1","gcamValue":6},{"gcamCode":"c12.10","gcamValue":8},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":7},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":6},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c14.1","gcamValue":8},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":12},{"gcamCode":"c14.2","gcamValue":7},{"gcamCode":"c14.3","gcamValue":7},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":16},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":23},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":10},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":5},{"gcamCode":"c16.12","gcamValue":9},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":19},{"gcamCode":"c16.125","gcamValue":4},{"gcamCode":"c16.126","gcamValue":9},{"gcamCode":"c16.127","gcamValue":8},{"gcamCode":"c16.129","gcamValue":18},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":22},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":10},{"gcamCode":"c16.145","gcamValue":9},{"gcamCode":"c16.146","gcamValue":7},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":13},{"gcamCode":"c16.161","gcamValue":19},{"gcamCode":"c16.162","gcamValue":13},{"gcamCode":"c16.163","gcamValue":9},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.19","gcamValue":2},{"gcamCode":"c16.2","gcamValue":16},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.26","gcamValue":16},{"gcamCode":"c16.31","gcamValue":8},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":11},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":16},{"gcamCode":"c16.4","gcamValue":9},{"gcamCode":"c16.41","gcamValue":6},{"gcamCode":"c16.45","gcamValue":7},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":17},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.52","gcamValue":12},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":5},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":82},{"gcamCode":"c16.58","gcamValue":7},{"gcamCode":"c16.6","gcamValue":16},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":17},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.78","gcamValue":11},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":9},{"gcamCode":"c16.88","gcamValue":22},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.9","gcamValue":5},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":13},{"gcamCode":"c16.93","gcamValue":6},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":17},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":7},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":49},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":14},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.15","gcamValue":18},{"gcamCode":"c17.16","gcamValue":11},{"gcamCode":"c17.19","gcamValue":9},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":5},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.24","gcamValue":11},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":14},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":12},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.39","gcamValue":2},{"gcamCode":"c17.4","gcamValue":33},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":21},{"gcamCode":"c17.7","gcamValue":20},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.1","gcamValue":4},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.156","gcamValue":5},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":4},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":19},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":10},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":9},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":37},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":7},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":4},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":15},{"gcamCode":"c2.128","gcamValue":12},{"gcamCode":"c2.129","gcamValue":15},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":9},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":12},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":17},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":8},{"gcamCode":"c2.156","gcamValue":7},{"gcamCode":"c2.157","gcamValue":8},{"gcamCode":"c2.158","gcamValue":9},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.172","gcamValue":7},{"gcamCode":"c2.173","gcamValue":4},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":6},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":25},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":10},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":3},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":10},{"gcamCode":"c2.195","gcamValue":12},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":14},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":4},{"gcamCode":"c2.204","gcamValue":10},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.210","gcamValue":10},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":11},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":8},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":5},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.34","gcamValue":9},{"gcamCode":"c2.35","gcamValue":3},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":15},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":12},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.50","gcamValue":4},{"gcamCode":"c2.52","gcamValue":9},{"gcamCode":"c2.54","gcamValue":10},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":4},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":13},{"gcamCode":"c2.76","gcamValue":82},{"gcamCode":"c2.77","gcamValue":15},{"gcamCode":"c2.78","gcamValue":19},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":6},{"gcamCode":"c2.82","gcamValue":2},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":2},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.9","gcamValue":10},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":22},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c3.1","gcamValue":17},{"gcamCode":"c3.2","gcamValue":13},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.25","gcamValue":5},{"gcamCode":"c35.31","gcamValue":5},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":9},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":5},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c41.1","gcamValue":5},{"gcamCode":"c5.10","gcamValue":17},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":4},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":3},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":4},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":7},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":13},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":16},{"gcamCode":"c5.49","gcamValue":10},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":15},{"gcamCode":"c5.51","gcamValue":9},{"gcamCode":"c5.52","gcamValue":15},{"gcamCode":"c5.53","gcamValue":10},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.6","gcamValue":5},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":5},{"gcamCode":"c5.62","gcamValue":42},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":5},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c7.1","gcamValue":9},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.23","gcamValue":3},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":4},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.128","gcamValue":9},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":3},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":5},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.348","gcamValue":2},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.359","gcamValue":5},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":7},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":5},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.653","gcamValue":6},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":3},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":6},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.742","gcamValue":5},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.766","gcamValue":10},{"gcamCode":"c9.767","gcamValue":9},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.263916666666667},{"gcamCode":"v10.2","gcamValue":0.306427304964539},{"gcamCode":"v11.1","gcamValue":-0.0105883777777778},{"gcamCode":"v19.1","gcamValue":5.64409090909091},{"gcamCode":"v19.2","gcamValue":5.60545454545454},{"gcamCode":"v19.3","gcamValue":5.29818181818182},{"gcamCode":"v19.4","gcamValue":5.59545454545454},{"gcamCode":"v19.5","gcamValue":5.15545454545455},{"gcamCode":"v19.6","gcamValue":5.20272727272727},{"gcamCode":"v19.7","gcamValue":5.70409090909091},{"gcamCode":"v19.8","gcamValue":6},{"gcamCode":"v19.9","gcamValue":5.34545454545454},{"gcamCode":"v20.1","gcamValue":0.583},{"gcamCode":"v20.10","gcamValue":-0.652666666666667},{"gcamCode":"v20.11","gcamValue":0.58325},{"gcamCode":"v20.12","gcamValue":-0.6145},{"gcamCode":"v20.13","gcamValue":0.433},{"gcamCode":"v20.14","gcamValue":-0.56875},{"gcamCode":"v20.15","gcamValue":0.38725},{"gcamCode":"v20.16","gcamValue":-0.409375},{"gcamCode":"v20.3","gcamValue":0.583},{"gcamCode":"v20.5","gcamValue":0.583},{"gcamCode":"v20.7","gcamValue":0.6665},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.6665},{"gcamCode":"v21.1","gcamValue":5.27598290598291},{"gcamCode":"v26.1","gcamValue":0.10625}]https://s3.amazonaws.com/cordillera-network/wp-content/uploads/sites/2/2018/06/06105543/KSBY-6-News-1920x1080.png[""][""]["https://youtube.com/channel/UChIlR_Uhv1366IAxT1ORbTA"][][{"name":"National Weather Service","charOffset":260},{"name":"Jefferson City","charOffset":335},{"name":"Mike Parson","charOffset":391},{"name":"Public Safety","charOffset":439},{"name":"Golden City","charOffset":480},{"name":"City Police","charOffset":670},{"name":"David Williams","charOffset":689}][{"amount":3,"amountType":"deaths","charOffset":133},{"amount":12,"amountType":"of people","charOffset":156},{"amount":3,"amountType":"people died","charOffset":337},{"amount":20,"amountType":"people have been rescued","charOffset":617}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBindiatimes.comhttps://maharashtratimes.indiatimes.com/social-humour/liveblog/69462605.cms[][]["TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_MAHARASHTRA","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_POLICY"][{"theme":"TAX_WORLDLANGUAGES_MAHARASHTRA","charOffset":11},{"theme":"TAX_WORLDLANGUAGES_MAHARASHTRA","charOffset":260},{"theme":"USPEC_POLICY1","charOffset":57},{"theme":"USPEC_POLICY1","charOffset":365},{"theme":"USPEC_POLICY1","charOffset":419},{"theme":"EPU_POLICY_POLICY","charOffset":57},{"theme":"EPU_POLICY_POLICY","charOffset":365},{"theme":"EPU_POLICY_POLICY","charOffset":419}][][][""][][""][]{"tone":1.3513514,"positiveScore":1.3513514,"negativeScore":0,"polarity":1.3513514,"activityReferenceDensity":22.972973,"selfGroupReferenceDensity":14.864865,"wordCount":71}[][{"gcamCode":"wc","gcamValue":71},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":2},{"gcamCode":"c12.10","gcamValue":5},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.14","gcamValue":5},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.9","gcamValue":6},{"gcamCode":"c14.1","gcamValue":7},{"gcamCode":"c14.10","gcamValue":2},{"gcamCode":"c14.11","gcamValue":10},{"gcamCode":"c14.2","gcamValue":6},{"gcamCode":"c14.3","gcamValue":5},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":9},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":1},{"gcamCode":"c15.167","gcamValue":2},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.221","gcamValue":2},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.100","gcamValue":3},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":1},{"gcamCode":"c16.109","gcamValue":3},{"gcamCode":"c16.110","gcamValue":7},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":3},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":1},{"gcamCode":"c16.12","gcamValue":7},{"gcamCode":"c16.120","gcamValue":4},{"gcamCode":"c16.121","gcamValue":5},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.125","gcamValue":5},{"gcamCode":"c16.126","gcamValue":7},{"gcamCode":"c16.127","gcamValue":8},{"gcamCode":"c16.128","gcamValue":4},{"gcamCode":"c16.129","gcamValue":13},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":8},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":1},{"gcamCode":"c16.140","gcamValue":3},{"gcamCode":"c16.145","gcamValue":3},{"gcamCode":"c16.146","gcamValue":4},{"gcamCode":"c16.153","gcamValue":3},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":3},{"gcamCode":"c16.162","gcamValue":2},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.2","gcamValue":4},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":10},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":7},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":8},{"gcamCode":"c16.35","gcamValue":2},{"gcamCode":"c16.37","gcamValue":4},{"gcamCode":"c16.38","gcamValue":3},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":1},{"gcamCode":"c16.45","gcamValue":1},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":14},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":32},{"gcamCode":"c16.58","gcamValue":3},{"gcamCode":"c16.6","gcamValue":4},{"gcamCode":"c16.62","gcamValue":1},{"gcamCode":"c16.63","gcamValue":7},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":14},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":7},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":1},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":7},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":10},{"gcamCode":"c16.88","gcamValue":10},{"gcamCode":"c16.89","gcamValue":5},{"gcamCode":"c16.90","gcamValue":8},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":5},{"gcamCode":"c16.94","gcamValue":9},{"gcamCode":"c16.95","gcamValue":3},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":5},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":18},{"gcamCode":"c17.10","gcamValue":7},{"gcamCode":"c17.11","gcamValue":15},{"gcamCode":"c17.12","gcamValue":4},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":5},{"gcamCode":"c17.16","gcamValue":2},{"gcamCode":"c17.19","gcamValue":6},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":1},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":6},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":11},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":11},{"gcamCode":"c17.32","gcamValue":9},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":5},{"gcamCode":"c17.37","gcamValue":3},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":6},{"gcamCode":"c17.4","gcamValue":12},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":8},{"gcamCode":"c17.43","gcamValue":4},{"gcamCode":"c17.5","gcamValue":10},{"gcamCode":"c17.7","gcamValue":8},{"gcamCode":"c17.8","gcamValue":10},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c2.1","gcamValue":3},{"gcamCode":"c2.10","gcamValue":7},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":10},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.114","gcamValue":1},{"gcamCode":"c2.116","gcamValue":1},{"gcamCode":"c2.119","gcamValue":22},{"gcamCode":"c2.12","gcamValue":1},{"gcamCode":"c2.121","gcamValue":10},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.124","gcamValue":5},{"gcamCode":"c2.125","gcamValue":6},{"gcamCode":"c2.126","gcamValue":1},{"gcamCode":"c2.127","gcamValue":7},{"gcamCode":"c2.129","gcamValue":3},{"gcamCode":"c2.131","gcamValue":4},{"gcamCode":"c2.138","gcamValue":3},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.143","gcamValue":4},{"gcamCode":"c2.144","gcamValue":3},{"gcamCode":"c2.146","gcamValue":3},{"gcamCode":"c2.147","gcamValue":10},{"gcamCode":"c2.148","gcamValue":17},{"gcamCode":"c2.15","gcamValue":7},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":4},{"gcamCode":"c2.155","gcamValue":10},{"gcamCode":"c2.156","gcamValue":2},{"gcamCode":"c2.157","gcamValue":8},{"gcamCode":"c2.158","gcamValue":7},{"gcamCode":"c2.160","gcamValue":5},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.177","gcamValue":1},{"gcamCode":"c2.179","gcamValue":4},{"gcamCode":"c2.18","gcamValue":1},{"gcamCode":"c2.180","gcamValue":1},{"gcamCode":"c2.181","gcamValue":1},{"gcamCode":"c2.183","gcamValue":1},{"gcamCode":"c2.185","gcamValue":20},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":4},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":4},{"gcamCode":"c2.195","gcamValue":9},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":2},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":3},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":4},{"gcamCode":"c2.210","gcamValue":8},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":4},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.227","gcamValue":5},{"gcamCode":"c2.228","gcamValue":7},{"gcamCode":"c2.25","gcamValue":1},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.31","gcamValue":1},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":5},{"gcamCode":"c2.35","gcamValue":7},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":7},{"gcamCode":"c2.39","gcamValue":13},{"gcamCode":"c2.44","gcamValue":4},{"gcamCode":"c2.45","gcamValue":4},{"gcamCode":"c2.46","gcamValue":4},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":3},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":4},{"gcamCode":"c2.54","gcamValue":4},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.62","gcamValue":1},{"gcamCode":"c2.63","gcamValue":3},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.72","gcamValue":5},{"gcamCode":"c2.73","gcamValue":6},{"gcamCode":"c2.75","gcamValue":14},{"gcamCode":"c2.76","gcamValue":55},{"gcamCode":"c2.77","gcamValue":1},{"gcamCode":"c2.78","gcamValue":17},{"gcamCode":"c2.79","gcamValue":2},{"gcamCode":"c2.80","gcamValue":14},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":5},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":5},{"gcamCode":"c2.89","gcamValue":4},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.95","gcamValue":8},{"gcamCode":"c2.98","gcamValue":2},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":5},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.15","gcamValue":8},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.2","gcamValue":4},{"gcamCode":"c39.3","gcamValue":5},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.23","gcamValue":1},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c41.1","gcamValue":2},{"gcamCode":"c5.10","gcamValue":5},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":14},{"gcamCode":"c5.13","gcamValue":5},{"gcamCode":"c5.17","gcamValue":5},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":3},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":4},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":12},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":5},{"gcamCode":"c5.36","gcamValue":5},{"gcamCode":"c5.40","gcamValue":14},{"gcamCode":"c5.43","gcamValue":4},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":9},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":7},{"gcamCode":"c5.50","gcamValue":7},{"gcamCode":"c5.51","gcamValue":4},{"gcamCode":"c5.52","gcamValue":9},{"gcamCode":"c5.53","gcamValue":2},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.57","gcamValue":7},{"gcamCode":"c5.58","gcamValue":5},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":12},{"gcamCode":"c5.61","gcamValue":15},{"gcamCode":"c5.62","gcamValue":37},{"gcamCode":"c5.7","gcamValue":1},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":4},{"gcamCode":"c8.20","gcamValue":5},{"gcamCode":"c8.23","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.4","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c9.1","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.125","gcamValue":4},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":2},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.141","gcamValue":8},{"gcamCode":"c9.142","gcamValue":4},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.158","gcamValue":3},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.3","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":5},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":4},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.579","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.636","gcamValue":2},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.646","gcamValue":4},{"gcamCode":"c9.653","gcamValue":1},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":3},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.720","gcamValue":3},{"gcamCode":"c9.726","gcamValue":4},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":1},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.746","gcamValue":5},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.767","gcamValue":3},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.812","gcamValue":2},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.864","gcamValue":3},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.908","gcamValue":5},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.408333333333333},{"gcamCode":"v10.2","gcamValue":0.2536875},{"gcamCode":"v11.1","gcamValue":0.17922015625},{"gcamCode":"v19.1","gcamValue":5.99642857142857},{"gcamCode":"v19.2","gcamValue":4.91071428571429},{"gcamCode":"v19.3","gcamValue":5.22214285714286},{"gcamCode":"v19.4","gcamValue":5.89285714285714},{"gcamCode":"v19.5","gcamValue":4.90857142857143},{"gcamCode":"v19.6","gcamValue":5.24},{"gcamCode":"v19.7","gcamValue":6.08142857142857},{"gcamCode":"v19.8","gcamValue":4.96285714285714},{"gcamCode":"v19.9","gcamValue":5.21071428571429},{"gcamCode":"v20.1","gcamValue":0.6105},{"gcamCode":"v20.11","gcamValue":0.680666666666667},{"gcamCode":"v20.13","gcamValue":0.513833333333333},{"gcamCode":"v20.15","gcamValue":0.446428571428571},{"gcamCode":"v20.3","gcamValue":0.771},{"gcamCode":"v20.5","gcamValue":0.771},{"gcamCode":"v20.7","gcamValue":0.771},{"gcamCode":"v20.9","gcamValue":0.771},{"gcamCode":"v21.1","gcamValue":5.76323529411765},{"gcamCode":"v26.1","gcamValue":1.825}]https://maharashtratimes.indiatimes.com/photo/28477046.cms[""][""][""][][{"name":"Maharashtra Times","charOffset":18},{"name":"Maharashtra Times","charOffset":275},{"name":"Cookie Policy","charOffset":378}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://maharashtratimes.indiatimes.com/cookiepolicy.cms;https://maharashtratimes.indiatimes.com/privacypolicy.cms</PAGE_LINKS><PAGE_AUTHORS>MT Online Editor</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523095200</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://m.maharashtratimes.com/social-humour/amp_liveblog/69462605.cms</PAGE_ALTURL_AMP><PAGE_ALTURL_MOBILE>https://m.maharashtratimes.com/social-humour/liveblog/69462605.cms</PAGE_ALTURL_MOBILE>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBforbes.comhttps://www.forbes.com/sites/oliverwilliams1/2019/05/23/rich-need-to-tackle-climate-change-as-research-shows-it-will-eventually-make-them-poorer/[][]["MANMADE_DISASTER_IMPLIED","UNGP_FORESTS_RIVERS_OCEANS","ENV_CLIMATECHANGE","WB_567_CLIMATE_CHANGE","CRISISLEX_CRISISLEXREC","UNGP_CLIMATE_CHANGE_ACTION","EDUCATION","TAX_FNCACT","TAX_FNCACT_PROFESSOR","SCIENCE","WB_571_CLIMATE_SCIENCE","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","SOC_POINTSOFINTEREST_COLLEGE","TAX_FNCACT_KING","GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_GOVERNMENT","TAX_FNCACT_CHIEF","TAX_FNCACT_ADVISER","TAX_FNCACT_COORDINATOR","TAX_FNCACT_CEO","ALLIANCE","AFFECT","TAX_FNCACT_CHILDREN","DELAY","USPEC_UNCERTAINTY1","USPEC_POLICY1","TAX_ECON_PRICE","UNGP_CRIME_VIOLENCE","TAX_FNCACT_MANAGERS","WB_1160_SHOCKS_AND_VULNERABILITY","WB_695_POVERTY","TAX_FNCACT_FOUNDER","TAX_FNCACT_SPOKESPERSON","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","GENERAL_HEALTH","MEDICAL","TAX_FNCACT_SCIENTIST","MOVEMENT_GENERAL","MOVEMENT_SOCIAL","SOC_INNOVATION","WB_470_EDUCATION"][{"theme":"GENERAL_GOVERNMENT","charOffset":540},{"theme":"GENERAL_GOVERNMENT","charOffset":1488},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":540},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1488},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":494},{"theme":"EDUCATION","charOffset":453},{"theme":"TAX_FNCACT_PROFESSOR","charOffset":453},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":3029},{"theme":"TAX_FNCACT_SPOKESPERSON","charOffset":2941},{"theme":"TAX_FNCACT_SPOKESPERSON","charOffset":3129},{"theme":"DELAY","charOffset":1972},{"theme":"USPEC_UNCERTAINTY1","charOffset":1972},{"theme":"USPEC_POLICY1","charOffset":2011},{"theme":"ENV_CLIMATECHANGE","charOffset":303},{"theme":"ENV_CLIMATECHANGE","charOffset":1416},{"theme":"ENV_CLIMATECHANGE","charOffset":1563},{"theme":"ENV_CLIMATECHANGE","charOffset":2545},{"theme":"WB_567_CLIMATE_CHANGE","charOffset":303},{"theme":"WB_567_CLIMATE_CHANGE","charOffset":1416},{"theme":"WB_567_CLIMATE_CHANGE","charOffset":1563},{"theme":"WB_567_CLIMATE_CHANGE","charOffset":2545},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":303},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1416},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1563},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2545},{"theme":"UNGP_CLIMATE_CHANGE_ACTION","charOffset":303},{"theme":"UNGP_CLIMATE_CHANGE_ACTION","charOffset":1416},{"theme":"UNGP_CLIMATE_CHANGE_ACTION","charOffset":1563},{"theme":"UNGP_CLIMATE_CHANGE_ACTION","charOffset":2545},{"theme":"GENERAL_HEALTH","charOffset":3036},{"theme":"MEDICAL","charOffset":3036},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":2138},{"theme":"TAX_FNCACT_CHIEF","charOffset":546},{"theme":"TAX_FNCACT_CHIEF","charOffset":1451},{"theme":"TAX_FNCACT_SCIENTIST","charOffset":3105},{"theme":"TAX_FNCACT_ADVISER","charOffset":565},{"theme":"WB_470_EDUCATION","charOffset":3907},{"theme":"MOVEMENT_SOCIAL","charOffset":3815},{"theme":"WB_1160_SHOCKS_AND_VULNERABILITY","charOffset":2461},{"theme":"WB_695_POVERTY","charOffset":2461},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":486},{"theme":"TAX_FNCACT_CEO","charOffset":783},{"theme":"TAX_FNCACT_FOUNDER","charOffset":2602},{"theme":"TAX_FNCACT_FOUNDER","charOffset":3318},{"theme":"TAX_ECON_PRICE","charOffset":2022},{"theme":"TAX_FNCACT_MANAGERS","charOffset":2281},{"theme":"WB_571_CLIMATE_SCIENCE","charOffset":472},{"theme":"MOVEMENT_GENERAL","charOffset":3815},{"theme":"SCIENCE","charOffset":472},{"theme":"ALLIANCE","charOffset":809},{"theme":"TAX_FNCACT_KING","charOffset":518},{"theme":"TAX_FNCACT_KING","charOffset":1434},{"theme":"AFFECT","charOffset":1810},{"theme":"SOC_INNOVATION","charOffset":3862},{"theme":"TAX_FNCACT_COORDINATOR","charOffset":763},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":273},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1314},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2737},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2863},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":273},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1314},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2737},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2863},{"theme":"TAX_FNCACT_CHILDREN","charOffset":1825}][][]["sophie marple","david king","alan weller bloomberg","angela terry","arun sankar","chris rapley","sigrid rausing","james ratcliffe"][{"person":"Sophie Marple","charOffset":2592},{"person":"David King","charOffset":518},{"person":"David King","charOffset":1434},{"person":"Alan Weller Bloomberg","charOffset":1541},{"person":"Angela Terry","charOffset":830},{"person":"Arun Sankar","charOffset":12},{"person":"Chris Rapley","charOffset":441},{"person":"Sigrid Rausing","charOffset":3159},{"person":"Sigrid Rausing","charOffset":3308},{"person":"Sigrid Rausing","charOffset":3340},{"person":"James Ratcliffe","charOffset":3558}]["gower st foundation","wellcome","environmental funders network","climate alliance","sigrid rausing","climate science at university college london"][{"organisation":"Gower St Foundation","charOffset":2635},{"organisation":"Wellcome","charOffset":2959},{"organisation":"Environmental Funders Network","charOffset":1330},{"organisation":"Climate Alliance","charOffset":809},{"organisation":"Sigrid Rausing","charOffset":3159},{"organisation":"Sigrid Rausing","charOffset":3308},{"organisation":"Sigrid Rausing","charOffset":3340},{"organisation":"Climate Science At University College London","charOffset":501}]{"tone":0.8683068,"positiveScore":3.4732273,"negativeScore":2.6049204,"polarity":6.0781474,"activityReferenceDensity":19.826338,"selfGroupReferenceDensity":2.0260491,"wordCount":631}[][{"gcamCode":"wc","gcamValue":631},{"gcamCode":"c1.3","gcamValue":26},{"gcamCode":"c12.1","gcamValue":33},{"gcamCode":"c12.10","gcamValue":58},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":25},{"gcamCode":"c12.14","gcamValue":22},{"gcamCode":"c12.3","gcamValue":17},{"gcamCode":"c12.4","gcamValue":5},{"gcamCode":"c12.5","gcamValue":17},{"gcamCode":"c12.7","gcamValue":29},{"gcamCode":"c12.8","gcamValue":29},{"gcamCode":"c12.9","gcamValue":33},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c14.1","gcamValue":42},{"gcamCode":"c14.10","gcamValue":25},{"gcamCode":"c14.11","gcamValue":59},{"gcamCode":"c14.2","gcamValue":36},{"gcamCode":"c14.3","gcamValue":36},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":80},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":6},{"gcamCode":"c14.9","gcamValue":7},{"gcamCode":"c15.10","gcamValue":9},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.11","gcamValue":4},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":2},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":3},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.20","gcamValue":4},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.22","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.226","gcamValue":2},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.239","gcamValue":2},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":3},{"gcamCode":"c15.255","gcamValue":2},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.257","gcamValue":2},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.277","gcamValue":2},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.3","gcamValue":7},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.53","gcamValue":2},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.62","gcamValue":5},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":12},{"gcamCode":"c16.101","gcamValue":10},{"gcamCode":"c16.102","gcamValue":5},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.104","gcamValue":1},{"gcamCode":"c16.105","gcamValue":13},{"gcamCode":"c16.106","gcamValue":21},{"gcamCode":"c16.107","gcamValue":1},{"gcamCode":"c16.109","gcamValue":45},{"gcamCode":"c16.11","gcamValue":4},{"gcamCode":"c16.110","gcamValue":85},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":30},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":15},{"gcamCode":"c16.117","gcamValue":19},{"gcamCode":"c16.118","gcamValue":32},{"gcamCode":"c16.12","gcamValue":46},{"gcamCode":"c16.120","gcamValue":19},{"gcamCode":"c16.121","gcamValue":46},{"gcamCode":"c16.122","gcamValue":16},{"gcamCode":"c16.124","gcamValue":6},{"gcamCode":"c16.125","gcamValue":48},{"gcamCode":"c16.126","gcamValue":50},{"gcamCode":"c16.127","gcamValue":60},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":65},{"gcamCode":"c16.13","gcamValue":5},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":25},{"gcamCode":"c16.132","gcamValue":4},{"gcamCode":"c16.134","gcamValue":66},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.138","gcamValue":30},{"gcamCode":"c16.139","gcamValue":21},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":19},{"gcamCode":"c16.144","gcamValue":1},{"gcamCode":"c16.145","gcamValue":39},{"gcamCode":"c16.146","gcamValue":35},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":26},{"gcamCode":"c16.155","gcamValue":8},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":7},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":34},{"gcamCode":"c16.16","gcamValue":16},{"gcamCode":"c16.160","gcamValue":1},{"gcamCode":"c16.161","gcamValue":43},{"gcamCode":"c16.162","gcamValue":28},{"gcamCode":"c16.163","gcamValue":29},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.19","gcamValue":6},{"gcamCode":"c16.2","gcamValue":44},{"gcamCode":"c16.21","gcamValue":11},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":67},{"gcamCode":"c16.27","gcamValue":8},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.29","gcamValue":2},{"gcamCode":"c16.3","gcamValue":13},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":26},{"gcamCode":"c16.32","gcamValue":5},{"gcamCode":"c16.33","gcamValue":43},{"gcamCode":"c16.34","gcamValue":4},{"gcamCode":"c16.35","gcamValue":32},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":62},{"gcamCode":"c16.38","gcamValue":18},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":34},{"gcamCode":"c16.41","gcamValue":21},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":32},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":105},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":9},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":22},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.54","gcamValue":9},{"gcamCode":"c16.55","gcamValue":5},{"gcamCode":"c16.56","gcamValue":15},{"gcamCode":"c16.57","gcamValue":313},{"gcamCode":"c16.58","gcamValue":42},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":49},{"gcamCode":"c16.60","gcamValue":13},{"gcamCode":"c16.62","gcamValue":19},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":12},{"gcamCode":"c16.66","gcamValue":7},{"gcamCode":"c16.68","gcamValue":26},{"gcamCode":"c16.69","gcamValue":24},{"gcamCode":"c16.7","gcamValue":13},{"gcamCode":"c16.70","gcamValue":30},{"gcamCode":"c16.71","gcamValue":16},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":6},{"gcamCode":"c16.74","gcamValue":10},{"gcamCode":"c16.75","gcamValue":24},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":4},{"gcamCode":"c16.78","gcamValue":16},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":25},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":64},{"gcamCode":"c16.88","gcamValue":78},{"gcamCode":"c16.89","gcamValue":36},{"gcamCode":"c16.90","gcamValue":25},{"gcamCode":"c16.91","gcamValue":16},{"gcamCode":"c16.92","gcamValue":43},{"gcamCode":"c16.93","gcamValue":18},{"gcamCode":"c16.94","gcamValue":44},{"gcamCode":"c16.95","gcamValue":30},{"gcamCode":"c16.96","gcamValue":27},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":46},{"gcamCode":"c17.1","gcamValue":140},{"gcamCode":"c17.10","gcamValue":89},{"gcamCode":"c17.11","gcamValue":87},{"gcamCode":"c17.12","gcamValue":25},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":34},{"gcamCode":"c17.16","gcamValue":17},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":40},{"gcamCode":"c17.2","gcamValue":19},{"gcamCode":"c17.20","gcamValue":11},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":34},{"gcamCode":"c17.23","gcamValue":9},{"gcamCode":"c17.24","gcamValue":39},{"gcamCode":"c17.25","gcamValue":18},{"gcamCode":"c17.26","gcamValue":6},{"gcamCode":"c17.27","gcamValue":84},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":12},{"gcamCode":"c17.30","gcamValue":13},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":29},{"gcamCode":"c17.33","gcamValue":36},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":15},{"gcamCode":"c17.37","gcamValue":25},{"gcamCode":"c17.38","gcamValue":10},{"gcamCode":"c17.39","gcamValue":21},{"gcamCode":"c17.4","gcamValue":126},{"gcamCode":"c17.40","gcamValue":18},{"gcamCode":"c17.41","gcamValue":39},{"gcamCode":"c17.42","gcamValue":35},{"gcamCode":"c17.43","gcamValue":35},{"gcamCode":"c17.5","gcamValue":106},{"gcamCode":"c17.6","gcamValue":6},{"gcamCode":"c17.7","gcamValue":69},{"gcamCode":"c17.8","gcamValue":76},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.1","gcamValue":2},{"gcamCode":"c18.105","gcamValue":1},{"gcamCode":"c18.113","gcamValue":1},{"gcamCode":"c18.147","gcamValue":4},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.166","gcamValue":4},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.193","gcamValue":15},{"gcamCode":"c18.201","gcamValue":1},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.33","gcamValue":1},{"gcamCode":"c18.333","gcamValue":1},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.35","gcamValue":4},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.82","gcamValue":3},{"gcamCode":"c2.1","gcamValue":12},{"gcamCode":"c2.10","gcamValue":7},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":14},{"gcamCode":"c2.102","gcamValue":19},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":98},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":10},{"gcamCode":"c2.109","gcamValue":5},{"gcamCode":"c2.11","gcamValue":10},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":8},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":24},{"gcamCode":"c2.115","gcamValue":12},{"gcamCode":"c2.116","gcamValue":15},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":168},{"gcamCode":"c2.12","gcamValue":39},{"gcamCode":"c2.120","gcamValue":5},{"gcamCode":"c2.121","gcamValue":42},{"gcamCode":"c2.122","gcamValue":13},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":9},{"gcamCode":"c2.125","gcamValue":31},{"gcamCode":"c2.126","gcamValue":23},{"gcamCode":"c2.127","gcamValue":72},{"gcamCode":"c2.128","gcamValue":26},{"gcamCode":"c2.129","gcamValue":23},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.131","gcamValue":8},{"gcamCode":"c2.132","gcamValue":3},{"gcamCode":"c2.133","gcamValue":5},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":59},{"gcamCode":"c2.141","gcamValue":19},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":32},{"gcamCode":"c2.144","gcamValue":14},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":11},{"gcamCode":"c2.147","gcamValue":85},{"gcamCode":"c2.148","gcamValue":58},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":28},{"gcamCode":"c2.150","gcamValue":6},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":7},{"gcamCode":"c2.153","gcamValue":21},{"gcamCode":"c2.154","gcamValue":9},{"gcamCode":"c2.155","gcamValue":55},{"gcamCode":"c2.156","gcamValue":35},{"gcamCode":"c2.157","gcamValue":51},{"gcamCode":"c2.158","gcamValue":49},{"gcamCode":"c2.159","gcamValue":9},{"gcamCode":"c2.160","gcamValue":33},{"gcamCode":"c2.161","gcamValue":2},{"gcamCode":"c2.162","gcamValue":11},{"gcamCode":"c2.163","gcamValue":6},{"gcamCode":"c2.166","gcamValue":15},{"gcamCode":"c2.169","gcamValue":6},{"gcamCode":"c2.17","gcamValue":13},{"gcamCode":"c2.170","gcamValue":6},{"gcamCode":"c2.172","gcamValue":6},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":37},{"gcamCode":"c2.179","gcamValue":27},{"gcamCode":"c2.18","gcamValue":19},{"gcamCode":"c2.180","gcamValue":19},{"gcamCode":"c2.181","gcamValue":22},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":137},{"gcamCode":"c2.186","gcamValue":11},{"gcamCode":"c2.187","gcamValue":33},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.190","gcamValue":12},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":16},{"gcamCode":"c2.193","gcamValue":29},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":59},{"gcamCode":"c2.196","gcamValue":20},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":45},{"gcamCode":"c2.199","gcamValue":16},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.201","gcamValue":5},{"gcamCode":"c2.203","gcamValue":28},{"gcamCode":"c2.204","gcamValue":32},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.209","gcamValue":13},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":60},{"gcamCode":"c2.211","gcamValue":6},{"gcamCode":"c2.213","gcamValue":9},{"gcamCode":"c2.214","gcamValue":21},{"gcamCode":"c2.217","gcamValue":6},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":11},{"gcamCode":"c2.222","gcamValue":5},{"gcamCode":"c2.223","gcamValue":13},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":15},{"gcamCode":"c2.226","gcamValue":22},{"gcamCode":"c2.227","gcamValue":4},{"gcamCode":"c2.228","gcamValue":7},{"gcamCode":"c2.23","gcamValue":17},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":49},{"gcamCode":"c2.26","gcamValue":29},{"gcamCode":"c2.27","gcamValue":29},{"gcamCode":"c2.28","gcamValue":9},{"gcamCode":"c2.30","gcamValue":42},{"gcamCode":"c2.31","gcamValue":37},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":8},{"gcamCode":"c2.34","gcamValue":48},{"gcamCode":"c2.35","gcamValue":13},{"gcamCode":"c2.36","gcamValue":8},{"gcamCode":"c2.37","gcamValue":11},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":103},{"gcamCode":"c2.4","gcamValue":8},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.42","gcamValue":5},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":40},{"gcamCode":"c2.45","gcamValue":29},{"gcamCode":"c2.46","gcamValue":60},{"gcamCode":"c2.47","gcamValue":11},{"gcamCode":"c2.48","gcamValue":14},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":19},{"gcamCode":"c2.52","gcamValue":61},{"gcamCode":"c2.53","gcamValue":6},{"gcamCode":"c2.54","gcamValue":70},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":8},{"gcamCode":"c2.58","gcamValue":15},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":10},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":4},{"gcamCode":"c2.62","gcamValue":22},{"gcamCode":"c2.64","gcamValue":34},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.68","gcamValue":5},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.73","gcamValue":14},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":85},{"gcamCode":"c2.76","gcamValue":411},{"gcamCode":"c2.77","gcamValue":52},{"gcamCode":"c2.78","gcamValue":72},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.80","gcamValue":73},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":22},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.85","gcamValue":2},{"gcamCode":"c2.86","gcamValue":21},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":13},{"gcamCode":"c2.89","gcamValue":19},{"gcamCode":"c2.9","gcamValue":19},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.91","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":13},{"gcamCode":"c2.94","gcamValue":5},{"gcamCode":"c2.95","gcamValue":88},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":8},{"gcamCode":"c2.98","gcamValue":32},{"gcamCode":"c2.99","gcamValue":5},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":25},{"gcamCode":"c3.2","gcamValue":37},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":6},{"gcamCode":"c35.15","gcamValue":14},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":29},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.3","gcamValue":2},{"gcamCode":"c35.31","gcamValue":27},{"gcamCode":"c35.32","gcamValue":24},{"gcamCode":"c35.33","gcamValue":32},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":7},{"gcamCode":"c35.7","gcamValue":7},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":4},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":6},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":8},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.26","gcamValue":3},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":16},{"gcamCode":"c39.36","gcamValue":8},{"gcamCode":"c39.37","gcamValue":24},{"gcamCode":"c39.39","gcamValue":9},{"gcamCode":"c39.4","gcamValue":11},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":19},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c4.9","gcamValue":6},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":5},{"gcamCode":"c41.1","gcamValue":24},{"gcamCode":"c5.10","gcamValue":40},{"gcamCode":"c5.11","gcamValue":23},{"gcamCode":"c5.12","gcamValue":78},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":12},{"gcamCode":"c5.20","gcamValue":7},{"gcamCode":"c5.21","gcamValue":20},{"gcamCode":"c5.22","gcamValue":10},{"gcamCode":"c5.23","gcamValue":6},{"gcamCode":"c5.24","gcamValue":5},{"gcamCode":"c5.25","gcamValue":7},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":9},{"gcamCode":"c5.28","gcamValue":22},{"gcamCode":"c5.29","gcamValue":8},{"gcamCode":"c5.30","gcamValue":71},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":11},{"gcamCode":"c5.35","gcamValue":23},{"gcamCode":"c5.36","gcamValue":39},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.39","gcamValue":3},{"gcamCode":"c5.4","gcamValue":19},{"gcamCode":"c5.40","gcamValue":85},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":13},{"gcamCode":"c5.44","gcamValue":10},{"gcamCode":"c5.45","gcamValue":9},{"gcamCode":"c5.46","gcamValue":86},{"gcamCode":"c5.47","gcamValue":14},{"gcamCode":"c5.48","gcamValue":10},{"gcamCode":"c5.49","gcamValue":50},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":77},{"gcamCode":"c5.51","gcamValue":42},{"gcamCode":"c5.52","gcamValue":94},{"gcamCode":"c5.53","gcamValue":58},{"gcamCode":"c5.54","gcamValue":23},{"gcamCode":"c5.55","gcamValue":8},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":8},{"gcamCode":"c5.58","gcamValue":9},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":22},{"gcamCode":"c5.60","gcamValue":27},{"gcamCode":"c5.61","gcamValue":50},{"gcamCode":"c5.62","gcamValue":266},{"gcamCode":"c5.7","gcamValue":17},{"gcamCode":"c5.8","gcamValue":29},{"gcamCode":"c5.9","gcamValue":17},{"gcamCode":"c6.1","gcamValue":8},{"gcamCode":"c6.2","gcamValue":8},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":22},{"gcamCode":"c6.5","gcamValue":6},{"gcamCode":"c6.6","gcamValue":4},{"gcamCode":"c7.1","gcamValue":28},{"gcamCode":"c7.2","gcamValue":29},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":20},{"gcamCode":"c8.24","gcamValue":2},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.36","gcamValue":7},{"gcamCode":"c8.37","gcamValue":17},{"gcamCode":"c8.38","gcamValue":14},{"gcamCode":"c8.39","gcamValue":3},{"gcamCode":"c8.4","gcamValue":19},{"gcamCode":"c8.40","gcamValue":3},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":29},{"gcamCode":"c8.43","gcamValue":10},{"gcamCode":"c8.5","gcamValue":8},{"gcamCode":"c9.1","gcamValue":20},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":10},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":3},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1027","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":6},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":10},{"gcamCode":"c9.111","gcamValue":4},{"gcamCode":"c9.112","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":7},{"gcamCode":"c9.122","gcamValue":16},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":30},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.13","gcamValue":1},{"gcamCode":"c9.130","gcamValue":13},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":5},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":7},{"gcamCode":"c9.148","gcamValue":7},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":4},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.156","gcamValue":6},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":16},{"gcamCode":"c9.160","gcamValue":6},{"gcamCode":"c9.161","gcamValue":4},{"gcamCode":"c9.162","gcamValue":7},{"gcamCode":"c9.163","gcamValue":3},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.171","gcamValue":2},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.175","gcamValue":5},{"gcamCode":"c9.177","gcamValue":10},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":7},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":13},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":11},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":4},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":6},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.2","gcamValue":2},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":6},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.22","gcamValue":6},{"gcamCode":"c9.220","gcamValue":4},{"gcamCode":"c9.224","gcamValue":5},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":7},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.262","gcamValue":4},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":24},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":3},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.320","gcamValue":2},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":3},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":18},{"gcamCode":"c9.330","gcamValue":3},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.34","gcamValue":11},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.348","gcamValue":11},{"gcamCode":"c9.35","gcamValue":8},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.37","gcamValue":3},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.375","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":11},{"gcamCode":"c9.384","gcamValue":3},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.422","gcamValue":2},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":2},{"gcamCode":"c9.43","gcamValue":2},{"gcamCode":"c9.430","gcamValue":6},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":5},{"gcamCode":"c9.446","gcamValue":3},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.453","gcamValue":1},{"gcamCode":"c9.459","gcamValue":8},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.463","gcamValue":4},{"gcamCode":"c9.466","gcamValue":5},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":10},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":7},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.480","gcamValue":7},{"gcamCode":"c9.481","gcamValue":3},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":10},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":5},{"gcamCode":"c9.507","gcamValue":5},{"gcamCode":"c9.509","gcamValue":3},{"gcamCode":"c9.511","gcamValue":12},{"gcamCode":"c9.513","gcamValue":16},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.518","gcamValue":3},{"gcamCode":"c9.519","gcamValue":10},{"gcamCode":"c9.521","gcamValue":2},{"gcamCode":"c9.522","gcamValue":11},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.53","gcamValue":4},{"gcamCode":"c9.530","gcamValue":5},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":3},{"gcamCode":"c9.549","gcamValue":4},{"gcamCode":"c9.55","gcamValue":7},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.554","gcamValue":5},{"gcamCode":"c9.556","gcamValue":5},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":11},{"gcamCode":"c9.561","gcamValue":8},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":5},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.567","gcamValue":3},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.571","gcamValue":4},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":13},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":23},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.585","gcamValue":12},{"gcamCode":"c9.586","gcamValue":12},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.604","gcamValue":2},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.608","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.615","gcamValue":13},{"gcamCode":"c9.616","gcamValue":12},{"gcamCode":"c9.617","gcamValue":10},{"gcamCode":"c9.618","gcamValue":5},{"gcamCode":"c9.619","gcamValue":4},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":6},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":7},{"gcamCode":"c9.629","gcamValue":5},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":3},{"gcamCode":"c9.631","gcamValue":5},{"gcamCode":"c9.632","gcamValue":5},{"gcamCode":"c9.635","gcamValue":6},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":15},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.648","gcamValue":9},{"gcamCode":"c9.649","gcamValue":4},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":31},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":4},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":13},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":5},{"gcamCode":"c9.668","gcamValue":4},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":14},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":5},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":12},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":6},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":3},{"gcamCode":"c9.687","gcamValue":5},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.698","gcamValue":4},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":6},{"gcamCode":"c9.701","gcamValue":15},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":9},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":6},{"gcamCode":"c9.721","gcamValue":7},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":5},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":24},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":20},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":4},{"gcamCode":"c9.746","gcamValue":4},{"gcamCode":"c9.748","gcamValue":9},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.752","gcamValue":2},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.762","gcamValue":22},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":8},{"gcamCode":"c9.767","gcamValue":24},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":5},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":5},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.792","gcamValue":6},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":7},{"gcamCode":"c9.802","gcamValue":5},{"gcamCode":"c9.806","gcamValue":4},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.811","gcamValue":4},{"gcamCode":"c9.812","gcamValue":12},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":13},{"gcamCode":"c9.817","gcamValue":5},{"gcamCode":"c9.818","gcamValue":2},{"gcamCode":"c9.819","gcamValue":2},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.83","gcamValue":13},{"gcamCode":"c9.831","gcamValue":6},{"gcamCode":"c9.832","gcamValue":2},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":12},{"gcamCode":"c9.837","gcamValue":6},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.839","gcamValue":4},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":6},{"gcamCode":"c9.847","gcamValue":3},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.850","gcamValue":2},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":7},{"gcamCode":"c9.861","gcamValue":6},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":20},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":19},{"gcamCode":"c9.87","gcamValue":3},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":11},{"gcamCode":"c9.883","gcamValue":8},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.889","gcamValue":3},{"gcamCode":"c9.890","gcamValue":6},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":5},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":3},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":8},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":6},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":4},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":6},{"gcamCode":"c9.924","gcamValue":3},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":9},{"gcamCode":"c9.936","gcamValue":4},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.944","gcamValue":1},{"gcamCode":"c9.945","gcamValue":5},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":3},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":9},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":5},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.281260683760684},{"gcamCode":"v10.2","gcamValue":0.260151397515528},{"gcamCode":"v11.1","gcamValue":0.0787980809859156},{"gcamCode":"v19.1","gcamValue":5.95343283582089},{"gcamCode":"v19.2","gcamValue":5.23537313432836},{"gcamCode":"v19.3","gcamValue":5.36164179104478},{"gcamCode":"v19.4","gcamValue":5.86865671641791},{"gcamCode":"v19.5","gcamValue":5.25835820895522},{"gcamCode":"v19.6","gcamValue":5.38820895522388},{"gcamCode":"v19.7","gcamValue":5.98626865671642},{"gcamCode":"v19.8","gcamValue":5.23119402985075},{"gcamCode":"v19.9","gcamValue":5.32313432835821},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.11","gcamValue":0.5165},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.416794871794872},{"gcamCode":"v20.14","gcamValue":-0.4248},{"gcamCode":"v20.15","gcamValue":0.357607142857143},{"gcamCode":"v20.16","gcamValue":-0.3374},{"gcamCode":"v20.3","gcamValue":0.5365},{"gcamCode":"v20.5","gcamValue":0.5365},{"gcamCode":"v20.7","gcamValue":0.5365},{"gcamCode":"v20.9","gcamValue":0.566},{"gcamCode":"v21.1","gcamValue":5.44708737864078},{"gcamCode":"v26.1","gcamValue":0.678260869565217}]https://specials-images.forbesimg.com/dam/imageserve/1145325787/640x434.jpg?fit=scale["https://specials-images.forbesimg.com/dam/imageserve/34518191/960x0.jpg?fit=scale","https://specials-images.forbesimg.com/dam/imageserve/454081424/960x0.jpg?fit=scale"][""][""][{"charLength":148,"verb":"","quote":"We are calling on them to mobilise their resources , whether through endowments , personal wealth or grant giving , to halt our ecological crisis","charOffset":1157},{"charLength":124,"verb":"","quote":"The first thing to do now is to have a look at this subject and look at how it will impact you , your family , your wealth","charOffset":1803},{"charLength":79,"verb":"","quote":"Our foundation never previously focused on climate change but I've been shocked","charOffset":2695},{"charLength":65,"verb":"","quote":"There is no aspect of our lives that xA0 ; is not being impacted","charOffset":4323}][{"name":"Getty Images","charOffset":30},{"name":"Chris Rapley","charOffset":478},{"name":"Climate Science","charOffset":512},{"name":"University College London","charOffset":541},{"name":"Sir David King","charOffset":560},{"name":"Climate Alliance","charOffset":880},{"name":"Angela Terry","charOffset":907},{"name":"Environmental Funders","charOffset":1465},{"name":"David King","charOffset":1581},{"name":"Bloomberg News","charOffset":1702},{"name":"Sophie Marple","charOffset":2754},{"name":"Wellcome Trust","charOffset":3151},{"name":"Sigrid Rausing Trust","charOffset":3356},{"name":"Sigrid Rausing Trust","charOffset":3552},{"name":"Getty Images","charOffset":3654},{"name":"Sir James Ratcliffe","charOffset":3778}][{"amount":100,"amountType":"largest charitable foundations","charOffset":106},{"amount":11,"amountType":"scientists","charOffset":333},{"amount":5,"amountType":"degrees","charOffset":1830},{"amount":500,"amountType":"investment managers","charOffset":1915},{"amount":2,"amountType":"of the U K","charOffset":2946}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.forbes.com/profile/hinduja/;https://www.forbes.com/profile/james-ratcliffe/;https://www.unepfi.org/news/industries/investment/changing-course-unep-fi-and-twenty-institutional-investors-launch-new-guidance-for-implementing-tcfd/</PAGE_LINKS><PAGE_AUTHORS>Oliver Williams</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEBallafrica.comhttps://allafrica.com/stories/201905230609.html[][]["TAX_ETHNICITY","TAX_ETHNICITY_INDIGENOUS","ETH_INDIGINOUS","ECON_TAXATION","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_TAX","EPU_CATS_TAXES","ECON_STOCKMARKET","TAX_FNCACT","TAX_FNCACT_CHAIRMAN","TAX_ECON_PRICE","EPU_ECONOMY_HISTORIC","WB_165_AIR_TRANSPORT","WB_135_TRANSPORT","WB_164_MODES_OF_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_167_PORTS","UNGP_FORESTS_RIVERS_OCEANS","ENV_OIL","EPU_ECONOMY","PROTEST"][{"theme":"ECON_STOCKMARKET","charOffset":443},{"theme":"PROTEST","charOffset":2355},{"theme":"EPU_ECONOMY","charOffset":2196},{"theme":"TAX_FNCACT_CHAIRMAN","charOffset":873},{"theme":"TAX_FNCACT_CHAIRMAN","charOffset":2211},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1278},{"theme":"ECON_TAXATION","charOffset":172},{"theme":"ECON_TAXATION","charOffset":300},{"theme":"USPEC_POLICY1","charOffset":172},{"theme":"USPEC_POLICY1","charOffset":300},{"theme":"EPU_POLICY_TAX","charOffset":172},{"theme":"EPU_POLICY_TAX","charOffset":300},{"theme":"EPU_CATS_TAXES","charOffset":172},{"theme":"EPU_CATS_TAXES","charOffset":300},{"theme":"ENV_OIL","charOffset":2145},{"theme":"WB_165_AIR_TRANSPORT","charOffset":1797},{"theme":"WB_135_TRANSPORT","charOffset":1797},{"theme":"WB_164_MODES_OF_TRANSPORT","charOffset":1797},{"theme":"TAX_ECON_PRICE","charOffset":1138},{"theme":"TAX_ETHNICITY_INDIGENOUS","charOffset":104},{"theme":"ETH_INDIGINOUS","charOffset":104},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1899},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1872},{"theme":"WB_167_PORTS","charOffset":1872}][{"geoType":"WORLDCITY","geoName":"Lagos, Lagos, Nigeria","countryCode":"NI","adm1Code":"NI05","adm2Code":"","geoPoint":{"latitude":6.45306,"longitude":3.39583},"featureId":"-2017355"},{"geoType":"WORLDCITY","geoName":"Port Harcourt, Rivers, Nigeria","countryCode":"NI","adm1Code":"NI50","adm2Code":"","geoPoint":{"latitude":4.78917,"longitude":6.99861},"featureId":"-2025046"},{"geoType":"COUNTRY","geoName":"Nigeria","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},{"geoType":"WORLDSTATE","geoName":"Rivers State, Rivers, Nigeria","countryCode":"NI","adm1Code":"NI50","adm2Code":"","geoPoint":{"latitude":4.75,"longitude":6.83333},"featureId":"-2025387"}][{"location":{"geoType":"WORLDSTATE","geoName":"Rivers State, Rivers, Nigeria","countryCode":"NI","adm1Code":"NI50","adm2Code":"23058","geoPoint":{"latitude":4.75,"longitude":6.83333},"featureId":"-2025387"},"charOffset":1905},{"location":{"geoType":"COUNTRY","geoName":"Nigeria","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":1006},{"location":{"geoType":"COUNTRY","geoName":"Nigeria","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":1651},{"location":{"geoType":"COUNTRY","geoName":"Nigeria","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":1890},{"location":{"geoType":"COUNTRY","geoName":"Nigeria","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":1914},{"location":{"geoType":"COUNTRY","geoName":"Nigerian","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":437},{"location":{"geoType":"COUNTRY","geoName":"Nigerian","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":1586},{"location":{"geoType":"COUNTRY","geoName":"Nigerian","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},"charOffset":2188},{"location":{"geoType":"WORLDCITY","geoName":"Port Harcourt, Rivers, Nigeria","countryCode":"NI","adm1Code":"NI50","adm2Code":"191389","geoPoint":{"latitude":4.78917,"longitude":6.99861},"featureId":"-2025046"},"charOffset":1881},{"location":{"geoType":"WORLDCITY","geoName":"Lagos, Lagos, Nigeria","countryCode":"NI","adm1Code":"NI05","adm2Code":"191416","geoPoint":{"latitude":6.45306,"longitude":3.39583},"featureId":"-2017355"},"charOffset":997}]["aderemi makanjuola"][{"person":"Aderemi Makanjuola","charOffset":915}]["nigerian national petroleum corporation","nigerian stock exchange","port harcourt","nigeria petroleum development company","management team","caverton offshore support group plc"][{"organisation":"Nigerian National Petroleum Corporation","charOffset":1617},{"organisation":"Nigerian Stock Exchange","charOffset":452},{"organisation":"Port Harcourt","charOffset":1881},{"organisation":"Nigeria Petroleum Development Company","charOffset":1681},{"organisation":"Management Team","charOffset":2031},{"organisation":"Caverton Offshore Support Group Plc","charOffset":80}]{"tone":4.347826,"positiveScore":4.830918,"negativeScore":0.4830918,"polarity":5.3140097,"activityReferenceDensity":18.599033,"selfGroupReferenceDensity":0.4830918,"wordCount":377}[{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":481},{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":878}][{"gcamCode":"wc","gcamValue":377},{"gcamCode":"c1.2","gcamValue":4},{"gcamCode":"c12.1","gcamValue":17},{"gcamCode":"c12.10","gcamValue":37},{"gcamCode":"c12.12","gcamValue":7},{"gcamCode":"c12.13","gcamValue":11},{"gcamCode":"c12.14","gcamValue":19},{"gcamCode":"c12.3","gcamValue":4},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":13},{"gcamCode":"c12.7","gcamValue":11},{"gcamCode":"c12.8","gcamValue":12},{"gcamCode":"c12.9","gcamValue":30},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c14.1","gcamValue":20},{"gcamCode":"c14.10","gcamValue":10},{"gcamCode":"c14.11","gcamValue":35},{"gcamCode":"c14.2","gcamValue":16},{"gcamCode":"c14.3","gcamValue":23},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":25},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":13},{"gcamCode":"c14.9","gcamValue":6},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.160","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.228","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.77","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":12},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.102","gcamValue":4},{"gcamCode":"c16.106","gcamValue":7},{"gcamCode":"c16.109","gcamValue":12},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":33},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":6},{"gcamCode":"c16.114","gcamValue":16},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":10},{"gcamCode":"c16.117","gcamValue":12},{"gcamCode":"c16.118","gcamValue":12},{"gcamCode":"c16.12","gcamValue":24},{"gcamCode":"c16.120","gcamValue":16},{"gcamCode":"c16.121","gcamValue":26},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.125","gcamValue":20},{"gcamCode":"c16.126","gcamValue":19},{"gcamCode":"c16.127","gcamValue":28},{"gcamCode":"c16.128","gcamValue":7},{"gcamCode":"c16.129","gcamValue":43},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":11},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":27},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":6},{"gcamCode":"c16.140","gcamValue":5},{"gcamCode":"c16.145","gcamValue":20},{"gcamCode":"c16.146","gcamValue":26},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":6},{"gcamCode":"c16.153","gcamValue":11},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.159","gcamValue":25},{"gcamCode":"c16.16","gcamValue":11},{"gcamCode":"c16.161","gcamValue":19},{"gcamCode":"c16.162","gcamValue":11},{"gcamCode":"c16.163","gcamValue":18},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":4},{"gcamCode":"c16.2","gcamValue":25},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":4},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.26","gcamValue":41},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":5},{"gcamCode":"c16.3","gcamValue":6},{"gcamCode":"c16.31","gcamValue":17},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":35},{"gcamCode":"c16.34","gcamValue":3},{"gcamCode":"c16.35","gcamValue":10},{"gcamCode":"c16.36","gcamValue":7},{"gcamCode":"c16.37","gcamValue":33},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.4","gcamValue":14},{"gcamCode":"c16.41","gcamValue":9},{"gcamCode":"c16.45","gcamValue":6},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":79},{"gcamCode":"c16.48","gcamValue":11},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":28},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":29},{"gcamCode":"c16.57","gcamValue":165},{"gcamCode":"c16.58","gcamValue":13},{"gcamCode":"c16.6","gcamValue":27},{"gcamCode":"c16.60","gcamValue":11},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":7},{"gcamCode":"c16.63","gcamValue":13},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":9},{"gcamCode":"c16.66","gcamValue":7},{"gcamCode":"c16.68","gcamValue":12},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":14},{"gcamCode":"c16.70","gcamValue":21},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":8},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":33},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":46},{"gcamCode":"c16.88","gcamValue":33},{"gcamCode":"c16.89","gcamValue":11},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":16},{"gcamCode":"c16.91","gcamValue":16},{"gcamCode":"c16.92","gcamValue":29},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":30},{"gcamCode":"c16.95","gcamValue":21},{"gcamCode":"c16.96","gcamValue":29},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":27},{"gcamCode":"c16.99","gcamValue":4},{"gcamCode":"c17.1","gcamValue":104},{"gcamCode":"c17.10","gcamValue":32},{"gcamCode":"c17.11","gcamValue":49},{"gcamCode":"c17.12","gcamValue":12},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":31},{"gcamCode":"c17.16","gcamValue":10},{"gcamCode":"c17.18","gcamValue":5},{"gcamCode":"c17.19","gcamValue":15},{"gcamCode":"c17.2","gcamValue":9},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":24},{"gcamCode":"c17.23","gcamValue":13},{"gcamCode":"c17.24","gcamValue":38},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":25},{"gcamCode":"c17.28","gcamValue":13},{"gcamCode":"c17.29","gcamValue":19},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":4},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.32","gcamValue":15},{"gcamCode":"c17.33","gcamValue":17},{"gcamCode":"c17.34","gcamValue":8},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":12},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.39","gcamValue":4},{"gcamCode":"c17.4","gcamValue":84},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":10},{"gcamCode":"c17.43","gcamValue":13},{"gcamCode":"c17.5","gcamValue":70},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":26},{"gcamCode":"c17.8","gcamValue":36},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.172","gcamValue":1},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.213","gcamValue":2},{"gcamCode":"c18.239","gcamValue":1},{"gcamCode":"c18.3","gcamValue":1},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.59","gcamValue":2},{"gcamCode":"c2.1","gcamValue":16},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":15},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":43},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.114","gcamValue":6},{"gcamCode":"c2.116","gcamValue":5},{"gcamCode":"c2.119","gcamValue":103},{"gcamCode":"c2.12","gcamValue":6},{"gcamCode":"c2.121","gcamValue":18},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":10},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":22},{"gcamCode":"c2.128","gcamValue":5},{"gcamCode":"c2.129","gcamValue":16},{"gcamCode":"c2.13","gcamValue":1},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":3},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":25},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.143","gcamValue":21},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":81},{"gcamCode":"c2.148","gcamValue":15},{"gcamCode":"c2.15","gcamValue":19},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":9},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":40},{"gcamCode":"c2.156","gcamValue":11},{"gcamCode":"c2.157","gcamValue":34},{"gcamCode":"c2.158","gcamValue":19},{"gcamCode":"c2.159","gcamValue":8},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.173","gcamValue":4},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":11},{"gcamCode":"c2.179","gcamValue":11},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":9},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":10},{"gcamCode":"c2.185","gcamValue":59},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":8},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":7},{"gcamCode":"c2.193","gcamValue":26},{"gcamCode":"c2.195","gcamValue":49},{"gcamCode":"c2.196","gcamValue":5},{"gcamCode":"c2.197","gcamValue":12},{"gcamCode":"c2.198","gcamValue":31},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.200","gcamValue":5},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":13},{"gcamCode":"c2.204","gcamValue":29},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":19},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":18},{"gcamCode":"c2.217","gcamValue":7},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":17},{"gcamCode":"c2.222","gcamValue":11},{"gcamCode":"c2.223","gcamValue":31},{"gcamCode":"c2.224","gcamValue":3},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":10},{"gcamCode":"c2.23","gcamValue":22},{"gcamCode":"c2.25","gcamValue":18},{"gcamCode":"c2.26","gcamValue":15},{"gcamCode":"c2.27","gcamValue":15},{"gcamCode":"c2.28","gcamValue":7},{"gcamCode":"c2.30","gcamValue":10},{"gcamCode":"c2.31","gcamValue":12},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":18},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":50},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":13},{"gcamCode":"c2.45","gcamValue":40},{"gcamCode":"c2.46","gcamValue":15},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":9},{"gcamCode":"c2.5","gcamValue":3},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":10},{"gcamCode":"c2.54","gcamValue":12},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":32},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.60","gcamValue":4},{"gcamCode":"c2.62","gcamValue":10},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.65","gcamValue":7},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":4},{"gcamCode":"c2.74","gcamValue":4},{"gcamCode":"c2.75","gcamValue":35},{"gcamCode":"c2.76","gcamValue":244},{"gcamCode":"c2.77","gcamValue":32},{"gcamCode":"c2.78","gcamValue":45},{"gcamCode":"c2.79","gcamValue":3},{"gcamCode":"c2.80","gcamValue":35},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":12},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":12},{"gcamCode":"c2.87","gcamValue":11},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":9},{"gcamCode":"c2.95","gcamValue":60},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":4},{"gcamCode":"c2.98","gcamValue":11},{"gcamCode":"c2.99","gcamValue":1},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.5","gcamValue":7},{"gcamCode":"c3.1","gcamValue":5},{"gcamCode":"c3.2","gcamValue":34},{"gcamCode":"c35.1","gcamValue":11},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.11","gcamValue":6},{"gcamCode":"c35.12","gcamValue":6},{"gcamCode":"c35.13","gcamValue":2},{"gcamCode":"c35.14","gcamValue":10},{"gcamCode":"c35.15","gcamValue":12},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.25","gcamValue":5},{"gcamCode":"c35.29","gcamValue":2},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":33},{"gcamCode":"c35.32","gcamValue":22},{"gcamCode":"c35.33","gcamValue":12},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.6","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":10},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":22},{"gcamCode":"c39.34","gcamValue":3},{"gcamCode":"c39.36","gcamValue":9},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.38","gcamValue":3},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":20},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":12},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.1","gcamValue":4},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.16","gcamValue":4},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.8","gcamValue":4},{"gcamCode":"c41.1","gcamValue":26},{"gcamCode":"c5.10","gcamValue":32},{"gcamCode":"c5.11","gcamValue":9},{"gcamCode":"c5.12","gcamValue":61},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":3},{"gcamCode":"c5.3","gcamValue":2},{"gcamCode":"c5.30","gcamValue":22},{"gcamCode":"c5.35","gcamValue":20},{"gcamCode":"c5.36","gcamValue":21},{"gcamCode":"c5.4","gcamValue":24},{"gcamCode":"c5.40","gcamValue":16},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":75},{"gcamCode":"c5.47","gcamValue":8},{"gcamCode":"c5.48","gcamValue":2},{"gcamCode":"c5.49","gcamValue":11},{"gcamCode":"c5.50","gcamValue":16},{"gcamCode":"c5.51","gcamValue":10},{"gcamCode":"c5.52","gcamValue":19},{"gcamCode":"c5.53","gcamValue":37},{"gcamCode":"c5.54","gcamValue":15},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.6","gcamValue":10},{"gcamCode":"c5.60","gcamValue":3},{"gcamCode":"c5.61","gcamValue":18},{"gcamCode":"c5.62","gcamValue":149},{"gcamCode":"c5.7","gcamValue":15},{"gcamCode":"c5.8","gcamValue":33},{"gcamCode":"c5.9","gcamValue":20},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.4","gcamValue":5},{"gcamCode":"c6.5","gcamValue":6},{"gcamCode":"c7.1","gcamValue":7},{"gcamCode":"c7.2","gcamValue":28},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.37","gcamValue":6},{"gcamCode":"c8.38","gcamValue":15},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.40","gcamValue":4},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":21},{"gcamCode":"c8.43","gcamValue":11},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":9},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":12},{"gcamCode":"c9.113","gcamValue":8},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":2},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":7},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.145","gcamValue":9},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.157","gcamValue":4},{"gcamCode":"c9.158","gcamValue":7},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":6},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":5},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":5},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.2","gcamValue":3},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":5},{"gcamCode":"c9.204","gcamValue":3},{"gcamCode":"c9.205","gcamValue":6},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":6},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":4},{"gcamCode":"c9.224","gcamValue":6},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":2},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.323","gcamValue":2},{"gcamCode":"c9.33","gcamValue":6},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":4},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.337","gcamValue":2},{"gcamCode":"c9.34","gcamValue":3},{"gcamCode":"c9.342","gcamValue":1},{"gcamCode":"c9.343","gcamValue":1},{"gcamCode":"c9.344","gcamValue":1},{"gcamCode":"c9.348","gcamValue":1},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":5},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.362","gcamValue":1},{"gcamCode":"c9.365","gcamValue":1},{"gcamCode":"c9.366","gcamValue":3},{"gcamCode":"c9.37","gcamValue":9},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.38","gcamValue":2},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":8},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.400","gcamValue":5},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":3},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.458","gcamValue":2},{"gcamCode":"c9.46","gcamValue":8},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":4},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.487","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.5","gcamValue":3},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.505","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":9},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.528","gcamValue":7},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":9},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.620","gcamValue":2},{"gcamCode":"c9.621","gcamValue":2},{"gcamCode":"c9.624","gcamValue":6},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":7},{"gcamCode":"c9.630","gcamValue":7},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":6},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":7},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":5},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":8},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":7},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":4},{"gcamCode":"c9.665","gcamValue":4},{"gcamCode":"c9.667","gcamValue":5},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.671","gcamValue":4},{"gcamCode":"c9.672","gcamValue":4},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":7},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.690","gcamValue":3},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":8},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":7},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.726","gcamValue":10},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.740","gcamValue":15},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":2},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.76","gcamValue":10},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":7},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.795","gcamValue":2},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.801","gcamValue":3},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":3},{"gcamCode":"c9.805","gcamValue":2},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.810","gcamValue":4},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.818","gcamValue":3},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":4},{"gcamCode":"c9.829","gcamValue":4},{"gcamCode":"c9.83","gcamValue":10},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":3},{"gcamCode":"c9.833","gcamValue":5},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.845","gcamValue":3},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.849","gcamValue":6},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":8},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.882","gcamValue":2},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.896","gcamValue":5},{"gcamCode":"c9.899","gcamValue":6},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.900","gcamValue":3},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.914","gcamValue":3},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.924","gcamValue":3},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.930","gcamValue":4},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.941","gcamValue":3},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.967","gcamValue":2},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":7},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.979","gcamValue":2},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.306970404984424},{"gcamCode":"v10.2","gcamValue":0.219578947368421},{"gcamCode":"v11.1","gcamValue":0.0913849791666667},{"gcamCode":"v19.1","gcamValue":5.89967741935484},{"gcamCode":"v19.2","gcamValue":5.13064516129032},{"gcamCode":"v19.3","gcamValue":5.30322580645161},{"gcamCode":"v19.4","gcamValue":5.8558064516129},{"gcamCode":"v19.5","gcamValue":5.24225806451613},{"gcamCode":"v19.6","gcamValue":5.48935483870968},{"gcamCode":"v19.7","gcamValue":5.94548387096774},{"gcamCode":"v19.8","gcamValue":5.07612903225806},{"gcamCode":"v19.9","gcamValue":5.12225806451613},{"gcamCode":"v20.1","gcamValue":0.500666666666667},{"gcamCode":"v20.11","gcamValue":0.6147},{"gcamCode":"v20.13","gcamValue":0.438806451612903},{"gcamCode":"v20.14","gcamValue":-0.304},{"gcamCode":"v20.15","gcamValue":0.35611320754717},{"gcamCode":"v20.16","gcamValue":-0.277},{"gcamCode":"v20.3","gcamValue":0.5896},{"gcamCode":"v20.5","gcamValue":0.658},{"gcamCode":"v20.7","gcamValue":0.681},{"gcamCode":"v20.9","gcamValue":0.627444444444444},{"gcamCode":"v21.1","gcamValue":5.43264026402641},{"gcamCode":"v26.1","gcamValue":1.74444444444444}][""][""][""][][{"name":"Caverton Offshore Support Group Plc","charOffset":108},{"name":"Profit After Tax","charOffset":206},{"name":"Profit Before Tax","charOffset":344},{"name":"Nigerian Stock Exchange","charOffset":508},{"name":"Caverton Offshore","charOffset":1012},{"name":"Aderemi Makanjuola","charOffset":1036},{"name":"Nigerian National Petroleum Corporation","charOffset":1761},{"name":"Nigeria Petroleum Development Company","charOffset":1836},{"name":"Port Harcourt","charOffset":2051},{"name":"Management Team","charOffset":2187}][{"amount":30000000000,"amountType":"against N2 62 billion","charOffset":182},{"amount":62000000000,"amountType":"posted","charOffset":204}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Helen Oji</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBbusinessghana.comhttp://www.businessghana.com/site/news/business/188017/First-Atlantic-Bank-sets-records-straight-on-redundancy-exercise[{"countType":"AFFECT","count":11,"objectType":"","location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"}},{"countType":"AFFECT","count":53,"objectType":"","location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"}}][{"count":{"countType":"AFFECT","count":11,"objectType":"","location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"}},"charOffset":2556},{"count":{"countType":"AFFECT","count":53,"objectType":"","location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"}},"charOffset":2610}]["TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_ACCRA","TAX_FNCACT","TAX_FNCACT_CHIEF","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_OFFICER","TAX_FNCACT_OFFICER","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2473_DIPLOMACY_AND_NEGOTIATIONS","WB_939_NEGOTIATION","WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","WB_936_ALTERNATIVE_DISPUTE_RESOLUTION","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","WB_843_DISPUTE_RESOLUTION","WB_2471_PEACEKEEPING","UNGP_FORESTS_RIVERS_OCEANS","AFFECT","TAX_FNCACT_WORKERS","WB_135_TRANSPORT","TAX_FNCACT_OFFICIAL","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","WB_841_JUSTICE_SYSTEM_ADMINISTRATION","WB_1211_HUMAN_RESOURCES","TRANSPARENCY","NEGOTIATIONS","TAX_FNCACT_CONSULTANT","APPOINTMENT","TAX_FNCACT_EMPLOYEE","GENERAL_HEALTH","MEDICAL","CRISISLEX_C03_WELLBEING_HEALTH","TAX_FNCACT_EMPLOYEES","WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","CRISISLEX_T11_UPDATESSYMPATHY"][{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":5208},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":2186},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":5163},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":5163},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":5163},{"theme":"GENERAL_HEALTH","charOffset":4045},{"theme":"MEDICAL","charOffset":4045},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":4045},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":702},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2313},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":612},{"theme":"WB_840_JUSTICE","charOffset":612},{"theme":"WB_2473_DIPLOMACY_AND_NEGOTIATIONS","charOffset":612},{"theme":"WB_939_NEGOTIATION","charOffset":612},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":612},{"theme":"WB_936_ALTERNATIVE_DISPUTE_RESOLUTION","charOffset":612},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":612},{"theme":"WB_843_DISPUTE_RESOLUTION","charOffset":612},{"theme":"WB_2471_PEACEKEEPING","charOffset":612},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":4133},{"theme":"AFFECT","charOffset":888},{"theme":"AFFECT","charOffset":1174},{"theme":"AFFECT","charOffset":1543},{"theme":"AFFECT","charOffset":1967},{"theme":"AFFECT","charOffset":2098},{"theme":"AFFECT","charOffset":2124},{"theme":"AFFECT","charOffset":2466},{"theme":"AFFECT","charOffset":2591},{"theme":"AFFECT","charOffset":2655},{"theme":"AFFECT","charOffset":2685},{"theme":"AFFECT","charOffset":2868},{"theme":"AFFECT","charOffset":3225},{"theme":"AFFECT","charOffset":3445},{"theme":"AFFECT","charOffset":4123},{"theme":"APPOINTMENT","charOffset":3491},{"theme":"TAX_FNCACT_CHIEF","charOffset":89},{"theme":"TAX_FNCACT_CHIEF","charOffset":448},{"theme":"TAX_WORLDLANGUAGES_ACCRA","charOffset":46},{"theme":"TAX_WORLDLANGUAGES_ACCRA","charOffset":500},{"theme":"TAX_FNCACT_CONSULTANT","charOffset":3412},{"theme":"NEGOTIATIONS","charOffset":3313},{"theme":"NEGOTIATIONS","charOffset":3663},{"theme":"TRANSPARENCY","charOffset":3300},{"theme":"TRANSPARENCY","charOffset":4354},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":4037},{"theme":"TAX_FNCACT_WORKERS","charOffset":1182},{"theme":"TAX_FNCACT_WORKERS","charOffset":1551},{"theme":"TAX_FNCACT_WORKERS","charOffset":1975},{"theme":"TAX_FNCACT_WORKERS","charOffset":2106},{"theme":"TAX_FNCACT_WORKERS","charOffset":2132},{"theme":"TAX_FNCACT_WORKERS","charOffset":2448},{"theme":"TAX_FNCACT_WORKERS","charOffset":2605},{"theme":"TAX_FNCACT_WORKERS","charOffset":2663},{"theme":"TAX_FNCACT_WORKERS","charOffset":2693},{"theme":"TAX_FNCACT_WORKERS","charOffset":2824},{"theme":"TAX_FNCACT_WORKERS","charOffset":2926},{"theme":"TAX_FNCACT_WORKERS","charOffset":3059},{"theme":"TAX_FNCACT_WORKERS","charOffset":3233},{"theme":"TAX_FNCACT_WORKERS","charOffset":3453},{"theme":"WB_841_JUSTICE_SYSTEM_ADMINISTRATION","charOffset":2195},{"theme":"WB_1211_HUMAN_RESOURCES","charOffset":2195},{"theme":"TAX_MILITARY_TITLE_OFFICER","charOffset":104},{"theme":"TAX_MILITARY_TITLE_OFFICER","charOffset":463},{"theme":"TAX_FNCACT_OFFICER","charOffset":104},{"theme":"TAX_FNCACT_OFFICER","charOffset":463},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":2075},{"theme":"WB_135_TRANSPORT","charOffset":1330},{"theme":"WB_135_TRANSPORT","charOffset":1761},{"theme":"WB_135_TRANSPORT","charOffset":3857}][{"geoType":"WORLDCITY","geoName":"Accra, Greater Accra, Ghana","countryCode":"GH","adm1Code":"GH01","adm2Code":"","geoPoint":{"latitude":5.55,"longitude":-0.216667},"featureId":"-2067935"},{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"}][{"location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"},"charOffset":53},{"location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"},"charOffset":472},{"location":{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"},"charOffset":507},{"location":{"geoType":"WORLDCITY","geoName":"Accra, Greater Accra, Ghana","countryCode":"GH","adm1Code":"GH01","adm2Code":"190655","geoPoint":{"latitude":5.55,"longitude":-0.216667},"featureId":"-2067935"},"charOffset":46},{"location":{"geoType":"WORLDCITY","geoName":"Accra, Greater Accra, Ghana","countryCode":"GH","adm1Code":"GH01","adm2Code":"190655","geoPoint":{"latitude":5.55,"longitude":-0.216667},"featureId":"-2067935"},"charOffset":500}]["john esiape","senyo adjabeng"][{"person":"John Esiape","charOffset":2411},{"person":"John Esiape","charOffset":4288},{"person":"John Esiape","charOffset":4396},{"person":"John Esiape","charOffset":4507},{"person":"John Esiape","charOffset":4683},{"person":"Senyo Adjabeng","charOffset":3389},{"person":"Senyo Adjabeng","charOffset":3687},{"person":"Senyo Adjabeng","charOffset":4249}]["human resource department","national labour commission","first atlantic bank","labour department"][{"organisation":"Human Resource Department","charOffset":2206},{"organisation":"National Labour Commission","charOffset":138},{"organisation":"National Labour Commission","charOffset":4867},{"organisation":"First Atlantic Bank","charOffset":37},{"organisation":"First Atlantic Bank","charOffset":592},{"organisation":"First Atlantic Bank","charOffset":5252},{"organisation":"Labour Department","charOffset":492}]{"tone":-0.44893378,"positiveScore":2.9180696,"negativeScore":3.3670034,"polarity":6.285073,"activityReferenceDensity":22.895622,"selfGroupReferenceDensity":3.25477,"wordCount":802}[{"dateResolution":1,"month":0,"day":0,"year":2003,"charOffset":1038}][{"gcamCode":"wc","gcamValue":802},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":45},{"gcamCode":"c12.10","gcamValue":78},{"gcamCode":"c12.11","gcamValue":1},{"gcamCode":"c12.12","gcamValue":22},{"gcamCode":"c12.13","gcamValue":26},{"gcamCode":"c12.14","gcamValue":36},{"gcamCode":"c12.3","gcamValue":11},{"gcamCode":"c12.4","gcamValue":19},{"gcamCode":"c12.5","gcamValue":17},{"gcamCode":"c12.6","gcamValue":1},{"gcamCode":"c12.7","gcamValue":32},{"gcamCode":"c12.8","gcamValue":45},{"gcamCode":"c12.9","gcamValue":47},{"gcamCode":"c13.1","gcamValue":10},{"gcamCode":"c13.12","gcamValue":2},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c14.1","gcamValue":35},{"gcamCode":"c14.10","gcamValue":50},{"gcamCode":"c14.11","gcamValue":43},{"gcamCode":"c14.2","gcamValue":41},{"gcamCode":"c14.3","gcamValue":64},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":87},{"gcamCode":"c14.6","gcamValue":4},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":6},{"gcamCode":"c15.103","gcamValue":4},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.12","gcamValue":2},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.156","gcamValue":2},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.176","gcamValue":3},{"gcamCode":"c15.197","gcamValue":3},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.205","gcamValue":2},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.211","gcamValue":1},{"gcamCode":"c15.219","gcamValue":2},{"gcamCode":"c15.225","gcamValue":2},{"gcamCode":"c15.226","gcamValue":2},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.24","gcamValue":2},{"gcamCode":"c15.248","gcamValue":2},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.261","gcamValue":2},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":3},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":3},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":22},{"gcamCode":"c16.103","gcamValue":6},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":29},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":51},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":126},{"gcamCode":"c16.111","gcamValue":7},{"gcamCode":"c16.113","gcamValue":9},{"gcamCode":"c16.114","gcamValue":48},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":22},{"gcamCode":"c16.117","gcamValue":31},{"gcamCode":"c16.118","gcamValue":41},{"gcamCode":"c16.12","gcamValue":84},{"gcamCode":"c16.120","gcamValue":37},{"gcamCode":"c16.121","gcamValue":44},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.124","gcamValue":4},{"gcamCode":"c16.125","gcamValue":41},{"gcamCode":"c16.126","gcamValue":47},{"gcamCode":"c16.127","gcamValue":57},{"gcamCode":"c16.128","gcamValue":12},{"gcamCode":"c16.129","gcamValue":98},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":33},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":75},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":49},{"gcamCode":"c16.139","gcamValue":27},{"gcamCode":"c16.140","gcamValue":28},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":39},{"gcamCode":"c16.146","gcamValue":55},{"gcamCode":"c16.147","gcamValue":3},{"gcamCode":"c16.151","gcamValue":4},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":34},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":5},{"gcamCode":"c16.157","gcamValue":18},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":66},{"gcamCode":"c16.16","gcamValue":15},{"gcamCode":"c16.161","gcamValue":59},{"gcamCode":"c16.162","gcamValue":24},{"gcamCode":"c16.163","gcamValue":45},{"gcamCode":"c16.164","gcamValue":28},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.17","gcamValue":4},{"gcamCode":"c16.19","gcamValue":24},{"gcamCode":"c16.2","gcamValue":48},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":18},{"gcamCode":"c16.22","gcamValue":16},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":92},{"gcamCode":"c16.27","gcamValue":6},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":33},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":63},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":39},{"gcamCode":"c16.36","gcamValue":7},{"gcamCode":"c16.37","gcamValue":101},{"gcamCode":"c16.38","gcamValue":26},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":56},{"gcamCode":"c16.41","gcamValue":30},{"gcamCode":"c16.42","gcamValue":2},{"gcamCode":"c16.43","gcamValue":2},{"gcamCode":"c16.45","gcamValue":33},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":146},{"gcamCode":"c16.48","gcamValue":16},{"gcamCode":"c16.49","gcamValue":16},{"gcamCode":"c16.5","gcamValue":8},{"gcamCode":"c16.50","gcamValue":4},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":50},{"gcamCode":"c16.53","gcamValue":10},{"gcamCode":"c16.54","gcamValue":3},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":36},{"gcamCode":"c16.57","gcamValue":424},{"gcamCode":"c16.58","gcamValue":42},{"gcamCode":"c16.6","gcamValue":73},{"gcamCode":"c16.60","gcamValue":17},{"gcamCode":"c16.62","gcamValue":28},{"gcamCode":"c16.63","gcamValue":12},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":28},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":48},{"gcamCode":"c16.69","gcamValue":26},{"gcamCode":"c16.7","gcamValue":5},{"gcamCode":"c16.70","gcamValue":36},{"gcamCode":"c16.71","gcamValue":18},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.74","gcamValue":7},{"gcamCode":"c16.75","gcamValue":29},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":19},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":6},{"gcamCode":"c16.82","gcamValue":9},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":41},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":86},{"gcamCode":"c16.88","gcamValue":106},{"gcamCode":"c16.89","gcamValue":25},{"gcamCode":"c16.9","gcamValue":4},{"gcamCode":"c16.90","gcamValue":30},{"gcamCode":"c16.91","gcamValue":18},{"gcamCode":"c16.92","gcamValue":45},{"gcamCode":"c16.93","gcamValue":10},{"gcamCode":"c16.94","gcamValue":75},{"gcamCode":"c16.95","gcamValue":55},{"gcamCode":"c16.96","gcamValue":42},{"gcamCode":"c16.98","gcamValue":55},{"gcamCode":"c16.99","gcamValue":12},{"gcamCode":"c17.1","gcamValue":201},{"gcamCode":"c17.10","gcamValue":104},{"gcamCode":"c17.11","gcamValue":149},{"gcamCode":"c17.12","gcamValue":16},{"gcamCode":"c17.13","gcamValue":8},{"gcamCode":"c17.14","gcamValue":11},{"gcamCode":"c17.15","gcamValue":70},{"gcamCode":"c17.16","gcamValue":15},{"gcamCode":"c17.18","gcamValue":11},{"gcamCode":"c17.19","gcamValue":37},{"gcamCode":"c17.2","gcamValue":11},{"gcamCode":"c17.20","gcamValue":8},{"gcamCode":"c17.22","gcamValue":46},{"gcamCode":"c17.23","gcamValue":7},{"gcamCode":"c17.24","gcamValue":61},{"gcamCode":"c17.25","gcamValue":16},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":62},{"gcamCode":"c17.28","gcamValue":6},{"gcamCode":"c17.29","gcamValue":27},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":22},{"gcamCode":"c17.31","gcamValue":36},{"gcamCode":"c17.32","gcamValue":35},{"gcamCode":"c17.33","gcamValue":39},{"gcamCode":"c17.34","gcamValue":20},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":35},{"gcamCode":"c17.37","gcamValue":17},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":20},{"gcamCode":"c17.4","gcamValue":188},{"gcamCode":"c17.40","gcamValue":17},{"gcamCode":"c17.41","gcamValue":37},{"gcamCode":"c17.42","gcamValue":54},{"gcamCode":"c17.43","gcamValue":45},{"gcamCode":"c17.5","gcamValue":180},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":104},{"gcamCode":"c17.8","gcamValue":87},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.142","gcamValue":1},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.18","gcamValue":2},{"gcamCode":"c18.193","gcamValue":22},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.73","gcamValue":2},{"gcamCode":"c18.78","gcamValue":14},{"gcamCode":"c18.98","gcamValue":2},{"gcamCode":"c2.1","gcamValue":27},{"gcamCode":"c2.10","gcamValue":7},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":8},{"gcamCode":"c2.102","gcamValue":24},{"gcamCode":"c2.103","gcamValue":5},{"gcamCode":"c2.104","gcamValue":107},{"gcamCode":"c2.105","gcamValue":1},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":8},{"gcamCode":"c2.11","gcamValue":6},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.113","gcamValue":8},{"gcamCode":"c2.114","gcamValue":33},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":12},{"gcamCode":"c2.119","gcamValue":226},{"gcamCode":"c2.12","gcamValue":28},{"gcamCode":"c2.120","gcamValue":6},{"gcamCode":"c2.121","gcamValue":52},{"gcamCode":"c2.122","gcamValue":15},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.124","gcamValue":25},{"gcamCode":"c2.125","gcamValue":57},{"gcamCode":"c2.126","gcamValue":33},{"gcamCode":"c2.127","gcamValue":76},{"gcamCode":"c2.128","gcamValue":15},{"gcamCode":"c2.129","gcamValue":30},{"gcamCode":"c2.130","gcamValue":7},{"gcamCode":"c2.131","gcamValue":4},{"gcamCode":"c2.132","gcamValue":10},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":8},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":54},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":18},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":52},{"gcamCode":"c2.144","gcamValue":22},{"gcamCode":"c2.145","gcamValue":9},{"gcamCode":"c2.146","gcamValue":13},{"gcamCode":"c2.147","gcamValue":152},{"gcamCode":"c2.148","gcamValue":83},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":45},{"gcamCode":"c2.150","gcamValue":9},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":27},{"gcamCode":"c2.154","gcamValue":8},{"gcamCode":"c2.155","gcamValue":90},{"gcamCode":"c2.156","gcamValue":31},{"gcamCode":"c2.157","gcamValue":81},{"gcamCode":"c2.158","gcamValue":56},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.160","gcamValue":60},{"gcamCode":"c2.162","gcamValue":11},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.166","gcamValue":13},{"gcamCode":"c2.167","gcamValue":5},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":5},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":9},{"gcamCode":"c2.173","gcamValue":22},{"gcamCode":"c2.174","gcamValue":6},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":12},{"gcamCode":"c2.177","gcamValue":41},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":29},{"gcamCode":"c2.18","gcamValue":26},{"gcamCode":"c2.180","gcamValue":26},{"gcamCode":"c2.181","gcamValue":32},{"gcamCode":"c2.183","gcamValue":32},{"gcamCode":"c2.185","gcamValue":163},{"gcamCode":"c2.186","gcamValue":26},{"gcamCode":"c2.187","gcamValue":38},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":20},{"gcamCode":"c2.193","gcamValue":51},{"gcamCode":"c2.195","gcamValue":59},{"gcamCode":"c2.196","gcamValue":16},{"gcamCode":"c2.197","gcamValue":16},{"gcamCode":"c2.198","gcamValue":70},{"gcamCode":"c2.199","gcamValue":13},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":10},{"gcamCode":"c2.203","gcamValue":26},{"gcamCode":"c2.204","gcamValue":54},{"gcamCode":"c2.205","gcamValue":1},{"gcamCode":"c2.206","gcamValue":20},{"gcamCode":"c2.207","gcamValue":3},{"gcamCode":"c2.209","gcamValue":22},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":66},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":27},{"gcamCode":"c2.214","gcamValue":35},{"gcamCode":"c2.217","gcamValue":7},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.22","gcamValue":2},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":21},{"gcamCode":"c2.222","gcamValue":10},{"gcamCode":"c2.223","gcamValue":31},{"gcamCode":"c2.224","gcamValue":3},{"gcamCode":"c2.225","gcamValue":19},{"gcamCode":"c2.226","gcamValue":25},{"gcamCode":"c2.227","gcamValue":4},{"gcamCode":"c2.228","gcamValue":7},{"gcamCode":"c2.23","gcamValue":28},{"gcamCode":"c2.25","gcamValue":61},{"gcamCode":"c2.26","gcamValue":29},{"gcamCode":"c2.27","gcamValue":29},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.30","gcamValue":32},{"gcamCode":"c2.31","gcamValue":48},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":35},{"gcamCode":"c2.35","gcamValue":29},{"gcamCode":"c2.36","gcamValue":24},{"gcamCode":"c2.37","gcamValue":27},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":129},{"gcamCode":"c2.4","gcamValue":4},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":36},{"gcamCode":"c2.45","gcamValue":47},{"gcamCode":"c2.46","gcamValue":56},{"gcamCode":"c2.47","gcamValue":3},{"gcamCode":"c2.48","gcamValue":25},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":46},{"gcamCode":"c2.53","gcamValue":9},{"gcamCode":"c2.54","gcamValue":58},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.57","gcamValue":20},{"gcamCode":"c2.58","gcamValue":33},{"gcamCode":"c2.59","gcamValue":18},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.60","gcamValue":6},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":31},{"gcamCode":"c2.64","gcamValue":18},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.73","gcamValue":18},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":138},{"gcamCode":"c2.76","gcamValue":553},{"gcamCode":"c2.77","gcamValue":67},{"gcamCode":"c2.78","gcamValue":111},{"gcamCode":"c2.79","gcamValue":8},{"gcamCode":"c2.80","gcamValue":101},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":31},{"gcamCode":"c2.83","gcamValue":9},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":26},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":8},{"gcamCode":"c2.89","gcamValue":26},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.90","gcamValue":7},{"gcamCode":"c2.93","gcamValue":20},{"gcamCode":"c2.95","gcamValue":121},{"gcamCode":"c2.96","gcamValue":8},{"gcamCode":"c2.97","gcamValue":10},{"gcamCode":"c2.98","gcamValue":43},{"gcamCode":"c2.99","gcamValue":5},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.11","gcamValue":3},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":4},{"gcamCode":"c25.5","gcamValue":4},{"gcamCode":"c25.7","gcamValue":9},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":50},{"gcamCode":"c3.2","gcamValue":47},{"gcamCode":"c35.1","gcamValue":21},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.14","gcamValue":14},{"gcamCode":"c35.15","gcamValue":20},{"gcamCode":"c35.2","gcamValue":4},{"gcamCode":"c35.20","gcamValue":27},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.25","gcamValue":6},{"gcamCode":"c35.26","gcamValue":4},{"gcamCode":"c35.29","gcamValue":4},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":62},{"gcamCode":"c35.32","gcamValue":34},{"gcamCode":"c35.33","gcamValue":44},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":27},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":5},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.2","gcamValue":14},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":36},{"gcamCode":"c39.34","gcamValue":4},{"gcamCode":"c39.36","gcamValue":14},{"gcamCode":"c39.37","gcamValue":18},{"gcamCode":"c39.38","gcamValue":4},{"gcamCode":"c39.39","gcamValue":7},{"gcamCode":"c39.4","gcamValue":26},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":17},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c4.16","gcamValue":8},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":26},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.6","gcamValue":10},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":4},{"gcamCode":"c41.1","gcamValue":39},{"gcamCode":"c5.10","gcamValue":58},{"gcamCode":"c5.11","gcamValue":19},{"gcamCode":"c5.12","gcamValue":106},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":7},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":33},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":17},{"gcamCode":"c5.26","gcamValue":13},{"gcamCode":"c5.27","gcamValue":4},{"gcamCode":"c5.28","gcamValue":23},{"gcamCode":"c5.29","gcamValue":15},{"gcamCode":"c5.3","gcamValue":3},{"gcamCode":"c5.30","gcamValue":118},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":26},{"gcamCode":"c5.36","gcamValue":33},{"gcamCode":"c5.37","gcamValue":6},{"gcamCode":"c5.4","gcamValue":25},{"gcamCode":"c5.40","gcamValue":83},{"gcamCode":"c5.42","gcamValue":7},{"gcamCode":"c5.43","gcamValue":38},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":10},{"gcamCode":"c5.46","gcamValue":149},{"gcamCode":"c5.47","gcamValue":19},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":52},{"gcamCode":"c5.50","gcamValue":75},{"gcamCode":"c5.51","gcamValue":42},{"gcamCode":"c5.52","gcamValue":79},{"gcamCode":"c5.53","gcamValue":73},{"gcamCode":"c5.54","gcamValue":28},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":5},{"gcamCode":"c5.57","gcamValue":7},{"gcamCode":"c5.58","gcamValue":25},{"gcamCode":"c5.6","gcamValue":31},{"gcamCode":"c5.60","gcamValue":39},{"gcamCode":"c5.61","gcamValue":67},{"gcamCode":"c5.62","gcamValue":380},{"gcamCode":"c5.7","gcamValue":30},{"gcamCode":"c5.8","gcamValue":71},{"gcamCode":"c5.9","gcamValue":31},{"gcamCode":"c6.1","gcamValue":12},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":10},{"gcamCode":"c6.5","gcamValue":9},{"gcamCode":"c6.6","gcamValue":4},{"gcamCode":"c7.1","gcamValue":32},{"gcamCode":"c7.2","gcamValue":32},{"gcamCode":"c8.1","gcamValue":14},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":3},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":6},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.36","gcamValue":4},{"gcamCode":"c8.37","gcamValue":18},{"gcamCode":"c8.38","gcamValue":37},{"gcamCode":"c8.39","gcamValue":6},{"gcamCode":"c8.4","gcamValue":26},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":36},{"gcamCode":"c8.43","gcamValue":27},{"gcamCode":"c8.5","gcamValue":3},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c9.1","gcamValue":27},{"gcamCode":"c9.10","gcamValue":11},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1003","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":5},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":8},{"gcamCode":"c9.1015","gcamValue":9},{"gcamCode":"c9.1018","gcamValue":6},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":8},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":2},{"gcamCode":"c9.104","gcamValue":3},{"gcamCode":"c9.1041","gcamValue":3},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.109","gcamValue":17},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":20},{"gcamCode":"c9.113","gcamValue":9},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":10},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":5},{"gcamCode":"c9.120","gcamValue":3},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.123","gcamValue":6},{"gcamCode":"c9.124","gcamValue":6},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":38},{"gcamCode":"c9.13","gcamValue":1},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":10},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":8},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.154","gcamValue":6},{"gcamCode":"c9.155","gcamValue":6},{"gcamCode":"c9.158","gcamValue":14},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":8},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.177","gcamValue":11},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.18","gcamValue":8},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":3},{"gcamCode":"c9.182","gcamValue":11},{"gcamCode":"c9.184","gcamValue":7},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.191","gcamValue":6},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":11},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.20","gcamValue":5},{"gcamCode":"c9.200","gcamValue":6},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":5},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":4},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":7},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.220","gcamValue":3},{"gcamCode":"c9.224","gcamValue":7},{"gcamCode":"c9.227","gcamValue":8},{"gcamCode":"c9.228","gcamValue":1},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.230","gcamValue":4},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":3},{"gcamCode":"c9.25","gcamValue":4},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":13},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.273","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":7},{"gcamCode":"c9.280","gcamValue":4},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.291","gcamValue":5},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":5},{"gcamCode":"c9.3","gcamValue":32},{"gcamCode":"c9.300","gcamValue":2},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":3},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":4},{"gcamCode":"c9.308","gcamValue":5},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.313","gcamValue":16},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.326","gcamValue":6},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.33","gcamValue":15},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":26},{"gcamCode":"c9.352","gcamValue":8},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.37","gcamValue":2},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.375","gcamValue":1},{"gcamCode":"c9.38","gcamValue":3},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.384","gcamValue":5},{"gcamCode":"c9.386","gcamValue":2},{"gcamCode":"c9.387","gcamValue":2},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.39","gcamValue":17},{"gcamCode":"c9.393","gcamValue":2},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.412","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":22},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.43","gcamValue":3},{"gcamCode":"c9.430","gcamValue":8},{"gcamCode":"c9.432","gcamValue":3},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":13},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.442","gcamValue":2},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.448","gcamValue":2},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.461","gcamValue":2},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.467","gcamValue":6},{"gcamCode":"c9.468","gcamValue":7},{"gcamCode":"c9.47","gcamValue":5},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":8},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":6},{"gcamCode":"c9.479","gcamValue":7},{"gcamCode":"c9.48","gcamValue":11},{"gcamCode":"c9.480","gcamValue":9},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":13},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":6},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.501","gcamValue":6},{"gcamCode":"c9.502","gcamValue":4},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":9},{"gcamCode":"c9.513","gcamValue":17},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.52","gcamValue":1},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.523","gcamValue":6},{"gcamCode":"c9.528","gcamValue":6},{"gcamCode":"c9.53","gcamValue":12},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":7},{"gcamCode":"c9.540","gcamValue":9},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":3},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":15},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":7},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":7},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":3},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":4},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.575","gcamValue":7},{"gcamCode":"c9.576","gcamValue":6},{"gcamCode":"c9.579","gcamValue":34},{"gcamCode":"c9.581","gcamValue":2},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":3},{"gcamCode":"c9.586","gcamValue":3},{"gcamCode":"c9.594","gcamValue":3},{"gcamCode":"c9.598","gcamValue":16},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":5},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.604","gcamValue":25},{"gcamCode":"c9.608","gcamValue":14},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.615","gcamValue":5},{"gcamCode":"c9.616","gcamValue":11},{"gcamCode":"c9.617","gcamValue":2},{"gcamCode":"c9.618","gcamValue":5},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":5},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":3},{"gcamCode":"c9.622","gcamValue":2},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":5},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.636","gcamValue":4},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":6},{"gcamCode":"c9.641","gcamValue":3},{"gcamCode":"c9.642","gcamValue":12},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":4},{"gcamCode":"c9.648","gcamValue":11},{"gcamCode":"c9.650","gcamValue":6},{"gcamCode":"c9.652","gcamValue":3},{"gcamCode":"c9.653","gcamValue":51},{"gcamCode":"c9.654","gcamValue":4},{"gcamCode":"c9.655","gcamValue":4},{"gcamCode":"c9.660","gcamValue":13},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":9},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.667","gcamValue":21},{"gcamCode":"c9.669","gcamValue":28},{"gcamCode":"c9.67","gcamValue":5},{"gcamCode":"c9.670","gcamValue":21},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":16},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":10},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.679","gcamValue":5},{"gcamCode":"c9.680","gcamValue":4},{"gcamCode":"c9.681","gcamValue":11},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":7},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":6},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.695","gcamValue":8},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.698","gcamValue":6},{"gcamCode":"c9.70","gcamValue":6},{"gcamCode":"c9.701","gcamValue":21},{"gcamCode":"c9.704","gcamValue":11},{"gcamCode":"c9.705","gcamValue":9},{"gcamCode":"c9.708","gcamValue":11},{"gcamCode":"c9.71","gcamValue":9},{"gcamCode":"c9.710","gcamValue":6},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":15},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":6},{"gcamCode":"c9.721","gcamValue":3},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":7},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":34},{"gcamCode":"c9.727","gcamValue":6},{"gcamCode":"c9.730","gcamValue":27},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":12},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":7},{"gcamCode":"c9.741","gcamValue":11},{"gcamCode":"c9.742","gcamValue":4},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":9},{"gcamCode":"c9.746","gcamValue":6},{"gcamCode":"c9.748","gcamValue":20},{"gcamCode":"c9.749","gcamValue":2},{"gcamCode":"c9.75","gcamValue":5},{"gcamCode":"c9.750","gcamValue":4},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":10},{"gcamCode":"c9.755","gcamValue":4},{"gcamCode":"c9.757","gcamValue":7},{"gcamCode":"c9.758","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":15},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":26},{"gcamCode":"c9.765","gcamValue":5},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":42},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":6},{"gcamCode":"c9.773","gcamValue":4},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":9},{"gcamCode":"c9.776","gcamValue":9},{"gcamCode":"c9.777","gcamValue":4},{"gcamCode":"c9.779","gcamValue":8},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.789","gcamValue":3},{"gcamCode":"c9.79","gcamValue":5},{"gcamCode":"c9.790","gcamValue":10},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":3},{"gcamCode":"c9.795","gcamValue":4},{"gcamCode":"c9.798","gcamValue":6},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.803","gcamValue":3},{"gcamCode":"c9.806","gcamValue":6},{"gcamCode":"c9.808","gcamValue":6},{"gcamCode":"c9.812","gcamValue":4},{"gcamCode":"c9.814","gcamValue":4},{"gcamCode":"c9.816","gcamValue":15},{"gcamCode":"c9.817","gcamValue":4},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":4},{"gcamCode":"c9.82","gcamValue":8},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":3},{"gcamCode":"c9.828","gcamValue":3},{"gcamCode":"c9.83","gcamValue":10},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.834","gcamValue":15},{"gcamCode":"c9.836","gcamValue":8},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":4},{"gcamCode":"c9.841","gcamValue":11},{"gcamCode":"c9.842","gcamValue":7},{"gcamCode":"c9.843","gcamValue":4},{"gcamCode":"c9.844","gcamValue":5},{"gcamCode":"c9.846","gcamValue":6},{"gcamCode":"c9.849","gcamValue":3},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.851","gcamValue":5},{"gcamCode":"c9.853","gcamValue":5},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.857","gcamValue":17},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.859","gcamValue":2},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":14},{"gcamCode":"c9.861","gcamValue":6},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":26},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.867","gcamValue":16},{"gcamCode":"c9.868","gcamValue":30},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.876","gcamValue":1},{"gcamCode":"c9.877","gcamValue":3},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":6},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.889","gcamValue":14},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.893","gcamValue":14},{"gcamCode":"c9.896","gcamValue":4},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.899","gcamValue":7},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":4},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":5},{"gcamCode":"c9.911","gcamValue":12},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":17},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":27},{"gcamCode":"c9.93","gcamValue":2},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":6},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":20},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.940","gcamValue":14},{"gcamCode":"c9.942","gcamValue":4},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.955","gcamValue":11},{"gcamCode":"c9.956","gcamValue":2},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.958","gcamValue":2},{"gcamCode":"c9.96","gcamValue":11},{"gcamCode":"c9.962","gcamValue":6},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.97","gcamValue":2},{"gcamCode":"c9.972","gcamValue":9},{"gcamCode":"c9.973","gcamValue":4},{"gcamCode":"c9.978","gcamValue":7},{"gcamCode":"c9.980","gcamValue":10},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":4},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.992","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.263396672771673},{"gcamCode":"v10.2","gcamValue":0.228445121951219},{"gcamCode":"v11.1","gcamValue":0.0798478385416668},{"gcamCode":"v19.1","gcamValue":5.96027027027027},{"gcamCode":"v19.2","gcamValue":5.29554054054054},{"gcamCode":"v19.3","gcamValue":5.45513513513514},{"gcamCode":"v19.4","gcamValue":5.85986486486487},{"gcamCode":"v19.5","gcamValue":5.20351351351351},{"gcamCode":"v19.6","gcamValue":5.35472972972973},{"gcamCode":"v19.7","gcamValue":6.06540540540541},{"gcamCode":"v19.8","gcamValue":5.42662162162162},{"gcamCode":"v19.9","gcamValue":5.55135135135135},{"gcamCode":"v20.1","gcamValue":0.4136},{"gcamCode":"v20.10","gcamValue":-0.75},{"gcamCode":"v20.11","gcamValue":0.533636363636364},{"gcamCode":"v20.12","gcamValue":-0.75},{"gcamCode":"v20.13","gcamValue":0.435},{"gcamCode":"v20.14","gcamValue":-0.3968},{"gcamCode":"v20.15","gcamValue":0.369188888888889},{"gcamCode":"v20.16","gcamValue":-0.331555555555556},{"gcamCode":"v20.3","gcamValue":0.4136},{"gcamCode":"v20.4","gcamValue":-0.75},{"gcamCode":"v20.5","gcamValue":0.4136},{"gcamCode":"v20.6","gcamValue":-0.75},{"gcamCode":"v20.7","gcamValue":0.469666666666667},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.567272727272727},{"gcamCode":"v21.1","gcamValue":5.42821480406386},{"gcamCode":"v26.1","gcamValue":0.535526315789474}][""][""][""][][{"name":"First Atlantic Bank","charOffset":38},{"name":"National Labour Commission","charOffset":135},{"name":"Chief Labour Officer","charOffset":466},{"name":"Labour Matters Advisor","charOffset":693},{"name":"Labour Act","charOffset":945},{"name":"Human Resource","charOffset":2207},{"name":"Labour Matters Advisor","charOffset":2412},{"name":"John Esiape","charOffset":2433},{"name":"Senyo Adjabeng","charOffset":3490},{"name":"Senyo Adjabeng","charOffset":3795},{"name":"Senyo Adjabeng","charOffset":4443},{"name":"John Esiape","charOffset":4606},{"name":"John Esiape","charOffset":4729},{"name":"John Esiape","charOffset":4941},{"name":"National Labour Commission","charOffset":5127},{"name":"Atlantic Bank","charOffset":5520}][{"amount":100,"amountType":"dismissed staff petitioned the","charOffset":150}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBjournalstar.comhttps://journalstar.com/news/national/the-latest-missouri-governor-describes-storm-devastation/article_a76cae4e-013f-56bc-a000-54b2c6056c2e.html[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"KILL","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},{"countType":"CRISISLEX_T03_DEAD","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"KILL","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},"charOffset":1828},{"count":{"countType":"CRISISLEX_T03_DEAD","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},"charOffset":1828},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2154},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":2388},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":2388},{"count":{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},"charOffset":2787}]["NATURAL_DISASTER","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_CRISISLEXREC","CRISISLEX_T03_DEAD","TAX_FNCACT","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","AFFECT","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","LEADER","TAX_FNCACT_GOVERNOR","LEGISLATION","EPU_POLICY_LAW","SECURITY_SERVICES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","WB_328_FINANCIAL_INTEGRITY","WB_1014_CRIMINAL_JUSTICE","WB_2082_LAW_ENFORCEMENT","MARITIME_INCIDENT","MARITIME","MANMADE_DISASTER_IMPLIED","CRISISLEX_T11_UPDATESSYMPATHY","MEDIA_MSM","TAX_FNCACT_OFFICIALS","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","WB_168_ROADS_AND_HIGHWAYS","WB_135_TRANSPORT","WB_1809_HIGHWAYS","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_137_WATER","NATURAL_DISASTER_TORNADO","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","UNGP_CRIME_VIOLENCE","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY"][{"theme":"NATURAL_DISASTER_FLOODING","charOffset":1331},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":1331},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":1382},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":1559},{"theme":"WB_135_TRANSPORT","charOffset":1382},{"theme":"WB_135_TRANSPORT","charOffset":1559},{"theme":"WB_1809_HIGHWAYS","charOffset":1382},{"theme":"WB_1809_HIGHWAYS","charOffset":1559},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1382},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1559},{"theme":"LEADER","charOffset":465},{"theme":"LEADER","charOffset":2550},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":465},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":2550},{"theme":"MEDIA_MSM","charOffset":1182},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":361},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":756},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":361},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":756},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2076},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":2076},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":75},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":2119},{"theme":"KILL","charOffset":294},{"theme":"KILL","charOffset":638},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":294},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":638},{"theme":"CRISISLEX_T03_DEAD","charOffset":294},{"theme":"CRISISLEX_T03_DEAD","charOffset":638},{"theme":"MARITIME_INCIDENT","charOffset":777},{"theme":"MARITIME_INCIDENT","charOffset":1345},{"theme":"MARITIME_INCIDENT","charOffset":1405},{"theme":"MARITIME","charOffset":777},{"theme":"MARITIME","charOffset":1345},{"theme":"MARITIME","charOffset":1405},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":777},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1345},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1405},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":2443},{"theme":"WB_137_WATER","charOffset":1887},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2052},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2305},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2052},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2305},{"theme":"TAX_FNCACT_POLICE","charOffset":2720},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2720},{"theme":"SECURITY_SERVICES","charOffset":546},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":546},{"theme":"WB_840_JUSTICE","charOffset":546},{"theme":"WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","charOffset":546},{"theme":"WB_328_FINANCIAL_INTEGRITY","charOffset":546},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":546},{"theme":"WB_2082_LAW_ENFORCEMENT","charOffset":546},{"theme":"AFFECT","charOffset":403},{"theme":"LEGISLATION","charOffset":534},{"theme":"EPU_POLICY_LAW","charOffset":534},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":1040},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":1295},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":403}][{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":1252},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":1618},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":1747},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":200},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":706},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2088},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2429},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":836},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1374},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1482},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":2521},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":669},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":2484},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":2328},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":2698},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":29},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":115},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":684},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1267},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1633},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1762},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2343},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2499},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2536},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2713}]["mike parson","david williams"][{"person":"Mike Parson","charOffset":166},{"person":"Mike Parson","charOffset":2400},{"person":"David Williams","charOffset":2739}]["jefferson city police","national weather service","oklahoma department of transportation","united states"][{"organisation":"National Weather Service","charOffset":2258},{"organisation":"Oklahoma Department Of Transportation","charOffset":1511},{"organisation":"United States","charOffset":29},{"organisation":"United States","charOffset":115},{"organisation":"United States","charOffset":684},{"organisation":"United States","charOffset":1267},{"organisation":"United States","charOffset":1633},{"organisation":"United States","charOffset":1762},{"organisation":"United States","charOffset":2343},{"organisation":"United States","charOffset":2499},{"organisation":"United States","charOffset":2536},{"organisation":"United States","charOffset":2713}]{"tone":-5.580357,"positiveScore":2.9017856,"negativeScore":8.482142,"polarity":11.383928,"activityReferenceDensity":21.875,"selfGroupReferenceDensity":0.22321428,"wordCount":424}[{"dateResolution":1,"month":0,"day":0,"year":2002,"charOffset":1618}][{"gcamCode":"wc","gcamValue":424},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":26},{"gcamCode":"c12.10","gcamValue":32},{"gcamCode":"c12.12","gcamValue":18},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":10},{"gcamCode":"c12.3","gcamValue":14},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":27},{"gcamCode":"c12.8","gcamValue":6},{"gcamCode":"c12.9","gcamValue":22},{"gcamCode":"c13.10","gcamValue":4},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c13.3","gcamValue":3},{"gcamCode":"c13.7","gcamValue":2},{"gcamCode":"c14.1","gcamValue":22},{"gcamCode":"c14.10","gcamValue":18},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":20},{"gcamCode":"c14.3","gcamValue":24},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":54},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":4},{"gcamCode":"c15.160","gcamValue":1},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.245","gcamValue":1},{"gcamCode":"c15.260","gcamValue":2},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.55","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":20},{"gcamCode":"c16.101","gcamValue":8},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":8},{"gcamCode":"c16.106","gcamValue":13},{"gcamCode":"c16.109","gcamValue":17},{"gcamCode":"c16.11","gcamValue":9},{"gcamCode":"c16.110","gcamValue":63},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":29},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":17},{"gcamCode":"c16.117","gcamValue":15},{"gcamCode":"c16.118","gcamValue":22},{"gcamCode":"c16.12","gcamValue":32},{"gcamCode":"c16.120","gcamValue":19},{"gcamCode":"c16.121","gcamValue":43},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":26},{"gcamCode":"c16.126","gcamValue":25},{"gcamCode":"c16.127","gcamValue":31},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":54},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":15},{"gcamCode":"c16.134","gcamValue":54},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":7},{"gcamCode":"c16.139","gcamValue":16},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":24},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":26},{"gcamCode":"c16.146","gcamValue":19},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":24},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":5},{"gcamCode":"c16.159","gcamValue":39},{"gcamCode":"c16.16","gcamValue":6},{"gcamCode":"c16.161","gcamValue":50},{"gcamCode":"c16.162","gcamValue":33},{"gcamCode":"c16.163","gcamValue":41},{"gcamCode":"c16.164","gcamValue":7},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":7},{"gcamCode":"c16.2","gcamValue":38},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":43},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":3},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":25},{"gcamCode":"c16.32","gcamValue":8},{"gcamCode":"c16.33","gcamValue":31},{"gcamCode":"c16.35","gcamValue":20},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":42},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":32},{"gcamCode":"c16.41","gcamValue":15},{"gcamCode":"c16.42","gcamValue":4},{"gcamCode":"c16.45","gcamValue":15},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":54},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":7},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":5},{"gcamCode":"c16.52","gcamValue":33},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.55","gcamValue":7},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":242},{"gcamCode":"c16.58","gcamValue":22},{"gcamCode":"c16.6","gcamValue":49},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.62","gcamValue":14},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.65","gcamValue":5},{"gcamCode":"c16.66","gcamValue":6},{"gcamCode":"c16.68","gcamValue":12},{"gcamCode":"c16.69","gcamValue":15},{"gcamCode":"c16.7","gcamValue":7},{"gcamCode":"c16.70","gcamValue":44},{"gcamCode":"c16.71","gcamValue":12},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":13},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":22},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":12},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":35},{"gcamCode":"c16.88","gcamValue":67},{"gcamCode":"c16.89","gcamValue":11},{"gcamCode":"c16.9","gcamValue":8},{"gcamCode":"c16.90","gcamValue":10},{"gcamCode":"c16.91","gcamValue":16},{"gcamCode":"c16.92","gcamValue":34},{"gcamCode":"c16.93","gcamValue":13},{"gcamCode":"c16.94","gcamValue":27},{"gcamCode":"c16.95","gcamValue":45},{"gcamCode":"c16.96","gcamValue":10},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":26},{"gcamCode":"c16.99","gcamValue":5},{"gcamCode":"c17.1","gcamValue":125},{"gcamCode":"c17.10","gcamValue":26},{"gcamCode":"c17.11","gcamValue":55},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":7},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":35},{"gcamCode":"c17.16","gcamValue":23},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":10},{"gcamCode":"c17.19","gcamValue":19},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":9},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":12},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":33},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":44},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.30","gcamValue":10},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":5},{"gcamCode":"c17.33","gcamValue":19},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":27},{"gcamCode":"c17.37","gcamValue":7},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":21},{"gcamCode":"c17.4","gcamValue":95},{"gcamCode":"c17.40","gcamValue":6},{"gcamCode":"c17.41","gcamValue":11},{"gcamCode":"c17.42","gcamValue":18},{"gcamCode":"c17.43","gcamValue":31},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":81},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":67},{"gcamCode":"c17.8","gcamValue":27},{"gcamCode":"c17.9","gcamValue":11},{"gcamCode":"c18.1","gcamValue":7},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":2},{"gcamCode":"c18.156","gcamValue":7},{"gcamCode":"c18.165","gcamValue":8},{"gcamCode":"c18.193","gcamValue":6},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.71","gcamValue":2},{"gcamCode":"c18.78","gcamValue":2},{"gcamCode":"c2.1","gcamValue":13},{"gcamCode":"c2.10","gcamValue":4},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":6},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":66},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":22},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":17},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":116},{"gcamCode":"c2.12","gcamValue":13},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":20},{"gcamCode":"c2.122","gcamValue":8},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":19},{"gcamCode":"c2.126","gcamValue":17},{"gcamCode":"c2.127","gcamValue":43},{"gcamCode":"c2.128","gcamValue":37},{"gcamCode":"c2.129","gcamValue":36},{"gcamCode":"c2.130","gcamValue":4},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":5},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":30},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":26},{"gcamCode":"c2.144","gcamValue":8},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":64},{"gcamCode":"c2.148","gcamValue":25},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":9},{"gcamCode":"c2.154","gcamValue":13},{"gcamCode":"c2.155","gcamValue":35},{"gcamCode":"c2.156","gcamValue":17},{"gcamCode":"c2.157","gcamValue":26},{"gcamCode":"c2.158","gcamValue":28},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.16","gcamValue":4},{"gcamCode":"c2.160","gcamValue":22},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":11},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":5},{"gcamCode":"c2.177","gcamValue":18},{"gcamCode":"c2.178","gcamValue":6},{"gcamCode":"c2.179","gcamValue":14},{"gcamCode":"c2.18","gcamValue":13},{"gcamCode":"c2.180","gcamValue":13},{"gcamCode":"c2.181","gcamValue":19},{"gcamCode":"c2.183","gcamValue":19},{"gcamCode":"c2.185","gcamValue":91},{"gcamCode":"c2.186","gcamValue":6},{"gcamCode":"c2.187","gcamValue":22},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.190","gcamValue":4},{"gcamCode":"c2.191","gcamValue":2},{"gcamCode":"c2.192","gcamValue":15},{"gcamCode":"c2.193","gcamValue":38},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":44},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":50},{"gcamCode":"c2.199","gcamValue":8},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":12},{"gcamCode":"c2.204","gcamValue":32},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":9},{"gcamCode":"c2.208","gcamValue":10},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.210","gcamValue":29},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":14},{"gcamCode":"c2.214","gcamValue":9},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":6},{"gcamCode":"c2.220","gcamValue":8},{"gcamCode":"c2.221","gcamValue":10},{"gcamCode":"c2.223","gcamValue":10},{"gcamCode":"c2.225","gcamValue":15},{"gcamCode":"c2.226","gcamValue":8},{"gcamCode":"c2.228","gcamValue":4},{"gcamCode":"c2.23","gcamValue":32},{"gcamCode":"c2.24","gcamValue":2},{"gcamCode":"c2.25","gcamValue":25},{"gcamCode":"c2.26","gcamValue":19},{"gcamCode":"c2.27","gcamValue":19},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.30","gcamValue":20},{"gcamCode":"c2.31","gcamValue":14},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":35},{"gcamCode":"c2.35","gcamValue":5},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":3},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":67},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":15},{"gcamCode":"c2.45","gcamValue":29},{"gcamCode":"c2.46","gcamValue":40},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.50","gcamValue":15},{"gcamCode":"c2.52","gcamValue":30},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":38},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":5},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.61","gcamValue":5},{"gcamCode":"c2.62","gcamValue":17},{"gcamCode":"c2.64","gcamValue":13},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":6},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.73","gcamValue":7},{"gcamCode":"c2.75","gcamValue":58},{"gcamCode":"c2.76","gcamValue":277},{"gcamCode":"c2.77","gcamValue":36},{"gcamCode":"c2.78","gcamValue":55},{"gcamCode":"c2.79","gcamValue":10},{"gcamCode":"c2.80","gcamValue":43},{"gcamCode":"c2.81","gcamValue":6},{"gcamCode":"c2.82","gcamValue":10},{"gcamCode":"c2.83","gcamValue":2},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":10},{"gcamCode":"c2.87","gcamValue":7},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":10},{"gcamCode":"c2.9","gcamValue":17},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":11},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":65},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":28},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.5","gcamValue":12},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":42},{"gcamCode":"c3.2","gcamValue":32},{"gcamCode":"c35.1","gcamValue":5},{"gcamCode":"c35.10","gcamValue":3},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":8},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":15},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.25","gcamValue":10},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":14},{"gcamCode":"c35.32","gcamValue":14},{"gcamCode":"c35.33","gcamValue":28},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":3},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":20},{"gcamCode":"c39.30","gcamValue":3},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":19},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":17},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.22","gcamValue":3},{"gcamCode":"c4.23","gcamValue":13},{"gcamCode":"c40.3","gcamValue":4},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":25},{"gcamCode":"c5.10","gcamValue":47},{"gcamCode":"c5.11","gcamValue":12},{"gcamCode":"c5.12","gcamValue":80},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":8},{"gcamCode":"c5.2","gcamValue":8},{"gcamCode":"c5.21","gcamValue":10},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":6},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":5},{"gcamCode":"c5.27","gcamValue":2},{"gcamCode":"c5.28","gcamValue":5},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":28},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.34","gcamValue":13},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":23},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":30},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":6},{"gcamCode":"c5.46","gcamValue":60},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.49","gcamValue":27},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":43},{"gcamCode":"c5.51","gcamValue":22},{"gcamCode":"c5.52","gcamValue":45},{"gcamCode":"c5.53","gcamValue":44},{"gcamCode":"c5.54","gcamValue":10},{"gcamCode":"c5.55","gcamValue":4},{"gcamCode":"c5.57","gcamValue":4},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":16},{"gcamCode":"c5.60","gcamValue":9},{"gcamCode":"c5.61","gcamValue":19},{"gcamCode":"c5.62","gcamValue":160},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":13},{"gcamCode":"c5.9","gcamValue":19},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":21},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":36},{"gcamCode":"c7.2","gcamValue":19},{"gcamCode":"c8.10","gcamValue":9},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":4},{"gcamCode":"c8.17","gcamValue":3},{"gcamCode":"c8.18","gcamValue":7},{"gcamCode":"c8.2","gcamValue":13},{"gcamCode":"c8.22","gcamValue":6},{"gcamCode":"c8.23","gcamValue":16},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":6},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":13},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":15},{"gcamCode":"c8.43","gcamValue":13},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":15},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1012","gcamValue":4},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":7},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":8},{"gcamCode":"c9.109","gcamValue":8},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":5},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":11},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":22},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.138","gcamValue":5},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":9},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.177","gcamValue":5},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":10},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":7},{"gcamCode":"c9.198","gcamValue":9},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.215","gcamValue":5},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":14},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.316","gcamValue":5},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.322","gcamValue":3},{"gcamCode":"c9.324","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":5},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.348","gcamValue":3},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.358","gcamValue":6},{"gcamCode":"c9.359","gcamValue":6},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.38","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":13},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":3},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.438","gcamValue":3},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.449","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.454","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":5},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.489","gcamValue":6},{"gcamCode":"c9.49","gcamValue":11},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.50","gcamValue":1},{"gcamCode":"c9.501","gcamValue":4},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":7},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":7},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.519","gcamValue":8},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":3},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":3},{"gcamCode":"c9.535","gcamValue":3},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":7},{"gcamCode":"c9.543","gcamValue":5},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":4},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":10},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":3},{"gcamCode":"c9.556","gcamValue":5},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":12},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":6},{"gcamCode":"c9.579","gcamValue":14},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":6},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.642","gcamValue":7},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":18},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":9},{"gcamCode":"c9.660","gcamValue":6},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.667","gcamValue":3},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":7},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.692","gcamValue":8},{"gcamCode":"c9.693","gcamValue":5},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.695","gcamValue":1},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":4},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":5},{"gcamCode":"c9.724","gcamValue":15},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":14},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":13},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":5},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":10},{"gcamCode":"c9.744","gcamValue":4},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":14},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.766","gcamValue":15},{"gcamCode":"c9.767","gcamValue":19},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.783","gcamValue":2},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":5},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.83","gcamValue":13},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":4},{"gcamCode":"c9.839","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.851","gcamValue":2},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":5},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":15},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":14},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.871","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":8},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":5},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.908","gcamValue":5},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.920","gcamValue":4},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.938","gcamValue":6},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.948","gcamValue":3},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":8},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.991","gcamValue":2},{"gcamCode":"c9.994","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.259912312240332},{"gcamCode":"v10.2","gcamValue":0.299500843644544},{"gcamCode":"v11.1","gcamValue":0.019426463963964},{"gcamCode":"v19.1","gcamValue":5.72481481481482},{"gcamCode":"v19.2","gcamValue":5.245},{"gcamCode":"v19.3","gcamValue":5.15351851851852},{"gcamCode":"v19.4","gcamValue":5.71240740740741},{"gcamCode":"v19.5","gcamValue":4.92092592592593},{"gcamCode":"v19.6","gcamValue":5.11722222222222},{"gcamCode":"v19.7","gcamValue":5.73574074074074},{"gcamCode":"v19.8","gcamValue":5.53222222222222},{"gcamCode":"v19.9","gcamValue":5.14240740740741},{"gcamCode":"v20.1","gcamValue":0.4555},{"gcamCode":"v20.10","gcamValue":-0.64575},{"gcamCode":"v20.11","gcamValue":0.6162},{"gcamCode":"v20.12","gcamValue":-0.597166666666667},{"gcamCode":"v20.13","gcamValue":0.457170731707317},{"gcamCode":"v20.14","gcamValue":-0.520777777777778},{"gcamCode":"v20.15","gcamValue":0.396448275862069},{"gcamCode":"v20.16","gcamValue":-0.385388888888889},{"gcamCode":"v20.3","gcamValue":0.5894},{"gcamCode":"v20.5","gcamValue":0.688857142857143},{"gcamCode":"v20.7","gcamValue":0.6965},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.658454545454546},{"gcamCode":"v21.1","gcamValue":5.27078804347827},{"gcamCode":"v26.1","gcamValue":-0.255102040816326}]https://bloximages.chicago2.vip.townnews.com/journalstar.com/content/tncms/assets/v3/editorial/d/ea/deac223f-16e2-5cf1-b95d-4a5827f4d16d/5ce677206bee2.image.jpg?crop=1662%2C935%2C0%2C156[""][""]["https://youtube.com/user/JournalStarNews/","https://youtube.com/liedcenter"][][{"name":"United States","charOffset":100},{"name":"Mike Parson","charOffset":160},{"name":"Golden City","charOffset":674},{"name":"Arkansas River","charOffset":819},{"name":"Webbers Falls","charOffset":1416},{"name":"Oklahoma Highway Patrol","charOffset":1544},{"name":"Oklahoma Department","charOffset":1652},{"name":"Arkansas River","charOffset":1766},{"name":"Webbers Falls","charOffset":1783},{"name":"Memorial Day","charOffset":1819},{"name":"Webbers Falls","charOffset":1904},{"name":"National Weather Service","charOffset":2460},{"name":"Jefferson City","charOffset":2535},{"name":"Mike Parson","charOffset":2591},{"name":"Public Safety","charOffset":2639},{"name":"Golden City","charOffset":2680},{"name":"City Police","charOffset":2870},{"name":"David Williams","charOffset":2889}][{"amount":3,"amountType":"fatalities have been reported","charOffset":228},{"amount":3,"amountType":"fatalities were reported near","charOffset":521},{"amount":40,"amountType":"bridge","charOffset":1258},{"amount":40,"amountType":"bridge pier at Webbers","charOffset":1403},{"amount":14,"amountType":"people died after their","charOffset":1489},{"amount":3,"amountType":"deaths","charOffset":1765},{"amount":12,"amountType":"of people","charOffset":1788},{"amount":3,"amountType":"people died","charOffset":1969},{"amount":20,"amountType":"people have been rescued","charOffset":2249}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://journalstar.com/news/national/the-latest-missouri-governor-describes-storm-devastation/article_a76cae4e-013f-56bc-a000-54b2c6056c2e.html;https://journalstar.com/users/admin/leefalcon/activate/</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190523112900</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://journalstar.com/news/national/the-latest-missouri-governor-describes-storm-devastation/article_a76cae4e-013f-56bc-a000-54b2c6056c2e.amp.html</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBlowellsun.comhttp://www.lowellsun.com/breakingnews/ci_32647760/3-deaths-missouri-tornado-strikes-state-capital[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":670},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":904},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":904},{"count":{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":1303}]["NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","EPU_CATS_MIGRATION_FEAR_FEAR","KILL","CRISISLEX_T03_DEAD","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","UNGP_CRIME_VIOLENCE","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","AFFECT"][{"theme":"AFFECT","charOffset":1331},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":959},{"theme":"LEADER","charOffset":1066},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":1066},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":339},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":129},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":287},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":347},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":568},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":821},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":129},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":287},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":347},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":568},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":821},{"theme":"CRISISLEX_O01_WEATHER","charOffset":129},{"theme":"CRISISLEX_O01_WEATHER","charOffset":287},{"theme":"CRISISLEX_O01_WEATHER","charOffset":347},{"theme":"CRISISLEX_O01_WEATHER","charOffset":568},{"theme":"CRISISLEX_O01_WEATHER","charOffset":821},{"theme":"SECURITY_SERVICES","charOffset":1236},{"theme":"TAX_FNCACT_POLICE","charOffset":1236},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1236},{"theme":"KILL","charOffset":434},{"theme":"CRISISLEX_T03_DEAD","charOffset":434},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":592},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":592},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":635}][{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":88},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":246},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":404},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":604},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":945},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":1037},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":1000},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":64},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":222},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":378},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":532},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":844},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":1214}]["mike parson","david williams"][{"person":"Mike Parson","charOffset":916},{"person":"David Williams","charOffset":1255}]["jefferson city police","national weather service"][{"organisation":"National Weather Service","charOffset":478},{"organisation":"National Weather Service","charOffset":774}]{"tone":-5.6074767,"positiveScore":2.3364487,"negativeScore":7.9439254,"polarity":10.280374,"activityReferenceDensity":23.364487,"selfGroupReferenceDensity":0,"wordCount":216}[][{"gcamCode":"wc","gcamValue":216},{"gcamCode":"c1.3","gcamValue":2},{"gcamCode":"c12.1","gcamValue":7},{"gcamCode":"c12.10","gcamValue":19},{"gcamCode":"c12.12","gcamValue":11},{"gcamCode":"c12.13","gcamValue":6},{"gcamCode":"c12.14","gcamValue":5},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":13},{"gcamCode":"c12.8","gcamValue":7},{"gcamCode":"c12.9","gcamValue":8},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c13.2","gcamValue":2},{"gcamCode":"c14.1","gcamValue":11},{"gcamCode":"c14.10","gcamValue":8},{"gcamCode":"c14.11","gcamValue":15},{"gcamCode":"c14.2","gcamValue":9},{"gcamCode":"c14.3","gcamValue":9},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":24},{"gcamCode":"c14.7","gcamValue":5},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":16},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":7},{"gcamCode":"c16.109","gcamValue":10},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":32},{"gcamCode":"c16.111","gcamValue":6},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":15},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":11},{"gcamCode":"c16.117","gcamValue":7},{"gcamCode":"c16.118","gcamValue":16},{"gcamCode":"c16.12","gcamValue":15},{"gcamCode":"c16.120","gcamValue":11},{"gcamCode":"c16.121","gcamValue":25},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":6},{"gcamCode":"c16.126","gcamValue":9},{"gcamCode":"c16.127","gcamValue":13},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":28},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":9},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":33},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":7},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":14},{"gcamCode":"c16.145","gcamValue":13},{"gcamCode":"c16.146","gcamValue":13},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":9},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":15},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":30},{"gcamCode":"c16.162","gcamValue":23},{"gcamCode":"c16.163","gcamValue":15},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.19","gcamValue":6},{"gcamCode":"c16.2","gcamValue":21},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":27},{"gcamCode":"c16.31","gcamValue":17},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":19},{"gcamCode":"c16.35","gcamValue":12},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":20},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":14},{"gcamCode":"c16.41","gcamValue":8},{"gcamCode":"c16.45","gcamValue":9},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":22},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.52","gcamValue":17},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":8},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":126},{"gcamCode":"c16.58","gcamValue":11},{"gcamCode":"c16.6","gcamValue":27},{"gcamCode":"c16.62","gcamValue":7},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":3},{"gcamCode":"c16.68","gcamValue":6},{"gcamCode":"c16.69","gcamValue":7},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":22},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.75","gcamValue":7},{"gcamCode":"c16.78","gcamValue":17},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":9},{"gcamCode":"c16.87","gcamValue":14},{"gcamCode":"c16.88","gcamValue":32},{"gcamCode":"c16.89","gcamValue":4},{"gcamCode":"c16.9","gcamValue":8},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":22},{"gcamCode":"c16.93","gcamValue":14},{"gcamCode":"c16.94","gcamValue":12},{"gcamCode":"c16.95","gcamValue":27},{"gcamCode":"c16.96","gcamValue":3},{"gcamCode":"c16.98","gcamValue":11},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":81},{"gcamCode":"c17.10","gcamValue":17},{"gcamCode":"c17.11","gcamValue":21},{"gcamCode":"c17.12","gcamValue":8},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.15","gcamValue":24},{"gcamCode":"c17.16","gcamValue":20},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":13},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":11},{"gcamCode":"c17.21","gcamValue":4},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.24","gcamValue":18},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":27},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.33","gcamValue":7},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":13},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.39","gcamValue":6},{"gcamCode":"c17.4","gcamValue":56},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":13},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":36},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":35},{"gcamCode":"c17.8","gcamValue":9},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.1","gcamValue":5},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.156","gcamValue":11},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":34},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":16},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":15},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":56},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":14},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":7},{"gcamCode":"c2.126","gcamValue":9},{"gcamCode":"c2.127","gcamValue":19},{"gcamCode":"c2.128","gcamValue":18},{"gcamCode":"c2.129","gcamValue":21},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":14},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":16},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":35},{"gcamCode":"c2.148","gcamValue":9},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.150","gcamValue":6},{"gcamCode":"c2.153","gcamValue":5},{"gcamCode":"c2.154","gcamValue":7},{"gcamCode":"c2.155","gcamValue":12},{"gcamCode":"c2.156","gcamValue":7},{"gcamCode":"c2.157","gcamValue":12},{"gcamCode":"c2.158","gcamValue":17},{"gcamCode":"c2.159","gcamValue":3},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.172","gcamValue":10},{"gcamCode":"c2.173","gcamValue":4},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.179","gcamValue":8},{"gcamCode":"c2.18","gcamValue":7},{"gcamCode":"c2.180","gcamValue":7},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":35},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":12},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":4},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":16},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":19},{"gcamCode":"c2.199","gcamValue":4},{"gcamCode":"c2.20","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":6},{"gcamCode":"c2.204","gcamValue":12},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.210","gcamValue":13},{"gcamCode":"c2.213","gcamValue":10},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":10},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.23","gcamValue":14},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":13},{"gcamCode":"c2.26","gcamValue":8},{"gcamCode":"c2.27","gcamValue":8},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":7},{"gcamCode":"c2.31","gcamValue":8},{"gcamCode":"c2.34","gcamValue":11},{"gcamCode":"c2.35","gcamValue":3},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":29},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":18},{"gcamCode":"c2.46","gcamValue":19},{"gcamCode":"c2.50","gcamValue":4},{"gcamCode":"c2.51","gcamValue":2},{"gcamCode":"c2.52","gcamValue":17},{"gcamCode":"c2.54","gcamValue":20},{"gcamCode":"c2.57","gcamValue":4},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":7},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":19},{"gcamCode":"c2.76","gcamValue":140},{"gcamCode":"c2.77","gcamValue":18},{"gcamCode":"c2.78","gcamValue":26},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.80","gcamValue":14},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":4},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":7},{"gcamCode":"c2.9","gcamValue":13},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.95","gcamValue":31},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":10},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c25.5","gcamValue":10},{"gcamCode":"c3.1","gcamValue":25},{"gcamCode":"c3.2","gcamValue":17},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.31","gcamValue":5},{"gcamCode":"c35.32","gcamValue":7},{"gcamCode":"c35.33","gcamValue":12},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":5},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":4},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.23","gcamValue":7},{"gcamCode":"c4.5","gcamValue":2},{"gcamCode":"c40.4","gcamValue":5},{"gcamCode":"c41.1","gcamValue":7},{"gcamCode":"c5.10","gcamValue":32},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":40},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":5},{"gcamCode":"c5.21","gcamValue":5},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":11},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.34","gcamValue":6},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":9},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":13},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":31},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":12},{"gcamCode":"c5.5","gcamValue":5},{"gcamCode":"c5.50","gcamValue":19},{"gcamCode":"c5.51","gcamValue":11},{"gcamCode":"c5.52","gcamValue":19},{"gcamCode":"c5.53","gcamValue":22},{"gcamCode":"c5.54","gcamValue":5},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.6","gcamValue":9},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":7},{"gcamCode":"c5.62","gcamValue":75},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":6},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":5},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":15},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":13},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":7},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":8},{"gcamCode":"c8.43","gcamValue":4},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":7},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":4},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.128","gcamValue":11},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.163","gcamValue":4},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":5},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":12},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.244","gcamValue":5},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.254","gcamValue":2},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.322","gcamValue":5},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.348","gcamValue":3},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.359","gcamValue":10},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":8},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.465","gcamValue":4},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":8},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.535","gcamValue":2},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.555","gcamValue":2},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":8},{"gcamCode":"c9.585","gcamValue":2},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.6","gcamValue":2},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.615","gcamValue":2},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":4},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.63","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.653","gcamValue":9},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":6},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":3},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":3},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":9},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":9},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.742","gcamValue":8},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":7},{"gcamCode":"c9.766","gcamValue":14},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":4},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":5},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.910","gcamValue":2},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":5},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.266948717948718},{"gcamCode":"v10.2","gcamValue":0.286481661798117},{"gcamCode":"v11.1","gcamValue":-0.00668701680672268},{"gcamCode":"v19.1","gcamValue":5.43638888888889},{"gcamCode":"v19.2","gcamValue":5.54527777777778},{"gcamCode":"v19.3","gcamValue":5.32555555555555},{"gcamCode":"v19.4","gcamValue":5.48194444444445},{"gcamCode":"v19.5","gcamValue":5.13277777777778},{"gcamCode":"v19.6","gcamValue":5.31555555555556},{"gcamCode":"v19.7","gcamValue":5.43138888888889},{"gcamCode":"v19.8","gcamValue":5.84916666666667},{"gcamCode":"v19.9","gcamValue":5.34416666666667},{"gcamCode":"v20.1","gcamValue":0.583},{"gcamCode":"v20.10","gcamValue":-0.5625},{"gcamCode":"v20.11","gcamValue":0.5555},{"gcamCode":"v20.12","gcamValue":-0.55},{"gcamCode":"v20.13","gcamValue":0.415608695652174},{"gcamCode":"v20.14","gcamValue":-0.4765},{"gcamCode":"v20.15","gcamValue":0.374866666666667},{"gcamCode":"v20.16","gcamValue":-0.3859},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.583},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.583},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.6665},{"gcamCode":"v20.8","gcamValue":-0.521},{"gcamCode":"v20.9","gcamValue":0.6665},{"gcamCode":"v21.1","gcamValue":5.27888888888889},{"gcamCode":"v26.1","gcamValue":0.0619047619047618}]http://extras.mnginteractive.com/live/media/site105/2019/0523/20190523_044805_AP19143357322128.jpg[""][""]["https://youtube.com/embed/videoseries?list=PLfO4x88EHCLHLwh5OJQLQbei2-__tg3fl&ecver=2","https://youtube.com/channel/UC9zW2ZBbt1nO3ZwDnQDSZVQ"][][{"name":"Hidden Oaks","charOffset":29},{"name":"Jefferson City Missouri","charOffset":74},{"name":"Hidden Oaks","charOffset":198},{"name":"Jefferson City Missouri","charOffset":243},{"name":"Jefferson City","charOffset":400},{"name":"National Weather Service","charOffset":494},{"name":"National Weather Service","charOffset":799},{"name":"Jefferson City","charOffset":874},{"name":"Mike Parson","charOffset":932},{"name":"Public Safety","charOffset":980},{"name":"Golden City","charOffset":1021},{"name":"City Police","charOffset":1213},{"name":"David Williams","charOffset":1232}][{"amount":3,"amountType":"deaths","charOffset":544},{"amount":12,"amountType":"of people","charOffset":567},{"amount":3,"amountType":"people died","charOffset":748},{"amount":20,"amountType":"people have been rescued","charOffset":1028}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBthedailyjournal.comhttps://www.thedailyjournal.com/story/entertainment/2019/05/23/heres-your-south-jersey-summer-bucket-list/3744892002/[][][""][][{"geoType":"USCITY","geoName":"Williamstown, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9792,"longitude":-80.0409},"featureId":"1191490"},{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},{"geoType":"USCITY","geoName":"Springfield, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9307,"longitude":-75.3202},"featureId":"1188289"},{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},{"geoType":"USCITY","geoName":"Laurel Springs, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.3028,"longitude":-75.8739},"featureId":"2488119"},{"geoType":"USCITY","geoName":"Cherry Hill, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.7582,"longitude":-75.3093},"featureId":"1171636"},{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},{"geoType":"USCITY","geoName":"Mount Laurel, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.9345,"longitude":-75.9935},"featureId":"1181733"},{"geoType":"USCITY","geoName":"Hawaiian Islands, Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":20.7503,"longitude":-156.5},"featureId":"1905681"},{"geoType":"USCITY","geoName":"Walt Whitman House, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.9431,"longitude":-78.6756},"featureId":"2115149"},{"geoType":"USSTATE","geoName":"Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"}][{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":146},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":999},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":1201},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":9638},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":9674},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":9798},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":10400},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":10685},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":10956},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":11132},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":11081},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":7019},{"location":{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA017","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},"charOffset":7783},{"location":{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA017","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},"charOffset":15452},{"location":{"geoType":"USCITY","geoName":"Hawaiian Islands, Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"HI009","geoPoint":{"latitude":20.7503,"longitude":-156.5},"featureId":"1905681"},"charOffset":11043},{"location":{"geoType":"USSTATE","geoName":"Hawaiian, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},"charOffset":10561},{"location":{"geoType":"USSTATE","geoName":"Hawaiian, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},"charOffset":11035},{"location":{"geoType":"USCITY","geoName":"Cherry Hill, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA095","geoPoint":{"latitude":40.7582,"longitude":-75.3093},"featureId":"1171636"},"charOffset":6829},{"location":{"geoType":"USCITY","geoName":"Springfield, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA045","geoPoint":{"latitude":39.9307,"longitude":-75.3202},"featureId":"1188289"},"charOffset":14887},{"location":{"geoType":"USCITY","geoName":"Walt Whitman House, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA083","geoPoint":{"latitude":41.9431,"longitude":-78.6756},"featureId":"2115149"},"charOffset":7223},{"location":{"geoType":"USCITY","geoName":"Mount Laurel, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA079","geoPoint":{"latitude":40.9345,"longitude":-75.9935},"featureId":"1181733"},"charOffset":3167},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":4365},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":4527},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":5425},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":14846},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":6908},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":7392},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":13489},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":583},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":957},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":4606},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":5220},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":14413},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":15394},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":15584},{"location":{"geoType":"USCITY","geoName":"Laurel Springs, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA011","geoPoint":{"latitude":40.3028,"longitude":-75.8739},"featureId":"2488119"},"charOffset":6706},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":12686},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":12990},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13089},{"location":{"geoType":"USCITY","geoName":"Williamstown, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA125","geoPoint":{"latitude":39.9792,"longitude":-80.0409},"featureId":"1191490"},"charOffset":10883},{"location":{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA041","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},"charOffset":11941},{"location":{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA041","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},"charOffset":14787}]["mullica hill","tammy paolino","deborah m marko","martin luther king","jim walsh","chubby checker","anthony v coppola","joseph p smith","walt whitman","carly q romalino","kim mulford","sheri berkery","boz scaggs","rebecca king","celeste whittaker","david crosby","curtin marina"][{"person":"Mullica Hill","charOffset":14985},{"person":"Tammy Paolino","charOffset":6815},{"person":"Tammy Paolino","charOffset":14379},{"person":"Tammy Paolino","charOffset":15051},{"person":"Jim Walsh","charOffset":6618},{"person":"Chubby Checker","charOffset":9208},{"person":"Walt Whitman","charOffset":6655},{"person":"Walt Whitman","charOffset":6875},{"person":"Walt Whitman","charOffset":7052},{"person":"Walt Whitman","charOffset":7217},{"person":"Kim Mulford","charOffset":1521},{"person":"Sheri Berkery","charOffset":3133},{"person":"Sheri Berkery","charOffset":4328},{"person":"Boz Scaggs","charOffset":14154},{"person":"Rebecca King","charOffset":11716},{"person":"Celeste Whittaker","charOffset":5084},{"person":"Celeste Whittaker","charOffset":6042},{"person":"David Crosby","charOffset":13716},{"person":"Curtin Marina","charOffset":4468}]["cruise committee","arena football league","bayshore center","rutgers university","bayshore center at bivalve in cumberland","whitman","wildwood aviation museum","sand beer co"][{"organisation":"Arena Football League","charOffset":13352},{"organisation":"Bayshore Center","charOffset":11748},{"organisation":"Bayshore Center","charOffset":11909},{"organisation":"Rutgers University","charOffset":7330},{"organisation":"Bayshore Center At Bivalve In Cumberland","charOffset":11934},{"organisation":"Whitman","charOffset":6655},{"organisation":"Whitman","charOffset":6744},{"organisation":"Whitman","charOffset":6875},{"organisation":"Whitman","charOffset":7052},{"organisation":"Whitman","charOffset":7217},{"organisation":"Sand Beer Co","charOffset":1940}]{"tone":2.4916325,"positiveScore":3.4585347,"negativeScore":0.9669022,"polarity":4.425437,"activityReferenceDensity":22.089996,"selfGroupReferenceDensity":0.7437709,"wordCount":2256}[{"dateResolution":4,"month":5,"day":31,"year":0,"charOffset":1843},{"dateResolution":4,"month":5,"day":25,"year":0,"charOffset":4005},{"dateResolution":4,"month":6,"day":21,"year":0,"charOffset":4055},{"dateResolution":4,"month":5,"day":31,"year":0,"charOffset":7120},{"dateResolution":4,"month":7,"day":13,"year":0,"charOffset":8891},{"dateResolution":4,"month":7,"day":12,"year":0,"charOffset":9147},{"dateResolution":4,"month":6,"day":8,"year":0,"charOffset":9610},{"dateResolution":4,"month":6,"day":25,"year":0,"charOffset":10932},{"dateResolution":4,"month":6,"day":1,"year":0,"charOffset":11597},{"dateResolution":4,"month":6,"day":8,"year":0,"charOffset":12345},{"dateResolution":4,"month":6,"day":9,"year":0,"charOffset":12387},{"dateResolution":1,"month":0,"day":0,"year":1975,"charOffset":12711},{"dateResolution":4,"month":6,"day":1,"year":0,"charOffset":13587},{"dateResolution":4,"month":7,"day":2,"year":0,"charOffset":14532},{"dateResolution":4,"month":7,"day":25,"year":0,"charOffset":14657}][{"gcamCode":"wc","gcamValue":2256},{"gcamCode":"c1.1","gcamValue":3},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":3},{"gcamCode":"c12.1","gcamValue":119},{"gcamCode":"c12.10","gcamValue":159},{"gcamCode":"c12.12","gcamValue":31},{"gcamCode":"c12.13","gcamValue":46},{"gcamCode":"c12.14","gcamValue":89},{"gcamCode":"c12.3","gcamValue":51},{"gcamCode":"c12.4","gcamValue":14},{"gcamCode":"c12.5","gcamValue":84},{"gcamCode":"c12.7","gcamValue":76},{"gcamCode":"c12.8","gcamValue":58},{"gcamCode":"c12.9","gcamValue":162},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.10","gcamValue":4},{"gcamCode":"c13.11","gcamValue":3},{"gcamCode":"c13.12","gcamValue":2},{"gcamCode":"c13.13","gcamValue":1},{"gcamCode":"c13.3","gcamValue":10},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.5","gcamValue":1},{"gcamCode":"c13.6","gcamValue":2},{"gcamCode":"c13.7","gcamValue":14},{"gcamCode":"c13.9","gcamValue":2},{"gcamCode":"c14.1","gcamValue":117},{"gcamCode":"c14.10","gcamValue":80},{"gcamCode":"c14.11","gcamValue":175},{"gcamCode":"c14.2","gcamValue":113},{"gcamCode":"c14.3","gcamValue":120},{"gcamCode":"c14.4","gcamValue":15},{"gcamCode":"c14.5","gcamValue":198},{"gcamCode":"c14.6","gcamValue":6},{"gcamCode":"c14.7","gcamValue":26},{"gcamCode":"c14.8","gcamValue":3},{"gcamCode":"c14.9","gcamValue":24},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.100","gcamValue":2},{"gcamCode":"c15.102","gcamValue":3},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.105","gcamValue":2},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.107","gcamValue":2},{"gcamCode":"c15.108","gcamValue":1},{"gcamCode":"c15.109","gcamValue":2},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.114","gcamValue":1},{"gcamCode":"c15.116","gcamValue":6},{"gcamCode":"c15.118","gcamValue":8},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":3},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.13","gcamValue":3},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":3},{"gcamCode":"c15.139","gcamValue":3},{"gcamCode":"c15.14","gcamValue":1},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":3},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.15","gcamValue":4},{"gcamCode":"c15.152","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.156","gcamValue":6},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.162","gcamValue":2},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":2},{"gcamCode":"c15.167","gcamValue":5},{"gcamCode":"c15.168","gcamValue":4},{"gcamCode":"c15.169","gcamValue":1},{"gcamCode":"c15.171","gcamValue":3},{"gcamCode":"c15.172","gcamValue":3},{"gcamCode":"c15.173","gcamValue":7},{"gcamCode":"c15.175","gcamValue":5},{"gcamCode":"c15.176","gcamValue":6},{"gcamCode":"c15.177","gcamValue":3},{"gcamCode":"c15.178","gcamValue":3},{"gcamCode":"c15.179","gcamValue":3},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.212","gcamValue":4},{"gcamCode":"c15.215","gcamValue":3},{"gcamCode":"c15.218","gcamValue":3},{"gcamCode":"c15.221","gcamValue":6},{"gcamCode":"c15.222","gcamValue":3},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.229","gcamValue":4},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.237","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.252","gcamValue":4},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.256","gcamValue":3},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.26","gcamValue":3},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.263","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.270","gcamValue":3},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.279","gcamValue":3},{"gcamCode":"c15.29","gcamValue":3},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.34","gcamValue":2},{"gcamCode":"c15.36","gcamValue":3},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.43","gcamValue":8},{"gcamCode":"c15.46","gcamValue":3},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.53","gcamValue":3},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":7},{"gcamCode":"c15.69","gcamValue":4},{"gcamCode":"c15.71","gcamValue":3},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.75","gcamValue":1},{"gcamCode":"c15.76","gcamValue":3},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.83","gcamValue":4},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.9","gcamValue":3},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c15.96","gcamValue":1},{"gcamCode":"c15.97","gcamValue":4},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":21},{"gcamCode":"c16.100","gcamValue":113},{"gcamCode":"c16.101","gcamValue":24},{"gcamCode":"c16.102","gcamValue":4},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.104","gcamValue":5},{"gcamCode":"c16.105","gcamValue":19},{"gcamCode":"c16.106","gcamValue":77},{"gcamCode":"c16.109","gcamValue":99},{"gcamCode":"c16.11","gcamValue":18},{"gcamCode":"c16.110","gcamValue":276},{"gcamCode":"c16.111","gcamValue":21},{"gcamCode":"c16.113","gcamValue":6},{"gcamCode":"c16.114","gcamValue":130},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":95},{"gcamCode":"c16.117","gcamValue":65},{"gcamCode":"c16.118","gcamValue":174},{"gcamCode":"c16.12","gcamValue":200},{"gcamCode":"c16.120","gcamValue":128},{"gcamCode":"c16.121","gcamValue":123},{"gcamCode":"c16.122","gcamValue":18},{"gcamCode":"c16.123","gcamValue":6},{"gcamCode":"c16.124","gcamValue":9},{"gcamCode":"c16.125","gcamValue":120},{"gcamCode":"c16.126","gcamValue":91},{"gcamCode":"c16.127","gcamValue":171},{"gcamCode":"c16.128","gcamValue":19},{"gcamCode":"c16.129","gcamValue":231},{"gcamCode":"c16.13","gcamValue":10},{"gcamCode":"c16.130","gcamValue":62},{"gcamCode":"c16.131","gcamValue":83},{"gcamCode":"c16.134","gcamValue":207},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.137","gcamValue":6},{"gcamCode":"c16.138","gcamValue":58},{"gcamCode":"c16.139","gcamValue":71},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":65},{"gcamCode":"c16.141","gcamValue":7},{"gcamCode":"c16.142","gcamValue":5},{"gcamCode":"c16.143","gcamValue":9},{"gcamCode":"c16.145","gcamValue":149},{"gcamCode":"c16.146","gcamValue":167},{"gcamCode":"c16.149","gcamValue":12},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.150","gcamValue":10},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":8},{"gcamCode":"c16.153","gcamValue":81},{"gcamCode":"c16.155","gcamValue":9},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":63},{"gcamCode":"c16.158","gcamValue":4},{"gcamCode":"c16.159","gcamValue":209},{"gcamCode":"c16.16","gcamValue":76},{"gcamCode":"c16.160","gcamValue":3},{"gcamCode":"c16.161","gcamValue":277},{"gcamCode":"c16.162","gcamValue":146},{"gcamCode":"c16.163","gcamValue":215},{"gcamCode":"c16.164","gcamValue":20},{"gcamCode":"c16.165","gcamValue":17},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":4},{"gcamCode":"c16.18","gcamValue":4},{"gcamCode":"c16.19","gcamValue":66},{"gcamCode":"c16.2","gcamValue":134},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":16},{"gcamCode":"c16.22","gcamValue":71},{"gcamCode":"c16.23","gcamValue":20},{"gcamCode":"c16.24","gcamValue":14},{"gcamCode":"c16.26","gcamValue":272},{"gcamCode":"c16.27","gcamValue":15},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.29","gcamValue":12},{"gcamCode":"c16.3","gcamValue":50},{"gcamCode":"c16.30","gcamValue":6},{"gcamCode":"c16.31","gcamValue":164},{"gcamCode":"c16.32","gcamValue":19},{"gcamCode":"c16.33","gcamValue":210},{"gcamCode":"c16.34","gcamValue":18},{"gcamCode":"c16.35","gcamValue":92},{"gcamCode":"c16.36","gcamValue":22},{"gcamCode":"c16.37","gcamValue":190},{"gcamCode":"c16.38","gcamValue":46},{"gcamCode":"c16.39","gcamValue":4},{"gcamCode":"c16.4","gcamValue":162},{"gcamCode":"c16.41","gcamValue":82},{"gcamCode":"c16.42","gcamValue":6},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":84},{"gcamCode":"c16.46","gcamValue":25},{"gcamCode":"c16.47","gcamValue":263},{"gcamCode":"c16.48","gcamValue":21},{"gcamCode":"c16.49","gcamValue":13},{"gcamCode":"c16.5","gcamValue":9},{"gcamCode":"c16.50","gcamValue":11},{"gcamCode":"c16.51","gcamValue":13},{"gcamCode":"c16.52","gcamValue":95},{"gcamCode":"c16.53","gcamValue":10},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":16},{"gcamCode":"c16.56","gcamValue":24},{"gcamCode":"c16.57","gcamValue":1134},{"gcamCode":"c16.58","gcamValue":156},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":261},{"gcamCode":"c16.60","gcamValue":23},{"gcamCode":"c16.61","gcamValue":8},{"gcamCode":"c16.62","gcamValue":72},{"gcamCode":"c16.63","gcamValue":69},{"gcamCode":"c16.64","gcamValue":50},{"gcamCode":"c16.65","gcamValue":103},{"gcamCode":"c16.66","gcamValue":37},{"gcamCode":"c16.68","gcamValue":135},{"gcamCode":"c16.69","gcamValue":68},{"gcamCode":"c16.7","gcamValue":22},{"gcamCode":"c16.70","gcamValue":211},{"gcamCode":"c16.71","gcamValue":93},{"gcamCode":"c16.72","gcamValue":23},{"gcamCode":"c16.73","gcamValue":13},{"gcamCode":"c16.74","gcamValue":8},{"gcamCode":"c16.75","gcamValue":72},{"gcamCode":"c16.76","gcamValue":12},{"gcamCode":"c16.77","gcamValue":7},{"gcamCode":"c16.78","gcamValue":51},{"gcamCode":"c16.79","gcamValue":18},{"gcamCode":"c16.8","gcamValue":5},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":17},{"gcamCode":"c16.82","gcamValue":17},{"gcamCode":"c16.83","gcamValue":16},{"gcamCode":"c16.84","gcamValue":112},{"gcamCode":"c16.85","gcamValue":8},{"gcamCode":"c16.86","gcamValue":11},{"gcamCode":"c16.87","gcamValue":148},{"gcamCode":"c16.88","gcamValue":263},{"gcamCode":"c16.89","gcamValue":57},{"gcamCode":"c16.9","gcamValue":25},{"gcamCode":"c16.90","gcamValue":57},{"gcamCode":"c16.91","gcamValue":87},{"gcamCode":"c16.92","gcamValue":148},{"gcamCode":"c16.93","gcamValue":40},{"gcamCode":"c16.94","gcamValue":209},{"gcamCode":"c16.95","gcamValue":123},{"gcamCode":"c16.96","gcamValue":57},{"gcamCode":"c16.97","gcamValue":11},{"gcamCode":"c16.98","gcamValue":156},{"gcamCode":"c16.99","gcamValue":9},{"gcamCode":"c17.1","gcamValue":542},{"gcamCode":"c17.10","gcamValue":225},{"gcamCode":"c17.11","gcamValue":251},{"gcamCode":"c17.12","gcamValue":74},{"gcamCode":"c17.13","gcamValue":31},{"gcamCode":"c17.14","gcamValue":82},{"gcamCode":"c17.15","gcamValue":138},{"gcamCode":"c17.16","gcamValue":166},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":103},{"gcamCode":"c17.19","gcamValue":96},{"gcamCode":"c17.2","gcamValue":23},{"gcamCode":"c17.20","gcamValue":18},{"gcamCode":"c17.21","gcamValue":37},{"gcamCode":"c17.22","gcamValue":60},{"gcamCode":"c17.23","gcamValue":12},{"gcamCode":"c17.24","gcamValue":190},{"gcamCode":"c17.25","gcamValue":23},{"gcamCode":"c17.26","gcamValue":14},{"gcamCode":"c17.27","gcamValue":225},{"gcamCode":"c17.28","gcamValue":39},{"gcamCode":"c17.29","gcamValue":114},{"gcamCode":"c17.3","gcamValue":18},{"gcamCode":"c17.30","gcamValue":43},{"gcamCode":"c17.31","gcamValue":168},{"gcamCode":"c17.32","gcamValue":97},{"gcamCode":"c17.33","gcamValue":115},{"gcamCode":"c17.34","gcamValue":63},{"gcamCode":"c17.35","gcamValue":38},{"gcamCode":"c17.36","gcamValue":152},{"gcamCode":"c17.37","gcamValue":81},{"gcamCode":"c17.38","gcamValue":29},{"gcamCode":"c17.39","gcamValue":140},{"gcamCode":"c17.4","gcamValue":417},{"gcamCode":"c17.40","gcamValue":44},{"gcamCode":"c17.41","gcamValue":120},{"gcamCode":"c17.42","gcamValue":141},{"gcamCode":"c17.43","gcamValue":129},{"gcamCode":"c17.44","gcamValue":5},{"gcamCode":"c17.5","gcamValue":460},{"gcamCode":"c17.6","gcamValue":31},{"gcamCode":"c17.7","gcamValue":360},{"gcamCode":"c17.8","gcamValue":209},{"gcamCode":"c17.9","gcamValue":50},{"gcamCode":"c18.100","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.156","gcamValue":6},{"gcamCode":"c18.165","gcamValue":9},{"gcamCode":"c18.180","gcamValue":10},{"gcamCode":"c18.193","gcamValue":13},{"gcamCode":"c18.199","gcamValue":1},{"gcamCode":"c18.235","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.32","gcamValue":1},{"gcamCode":"c18.339","gcamValue":4},{"gcamCode":"c18.342","gcamValue":19},{"gcamCode":"c18.345","gcamValue":3},{"gcamCode":"c18.351","gcamValue":3},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.52","gcamValue":3},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c18.94","gcamValue":1},{"gcamCode":"c2.1","gcamValue":116},{"gcamCode":"c2.10","gcamValue":23},{"gcamCode":"c2.100","gcamValue":10},{"gcamCode":"c2.101","gcamValue":40},{"gcamCode":"c2.102","gcamValue":51},{"gcamCode":"c2.103","gcamValue":10},{"gcamCode":"c2.104","gcamValue":258},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":9},{"gcamCode":"c2.11","gcamValue":30},{"gcamCode":"c2.110","gcamValue":27},{"gcamCode":"c2.111","gcamValue":14},{"gcamCode":"c2.112","gcamValue":41},{"gcamCode":"c2.113","gcamValue":16},{"gcamCode":"c2.114","gcamValue":73},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":46},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":7},{"gcamCode":"c2.119","gcamValue":661},{"gcamCode":"c2.12","gcamValue":80},{"gcamCode":"c2.120","gcamValue":9},{"gcamCode":"c2.121","gcamValue":167},{"gcamCode":"c2.122","gcamValue":19},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":95},{"gcamCode":"c2.126","gcamValue":77},{"gcamCode":"c2.127","gcamValue":206},{"gcamCode":"c2.128","gcamValue":175},{"gcamCode":"c2.129","gcamValue":114},{"gcamCode":"c2.130","gcamValue":13},{"gcamCode":"c2.131","gcamValue":14},{"gcamCode":"c2.132","gcamValue":12},{"gcamCode":"c2.133","gcamValue":31},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":13},{"gcamCode":"c2.136","gcamValue":18},{"gcamCode":"c2.137","gcamValue":2},{"gcamCode":"c2.138","gcamValue":9},{"gcamCode":"c2.139","gcamValue":16},{"gcamCode":"c2.14","gcamValue":160},{"gcamCode":"c2.140","gcamValue":6},{"gcamCode":"c2.141","gcamValue":39},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":136},{"gcamCode":"c2.144","gcamValue":35},{"gcamCode":"c2.145","gcamValue":15},{"gcamCode":"c2.146","gcamValue":20},{"gcamCode":"c2.147","gcamValue":306},{"gcamCode":"c2.148","gcamValue":104},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":81},{"gcamCode":"c2.150","gcamValue":7},{"gcamCode":"c2.151","gcamValue":12},{"gcamCode":"c2.152","gcamValue":35},{"gcamCode":"c2.153","gcamValue":26},{"gcamCode":"c2.154","gcamValue":52},{"gcamCode":"c2.155","gcamValue":216},{"gcamCode":"c2.156","gcamValue":60},{"gcamCode":"c2.157","gcamValue":194},{"gcamCode":"c2.158","gcamValue":165},{"gcamCode":"c2.159","gcamValue":35},{"gcamCode":"c2.16","gcamValue":17},{"gcamCode":"c2.160","gcamValue":84},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":18},{"gcamCode":"c2.163","gcamValue":5},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":22},{"gcamCode":"c2.167","gcamValue":6},{"gcamCode":"c2.168","gcamValue":13},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":27},{"gcamCode":"c2.170","gcamValue":39},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":63},{"gcamCode":"c2.173","gcamValue":27},{"gcamCode":"c2.174","gcamValue":3},{"gcamCode":"c2.175","gcamValue":4},{"gcamCode":"c2.176","gcamValue":46},{"gcamCode":"c2.177","gcamValue":93},{"gcamCode":"c2.178","gcamValue":18},{"gcamCode":"c2.179","gcamValue":34},{"gcamCode":"c2.18","gcamValue":68},{"gcamCode":"c2.180","gcamValue":77},{"gcamCode":"c2.181","gcamValue":80},{"gcamCode":"c2.182","gcamValue":4},{"gcamCode":"c2.183","gcamValue":91},{"gcamCode":"c2.184","gcamValue":1},{"gcamCode":"c2.185","gcamValue":401},{"gcamCode":"c2.186","gcamValue":18},{"gcamCode":"c2.187","gcamValue":106},{"gcamCode":"c2.19","gcamValue":17},{"gcamCode":"c2.190","gcamValue":7},{"gcamCode":"c2.191","gcamValue":32},{"gcamCode":"c2.192","gcamValue":26},{"gcamCode":"c2.193","gcamValue":150},{"gcamCode":"c2.194","gcamValue":17},{"gcamCode":"c2.195","gcamValue":177},{"gcamCode":"c2.196","gcamValue":42},{"gcamCode":"c2.197","gcamValue":85},{"gcamCode":"c2.198","gcamValue":275},{"gcamCode":"c2.199","gcamValue":56},{"gcamCode":"c2.2","gcamValue":11},{"gcamCode":"c2.20","gcamValue":5},{"gcamCode":"c2.200","gcamValue":5},{"gcamCode":"c2.201","gcamValue":6},{"gcamCode":"c2.203","gcamValue":41},{"gcamCode":"c2.204","gcamValue":202},{"gcamCode":"c2.205","gcamValue":26},{"gcamCode":"c2.206","gcamValue":55},{"gcamCode":"c2.207","gcamValue":21},{"gcamCode":"c2.208","gcamValue":7},{"gcamCode":"c2.209","gcamValue":39},{"gcamCode":"c2.21","gcamValue":10},{"gcamCode":"c2.210","gcamValue":162},{"gcamCode":"c2.211","gcamValue":22},{"gcamCode":"c2.212","gcamValue":8},{"gcamCode":"c2.213","gcamValue":22},{"gcamCode":"c2.214","gcamValue":88},{"gcamCode":"c2.215","gcamValue":4},{"gcamCode":"c2.216","gcamValue":5},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.218","gcamValue":12},{"gcamCode":"c2.219","gcamValue":4},{"gcamCode":"c2.220","gcamValue":42},{"gcamCode":"c2.221","gcamValue":33},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":35},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":35},{"gcamCode":"c2.226","gcamValue":48},{"gcamCode":"c2.227","gcamValue":18},{"gcamCode":"c2.228","gcamValue":23},{"gcamCode":"c2.23","gcamValue":30},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":109},{"gcamCode":"c2.26","gcamValue":79},{"gcamCode":"c2.27","gcamValue":79},{"gcamCode":"c2.28","gcamValue":13},{"gcamCode":"c2.3","gcamValue":3},{"gcamCode":"c2.30","gcamValue":61},{"gcamCode":"c2.31","gcamValue":96},{"gcamCode":"c2.32","gcamValue":16},{"gcamCode":"c2.33","gcamValue":43},{"gcamCode":"c2.34","gcamValue":115},{"gcamCode":"c2.35","gcamValue":30},{"gcamCode":"c2.36","gcamValue":20},{"gcamCode":"c2.37","gcamValue":21},{"gcamCode":"c2.38","gcamValue":8},{"gcamCode":"c2.39","gcamValue":244},{"gcamCode":"c2.4","gcamValue":12},{"gcamCode":"c2.40","gcamValue":10},{"gcamCode":"c2.41","gcamValue":5},{"gcamCode":"c2.42","gcamValue":22},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":83},{"gcamCode":"c2.45","gcamValue":88},{"gcamCode":"c2.46","gcamValue":137},{"gcamCode":"c2.47","gcamValue":33},{"gcamCode":"c2.48","gcamValue":29},{"gcamCode":"c2.49","gcamValue":3},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":16},{"gcamCode":"c2.52","gcamValue":107},{"gcamCode":"c2.54","gcamValue":121},{"gcamCode":"c2.55","gcamValue":16},{"gcamCode":"c2.56","gcamValue":9},{"gcamCode":"c2.57","gcamValue":27},{"gcamCode":"c2.58","gcamValue":43},{"gcamCode":"c2.59","gcamValue":6},{"gcamCode":"c2.6","gcamValue":19},{"gcamCode":"c2.60","gcamValue":3},{"gcamCode":"c2.61","gcamValue":12},{"gcamCode":"c2.62","gcamValue":118},{"gcamCode":"c2.63","gcamValue":6},{"gcamCode":"c2.64","gcamValue":31},{"gcamCode":"c2.65","gcamValue":35},{"gcamCode":"c2.66","gcamValue":11},{"gcamCode":"c2.67","gcamValue":6},{"gcamCode":"c2.68","gcamValue":20},{"gcamCode":"c2.7","gcamValue":6},{"gcamCode":"c2.70","gcamValue":17},{"gcamCode":"c2.71","gcamValue":17},{"gcamCode":"c2.72","gcamValue":23},{"gcamCode":"c2.73","gcamValue":15},{"gcamCode":"c2.74","gcamValue":4},{"gcamCode":"c2.75","gcamValue":261},{"gcamCode":"c2.76","gcamValue":1303},{"gcamCode":"c2.77","gcamValue":113},{"gcamCode":"c2.78","gcamValue":254},{"gcamCode":"c2.79","gcamValue":33},{"gcamCode":"c2.80","gcamValue":239},{"gcamCode":"c2.81","gcamValue":34},{"gcamCode":"c2.82","gcamValue":44},{"gcamCode":"c2.83","gcamValue":13},{"gcamCode":"c2.84","gcamValue":7},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":46},{"gcamCode":"c2.87","gcamValue":5},{"gcamCode":"c2.88","gcamValue":39},{"gcamCode":"c2.89","gcamValue":67},{"gcamCode":"c2.9","gcamValue":27},{"gcamCode":"c2.90","gcamValue":27},{"gcamCode":"c2.91","gcamValue":2},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":41},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":289},{"gcamCode":"c2.96","gcamValue":29},{"gcamCode":"c2.97","gcamValue":34},{"gcamCode":"c2.98","gcamValue":58},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":5},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":6},{"gcamCode":"c25.5","gcamValue":32},{"gcamCode":"c25.7","gcamValue":7},{"gcamCode":"c25.9","gcamValue":4},{"gcamCode":"c3.1","gcamValue":48},{"gcamCode":"c3.2","gcamValue":171},{"gcamCode":"c35.1","gcamValue":18},{"gcamCode":"c35.10","gcamValue":3},{"gcamCode":"c35.12","gcamValue":13},{"gcamCode":"c35.13","gcamValue":4},{"gcamCode":"c35.14","gcamValue":17},{"gcamCode":"c35.15","gcamValue":24},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":6},{"gcamCode":"c35.19","gcamValue":3},{"gcamCode":"c35.2","gcamValue":6},{"gcamCode":"c35.20","gcamValue":40},{"gcamCode":"c35.21","gcamValue":3},{"gcamCode":"c35.24","gcamValue":6},{"gcamCode":"c35.25","gcamValue":31},{"gcamCode":"c35.26","gcamValue":2},{"gcamCode":"c35.28","gcamValue":1},{"gcamCode":"c35.30","gcamValue":3},{"gcamCode":"c35.31","gcamValue":75},{"gcamCode":"c35.32","gcamValue":56},{"gcamCode":"c35.33","gcamValue":86},{"gcamCode":"c35.4","gcamValue":6},{"gcamCode":"c35.5","gcamValue":16},{"gcamCode":"c35.6","gcamValue":3},{"gcamCode":"c35.7","gcamValue":7},{"gcamCode":"c35.8","gcamValue":3},{"gcamCode":"c39.1","gcamValue":11},{"gcamCode":"c39.10","gcamValue":2},{"gcamCode":"c39.11","gcamValue":1},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":5},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.15","gcamValue":3},{"gcamCode":"c39.17","gcamValue":27},{"gcamCode":"c39.18","gcamValue":6},{"gcamCode":"c39.19","gcamValue":6},{"gcamCode":"c39.2","gcamValue":47},{"gcamCode":"c39.20","gcamValue":6},{"gcamCode":"c39.21","gcamValue":14},{"gcamCode":"c39.22","gcamValue":2},{"gcamCode":"c39.23","gcamValue":2},{"gcamCode":"c39.25","gcamValue":7},{"gcamCode":"c39.27","gcamValue":2},{"gcamCode":"c39.28","gcamValue":5},{"gcamCode":"c39.3","gcamValue":131},{"gcamCode":"c39.30","gcamValue":7},{"gcamCode":"c39.34","gcamValue":12},{"gcamCode":"c39.36","gcamValue":41},{"gcamCode":"c39.37","gcamValue":104},{"gcamCode":"c39.38","gcamValue":12},{"gcamCode":"c39.39","gcamValue":19},{"gcamCode":"c39.4","gcamValue":116},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":35},{"gcamCode":"c39.5","gcamValue":73},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.1","gcamValue":3},{"gcamCode":"c4.11","gcamValue":4},{"gcamCode":"c4.12","gcamValue":28},{"gcamCode":"c4.15","gcamValue":4},{"gcamCode":"c4.17","gcamValue":3},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":73},{"gcamCode":"c4.4","gcamValue":3},{"gcamCode":"c4.5","gcamValue":3},{"gcamCode":"c4.6","gcamValue":2},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.3","gcamValue":19},{"gcamCode":"c40.4","gcamValue":6},{"gcamCode":"c40.5","gcamValue":11},{"gcamCode":"c40.6","gcamValue":2},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":47},{"gcamCode":"c5.10","gcamValue":202},{"gcamCode":"c5.11","gcamValue":65},{"gcamCode":"c5.12","gcamValue":423},{"gcamCode":"c5.13","gcamValue":21},{"gcamCode":"c5.14","gcamValue":3},{"gcamCode":"c5.15","gcamValue":5},{"gcamCode":"c5.16","gcamValue":12},{"gcamCode":"c5.17","gcamValue":36},{"gcamCode":"c5.18","gcamValue":14},{"gcamCode":"c5.19","gcamValue":17},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":13},{"gcamCode":"c5.21","gcamValue":46},{"gcamCode":"c5.22","gcamValue":12},{"gcamCode":"c5.23","gcamValue":42},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":15},{"gcamCode":"c5.26","gcamValue":52},{"gcamCode":"c5.27","gcamValue":13},{"gcamCode":"c5.28","gcamValue":10},{"gcamCode":"c5.29","gcamValue":18},{"gcamCode":"c5.3","gcamValue":4},{"gcamCode":"c5.30","gcamValue":152},{"gcamCode":"c5.31","gcamValue":6},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":14},{"gcamCode":"c5.35","gcamValue":69},{"gcamCode":"c5.36","gcamValue":100},{"gcamCode":"c5.37","gcamValue":10},{"gcamCode":"c5.39","gcamValue":4},{"gcamCode":"c5.4","gcamValue":33},{"gcamCode":"c5.40","gcamValue":99},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":56},{"gcamCode":"c5.44","gcamValue":10},{"gcamCode":"c5.45","gcamValue":27},{"gcamCode":"c5.46","gcamValue":286},{"gcamCode":"c5.47","gcamValue":41},{"gcamCode":"c5.48","gcamValue":32},{"gcamCode":"c5.49","gcamValue":142},{"gcamCode":"c5.5","gcamValue":14},{"gcamCode":"c5.50","gcamValue":160},{"gcamCode":"c5.51","gcamValue":123},{"gcamCode":"c5.52","gcamValue":207},{"gcamCode":"c5.53","gcamValue":163},{"gcamCode":"c5.54","gcamValue":50},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.57","gcamValue":25},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.6","gcamValue":174},{"gcamCode":"c5.60","gcamValue":33},{"gcamCode":"c5.61","gcamValue":83},{"gcamCode":"c5.62","gcamValue":750},{"gcamCode":"c5.7","gcamValue":30},{"gcamCode":"c5.8","gcamValue":28},{"gcamCode":"c5.9","gcamValue":152},{"gcamCode":"c6.1","gcamValue":26},{"gcamCode":"c6.2","gcamValue":23},{"gcamCode":"c6.3","gcamValue":11},{"gcamCode":"c6.4","gcamValue":26},{"gcamCode":"c6.5","gcamValue":13},{"gcamCode":"c6.6","gcamValue":14},{"gcamCode":"c7.1","gcamValue":66},{"gcamCode":"c7.2","gcamValue":123},{"gcamCode":"c8.1","gcamValue":7},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.11","gcamValue":7},{"gcamCode":"c8.12","gcamValue":12},{"gcamCode":"c8.13","gcamValue":13},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":4},{"gcamCode":"c8.17","gcamValue":9},{"gcamCode":"c8.18","gcamValue":31},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.20","gcamValue":35},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":31},{"gcamCode":"c8.23","gcamValue":92},{"gcamCode":"c8.24","gcamValue":2},{"gcamCode":"c8.25","gcamValue":16},{"gcamCode":"c8.26","gcamValue":3},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":15},{"gcamCode":"c8.29","gcamValue":10},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":6},{"gcamCode":"c8.34","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":10},{"gcamCode":"c8.37","gcamValue":20},{"gcamCode":"c8.38","gcamValue":29},{"gcamCode":"c8.39","gcamValue":4},{"gcamCode":"c8.4","gcamValue":83},{"gcamCode":"c8.40","gcamValue":13},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":24},{"gcamCode":"c8.43","gcamValue":64},{"gcamCode":"c8.5","gcamValue":9},{"gcamCode":"c8.6","gcamValue":19},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":7},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":83},{"gcamCode":"c9.10","gcamValue":15},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":6},{"gcamCode":"c9.1004","gcamValue":6},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1012","gcamValue":8},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":6},{"gcamCode":"c9.1017","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":12},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":3},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1025","gcamValue":1},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.1027","gcamValue":3},{"gcamCode":"c9.1029","gcamValue":3},{"gcamCode":"c9.1030","gcamValue":23},{"gcamCode":"c9.1031","gcamValue":3},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":5},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.1042","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":16},{"gcamCode":"c9.108","gcamValue":3},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":27},{"gcamCode":"c9.113","gcamValue":25},{"gcamCode":"c9.115","gcamValue":6},{"gcamCode":"c9.116","gcamValue":11},{"gcamCode":"c9.117","gcamValue":8},{"gcamCode":"c9.118","gcamValue":13},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.120","gcamValue":3},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":6},{"gcamCode":"c9.124","gcamValue":12},{"gcamCode":"c9.125","gcamValue":7},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":89},{"gcamCode":"c9.129","gcamValue":8},{"gcamCode":"c9.130","gcamValue":9},{"gcamCode":"c9.131","gcamValue":17},{"gcamCode":"c9.132","gcamValue":6},{"gcamCode":"c9.133","gcamValue":3},{"gcamCode":"c9.134","gcamValue":13},{"gcamCode":"c9.135","gcamValue":11},{"gcamCode":"c9.137","gcamValue":2},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":7},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":21},{"gcamCode":"c9.142","gcamValue":4},{"gcamCode":"c9.143","gcamValue":21},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":38},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":10},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":8},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.154","gcamValue":2},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":38},{"gcamCode":"c9.159","gcamValue":10},{"gcamCode":"c9.16","gcamValue":5},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":8},{"gcamCode":"c9.162","gcamValue":28},{"gcamCode":"c9.163","gcamValue":5},{"gcamCode":"c9.164","gcamValue":12},{"gcamCode":"c9.165","gcamValue":7},{"gcamCode":"c9.166","gcamValue":10},{"gcamCode":"c9.167","gcamValue":6},{"gcamCode":"c9.168","gcamValue":12},{"gcamCode":"c9.169","gcamValue":11},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":8},{"gcamCode":"c9.174","gcamValue":12},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":15},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.18","gcamValue":6},{"gcamCode":"c9.180","gcamValue":9},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":10},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":31},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.186","gcamValue":7},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":38},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":4},{"gcamCode":"c9.190","gcamValue":20},{"gcamCode":"c9.191","gcamValue":11},{"gcamCode":"c9.192","gcamValue":24},{"gcamCode":"c9.193","gcamValue":12},{"gcamCode":"c9.194","gcamValue":5},{"gcamCode":"c9.195","gcamValue":20},{"gcamCode":"c9.196","gcamValue":9},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":74},{"gcamCode":"c9.199","gcamValue":2},{"gcamCode":"c9.2","gcamValue":6},{"gcamCode":"c9.20","gcamValue":15},{"gcamCode":"c9.200","gcamValue":19},{"gcamCode":"c9.201","gcamValue":11},{"gcamCode":"c9.202","gcamValue":3},{"gcamCode":"c9.203","gcamValue":6},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":21},{"gcamCode":"c9.206","gcamValue":6},{"gcamCode":"c9.207","gcamValue":12},{"gcamCode":"c9.209","gcamValue":21},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":11},{"gcamCode":"c9.213","gcamValue":3},{"gcamCode":"c9.214","gcamValue":8},{"gcamCode":"c9.215","gcamValue":19},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":5},{"gcamCode":"c9.218","gcamValue":1},{"gcamCode":"c9.219","gcamValue":10},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":24},{"gcamCode":"c9.227","gcamValue":6},{"gcamCode":"c9.229","gcamValue":6},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":8},{"gcamCode":"c9.231","gcamValue":11},{"gcamCode":"c9.232","gcamValue":4},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.234","gcamValue":4},{"gcamCode":"c9.235","gcamValue":28},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":4},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":11},{"gcamCode":"c9.242","gcamValue":4},{"gcamCode":"c9.244","gcamValue":4},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":7},{"gcamCode":"c9.248","gcamValue":4},{"gcamCode":"c9.249","gcamValue":3},{"gcamCode":"c9.25","gcamValue":8},{"gcamCode":"c9.250","gcamValue":3},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.253","gcamValue":5},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.256","gcamValue":4},{"gcamCode":"c9.257","gcamValue":4},{"gcamCode":"c9.258","gcamValue":6},{"gcamCode":"c9.259","gcamValue":8},{"gcamCode":"c9.260","gcamValue":8},{"gcamCode":"c9.261","gcamValue":3},{"gcamCode":"c9.262","gcamValue":9},{"gcamCode":"c9.263","gcamValue":6},{"gcamCode":"c9.265","gcamValue":13},{"gcamCode":"c9.266","gcamValue":8},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":11},{"gcamCode":"c9.270","gcamValue":11},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.273","gcamValue":1},{"gcamCode":"c9.274","gcamValue":14},{"gcamCode":"c9.275","gcamValue":6},{"gcamCode":"c9.276","gcamValue":27},{"gcamCode":"c9.277","gcamValue":23},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":9},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.281","gcamValue":3},{"gcamCode":"c9.282","gcamValue":12},{"gcamCode":"c9.283","gcamValue":13},{"gcamCode":"c9.284","gcamValue":6},{"gcamCode":"c9.285","gcamValue":5},{"gcamCode":"c9.286","gcamValue":5},{"gcamCode":"c9.287","gcamValue":5},{"gcamCode":"c9.288","gcamValue":22},{"gcamCode":"c9.289","gcamValue":5},{"gcamCode":"c9.29","gcamValue":4},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":10},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":6},{"gcamCode":"c9.294","gcamValue":4},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.298","gcamValue":2},{"gcamCode":"c9.3","gcamValue":70},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.301","gcamValue":3},{"gcamCode":"c9.302","gcamValue":26},{"gcamCode":"c9.303","gcamValue":13},{"gcamCode":"c9.304","gcamValue":13},{"gcamCode":"c9.305","gcamValue":8},{"gcamCode":"c9.306","gcamValue":15},{"gcamCode":"c9.307","gcamValue":7},{"gcamCode":"c9.308","gcamValue":37},{"gcamCode":"c9.310","gcamValue":3},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":7},{"gcamCode":"c9.313","gcamValue":2},{"gcamCode":"c9.314","gcamValue":3},{"gcamCode":"c9.315","gcamValue":7},{"gcamCode":"c9.316","gcamValue":6},{"gcamCode":"c9.318","gcamValue":3},{"gcamCode":"c9.319","gcamValue":8},{"gcamCode":"c9.32","gcamValue":10},{"gcamCode":"c9.320","gcamValue":3},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":6},{"gcamCode":"c9.324","gcamValue":6},{"gcamCode":"c9.325","gcamValue":5},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":6},{"gcamCode":"c9.33","gcamValue":47},{"gcamCode":"c9.330","gcamValue":11},{"gcamCode":"c9.331","gcamValue":2},{"gcamCode":"c9.333","gcamValue":2},{"gcamCode":"c9.334","gcamValue":4},{"gcamCode":"c9.335","gcamValue":4},{"gcamCode":"c9.338","gcamValue":3},{"gcamCode":"c9.34","gcamValue":15},{"gcamCode":"c9.340","gcamValue":5},{"gcamCode":"c9.341","gcamValue":1},{"gcamCode":"c9.344","gcamValue":2},{"gcamCode":"c9.345","gcamValue":5},{"gcamCode":"c9.347","gcamValue":3},{"gcamCode":"c9.348","gcamValue":3},{"gcamCode":"c9.349","gcamValue":3},{"gcamCode":"c9.35","gcamValue":16},{"gcamCode":"c9.351","gcamValue":12},{"gcamCode":"c9.352","gcamValue":12},{"gcamCode":"c9.353","gcamValue":11},{"gcamCode":"c9.354","gcamValue":20},{"gcamCode":"c9.355","gcamValue":1},{"gcamCode":"c9.356","gcamValue":3},{"gcamCode":"c9.358","gcamValue":20},{"gcamCode":"c9.359","gcamValue":2},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.360","gcamValue":3},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.362","gcamValue":5},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.366","gcamValue":5},{"gcamCode":"c9.367","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":15},{"gcamCode":"c9.371","gcamValue":6},{"gcamCode":"c9.373","gcamValue":4},{"gcamCode":"c9.377","gcamValue":6},{"gcamCode":"c9.378","gcamValue":26},{"gcamCode":"c9.380","gcamValue":2},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.382","gcamValue":20},{"gcamCode":"c9.383","gcamValue":9},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.389","gcamValue":4},{"gcamCode":"c9.39","gcamValue":38},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.391","gcamValue":3},{"gcamCode":"c9.392","gcamValue":1},{"gcamCode":"c9.394","gcamValue":19},{"gcamCode":"c9.395","gcamValue":10},{"gcamCode":"c9.396","gcamValue":6},{"gcamCode":"c9.397","gcamValue":5},{"gcamCode":"c9.398","gcamValue":7},{"gcamCode":"c9.399","gcamValue":5},{"gcamCode":"c9.4","gcamValue":12},{"gcamCode":"c9.40","gcamValue":8},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.401","gcamValue":2},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.404","gcamValue":1},{"gcamCode":"c9.405","gcamValue":5},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.409","gcamValue":7},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.411","gcamValue":15},{"gcamCode":"c9.412","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.42","gcamValue":7},{"gcamCode":"c9.420","gcamValue":9},{"gcamCode":"c9.421","gcamValue":2},{"gcamCode":"c9.422","gcamValue":2},{"gcamCode":"c9.426","gcamValue":1},{"gcamCode":"c9.427","gcamValue":2},{"gcamCode":"c9.428","gcamValue":6},{"gcamCode":"c9.429","gcamValue":3},{"gcamCode":"c9.430","gcamValue":9},{"gcamCode":"c9.432","gcamValue":22},{"gcamCode":"c9.433","gcamValue":17},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":3},{"gcamCode":"c9.437","gcamValue":12},{"gcamCode":"c9.438","gcamValue":6},{"gcamCode":"c9.44","gcamValue":17},{"gcamCode":"c9.440","gcamValue":22},{"gcamCode":"c9.442","gcamValue":4},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.446","gcamValue":7},{"gcamCode":"c9.447","gcamValue":9},{"gcamCode":"c9.448","gcamValue":7},{"gcamCode":"c9.45","gcamValue":2},{"gcamCode":"c9.451","gcamValue":6},{"gcamCode":"c9.452","gcamValue":6},{"gcamCode":"c9.454","gcamValue":2},{"gcamCode":"c9.456","gcamValue":3},{"gcamCode":"c9.458","gcamValue":11},{"gcamCode":"c9.459","gcamValue":7},{"gcamCode":"c9.46","gcamValue":11},{"gcamCode":"c9.460","gcamValue":3},{"gcamCode":"c9.461","gcamValue":3},{"gcamCode":"c9.463","gcamValue":5},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":8},{"gcamCode":"c9.467","gcamValue":6},{"gcamCode":"c9.468","gcamValue":6},{"gcamCode":"c9.47","gcamValue":19},{"gcamCode":"c9.470","gcamValue":4},{"gcamCode":"c9.471","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":10},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.478","gcamValue":5},{"gcamCode":"c9.479","gcamValue":27},{"gcamCode":"c9.48","gcamValue":23},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":9},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":3},{"gcamCode":"c9.487","gcamValue":3},{"gcamCode":"c9.488","gcamValue":12},{"gcamCode":"c9.489","gcamValue":12},{"gcamCode":"c9.49","gcamValue":29},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.493","gcamValue":2},{"gcamCode":"c9.494","gcamValue":5},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.496","gcamValue":9},{"gcamCode":"c9.498","gcamValue":33},{"gcamCode":"c9.5","gcamValue":18},{"gcamCode":"c9.500","gcamValue":4},{"gcamCode":"c9.501","gcamValue":5},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.503","gcamValue":2},{"gcamCode":"c9.504","gcamValue":4},{"gcamCode":"c9.505","gcamValue":1},{"gcamCode":"c9.507","gcamValue":9},{"gcamCode":"c9.509","gcamValue":4},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":38},{"gcamCode":"c9.513","gcamValue":20},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.516","gcamValue":2},{"gcamCode":"c9.517","gcamValue":13},{"gcamCode":"c9.518","gcamValue":6},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":20},{"gcamCode":"c9.522","gcamValue":16},{"gcamCode":"c9.523","gcamValue":5},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":3},{"gcamCode":"c9.528","gcamValue":16},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":9},{"gcamCode":"c9.530","gcamValue":8},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":3},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":7},{"gcamCode":"c9.54","gcamValue":23},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":6},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":19},{"gcamCode":"c9.55","gcamValue":31},{"gcamCode":"c9.550","gcamValue":8},{"gcamCode":"c9.551","gcamValue":10},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":13},{"gcamCode":"c9.556","gcamValue":18},{"gcamCode":"c9.557","gcamValue":10},{"gcamCode":"c9.559","gcamValue":6},{"gcamCode":"c9.56","gcamValue":5},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":11},{"gcamCode":"c9.564","gcamValue":20},{"gcamCode":"c9.566","gcamValue":3},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.568","gcamValue":8},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":11},{"gcamCode":"c9.570","gcamValue":15},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":4},{"gcamCode":"c9.575","gcamValue":16},{"gcamCode":"c9.576","gcamValue":26},{"gcamCode":"c9.579","gcamValue":74},{"gcamCode":"c9.58","gcamValue":2},{"gcamCode":"c9.580","gcamValue":13},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":3},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.589","gcamValue":3},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":6},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.600","gcamValue":6},{"gcamCode":"c9.602","gcamValue":5},{"gcamCode":"c9.603","gcamValue":3},{"gcamCode":"c9.604","gcamValue":2},{"gcamCode":"c9.606","gcamValue":2},{"gcamCode":"c9.609","gcamValue":4},{"gcamCode":"c9.61","gcamValue":14},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.614","gcamValue":1},{"gcamCode":"c9.615","gcamValue":7},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":22},{"gcamCode":"c9.62","gcamValue":13},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":12},{"gcamCode":"c9.624","gcamValue":19},{"gcamCode":"c9.625","gcamValue":30},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":34},{"gcamCode":"c9.629","gcamValue":24},{"gcamCode":"c9.63","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":22},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":29},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.638","gcamValue":7},{"gcamCode":"c9.64","gcamValue":13},{"gcamCode":"c9.640","gcamValue":14},{"gcamCode":"c9.641","gcamValue":4},{"gcamCode":"c9.642","gcamValue":46},{"gcamCode":"c9.644","gcamValue":2},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":4},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":32},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.651","gcamValue":3},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":92},{"gcamCode":"c9.654","gcamValue":19},{"gcamCode":"c9.655","gcamValue":33},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":14},{"gcamCode":"c9.66","gcamValue":6},{"gcamCode":"c9.660","gcamValue":19},{"gcamCode":"c9.661","gcamValue":5},{"gcamCode":"c9.663","gcamValue":7},{"gcamCode":"c9.664","gcamValue":18},{"gcamCode":"c9.665","gcamValue":8},{"gcamCode":"c9.667","gcamValue":20},{"gcamCode":"c9.668","gcamValue":16},{"gcamCode":"c9.669","gcamValue":21},{"gcamCode":"c9.67","gcamValue":6},{"gcamCode":"c9.670","gcamValue":23},{"gcamCode":"c9.671","gcamValue":12},{"gcamCode":"c9.672","gcamValue":9},{"gcamCode":"c9.673","gcamValue":5},{"gcamCode":"c9.676","gcamValue":25},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.679","gcamValue":23},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.680","gcamValue":3},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":12},{"gcamCode":"c9.685","gcamValue":7},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":15},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":6},{"gcamCode":"c9.692","gcamValue":12},{"gcamCode":"c9.693","gcamValue":10},{"gcamCode":"c9.694","gcamValue":11},{"gcamCode":"c9.695","gcamValue":5},{"gcamCode":"c9.696","gcamValue":5},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":17},{"gcamCode":"c9.699","gcamValue":15},{"gcamCode":"c9.7","gcamValue":10},{"gcamCode":"c9.70","gcamValue":20},{"gcamCode":"c9.700","gcamValue":1},{"gcamCode":"c9.701","gcamValue":46},{"gcamCode":"c9.702","gcamValue":4},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":29},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.706","gcamValue":1},{"gcamCode":"c9.708","gcamValue":13},{"gcamCode":"c9.71","gcamValue":15},{"gcamCode":"c9.710","gcamValue":17},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":3},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":4},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.717","gcamValue":15},{"gcamCode":"c9.718","gcamValue":3},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.72","gcamValue":4},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":6},{"gcamCode":"c9.724","gcamValue":34},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":89},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.73","gcamValue":17},{"gcamCode":"c9.730","gcamValue":73},{"gcamCode":"c9.731","gcamValue":16},{"gcamCode":"c9.732","gcamValue":6},{"gcamCode":"c9.733","gcamValue":11},{"gcamCode":"c9.734","gcamValue":9},{"gcamCode":"c9.735","gcamValue":15},{"gcamCode":"c9.736","gcamValue":16},{"gcamCode":"c9.737","gcamValue":8},{"gcamCode":"c9.739","gcamValue":7},{"gcamCode":"c9.74","gcamValue":4},{"gcamCode":"c9.740","gcamValue":11},{"gcamCode":"c9.741","gcamValue":15},{"gcamCode":"c9.742","gcamValue":32},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":16},{"gcamCode":"c9.747","gcamValue":3},{"gcamCode":"c9.748","gcamValue":48},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.75","gcamValue":14},{"gcamCode":"c9.750","gcamValue":9},{"gcamCode":"c9.751","gcamValue":4},{"gcamCode":"c9.752","gcamValue":3},{"gcamCode":"c9.754","gcamValue":12},{"gcamCode":"c9.755","gcamValue":13},{"gcamCode":"c9.756","gcamValue":5},{"gcamCode":"c9.757","gcamValue":12},{"gcamCode":"c9.758","gcamValue":3},{"gcamCode":"c9.759","gcamValue":9},{"gcamCode":"c9.76","gcamValue":23},{"gcamCode":"c9.760","gcamValue":6},{"gcamCode":"c9.761","gcamValue":7},{"gcamCode":"c9.762","gcamValue":70},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":3},{"gcamCode":"c9.766","gcamValue":39},{"gcamCode":"c9.767","gcamValue":91},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.770","gcamValue":6},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":4},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":12},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":8},{"gcamCode":"c9.780","gcamValue":9},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":7},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.786","gcamValue":3},{"gcamCode":"c9.788","gcamValue":3},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":5},{"gcamCode":"c9.790","gcamValue":38},{"gcamCode":"c9.792","gcamValue":21},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.794","gcamValue":2},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":8},{"gcamCode":"c9.8","gcamValue":12},{"gcamCode":"c9.80","gcamValue":15},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.802","gcamValue":21},{"gcamCode":"c9.803","gcamValue":2},{"gcamCode":"c9.804","gcamValue":3},{"gcamCode":"c9.806","gcamValue":15},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":11},{"gcamCode":"c9.810","gcamValue":2},{"gcamCode":"c9.812","gcamValue":19},{"gcamCode":"c9.813","gcamValue":3},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.815","gcamValue":3},{"gcamCode":"c9.816","gcamValue":37},{"gcamCode":"c9.817","gcamValue":11},{"gcamCode":"c9.818","gcamValue":6},{"gcamCode":"c9.82","gcamValue":17},{"gcamCode":"c9.820","gcamValue":8},{"gcamCode":"c9.821","gcamValue":10},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":4},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.825","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":2},{"gcamCode":"c9.828","gcamValue":2},{"gcamCode":"c9.83","gcamValue":25},{"gcamCode":"c9.830","gcamValue":3},{"gcamCode":"c9.831","gcamValue":11},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":7},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":5},{"gcamCode":"c9.843","gcamValue":5},{"gcamCode":"c9.844","gcamValue":6},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.846","gcamValue":13},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":11},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":4},{"gcamCode":"c9.851","gcamValue":15},{"gcamCode":"c9.852","gcamValue":8},{"gcamCode":"c9.853","gcamValue":5},{"gcamCode":"c9.855","gcamValue":4},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":7},{"gcamCode":"c9.858","gcamValue":8},{"gcamCode":"c9.86","gcamValue":13},{"gcamCode":"c9.860","gcamValue":30},{"gcamCode":"c9.861","gcamValue":6},{"gcamCode":"c9.862","gcamValue":8},{"gcamCode":"c9.863","gcamValue":14},{"gcamCode":"c9.864","gcamValue":83},{"gcamCode":"c9.865","gcamValue":11},{"gcamCode":"c9.866","gcamValue":19},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":69},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.871","gcamValue":8},{"gcamCode":"c9.873","gcamValue":11},{"gcamCode":"c9.874","gcamValue":6},{"gcamCode":"c9.875","gcamValue":8},{"gcamCode":"c9.877","gcamValue":68},{"gcamCode":"c9.879","gcamValue":10},{"gcamCode":"c9.88","gcamValue":6},{"gcamCode":"c9.882","gcamValue":23},{"gcamCode":"c9.883","gcamValue":5},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.885","gcamValue":3},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":8},{"gcamCode":"c9.891","gcamValue":4},{"gcamCode":"c9.893","gcamValue":4},{"gcamCode":"c9.894","gcamValue":4},{"gcamCode":"c9.896","gcamValue":4},{"gcamCode":"c9.897","gcamValue":6},{"gcamCode":"c9.898","gcamValue":7},{"gcamCode":"c9.899","gcamValue":4},{"gcamCode":"c9.9","gcamValue":3},{"gcamCode":"c9.90","gcamValue":7},{"gcamCode":"c9.900","gcamValue":7},{"gcamCode":"c9.901","gcamValue":10},{"gcamCode":"c9.902","gcamValue":4},{"gcamCode":"c9.903","gcamValue":39},{"gcamCode":"c9.904","gcamValue":9},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":26},{"gcamCode":"c9.909","gcamValue":3},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":29},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.915","gcamValue":6},{"gcamCode":"c9.916","gcamValue":5},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":7},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":12},{"gcamCode":"c9.921","gcamValue":17},{"gcamCode":"c9.923","gcamValue":13},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":20},{"gcamCode":"c9.927","gcamValue":2},{"gcamCode":"c9.928","gcamValue":3},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":15},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":11},{"gcamCode":"c9.933","gcamValue":6},{"gcamCode":"c9.935","gcamValue":53},{"gcamCode":"c9.937","gcamValue":7},{"gcamCode":"c9.938","gcamValue":10},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.941","gcamValue":4},{"gcamCode":"c9.942","gcamValue":6},{"gcamCode":"c9.944","gcamValue":1},{"gcamCode":"c9.945","gcamValue":7},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.95","gcamValue":5},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":14},{"gcamCode":"c9.96","gcamValue":16},{"gcamCode":"c9.962","gcamValue":13},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.967","gcamValue":3},{"gcamCode":"c9.968","gcamValue":8},{"gcamCode":"c9.969","gcamValue":4},{"gcamCode":"c9.970","gcamValue":1},{"gcamCode":"c9.971","gcamValue":2},{"gcamCode":"c9.972","gcamValue":16},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.974","gcamValue":4},{"gcamCode":"c9.978","gcamValue":27},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":30},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":13},{"gcamCode":"c9.985","gcamValue":11},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.987","gcamValue":4},{"gcamCode":"c9.988","gcamValue":3},{"gcamCode":"c9.99","gcamValue":7},{"gcamCode":"c9.990","gcamValue":3},{"gcamCode":"c9.994","gcamValue":3},{"gcamCode":"c9.995","gcamValue":12},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":9},{"gcamCode":"v10.1","gcamValue":0.267414398341122},{"gcamCode":"v10.2","gcamValue":0.271476371735442},{"gcamCode":"v11.1","gcamValue":0.143685670955882},{"gcamCode":"v19.1","gcamValue":6.40819277108434},{"gcamCode":"v19.2","gcamValue":5.08728915662651},{"gcamCode":"v19.3","gcamValue":5.53704819277109},{"gcamCode":"v19.4","gcamValue":6.34984939759036},{"gcamCode":"v19.5","gcamValue":5.11512048192771},{"gcamCode":"v19.6","gcamValue":5.56734939759036},{"gcamCode":"v19.7","gcamValue":6.44412650602409},{"gcamCode":"v19.8","gcamValue":5.07454819277109},{"gcamCode":"v19.9","gcamValue":5.47753012048193},{"gcamCode":"v20.1","gcamValue":0.580181818181818},{"gcamCode":"v20.10","gcamValue":-0.744142857142857},{"gcamCode":"v20.11","gcamValue":0.597851851851852},{"gcamCode":"v20.12","gcamValue":-0.701058823529412},{"gcamCode":"v20.13","gcamValue":0.397191082802548},{"gcamCode":"v20.14","gcamValue":-0.573666666666667},{"gcamCode":"v20.15","gcamValue":0.359686274509804},{"gcamCode":"v20.16","gcamValue":-0.373084507042254},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.616615384615385},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.651066666666667},{"gcamCode":"v20.6","gcamValue":-0.742545454545455},{"gcamCode":"v20.7","gcamValue":0.651066666666667},{"gcamCode":"v20.8","gcamValue":-0.744142857142857},{"gcamCode":"v20.9","gcamValue":0.639052631578947},{"gcamCode":"v21.1","gcamValue":5.69080094228499},{"gcamCode":"v26.1","gcamValue":1.6016393442623}]https://www.gannett-cdn.com/authoring/2019/05/15/PCHH/e90b3425-615f-46a5-9ef3-8588626239f6-Ocean_CIty_Night_in_Venice_parade_cineoc_217.jpg?crop=1206,681,x0,y0&fit=bounds[""][""]["https://youtube.com/vrtuallythere","https://youtube.com/vrtuallythere\\"][][{"name":"Memorial Day","charOffset":64},{"name":"South Jersey","charOffset":602},{"name":"Summer Bucket List","charOffset":738},{"name":"South Jersey","charOffset":998},{"name":"Air Fest","charOffset":1046},{"name":"World War","charOffset":1158},{"name":"Naval Air Station Wildwood Aviation Museum","charOffset":1253},{"name":"Cape May Airport","charOffset":1335},{"name":"Sand Beer","charOffset":2047},{"name":"May County Park","charOffset":2354},{"name":"Cape May Courthouse","charOffset":2385},{"name":"Cape Park County Park","charOffset":2499},{"name":"Cape May Zoo","charOffset":2955},{"name":"Tree Adventure","charOffset":3013},{"name":"Mount Laurel","charOffset":3373},{"name":"Splashin' Speedway","charOffset":3729},{"name":"Burlington City","charOffset":4704},{"name":"Curtin Marina","charOffset":4780},{"name":"Delaware River","charOffset":4827},{"name":"Burlington City","charOffset":4846},{"name":"New Jersey","charOffset":4913},{"name":"Recreation Area","charOffset":5692},{"name":"Wharton State Forest","charOffset":5739},{"name":"Burlington County","charOffset":5794},{"name":"Memorial Day","charOffset":5879},{"name":"Labor Day","charOffset":5892},{"name":"Huber Prairie Warbler Preserve","charOffset":6483},{"name":"Walt Whitman","charOffset":7091},{"name":"Historic Crystal Spring","charOffset":7125},{"name":"Laurel Springs","charOffset":7143},{"name":"Tammy Paolino","charOffset":7252},{"name":"Cherry Hill","charOffset":7269},{"name":"Walt Whitman House","charOffset":7653},{"name":"Luther King","charOffset":7680},{"name":"Rutgers University-Camden","charOffset":7760},{"name":"Stedman Art Gallery","charOffset":7781},{"name":"Cold Spring Harbor","charOffset":8450},{"name":"Historic Cold Spring Village","charOffset":8718},{"name":"Ocean City","charOffset":9639},{"name":"Chubby Checker","charOffset":9805},{"name":"Ocean City Music","charOffset":9957},{"name":"Ocean City-Longport Bridge","charOffset":10125},{"name":"Wildwood Beer Fest","charOffset":10307},{"name":"Fox Park June","charOffset":10410},{"name":"Wildwood Beer","charOffset":10454},{"name":"Island Entertainment","charOffset":11198},{"name":"North Wildwood","charOffset":11354},{"name":"Island Entertainment","charOffset":11513},{"name":"Hawaiian Islands","charOffset":11679},{"name":"New Zealand","charOffset":11707},{"name":"Seaport Pier","charOffset":11742},{"name":"North Wildwood","charOffset":11760},{"name":"Seaport Pier","charOffset":11853},{"name":"Atlantic City Airshow","charOffset":12026},{"name":"Atlantic City","charOffset":12117},{"name":"Bayshore Center","charOffset":12406},{"name":"Bayshore Center","charOffset":12584},{"name":"Down Memory Lane","charOffset":13122},{"name":"Landis Avenue","charOffset":13204},{"name":"Cruise Down Memory Lane","charOffset":13237},{"name":"Street Vineland","charOffset":13553},{"name":"Cruise Down Memory Lane Committee","charOffset":13616},{"name":"City Blackjacks","charOffset":13974},{"name":"Atlantic City Blackjacks","charOffset":14097},{"name":"Arena Football League","charOffset":14128},{"name":"Boardwalk Hall","charOffset":14208},{"name":"Memorial Day","charOffset":14227},{"name":"Philadelphia Soul","charOffset":14280},{"name":"David Crosby","charOffset":14490},{"name":"Cooper River Park","charOffset":14571},{"name":"Wiggins Park","charOffset":15033},{"name":"Camden Waterfront","charOffset":15058},{"name":"Cumberland County Fair","charOffset":15639},{"name":"Burlington County Fair","charOffset":15712},{"name":"Springfield Township","charOffset":15738},{"name":"Gloucester County","charOffset":15791},{"name":"Peach Festival","charOffset":15821},{"name":"Mullica Hill","charOffset":15839},{"name":"Salem County Fair","charOffset":15888},{"name":"Crown Ice Cream","charOffset":15956},{"name":"Royale Crown Ice Cream","charOffset":16047},{"name":"White Horse Pike","charOffset":16104},{"name":"Blueberry Capital","charOffset":16355}][{"amount":500,"amountType":"Forrestal Road","charOffset":1048},{"amount":16,"amountType":"dollars for adults","charOffset":1148},{"amount":12,"amountType":"dollars for children ages 3","charOffset":1161},{"amount":8,"amountType":"Sand Beer Co","charOffset":1583},{"amount":323,"amountType":"is located at 115","charOffset":1744},{"amount":26,"amountType":"dollars ","charOffset":2926},{"amount":20,"amountType":"dollars ","charOffset":3207},{"amount":45,"amountType":"dollars ","charOffset":3212},{"amount":501,"amountType":"East Pearl Street","charOffset":4115},{"amount":206,"amountType":"South","charOffset":4475},{"amount":5,"amountType":"dollars ","charOffset":4818},{"amount":10,"amountType":"dollars a carload per day","charOffset":4823},{"amount":10,"amountType":"dollars ","charOffset":4855},{"amount":20,"amountType":"dollars on weekends","charOffset":4860},{"amount":715,"amountType":"Route 206","charOffset":4874},{"amount":449,"amountType":"Sooy Place Road","charOffset":5360},{"amount":328,"amountType":"Martin Luther King Drive","charOffset":5929},{"amount":15,"amountType":"with its military weekend","charOffset":7106},{"amount":14,"amountType":"dollars for adults","charOffset":7216},{"amount":12,"amountType":"dollars for children #xA0","charOffset":7231},{"amount":40,"amountType":"breweries will be on","charOffset":7973},{"amount":2,"amountType":"sessions","charOffset":8071},{"amount":100,"amountType":"beers","charOffset":8190},{"amount":40,"amountType":"dollars plus taxes","charOffset":8381},{"amount":45,"amountType":"dollars plus taxes","charOffset":8419},{"amount":3,"amountType":"times during the afternoon","charOffset":9859},{"amount":3,"amountType":"home games remaining at","charOffset":10962},{"amount":7,"amountType":"p m Visit the","charOffset":11077},{"amount":4,"amountType":"of July celebration","charOffset":11623}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://acblackjacks.com;http://curtinsmarina.net/;http://funplexmountlaurel.com/;http://www.camdencounty.com/enjoy-camden-county/entertainment/;http://www.ocnj.us/niv/;https://airshow.acchamber.com/;https://bayshorecenter.org/;https://capemaycountynj.gov/1008/Park-Zoo;https://hcsv.org/cold-spring-brewery/;https://seaportpier.com/;https://thefaf.net/events/;https://usnasw.org/;https://wildwoodbeerfest.com/;https://www.TheAve.biz;https://www.njconservation.org/preserve/franklin-parker-preserve/;https://www.njconservation.org/preserve/michael-huber-prairie-warbler-preserve/;https://www.visitnj.org/nj-parks-forests-nature/atsion-recreation-area;https://www.whitmanat200.org/events-by-month</PAGE_LINKS><PAGE_ALTURL_AMP>https://amp.thedailyjournal.com/amp/3744892002</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBottawasun.comhttps://ottawasun.com/pmn/press-releases-pmn/business-wire-news-releases-pmn/bermuda-team-connects-with-fintech-leaders-in-toronto/wcm/a758f520-be13-44ab-a836-381505e52a65[][]["SCIENCE","SOC_INNOVATION","ECON_ENTREPRENEURSHIP","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_REGULATION","EPU_CATS_REGULATION","TAX_ETHNICITY","TAX_ETHNICITY_CANADIAN","PROTEST","EPU_POLICY_WHITE_HOUSE","TAX_FNCACT","TAX_FNCACT_CORRESPONDENT","EPU_POLICY_REGULATORY","TAX_FNCACT_REGULATOR","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","EPU_ECONOMY_HISTORIC","SLFID_ECONOMIC_DEVELOPMENTAID","TAX_FNCACT_CHIEF","TAX_FNCACT_CEO","TAX_FNCACT_REPRESENTATIVES","SOC_EMERGINGTECH","MANMADE_DISASTER_IMPLIED","WB_728_PUBLIC_SERVICE_DELIVERY","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_723_PUBLIC_ADMINISTRATION","WB_2098_OUTSOURCING","TAX_ETHNICITY_AMERICAN","URBAN","TAX_FNCACT_EXECUTIVES","WB_1973_FINANCIAL_RISK_REDUCTION","WB_435_AGRICULTURE_AND_FOOD_SECURITY","WB_337_INSURANCE","WB_1967_AGRICULTURAL_RISK_AND_SECURITY","TAX_FNCACT_ENGINEER","WB_2409_COCREATION","WB_2399_ICT_INNOVATION_AND_TRANSFORMATION","WB_2401_ICT_INNOVATION_METHODOLOGIES","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","EDUCATION","WB_470_EDUCATION","WB_494_EDUCATION_AND_ICT","WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","TAX_ETHNICITY_BERMUDIAN","TAX_FNCACT_ENTREPRENEUR","TAX_FNCACT_FOUNDER","WB_2207_THEMATIC_BASED_PPPS","WB_2206_PUBLIC_PRIVATE_PARTNERSHIPS","WB_999_PPP_IN_IRRIGATION","TAX_FNCACT_OFFICIALS"][{"theme":"GENERAL_GOVERNMENT","charOffset":1433},{"theme":"GENERAL_GOVERNMENT","charOffset":2689},{"theme":"GENERAL_GOVERNMENT","charOffset":4159},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1433},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2689},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":4159},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1990},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3539},{"theme":"ECON_ENTREPRENEURSHIP","charOffset":153},{"theme":"ECON_ENTREPRENEURSHIP","charOffset":1741},{"theme":"WB_1973_FINANCIAL_RISK_REDUCTION","charOffset":2701},{"theme":"WB_435_AGRICULTURE_AND_FOOD_SECURITY","charOffset":2701},{"theme":"WB_337_INSURANCE","charOffset":2701},{"theme":"WB_1967_AGRICULTURAL_RISK_AND_SECURITY","charOffset":2701},{"theme":"TAX_FNCACT_CORRESPONDENT","charOffset":722},{"theme":"WB_2207_THEMATIC_BASED_PPPS","charOffset":4050},{"theme":"WB_2206_PUBLIC_PRIVATE_PARTNERSHIPS","charOffset":4050},{"theme":"WB_999_PPP_IN_IRRIGATION","charOffset":4050},{"theme":"SOC_EMERGINGTECH","charOffset":1794},{"theme":"TAX_FNCACT_REPRESENTATIVES","charOffset":1650},{"theme":"TAX_FNCACT_EXECUTIVES","charOffset":2530},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":2355},{"theme":"TAX_FNCACT_CHIEF","charOffset":1526},{"theme":"TAX_FNCACT_ENGINEER","charOffset":2840},{"theme":"EPU_POLICY_REGULATORY","charOffset":846},{"theme":"EPU_POLICY_REGULATORY","charOffset":4106},{"theme":"EDUCATION","charOffset":3573},{"theme":"WB_470_EDUCATION","charOffset":3573},{"theme":"WB_2409_COCREATION","charOffset":2934},{"theme":"WB_2399_ICT_INNOVATION_AND_TRANSFORMATION","charOffset":2934},{"theme":"WB_2401_ICT_INNOVATION_METHODOLOGIES","charOffset":2934},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":2934},{"theme":"TAX_FNCACT_REGULATOR","charOffset":1156},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1467},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1622},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":3176},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":3875},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4222},{"theme":"PROTEST","charOffset":614},{"theme":"TAX_FNCACT_ENTREPRENEUR","charOffset":3614},{"theme":"URBAN","charOffset":2454},{"theme":"SLFID_ECONOMIC_DEVELOPMENTAID","charOffset":1486},{"theme":"TAX_FNCACT_CEO","charOffset":1566},{"theme":"TAX_FNCACT_FOUNDER","charOffset":3636},{"theme":"TAX_ETHNICITY_BERMUDIAN","charOffset":3601},{"theme":"WB_494_EDUCATION_AND_ICT","charOffset":3584},{"theme":"WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","charOffset":3584},{"theme":"TAX_ETHNICITY_CANADIAN","charOffset":510},{"theme":"USPEC_POLICY1","charOffset":314},{"theme":"USPEC_POLICY1","charOffset":645},{"theme":"EPU_POLICY_REGULATION","charOffset":314},{"theme":"EPU_POLICY_REGULATION","charOffset":645},{"theme":"EPU_CATS_REGULATION","charOffset":314},{"theme":"EPU_CATS_REGULATION","charOffset":645},{"theme":"SCIENCE","charOffset":96},{"theme":"SCIENCE","charOffset":293},{"theme":"SCIENCE","charOffset":658},{"theme":"SCIENCE","charOffset":2776},{"theme":"SCIENCE","charOffset":2876},{"theme":"SOC_INNOVATION","charOffset":96},{"theme":"SOC_INNOVATION","charOffset":293},{"theme":"SOC_INNOVATION","charOffset":658},{"theme":"SOC_INNOVATION","charOffset":2776},{"theme":"SOC_INNOVATION","charOffset":2876},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":4116},{"theme":"WB_728_PUBLIC_SERVICE_DELIVERY","charOffset":2323},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":2323},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":2323},{"theme":"WB_2098_OUTSOURCING","charOffset":2323},{"theme":"EPU_POLICY_WHITE_HOUSE","charOffset":693}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"}][{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":7},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":164},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":340},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":1688},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":2462},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":3159},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":3210},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":3732},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":31},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":835},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1084},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1398},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1458},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1925},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":2495},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":2992},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":3374},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":3791},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":3838},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":4148},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":4233},{"location":{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":693},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":199},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2271},{"location":{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},"charOffset":678},{"location":{"geoType":"COUNTRY","geoName":"Canadian","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":510},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2355},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":15},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":172},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":348},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":2470},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":2546},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3167},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3218},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3285},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3740}]["andy burrows","mitch ocampo","philip crowther","david burt","adam hitchcock"][{"person":"Andy Burrows","charOffset":1579},{"person":"Mitch Ocampo","charOffset":2818},{"person":"Philip Crowther","charOffset":738},{"person":"David Burt","charOffset":50},{"person":"Adam Hitchcock","charOffset":772}]["bermuda business development agency","toronto finance international","white house","bermuda monetary authority","reinsurance group of america","toronto business development centre","enercare centre","team bermuda","berkshire hathaway","accenture","studio innovation lab"][{"organisation":"Bermuda Business Development Agency","charOffset":1486},{"organisation":"White House","charOffset":693},{"organisation":"Bermuda Monetary Authority","charOffset":1103},{"organisation":"Reinsurance Group Of America","charOffset":2271},{"organisation":"Enercare Centre","charOffset":493},{"organisation":"Team Bermuda","charOffset":2495},{"organisation":"Team Bermuda","charOffset":2992},{"organisation":"Team Bermuda","charOffset":3791},{"organisation":"Berkshire Hathaway","charOffset":2567},{"organisation":"Accenture","charOffset":3125},{"organisation":"Studio Innovation Lab","charOffset":2880}]{"tone":3.652968,"positiveScore":4.261796,"negativeScore":0.608828,"polarity":4.870624,"activityReferenceDensity":18.72146,"selfGroupReferenceDensity":2.130898,"wordCount":589}[][{"gcamCode":"wc","gcamValue":589},{"gcamCode":"c1.2","gcamValue":7},{"gcamCode":"c12.1","gcamValue":15},{"gcamCode":"c12.10","gcamValue":44},{"gcamCode":"c12.12","gcamValue":8},{"gcamCode":"c12.13","gcamValue":10},{"gcamCode":"c12.14","gcamValue":30},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":9},{"gcamCode":"c12.8","gcamValue":11},{"gcamCode":"c12.9","gcamValue":42},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c14.1","gcamValue":31},{"gcamCode":"c14.10","gcamValue":13},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":18},{"gcamCode":"c14.3","gcamValue":43},{"gcamCode":"c14.4","gcamValue":8},{"gcamCode":"c14.5","gcamValue":43},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.8","gcamValue":5},{"gcamCode":"c14.9","gcamValue":5},{"gcamCode":"c15.102","gcamValue":3},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.114","gcamValue":1},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.226","gcamValue":1},{"gcamCode":"c15.227","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":23},{"gcamCode":"c16.101","gcamValue":4},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":17},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":28},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":74},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":27},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":13},{"gcamCode":"c16.117","gcamValue":14},{"gcamCode":"c16.118","gcamValue":25},{"gcamCode":"c16.12","gcamValue":43},{"gcamCode":"c16.120","gcamValue":32},{"gcamCode":"c16.121","gcamValue":45},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":4},{"gcamCode":"c16.125","gcamValue":33},{"gcamCode":"c16.126","gcamValue":27},{"gcamCode":"c16.127","gcamValue":48},{"gcamCode":"c16.128","gcamValue":8},{"gcamCode":"c16.129","gcamValue":40},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":23},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":39},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":14},{"gcamCode":"c16.139","gcamValue":17},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":7},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":30},{"gcamCode":"c16.146","gcamValue":40},{"gcamCode":"c16.148","gcamValue":1},{"gcamCode":"c16.149","gcamValue":3},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":22},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":23},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":36},{"gcamCode":"c16.16","gcamValue":9},{"gcamCode":"c16.161","gcamValue":48},{"gcamCode":"c16.162","gcamValue":30},{"gcamCode":"c16.163","gcamValue":38},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":9},{"gcamCode":"c16.2","gcamValue":63},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":4},{"gcamCode":"c16.22","gcamValue":10},{"gcamCode":"c16.23","gcamValue":11},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":66},{"gcamCode":"c16.27","gcamValue":5},{"gcamCode":"c16.28","gcamValue":5},{"gcamCode":"c16.29","gcamValue":3},{"gcamCode":"c16.3","gcamValue":13},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":47},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":49},{"gcamCode":"c16.34","gcamValue":9},{"gcamCode":"c16.35","gcamValue":28},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":52},{"gcamCode":"c16.38","gcamValue":22},{"gcamCode":"c16.4","gcamValue":34},{"gcamCode":"c16.41","gcamValue":19},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":18},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":82},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":14},{"gcamCode":"c16.52","gcamValue":44},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":19},{"gcamCode":"c16.57","gcamValue":283},{"gcamCode":"c16.58","gcamValue":30},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":47},{"gcamCode":"c16.60","gcamValue":11},{"gcamCode":"c16.61","gcamValue":6},{"gcamCode":"c16.62","gcamValue":16},{"gcamCode":"c16.63","gcamValue":11},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":6},{"gcamCode":"c16.66","gcamValue":11},{"gcamCode":"c16.68","gcamValue":22},{"gcamCode":"c16.69","gcamValue":16},{"gcamCode":"c16.7","gcamValue":14},{"gcamCode":"c16.70","gcamValue":30},{"gcamCode":"c16.71","gcamValue":9},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":7},{"gcamCode":"c16.75","gcamValue":19},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":7},{"gcamCode":"c16.79","gcamValue":6},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.84","gcamValue":45},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":47},{"gcamCode":"c16.88","gcamValue":46},{"gcamCode":"c16.89","gcamValue":13},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":22},{"gcamCode":"c16.91","gcamValue":23},{"gcamCode":"c16.92","gcamValue":32},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":40},{"gcamCode":"c16.95","gcamValue":28},{"gcamCode":"c16.96","gcamValue":14},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":38},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":124},{"gcamCode":"c17.10","gcamValue":64},{"gcamCode":"c17.11","gcamValue":74},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":43},{"gcamCode":"c17.16","gcamValue":32},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":9},{"gcamCode":"c17.19","gcamValue":27},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":4},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":13},{"gcamCode":"c17.23","gcamValue":7},{"gcamCode":"c17.24","gcamValue":43},{"gcamCode":"c17.25","gcamValue":7},{"gcamCode":"c17.26","gcamValue":4},{"gcamCode":"c17.27","gcamValue":53},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":31},{"gcamCode":"c17.32","gcamValue":19},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":17},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":20},{"gcamCode":"c17.37","gcamValue":24},{"gcamCode":"c17.38","gcamValue":7},{"gcamCode":"c17.39","gcamValue":28},{"gcamCode":"c17.4","gcamValue":88},{"gcamCode":"c17.40","gcamValue":7},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":28},{"gcamCode":"c17.43","gcamValue":21},{"gcamCode":"c17.5","gcamValue":113},{"gcamCode":"c17.6","gcamValue":6},{"gcamCode":"c17.7","gcamValue":79},{"gcamCode":"c17.8","gcamValue":50},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.147","gcamValue":1},{"gcamCode":"c18.178","gcamValue":3},{"gcamCode":"c18.180","gcamValue":4},{"gcamCode":"c18.193","gcamValue":10},{"gcamCode":"c18.199","gcamValue":1},{"gcamCode":"c18.219","gcamValue":1},{"gcamCode":"c18.3","gcamValue":1},{"gcamCode":"c18.305","gcamValue":1},{"gcamCode":"c18.333","gcamValue":6},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.35","gcamValue":6},{"gcamCode":"c18.66","gcamValue":1},{"gcamCode":"c18.82","gcamValue":5},{"gcamCode":"c2.1","gcamValue":11},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":13},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":51},{"gcamCode":"c2.106","gcamValue":10},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":17},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":16},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":11},{"gcamCode":"c2.119","gcamValue":169},{"gcamCode":"c2.12","gcamValue":18},{"gcamCode":"c2.121","gcamValue":28},{"gcamCode":"c2.122","gcamValue":5},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.124","gcamValue":9},{"gcamCode":"c2.125","gcamValue":12},{"gcamCode":"c2.126","gcamValue":22},{"gcamCode":"c2.127","gcamValue":51},{"gcamCode":"c2.128","gcamValue":15},{"gcamCode":"c2.129","gcamValue":45},{"gcamCode":"c2.131","gcamValue":5},{"gcamCode":"c2.132","gcamValue":11},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":39},{"gcamCode":"c2.141","gcamValue":12},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":40},{"gcamCode":"c2.144","gcamValue":8},{"gcamCode":"c2.145","gcamValue":7},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":94},{"gcamCode":"c2.148","gcamValue":35},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":32},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":19},{"gcamCode":"c2.154","gcamValue":18},{"gcamCode":"c2.155","gcamValue":59},{"gcamCode":"c2.156","gcamValue":23},{"gcamCode":"c2.157","gcamValue":43},{"gcamCode":"c2.158","gcamValue":27},{"gcamCode":"c2.159","gcamValue":3},{"gcamCode":"c2.160","gcamValue":25},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.169","gcamValue":6},{"gcamCode":"c2.17","gcamValue":4},{"gcamCode":"c2.170","gcamValue":6},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":5},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":28},{"gcamCode":"c2.179","gcamValue":20},{"gcamCode":"c2.18","gcamValue":16},{"gcamCode":"c2.180","gcamValue":16},{"gcamCode":"c2.181","gcamValue":26},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":109},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":24},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.190","gcamValue":2},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":8},{"gcamCode":"c2.193","gcamValue":24},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":64},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":40},{"gcamCode":"c2.199","gcamValue":15},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":18},{"gcamCode":"c2.204","gcamValue":35},{"gcamCode":"c2.205","gcamValue":8},{"gcamCode":"c2.206","gcamValue":11},{"gcamCode":"c2.207","gcamValue":7},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":51},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":5},{"gcamCode":"c2.214","gcamValue":21},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":6},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":17},{"gcamCode":"c2.223","gcamValue":17},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":12},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":19},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":25},{"gcamCode":"c2.26","gcamValue":24},{"gcamCode":"c2.27","gcamValue":24},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":18},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":26},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":8},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":84},{"gcamCode":"c2.44","gcamValue":40},{"gcamCode":"c2.45","gcamValue":52},{"gcamCode":"c2.46","gcamValue":41},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":17},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":32},{"gcamCode":"c2.53","gcamValue":3},{"gcamCode":"c2.54","gcamValue":41},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.57","gcamValue":5},{"gcamCode":"c2.58","gcamValue":29},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":5},{"gcamCode":"c2.62","gcamValue":17},{"gcamCode":"c2.64","gcamValue":8},{"gcamCode":"c2.65","gcamValue":4},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.73","gcamValue":9},{"gcamCode":"c2.74","gcamValue":6},{"gcamCode":"c2.75","gcamValue":92},{"gcamCode":"c2.76","gcamValue":352},{"gcamCode":"c2.77","gcamValue":46},{"gcamCode":"c2.78","gcamValue":74},{"gcamCode":"c2.79","gcamValue":10},{"gcamCode":"c2.80","gcamValue":70},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":19},{"gcamCode":"c2.83","gcamValue":5},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":20},{"gcamCode":"c2.87","gcamValue":6},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":18},{"gcamCode":"c2.9","gcamValue":8},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":7},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":77},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":7},{"gcamCode":"c2.98","gcamValue":22},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":5},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":13},{"gcamCode":"c3.2","gcamValue":42},{"gcamCode":"c35.1","gcamValue":10},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":10},{"gcamCode":"c35.14","gcamValue":8},{"gcamCode":"c35.15","gcamValue":20},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":16},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.3","gcamValue":9},{"gcamCode":"c35.31","gcamValue":50},{"gcamCode":"c35.32","gcamValue":29},{"gcamCode":"c35.33","gcamValue":22},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":10},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.19","gcamValue":7},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.3","gcamValue":15},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":18},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":15},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":8},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.20","gcamValue":1},{"gcamCode":"c4.23","gcamValue":16},{"gcamCode":"c4.24","gcamValue":6},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":30},{"gcamCode":"c5.10","gcamValue":33},{"gcamCode":"c5.11","gcamValue":14},{"gcamCode":"c5.12","gcamValue":61},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":3},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":4},{"gcamCode":"c5.23","gcamValue":12},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.25","gcamValue":3},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":11},{"gcamCode":"c5.29","gcamValue":7},{"gcamCode":"c5.30","gcamValue":41},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":12},{"gcamCode":"c5.36","gcamValue":15},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.38","gcamValue":5},{"gcamCode":"c5.4","gcamValue":12},{"gcamCode":"c5.40","gcamValue":49},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":13},{"gcamCode":"c5.46","gcamValue":88},{"gcamCode":"c5.47","gcamValue":14},{"gcamCode":"c5.49","gcamValue":44},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":50},{"gcamCode":"c5.51","gcamValue":28},{"gcamCode":"c5.52","gcamValue":55},{"gcamCode":"c5.53","gcamValue":54},{"gcamCode":"c5.54","gcamValue":21},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":11},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":23},{"gcamCode":"c5.60","gcamValue":16},{"gcamCode":"c5.61","gcamValue":37},{"gcamCode":"c5.62","gcamValue":228},{"gcamCode":"c5.7","gcamValue":18},{"gcamCode":"c5.8","gcamValue":43},{"gcamCode":"c5.9","gcamValue":17},{"gcamCode":"c6.1","gcamValue":12},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":4},{"gcamCode":"c6.5","gcamValue":20},{"gcamCode":"c7.1","gcamValue":8},{"gcamCode":"c7.2","gcamValue":32},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.15","gcamValue":2},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":16},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":3},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":8},{"gcamCode":"c8.38","gcamValue":21},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":16},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.42","gcamValue":23},{"gcamCode":"c8.43","gcamValue":11},{"gcamCode":"c9.1","gcamValue":20},{"gcamCode":"c9.10","gcamValue":6},{"gcamCode":"c9.100","gcamValue":3},{"gcamCode":"c9.1005","gcamValue":5},{"gcamCode":"c9.1007","gcamValue":5},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.104","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.11","gcamValue":2},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":7},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":20},{"gcamCode":"c9.129","gcamValue":7},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":6},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":5},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":7},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":20},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":4},{"gcamCode":"c9.162","gcamValue":7},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":9},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":4},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":11},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.200","gcamValue":5},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":5},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.211","gcamValue":3},{"gcamCode":"c9.212","gcamValue":3},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.22","gcamValue":5},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":4},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.292","gcamValue":5},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":16},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.323","gcamValue":4},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":6},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":2},{"gcamCode":"c9.34","gcamValue":7},{"gcamCode":"c9.342","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.356","gcamValue":3},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":5},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.39","gcamValue":15},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.426","gcamValue":1},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":7},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":8},{"gcamCode":"c9.472","gcamValue":2},{"gcamCode":"c9.473","gcamValue":5},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.479","gcamValue":6},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":4},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.498","gcamValue":9},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":11},{"gcamCode":"c9.513","gcamValue":9},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.519","gcamValue":5},{"gcamCode":"c9.521","gcamValue":6},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.537","gcamValue":6},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.561","gcamValue":3},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":18},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.61","gcamValue":7},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.619","gcamValue":4},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":5},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.630","gcamValue":8},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":12},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":6},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.653","gcamValue":33},{"gcamCode":"c9.654","gcamValue":4},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":8},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":3},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":6},{"gcamCode":"c9.670","gcamValue":5},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":11},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":5},{"gcamCode":"c9.687","gcamValue":6},{"gcamCode":"c9.690","gcamValue":3},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.70","gcamValue":6},{"gcamCode":"c9.701","gcamValue":11},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":13},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":11},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.710","gcamValue":22},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.714","gcamValue":7},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.720","gcamValue":15},{"gcamCode":"c9.721","gcamValue":8},{"gcamCode":"c9.722","gcamValue":6},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":9},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":30},{"gcamCode":"c9.73","gcamValue":6},{"gcamCode":"c9.730","gcamValue":17},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.735","gcamValue":9},{"gcamCode":"c9.736","gcamValue":9},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":16},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":8},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":18},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":8},{"gcamCode":"c9.766","gcamValue":7},{"gcamCode":"c9.767","gcamValue":26},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":4},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":9},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.793","gcamValue":3},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.810","gcamValue":3},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.826","gcamValue":6},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":16},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":7},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.845","gcamValue":3},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.860","gcamValue":8},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":18},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.868","gcamValue":18},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":3},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.908","gcamValue":6},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":8},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.955","gcamValue":6},{"gcamCode":"c9.96","gcamValue":10},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.966","gcamValue":6},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.972","gcamValue":12},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.984","gcamValue":3},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":4},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.252272727272727},{"gcamCode":"v10.2","gcamValue":0.257329861111111},{"gcamCode":"v11.1","gcamValue":0.0943919028340081},{"gcamCode":"v19.1","gcamValue":6.12288888888889},{"gcamCode":"v19.2","gcamValue":5.08066666666667},{"gcamCode":"v19.3","gcamValue":5.38866666666667},{"gcamCode":"v19.4","gcamValue":6.11555555555556},{"gcamCode":"v19.5","gcamValue":5.12711111111111},{"gcamCode":"v19.6","gcamValue":5.50755555555556},{"gcamCode":"v19.7","gcamValue":6.16444444444444},{"gcamCode":"v19.8","gcamValue":5.03911111111111},{"gcamCode":"v19.9","gcamValue":5.31133333333333},{"gcamCode":"v20.1","gcamValue":0.439},{"gcamCode":"v20.11","gcamValue":0.6711},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.51209756097561},{"gcamCode":"v20.14","gcamValue":-0.4125},{"gcamCode":"v20.15","gcamValue":0.4291},{"gcamCode":"v20.16","gcamValue":-0.358333333333333},{"gcamCode":"v20.3","gcamValue":0.73975},{"gcamCode":"v20.5","gcamValue":0.838625},{"gcamCode":"v20.7","gcamValue":0.8209},{"gcamCode":"v20.9","gcamValue":0.785166666666667},{"gcamCode":"v21.1","gcamValue":5.55075431034483},{"gcamCode":"v26.1","gcamValue":1.10555555555556}]https://financialpostcom.files.wordpress.com/2019/05/bw20190523005286_collision.jpeg[""][""][""][][{"name":"Bermuda Premier David Burt","charOffset":40},{"name":"North America","charOffset":183},{"name":"Enercare Centre","charOffset":496},{"name":"Philip Crowther","charOffset":739},{"name":"Adam Hitchcock","charOffset":778},{"name":"Patch Capital Partners","charOffset":804},{"name":"Bermuda Monetary Authority","charOffset":1134},{"name":"Bermuda Business Development","charOffset":1540},{"name":"Chief Fintech Advisor Denis Pitcher","charOffset":1620},{"name":"Reinsurance Group","charOffset":2346},{"name":"North American","charOffset":2446},{"name":"Team Bermuda","charOffset":2581},{"name":"Berkshire Hathaway","charOffset":2657},{"name":"Mitch Ocampo","charOffset":2928},{"name":"Studio Innovation Lab","charOffset":2993},{"name":"Team Bermuda","charOffset":3111},{"name":"SparkLabs Foundry","charOffset":3269},{"name":"Toronto Business Development Centre","charOffset":3314},{"name":"Toronto Finance International","charOffset":3357},{"name":"Coral Wells","charOffset":3777},{"name":"Team Bermuda","charOffset":3946}][{"amount":24,"amountType":"White House correspondent Philip","charOffset":575}]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://ottawasun.com/pmn/press-releases-pmn/business-wire-news-releases-pmn/bermuda-team-connects-with-fintech-leaders-in-toronto/wcm/a758f520-be13-44ab-a836-381505e52a65/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBchattooga1180.comhttp://chattooga1180.com/trion-native-serves-aboard-virginia-class-submarine/[][]["EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","SOC_POINTSOFINTEREST_HIGH_SCHOOL","MILITARY","TAX_FNCACT","TAX_FNCACT_NAVY","TAX_WEAPONS","TAX_WEAPONS_SUBMARINE","TAX_FNCACT_TECHNICIAN","CRISISLEX_CRISISLEXREC","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_COMMANDERS","MARITIME","CRISISLEX_T11_UPDATESSYMPATHY","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_167_PORTS","ENV_NUCLEARPOWER","WB_137_WATER","TAX_FNCACT_CREW_MEMBERS","TAX_FNCACT_SAILORS","ARMEDCONFLICT","EPU_CATS_NATIONAL_SECURITY","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_DOLPHINS","SURVEILLANCE"][{"theme":"ARMEDCONFLICT","charOffset":1467},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":1467},{"theme":"EDUCATION","charOffset":22},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":22},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":861},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":202},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":303},{"theme":"MILITARY","charOffset":92},{"theme":"MILITARY","charOffset":472},{"theme":"MILITARY","charOffset":1448},{"theme":"TAX_FNCACT_NAVY","charOffset":92},{"theme":"TAX_FNCACT_NAVY","charOffset":472},{"theme":"TAX_FNCACT_NAVY","charOffset":1448},{"theme":"TAX_FNCACT_SAILORS","charOffset":1336},{"theme":"SURVEILLANCE","charOffset":1954},{"theme":"WB_135_TRANSPORT","charOffset":923},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":923},{"theme":"WB_167_PORTS","charOffset":923},{"theme":"TAX_FNCACT_COMMANDERS","charOffset":699},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":142},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":212},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":313},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":451},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":594},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":965},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":1308},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":1646},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":1795},{"theme":"ENV_NUCLEARPOWER","charOffset":1045},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":584},{"theme":"TAX_WORLDMAMMALS_DOLPHINS","charOffset":1624},{"theme":"WB_137_WATER","charOffset":1076},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":654},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":22},{"theme":"MARITIME","charOffset":776},{"theme":"MARITIME","charOffset":1062},{"theme":"TAX_FNCACT_CREW_MEMBERS","charOffset":1287},{"theme":"TAX_FNCACT_CREW_MEMBERS","charOffset":1410}][{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"}][{"location":{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"},"charOffset":255},{"location":{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"},"charOffset":1694}]["treavor d flannigan"][]["a trion high school","u s navy virginia-class"][{"organisation":"A Trion High School","charOffset":22}]{"tone":0,"positiveScore":4.6153846,"negativeScore":4.6153846,"polarity":9.230769,"activityReferenceDensity":19.076923,"selfGroupReferenceDensity":0,"wordCount":288}[][{"gcamCode":"wc","gcamValue":288},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":12},{"gcamCode":"c12.10","gcamValue":34},{"gcamCode":"c12.12","gcamValue":15},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":16},{"gcamCode":"c12.3","gcamValue":4},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":7},{"gcamCode":"c12.7","gcamValue":17},{"gcamCode":"c12.8","gcamValue":7},{"gcamCode":"c12.9","gcamValue":22},{"gcamCode":"c13.7","gcamValue":12},{"gcamCode":"c14.1","gcamValue":17},{"gcamCode":"c14.10","gcamValue":7},{"gcamCode":"c14.11","gcamValue":29},{"gcamCode":"c14.2","gcamValue":11},{"gcamCode":"c14.3","gcamValue":14},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":34},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.124","gcamValue":1},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.158","gcamValue":1},{"gcamCode":"c15.168","gcamValue":3},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":30},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":14},{"gcamCode":"c16.106","gcamValue":11},{"gcamCode":"c16.109","gcamValue":21},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":43},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":16},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":17},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":22},{"gcamCode":"c16.12","gcamValue":19},{"gcamCode":"c16.120","gcamValue":29},{"gcamCode":"c16.121","gcamValue":32},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":20},{"gcamCode":"c16.126","gcamValue":17},{"gcamCode":"c16.127","gcamValue":18},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":32},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":4},{"gcamCode":"c16.131","gcamValue":14},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":30},{"gcamCode":"c16.138","gcamValue":16},{"gcamCode":"c16.139","gcamValue":11},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":6},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":18},{"gcamCode":"c16.146","gcamValue":32},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":19},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":27},{"gcamCode":"c16.16","gcamValue":16},{"gcamCode":"c16.161","gcamValue":24},{"gcamCode":"c16.162","gcamValue":8},{"gcamCode":"c16.163","gcamValue":42},{"gcamCode":"c16.164","gcamValue":5},{"gcamCode":"c16.165","gcamValue":8},{"gcamCode":"c16.168","gcamValue":2},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":9},{"gcamCode":"c16.19","gcamValue":9},{"gcamCode":"c16.2","gcamValue":20},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.26","gcamValue":39},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.30","gcamValue":4},{"gcamCode":"c16.31","gcamValue":25},{"gcamCode":"c16.33","gcamValue":32},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":13},{"gcamCode":"c16.36","gcamValue":4},{"gcamCode":"c16.37","gcamValue":27},{"gcamCode":"c16.38","gcamValue":18},{"gcamCode":"c16.4","gcamValue":21},{"gcamCode":"c16.41","gcamValue":11},{"gcamCode":"c16.42","gcamValue":2},{"gcamCode":"c16.45","gcamValue":12},{"gcamCode":"c16.46","gcamValue":5},{"gcamCode":"c16.47","gcamValue":47},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":24},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":4},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":179},{"gcamCode":"c16.58","gcamValue":23},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":35},{"gcamCode":"c16.60","gcamValue":9},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":12},{"gcamCode":"c16.63","gcamValue":10},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.65","gcamValue":5},{"gcamCode":"c16.66","gcamValue":5},{"gcamCode":"c16.68","gcamValue":25},{"gcamCode":"c16.69","gcamValue":11},{"gcamCode":"c16.7","gcamValue":6},{"gcamCode":"c16.70","gcamValue":18},{"gcamCode":"c16.71","gcamValue":8},{"gcamCode":"c16.72","gcamValue":8},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":11},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":14},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":4},{"gcamCode":"c16.84","gcamValue":27},{"gcamCode":"c16.87","gcamValue":38},{"gcamCode":"c16.88","gcamValue":35},{"gcamCode":"c16.89","gcamValue":6},{"gcamCode":"c16.90","gcamValue":6},{"gcamCode":"c16.91","gcamValue":24},{"gcamCode":"c16.92","gcamValue":16},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":44},{"gcamCode":"c16.95","gcamValue":57},{"gcamCode":"c16.96","gcamValue":14},{"gcamCode":"c16.97","gcamValue":4},{"gcamCode":"c16.98","gcamValue":26},{"gcamCode":"c16.99","gcamValue":6},{"gcamCode":"c17.1","gcamValue":85},{"gcamCode":"c17.10","gcamValue":34},{"gcamCode":"c17.11","gcamValue":40},{"gcamCode":"c17.12","gcamValue":7},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":17},{"gcamCode":"c17.15","gcamValue":32},{"gcamCode":"c17.16","gcamValue":9},{"gcamCode":"c17.18","gcamValue":12},{"gcamCode":"c17.19","gcamValue":15},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.22","gcamValue":7},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":21},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.27","gcamValue":24},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":9},{"gcamCode":"c17.3","gcamValue":6},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":12},{"gcamCode":"c17.32","gcamValue":8},{"gcamCode":"c17.33","gcamValue":14},{"gcamCode":"c17.34","gcamValue":25},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":27},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":27},{"gcamCode":"c17.4","gcamValue":59},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":7},{"gcamCode":"c17.42","gcamValue":16},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.5","gcamValue":62},{"gcamCode":"c17.6","gcamValue":3},{"gcamCode":"c17.7","gcamValue":66},{"gcamCode":"c17.8","gcamValue":36},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.169","gcamValue":1},{"gcamCode":"c18.193","gcamValue":9},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.7","gcamValue":1},{"gcamCode":"c18.72","gcamValue":3},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":18},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":10},{"gcamCode":"c2.103","gcamValue":26},{"gcamCode":"c2.104","gcamValue":56},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":8},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":4},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":26},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":21},{"gcamCode":"c2.119","gcamValue":106},{"gcamCode":"c2.12","gcamValue":15},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":38},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":15},{"gcamCode":"c2.126","gcamValue":16},{"gcamCode":"c2.127","gcamValue":34},{"gcamCode":"c2.128","gcamValue":18},{"gcamCode":"c2.129","gcamValue":35},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":27},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":28},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.143","gcamValue":45},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":42},{"gcamCode":"c2.148","gcamValue":24},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":7},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":27},{"gcamCode":"c2.156","gcamValue":9},{"gcamCode":"c2.157","gcamValue":26},{"gcamCode":"c2.158","gcamValue":17},{"gcamCode":"c2.159","gcamValue":8},{"gcamCode":"c2.16","gcamValue":2},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":6},{"gcamCode":"c2.177","gcamValue":17},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":11},{"gcamCode":"c2.180","gcamValue":11},{"gcamCode":"c2.181","gcamValue":13},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":15},{"gcamCode":"c2.185","gcamValue":51},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":16},{"gcamCode":"c2.188","gcamValue":12},{"gcamCode":"c2.189","gcamValue":12},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.195","gcamValue":57},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":27},{"gcamCode":"c2.199","gcamValue":7},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":7},{"gcamCode":"c2.204","gcamValue":24},{"gcamCode":"c2.205","gcamValue":11},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":22},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.212","gcamValue":12},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":12},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.218","gcamValue":2},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":8},{"gcamCode":"c2.223","gcamValue":8},{"gcamCode":"c2.225","gcamValue":5},{"gcamCode":"c2.226","gcamValue":14},{"gcamCode":"c2.23","gcamValue":15},{"gcamCode":"c2.25","gcamValue":18},{"gcamCode":"c2.26","gcamValue":13},{"gcamCode":"c2.27","gcamValue":13},{"gcamCode":"c2.28","gcamValue":9},{"gcamCode":"c2.30","gcamValue":14},{"gcamCode":"c2.31","gcamValue":12},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":6},{"gcamCode":"c2.36","gcamValue":5},{"gcamCode":"c2.37","gcamValue":5},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":40},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.41","gcamValue":2},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":14},{"gcamCode":"c2.45","gcamValue":28},{"gcamCode":"c2.46","gcamValue":22},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":10},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":27},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":30},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":13},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":12},{"gcamCode":"c2.64","gcamValue":11},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":8},{"gcamCode":"c2.75","gcamValue":36},{"gcamCode":"c2.76","gcamValue":207},{"gcamCode":"c2.77","gcamValue":30},{"gcamCode":"c2.78","gcamValue":37},{"gcamCode":"c2.79","gcamValue":16},{"gcamCode":"c2.80","gcamValue":28},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":7},{"gcamCode":"c2.83","gcamValue":4},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.85","gcamValue":2},{"gcamCode":"c2.86","gcamValue":6},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.9","gcamValue":3},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.93","gcamValue":8},{"gcamCode":"c2.95","gcamValue":54},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":19},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":15},{"gcamCode":"c3.2","gcamValue":26},{"gcamCode":"c35.1","gcamValue":7},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.24","gcamValue":18},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":16},{"gcamCode":"c35.32","gcamValue":7},{"gcamCode":"c35.33","gcamValue":29},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.6","gcamValue":3},{"gcamCode":"c35.7","gcamValue":2},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":4},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":16},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.35","gcamValue":1},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":10},{"gcamCode":"c39.38","gcamValue":3},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":12},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.10","gcamValue":1},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.17","gcamValue":4},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":11},{"gcamCode":"c4.8","gcamValue":2},{"gcamCode":"c40.3","gcamValue":2},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":19},{"gcamCode":"c5.11","gcamValue":4},{"gcamCode":"c5.12","gcamValue":41},{"gcamCode":"c5.13","gcamValue":4},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":7},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":8},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":22},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":8},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":20},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.40","gcamValue":10},{"gcamCode":"c5.43","gcamValue":7},{"gcamCode":"c5.45","gcamValue":10},{"gcamCode":"c5.46","gcamValue":33},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":22},{"gcamCode":"c5.50","gcamValue":25},{"gcamCode":"c5.51","gcamValue":16},{"gcamCode":"c5.52","gcamValue":30},{"gcamCode":"c5.53","gcamValue":26},{"gcamCode":"c5.54","gcamValue":8},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.59","gcamValue":12},{"gcamCode":"c5.6","gcamValue":15},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":22},{"gcamCode":"c5.62","gcamValue":110},{"gcamCode":"c5.7","gcamValue":11},{"gcamCode":"c5.8","gcamValue":11},{"gcamCode":"c5.9","gcamValue":16},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.4","gcamValue":6},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c7.1","gcamValue":12},{"gcamCode":"c7.2","gcamValue":18},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":10},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.18","gcamValue":3},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":7},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":11},{"gcamCode":"c8.40","gcamValue":6},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":15},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.128","gcamValue":12},{"gcamCode":"c9.129","gcamValue":4},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":3},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.146","gcamValue":1},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.160","gcamValue":5},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":6},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":5},{"gcamCode":"c9.169","gcamValue":7},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.177","gcamValue":9},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":13},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":3},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":4},{"gcamCode":"c9.229","gcamValue":5},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.262","gcamValue":10},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":7},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":4},{"gcamCode":"c9.277","gcamValue":3},{"gcamCode":"c9.279","gcamValue":3},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":4},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.283","gcamValue":19},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":14},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.358","gcamValue":4},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.456","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.485","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.5","gcamValue":3},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":10},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":9},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":3},{"gcamCode":"c9.533","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":4},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":4},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":7},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":5},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.570","gcamValue":8},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":12},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.59","gcamValue":2},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.604","gcamValue":3},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":3},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.63","gcamValue":4},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":3},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.641","gcamValue":3},{"gcamCode":"c9.642","gcamValue":10},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":4},{"gcamCode":"c9.653","gcamValue":16},{"gcamCode":"c9.654","gcamValue":12},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":8},{"gcamCode":"c9.667","gcamValue":8},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":9},{"gcamCode":"c9.690","gcamValue":3},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.726","gcamValue":19},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":14},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.735","gcamValue":6},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.744","gcamValue":9},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":3},{"gcamCode":"c9.748","gcamValue":10},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":10},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":19},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":6},{"gcamCode":"c9.762","gcamValue":13},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.79","gcamValue":3},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":3},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":13},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.868","gcamValue":12},{"gcamCode":"c9.87","gcamValue":3},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.9","gcamValue":3},{"gcamCode":"c9.902","gcamValue":4},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":7},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":4},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.994","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.275219298245614},{"gcamCode":"v10.2","gcamValue":0.20784257518797},{"gcamCode":"v11.1","gcamValue":0.101726222222222},{"gcamCode":"v19.1","gcamValue":5.80818181818182},{"gcamCode":"v19.2","gcamValue":4.96},{"gcamCode":"v19.3","gcamValue":5.38121212121212},{"gcamCode":"v19.4","gcamValue":5.84454545454545},{"gcamCode":"v19.5","gcamValue":4.99606060606061},{"gcamCode":"v19.6","gcamValue":5.4469696969697},{"gcamCode":"v19.7","gcamValue":5.77272727272727},{"gcamCode":"v19.8","gcamValue":4.95939393939394},{"gcamCode":"v19.9","gcamValue":5.32181818181818},{"gcamCode":"v20.1","gcamValue":0.471},{"gcamCode":"v20.11","gcamValue":0.667},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.421363636363636},{"gcamCode":"v20.14","gcamValue":-0.385166666666667},{"gcamCode":"v20.15","gcamValue":0.38},{"gcamCode":"v20.16","gcamValue":-0.307928571428571},{"gcamCode":"v20.3","gcamValue":0.74},{"gcamCode":"v20.5","gcamValue":0.764333333333333},{"gcamCode":"v20.7","gcamValue":0.764333333333333},{"gcamCode":"v20.9","gcamValue":0.70875},{"gcamCode":"v21.1","gcamValue":5.49792792792793},{"gcamCode":"v26.1","gcamValue":0.523076923076923}]http://chattooga1180.com/wp-content/uploads/2019/05/Flannigan.jpg[""][""]["https://youtube.com/channel/UCOq5wdEx8Q6ZZlP6vWXGG3Q"][][{"name":"Trion High School","charOffset":22},{"name":"Information System Technician","charOffset":211},{"name":"Information System Technician","charOffset":320},{"name":"Blue Jacket","charOffset":1688}][{"amount":362,"amountType":"feet long","charOffset":837},{"amount":32,"amountType":"feet wide","charOffset":850},{"amount":800,"amountType":"tons","charOffset":878},{"amount":30,"amountType":"knots while submerged","charOffset":952},{"amount":134,"amountType":"crew members aboard the","charOffset":1104},{"amount":7,"amountType":"core competencies of the","charOffset":1522}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Jimmy Holbrook</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBmirror.co.ukhttps://www.mirror.co.uk/3am/style/celebrity-fashion/caroline-flack-river-island-collection-16188329[][]["MEDIA_MSM","TAX_FNCACT","TAX_FNCACT_PRESENTER","GEN_HOLIDAY","USPEC_POLITICS_GENERAL1"][{"theme":"TAX_FNCACT_PRESENTER","charOffset":78},{"theme":"GEN_HOLIDAY","charOffset":486},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":951},{"theme":"MEDIA_MSM","charOffset":54}][][]["caroline flack"][{"person":"Caroline Flack","charOffset":93}]["river island"][{"organisation":"River Island","charOffset":146},{"organisation":"River Island","charOffset":201},{"organisation":"River Island","charOffset":1016}]{"tone":7.4712644,"positiveScore":7.4712644,"negativeScore":0,"polarity":7.4712644,"activityReferenceDensity":23.56322,"selfGroupReferenceDensity":3.4482758,"wordCount":156}[][{"gcamCode":"wc","gcamValue":156},{"gcamCode":"c12.1","gcamValue":12},{"gcamCode":"c12.10","gcamValue":10},{"gcamCode":"c12.12","gcamValue":3},{"gcamCode":"c12.13","gcamValue":3},{"gcamCode":"c12.14","gcamValue":5},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":11},{"gcamCode":"c12.7","gcamValue":3},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":15},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.3","gcamValue":3},{"gcamCode":"c14.1","gcamValue":9},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":11},{"gcamCode":"c14.2","gcamValue":9},{"gcamCode":"c14.3","gcamValue":7},{"gcamCode":"c14.4","gcamValue":2},{"gcamCode":"c14.5","gcamValue":13},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.77","gcamValue":1},{"gcamCode":"c15.92","gcamValue":2},{"gcamCode":"c15.94","gcamValue":2},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":7},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.102","gcamValue":3},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":6},{"gcamCode":"c16.109","gcamValue":10},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":27},{"gcamCode":"c16.111","gcamValue":9},{"gcamCode":"c16.112","gcamValue":3},{"gcamCode":"c16.114","gcamValue":8},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":18},{"gcamCode":"c16.119","gcamValue":4},{"gcamCode":"c16.12","gcamValue":23},{"gcamCode":"c16.120","gcamValue":6},{"gcamCode":"c16.121","gcamValue":9},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":8},{"gcamCode":"c16.126","gcamValue":8},{"gcamCode":"c16.127","gcamValue":19},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":22},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.134","gcamValue":14},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":6},{"gcamCode":"c16.140","gcamValue":5},{"gcamCode":"c16.145","gcamValue":5},{"gcamCode":"c16.146","gcamValue":10},{"gcamCode":"c16.147","gcamValue":3},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.152","gcamValue":3},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.157","gcamValue":3},{"gcamCode":"c16.159","gcamValue":20},{"gcamCode":"c16.16","gcamValue":8},{"gcamCode":"c16.161","gcamValue":21},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":12},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":5},{"gcamCode":"c16.2","gcamValue":11},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":24},{"gcamCode":"c16.27","gcamValue":7},{"gcamCode":"c16.3","gcamValue":6},{"gcamCode":"c16.31","gcamValue":11},{"gcamCode":"c16.32","gcamValue":5},{"gcamCode":"c16.33","gcamValue":12},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.37","gcamValue":15},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.4","gcamValue":12},{"gcamCode":"c16.41","gcamValue":7},{"gcamCode":"c16.45","gcamValue":12},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":17},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":8},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.57","gcamValue":88},{"gcamCode":"c16.58","gcamValue":27},{"gcamCode":"c16.6","gcamValue":22},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.65","gcamValue":5},{"gcamCode":"c16.66","gcamValue":6},{"gcamCode":"c16.68","gcamValue":14},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":13},{"gcamCode":"c16.71","gcamValue":10},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.74","gcamValue":4},{"gcamCode":"c16.75","gcamValue":9},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":5},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.84","gcamValue":16},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.87","gcamValue":10},{"gcamCode":"c16.88","gcamValue":20},{"gcamCode":"c16.89","gcamValue":7},{"gcamCode":"c16.90","gcamValue":6},{"gcamCode":"c16.91","gcamValue":3},{"gcamCode":"c16.92","gcamValue":10},{"gcamCode":"c16.94","gcamValue":18},{"gcamCode":"c16.95","gcamValue":13},{"gcamCode":"c16.96","gcamValue":5},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":9},{"gcamCode":"c16.99","gcamValue":6},{"gcamCode":"c17.1","gcamValue":44},{"gcamCode":"c17.10","gcamValue":12},{"gcamCode":"c17.11","gcamValue":23},{"gcamCode":"c17.12","gcamValue":7},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":10},{"gcamCode":"c17.16","gcamValue":1},{"gcamCode":"c17.18","gcamValue":10},{"gcamCode":"c17.19","gcamValue":11},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":2},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":13},{"gcamCode":"c17.25","gcamValue":4},{"gcamCode":"c17.27","gcamValue":12},{"gcamCode":"c17.29","gcamValue":12},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":11},{"gcamCode":"c17.32","gcamValue":5},{"gcamCode":"c17.33","gcamValue":9},{"gcamCode":"c17.34","gcamValue":6},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":9},{"gcamCode":"c17.37","gcamValue":7},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":7},{"gcamCode":"c17.4","gcamValue":26},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":3},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.5","gcamValue":33},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":36},{"gcamCode":"c17.8","gcamValue":16},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.249","gcamValue":1},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c2.1","gcamValue":10},{"gcamCode":"c2.10","gcamValue":2},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.104","gcamValue":17},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":3},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":3},{"gcamCode":"c2.119","gcamValue":46},{"gcamCode":"c2.12","gcamValue":6},{"gcamCode":"c2.121","gcamValue":13},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":3},{"gcamCode":"c2.125","gcamValue":9},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":9},{"gcamCode":"c2.128","gcamValue":9},{"gcamCode":"c2.129","gcamValue":4},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.14","gcamValue":12},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":3},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":20},{"gcamCode":"c2.148","gcamValue":11},{"gcamCode":"c2.15","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":17},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":14},{"gcamCode":"c2.158","gcamValue":10},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.16","gcamValue":3},{"gcamCode":"c2.160","gcamValue":8},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":9},{"gcamCode":"c2.179","gcamValue":3},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":24},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":9},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":5},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":13},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":7},{"gcamCode":"c2.198","gcamValue":15},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.207","gcamValue":3},{"gcamCode":"c2.209","gcamValue":1},{"gcamCode":"c2.210","gcamValue":13},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.214","gcamValue":7},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":2},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":9},{"gcamCode":"c2.26","gcamValue":5},{"gcamCode":"c2.27","gcamValue":5},{"gcamCode":"c2.30","gcamValue":3},{"gcamCode":"c2.31","gcamValue":7},{"gcamCode":"c2.33","gcamValue":4},{"gcamCode":"c2.34","gcamValue":6},{"gcamCode":"c2.35","gcamValue":5},{"gcamCode":"c2.36","gcamValue":3},{"gcamCode":"c2.37","gcamValue":4},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":15},{"gcamCode":"c2.4","gcamValue":4},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":3},{"gcamCode":"c2.46","gcamValue":9},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":8},{"gcamCode":"c2.57","gcamValue":4},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.62","gcamValue":9},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.75","gcamValue":21},{"gcamCode":"c2.76","gcamValue":90},{"gcamCode":"c2.77","gcamValue":11},{"gcamCode":"c2.78","gcamValue":20},{"gcamCode":"c2.79","gcamValue":2},{"gcamCode":"c2.80","gcamValue":12},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":2},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":5},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":21},{"gcamCode":"c2.96","gcamValue":4},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":6},{"gcamCode":"c3.1","gcamValue":2},{"gcamCode":"c3.2","gcamValue":17},{"gcamCode":"c35.1","gcamValue":5},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.15","gcamValue":7},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.31","gcamValue":13},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":4},{"gcamCode":"c39.21","gcamValue":4},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.3","gcamValue":13},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":8},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.4","gcamValue":7},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":7},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c40.3","gcamValue":3},{"gcamCode":"c41.1","gcamValue":3},{"gcamCode":"c5.10","gcamValue":8},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":21},{"gcamCode":"c5.13","gcamValue":2},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":11},{"gcamCode":"c5.35","gcamValue":11},{"gcamCode":"c5.36","gcamValue":12},{"gcamCode":"c5.40","gcamValue":12},{"gcamCode":"c5.43","gcamValue":3},{"gcamCode":"c5.46","gcamValue":19},{"gcamCode":"c5.49","gcamValue":14},{"gcamCode":"c5.50","gcamValue":13},{"gcamCode":"c5.51","gcamValue":9},{"gcamCode":"c5.52","gcamValue":15},{"gcamCode":"c5.53","gcamValue":9},{"gcamCode":"c5.54","gcamValue":4},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":3},{"gcamCode":"c5.6","gcamValue":14},{"gcamCode":"c5.60","gcamValue":6},{"gcamCode":"c5.61","gcamValue":10},{"gcamCode":"c5.62","gcamValue":49},{"gcamCode":"c5.7","gcamValue":6},{"gcamCode":"c5.8","gcamValue":4},{"gcamCode":"c5.9","gcamValue":11},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c7.1","gcamValue":2},{"gcamCode":"c7.2","gcamValue":14},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.18","gcamValue":4},{"gcamCode":"c8.23","gcamValue":3},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":6},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c9.1","gcamValue":6},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.128","gcamValue":8},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":4},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.162","gcamValue":4},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.224","gcamValue":5},{"gcamCode":"c9.225","gcamValue":1},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.287","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.3","gcamValue":9},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.33","gcamValue":6},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.356","gcamValue":3},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.394","gcamValue":4},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.458","gcamValue":2},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":4},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.50","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":9},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":4},{"gcamCode":"c9.583","gcamValue":3},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.648","gcamValue":5},{"gcamCode":"c9.653","gcamValue":6},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.664","gcamValue":4},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.678","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.704","gcamValue":4},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.715","gcamValue":2},{"gcamCode":"c9.726","gcamValue":6},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":8},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":2},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":9},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.767","gcamValue":9},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.83","gcamValue":4},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.859","gcamValue":1},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":5},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.973","gcamValue":6},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.270263190335306},{"gcamCode":"v10.2","gcamValue":0.219350961538462},{"gcamCode":"v11.1","gcamValue":0.232801629213483},{"gcamCode":"v19.1","gcamValue":7.19578947368421},{"gcamCode":"v19.2","gcamValue":5.33},{"gcamCode":"v19.3","gcamValue":5.70736842105263},{"gcamCode":"v19.4","gcamValue":6.89894736842105},{"gcamCode":"v19.5","gcamValue":5.45736842105263},{"gcamCode":"v19.6","gcamValue":5.68157894736842},{"gcamCode":"v19.7","gcamValue":7.43368421052632},{"gcamCode":"v19.8","gcamValue":5.22684210526316},{"gcamCode":"v19.9","gcamValue":5.65631578947368},{"gcamCode":"v20.10","gcamValue":-0.292},{"gcamCode":"v20.11","gcamValue":0.5},{"gcamCode":"v20.12","gcamValue":-0.292},{"gcamCode":"v20.13","gcamValue":0.395833333333333},{"gcamCode":"v20.14","gcamValue":-0.347333333333333},{"gcamCode":"v20.15","gcamValue":0.375},{"gcamCode":"v20.16","gcamValue":-0.291714285714286},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v21.1","gcamValue":5.9128},{"gcamCode":"v26.1","gcamValue":2.11428571428571}]https://i2-prod.mirror.co.uk/incoming/article16188592.ece/ALTERNATES/s1200/0_riverisland_1100523.jpg[""][""][""][][{"name":"Caroline Flack","charOffset":95},{"name":"River Island","charOffset":151},{"name":"Caroline X River Island","charOffset":208}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.mirror.co.uk/3am/style/celebrity-fashion/caroline-flack-river-island-collection-16188329</PAGE_LINKS><PAGE_AUTHORS>Amber Graafland;(Image: River Island)</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523114100</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.mirror.co.uk/3am/style/celebrity-fashion/caroline-flack-river-island-collection-16188329.amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBstockandland.com.auhttps://www.stockandland.com.au/story/6170364/nz-coroner-finds-quad-bike-protection-may-have-saved-dairy-worker/[][]["TAX_FNCACT","TAX_FNCACT_CORONER","CRISISLEX_C07_SAFETY","TAX_FNCACT_OPERATOR","AGRICULTURE","TAX_FNCACT_WORKER","TAX_FNCACT_FARM_WORKER","KILL","CRISISLEX_T03_DEAD","WB_728_PUBLIC_SERVICE_DELIVERY","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_723_PUBLIC_ADMINISTRATION","WB_721_STATE_OWNED_ENTERPRISES","GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_GOVERNMENT","TAX_DISEASE","TAX_DISEASE_ASPHYXIA","CRISISLEX_CRISISLEXREC","TAX_ETHNICITY","TAX_ETHNICITY_AUSTRALIAN","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","CRISISLEX_T02_INJURED","MANMADE_DISASTER_IMPLIED","SCIENCE","SOC_INNOVATION","TAX_FNCACT_EMPLOYEES","TAX_FNCACT_EMPLOYERS","WB_2690_CATEGORIES_OF_EMPLOYMENT","WB_2670_JOBS","WB_2689_JOBS_DIAGNOSTICS","WB_2704_EMPLOYER","EPU_ECONOMY_HISTORIC","TAX_FNCACT_LIFEGUARD","TAX_FNCACT_WORKERS","CRISISLEX_O02_RESPONSEAGENCIESATCRISIS","WB_286_TELECOMMUNICATIONS_AND_BROADBAND_ACCESS","WB_2120_SATELLITES","WB_2329_ACCESS_AND_CONNECTIVITY","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","WB_2601_TRADE_LINKAGES_SPILLOVERS_AND_CONNECTIVITY","WB_772_TRADE_FACILITATION_AND_LOGISTICS","WB_699_URBAN_DEVELOPMENT","WB_866_CONNECTIVITY_AND_LAGGING_REGIONS","WB_698_TRADE","WB_797_NATIONAL_URBAN_POLICIES"][{"theme":"GENERAL_GOVERNMENT","charOffset":295},{"theme":"GENERAL_GOVERNMENT","charOffset":948},{"theme":"GENERAL_GOVERNMENT","charOffset":1900},{"theme":"GENERAL_GOVERNMENT","charOffset":2770},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":295},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":948},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1900},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2770},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":2790},{"theme":"TAX_DISEASE_ASPHYXIA","charOffset":473},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":660},{"theme":"TAX_FNCACT_EMPLOYERS","charOffset":2593},{"theme":"WB_2690_CATEGORIES_OF_EMPLOYMENT","charOffset":2593},{"theme":"WB_2670_JOBS","charOffset":2593},{"theme":"WB_2689_JOBS_DIAGNOSTICS","charOffset":2593},{"theme":"WB_2704_EMPLOYER","charOffset":2593},{"theme":"TAX_FNCACT_WORKER","charOffset":96},{"theme":"TAX_FNCACT_WORKER","charOffset":226},{"theme":"TAX_FNCACT_WORKER","charOffset":4203},{"theme":"TAX_ETHNICITY_AUSTRALIAN","charOffset":860},{"theme":"TAX_ETHNICITY_AUSTRALIAN","charOffset":937},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":2431},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1701},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3197},{"theme":"WB_2601_TRADE_LINKAGES_SPILLOVERS_AND_CONNECTIVITY","charOffset":3962},{"theme":"WB_772_TRADE_FACILITATION_AND_LOGISTICS","charOffset":3962},{"theme":"WB_699_URBAN_DEVELOPMENT","charOffset":3962},{"theme":"WB_866_CONNECTIVITY_AND_LAGGING_REGIONS","charOffset":3962},{"theme":"WB_698_TRADE","charOffset":3962},{"theme":"WB_797_NATIONAL_URBAN_POLICIES","charOffset":3962},{"theme":"TAX_FNCACT_OPERATOR","charOffset":43},{"theme":"TAX_FNCACT_OPERATOR","charOffset":765},{"theme":"TAX_FNCACT_OPERATOR","charOffset":1142},{"theme":"TAX_FNCACT_CORONER","charOffset":21},{"theme":"TAX_FNCACT_CORONER","charOffset":400},{"theme":"TAX_FNCACT_CORONER","charOffset":598},{"theme":"TAX_FNCACT_CORONER","charOffset":671},{"theme":"TAX_FNCACT_CORONER","charOffset":1679},{"theme":"TAX_FNCACT_CORONER","charOffset":2273},{"theme":"TAX_FNCACT_CORONER","charOffset":3528},{"theme":"TAX_FNCACT_CORONER","charOffset":4148},{"theme":"CRISISLEX_C07_SAFETY","charOffset":21},{"theme":"CRISISLEX_C07_SAFETY","charOffset":400},{"theme":"CRISISLEX_C07_SAFETY","charOffset":598},{"theme":"CRISISLEX_C07_SAFETY","charOffset":671},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1679},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2273},{"theme":"CRISISLEX_C07_SAFETY","charOffset":3528},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4148},{"theme":"WB_286_TELECOMMUNICATIONS_AND_BROADBAND_ACCESS","charOffset":3949},{"theme":"WB_2120_SATELLITES","charOffset":3949},{"theme":"WB_2329_ACCESS_AND_CONNECTIVITY","charOffset":3949},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":3949},{"theme":"WB_728_PUBLIC_SERVICE_DELIVERY","charOffset":265},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":265},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":265},{"theme":"WB_721_STATE_OWNED_ENTERPRISES","charOffset":265},{"theme":"KILL","charOffset":111},{"theme":"CRISISLEX_T03_DEAD","charOffset":111},{"theme":"TAX_FNCACT_FARM_WORKER","charOffset":96},{"theme":"TAX_FNCACT_FARM_WORKER","charOffset":226},{"theme":"AGRICULTURE","charOffset":89},{"theme":"AGRICULTURE","charOffset":219},{"theme":"AGRICULTURE","charOffset":3595},{"theme":"AGRICULTURE","charOffset":3762},{"theme":"AGRICULTURE","charOffset":4226},{"theme":"CRISISLEX_O02_RESPONSEAGENCIESATCRISIS","charOffset":3923},{"theme":"TAX_FNCACT_WORKERS","charOffset":3627},{"theme":"WB_1428_INJURY","charOffset":1645},{"theme":"WB_1406_DISEASES","charOffset":1645},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1645},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":1645},{"theme":"CRISISLEX_T02_INJURED","charOffset":1645},{"theme":"SCIENCE","charOffset":2035},{"theme":"SOC_INNOVATION","charOffset":2035},{"theme":"TAX_FNCACT_LIFEGUARD","charOffset":3396}][{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"}][{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":13},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":284},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":1669},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":1796},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":2079},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":2138},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":2759},{"location":{"geoType":"COUNTRY","geoName":"Australian","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},"charOffset":860},{"location":{"geoType":"COUNTRY","geoName":"Australian","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},"charOffset":937}]["brigitte windley"][{"person":"Brigitte Windley","charOffset":417}]["honda","consumer commission"][{"organisation":"Honda","charOffset":1173},{"organisation":"Consumer Commission","charOffset":896}]{"tone":-0.44117647,"positiveScore":4.5588236,"negativeScore":5,"polarity":9.558824,"activityReferenceDensity":24.264706,"selfGroupReferenceDensity":0.14705883,"wordCount":633}[][{"gcamCode":"wc","gcamValue":633},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":31},{"gcamCode":"c12.10","gcamValue":66},{"gcamCode":"c12.12","gcamValue":18},{"gcamCode":"c12.13","gcamValue":18},{"gcamCode":"c12.14","gcamValue":37},{"gcamCode":"c12.3","gcamValue":8},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":18},{"gcamCode":"c12.7","gcamValue":26},{"gcamCode":"c12.8","gcamValue":26},{"gcamCode":"c12.9","gcamValue":54},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c13.2","gcamValue":2},{"gcamCode":"c13.3","gcamValue":2},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c14.1","gcamValue":53},{"gcamCode":"c14.10","gcamValue":20},{"gcamCode":"c14.11","gcamValue":76},{"gcamCode":"c14.2","gcamValue":30},{"gcamCode":"c14.3","gcamValue":42},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":63},{"gcamCode":"c14.7","gcamValue":20},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":10},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.132","gcamValue":2},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.162","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.176","gcamValue":2},{"gcamCode":"c15.20","gcamValue":2},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.8","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.93","gcamValue":2},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":18},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.103","gcamValue":3},{"gcamCode":"c16.105","gcamValue":7},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.109","gcamValue":31},{"gcamCode":"c16.11","gcamValue":8},{"gcamCode":"c16.110","gcamValue":89},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":34},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":10},{"gcamCode":"c16.117","gcamValue":17},{"gcamCode":"c16.118","gcamValue":55},{"gcamCode":"c16.12","gcamValue":57},{"gcamCode":"c16.120","gcamValue":30},{"gcamCode":"c16.121","gcamValue":49},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":26},{"gcamCode":"c16.126","gcamValue":21},{"gcamCode":"c16.127","gcamValue":81},{"gcamCode":"c16.128","gcamValue":9},{"gcamCode":"c16.129","gcamValue":81},{"gcamCode":"c16.13","gcamValue":3},{"gcamCode":"c16.130","gcamValue":4},{"gcamCode":"c16.131","gcamValue":27},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":54},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":19},{"gcamCode":"c16.139","gcamValue":25},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":28},{"gcamCode":"c16.141","gcamValue":2},{"gcamCode":"c16.145","gcamValue":31},{"gcamCode":"c16.146","gcamValue":58},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":3},{"gcamCode":"c16.15","gcamValue":8},{"gcamCode":"c16.152","gcamValue":3},{"gcamCode":"c16.153","gcamValue":17},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.157","gcamValue":5},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":65},{"gcamCode":"c16.16","gcamValue":7},{"gcamCode":"c16.161","gcamValue":61},{"gcamCode":"c16.162","gcamValue":25},{"gcamCode":"c16.163","gcamValue":69},{"gcamCode":"c16.164","gcamValue":12},{"gcamCode":"c16.165","gcamValue":10},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":4},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":33},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":15},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":9},{"gcamCode":"c16.26","gcamValue":82},{"gcamCode":"c16.27","gcamValue":8},{"gcamCode":"c16.29","gcamValue":5},{"gcamCode":"c16.3","gcamValue":17},{"gcamCode":"c16.30","gcamValue":5},{"gcamCode":"c16.31","gcamValue":56},{"gcamCode":"c16.32","gcamValue":3},{"gcamCode":"c16.33","gcamValue":45},{"gcamCode":"c16.35","gcamValue":33},{"gcamCode":"c16.37","gcamValue":50},{"gcamCode":"c16.38","gcamValue":16},{"gcamCode":"c16.4","gcamValue":67},{"gcamCode":"c16.40","gcamValue":13},{"gcamCode":"c16.41","gcamValue":24},{"gcamCode":"c16.42","gcamValue":4},{"gcamCode":"c16.45","gcamValue":25},{"gcamCode":"c16.46","gcamValue":14},{"gcamCode":"c16.47","gcamValue":101},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":7},{"gcamCode":"c16.5","gcamValue":11},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.51","gcamValue":8},{"gcamCode":"c16.52","gcamValue":37},{"gcamCode":"c16.53","gcamValue":13},{"gcamCode":"c16.54","gcamValue":3},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":15},{"gcamCode":"c16.57","gcamValue":339},{"gcamCode":"c16.58","gcamValue":51},{"gcamCode":"c16.6","gcamValue":69},{"gcamCode":"c16.60","gcamValue":9},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":25},{"gcamCode":"c16.63","gcamValue":17},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.65","gcamValue":17},{"gcamCode":"c16.66","gcamValue":24},{"gcamCode":"c16.68","gcamValue":25},{"gcamCode":"c16.69","gcamValue":24},{"gcamCode":"c16.7","gcamValue":14},{"gcamCode":"c16.70","gcamValue":21},{"gcamCode":"c16.71","gcamValue":9},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":43},{"gcamCode":"c16.76","gcamValue":9},{"gcamCode":"c16.77","gcamValue":5},{"gcamCode":"c16.78","gcamValue":21},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.83","gcamValue":4},{"gcamCode":"c16.84","gcamValue":49},{"gcamCode":"c16.85","gcamValue":8},{"gcamCode":"c16.86","gcamValue":4},{"gcamCode":"c16.87","gcamValue":60},{"gcamCode":"c16.88","gcamValue":72},{"gcamCode":"c16.89","gcamValue":13},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":23},{"gcamCode":"c16.91","gcamValue":31},{"gcamCode":"c16.92","gcamValue":61},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":52},{"gcamCode":"c16.95","gcamValue":49},{"gcamCode":"c16.96","gcamValue":14},{"gcamCode":"c16.98","gcamValue":62},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":146},{"gcamCode":"c17.10","gcamValue":65},{"gcamCode":"c17.11","gcamValue":80},{"gcamCode":"c17.12","gcamValue":25},{"gcamCode":"c17.13","gcamValue":6},{"gcamCode":"c17.14","gcamValue":4},{"gcamCode":"c17.15","gcamValue":18},{"gcamCode":"c17.16","gcamValue":20},{"gcamCode":"c17.18","gcamValue":14},{"gcamCode":"c17.19","gcamValue":64},{"gcamCode":"c17.2","gcamValue":10},{"gcamCode":"c17.20","gcamValue":6},{"gcamCode":"c17.21","gcamValue":7},{"gcamCode":"c17.22","gcamValue":23},{"gcamCode":"c17.23","gcamValue":7},{"gcamCode":"c17.24","gcamValue":45},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":85},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":12},{"gcamCode":"c17.3","gcamValue":3},{"gcamCode":"c17.30","gcamValue":19},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":18},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":8},{"gcamCode":"c17.35","gcamValue":15},{"gcamCode":"c17.36","gcamValue":24},{"gcamCode":"c17.37","gcamValue":24},{"gcamCode":"c17.38","gcamValue":6},{"gcamCode":"c17.39","gcamValue":28},{"gcamCode":"c17.4","gcamValue":125},{"gcamCode":"c17.40","gcamValue":14},{"gcamCode":"c17.41","gcamValue":23},{"gcamCode":"c17.42","gcamValue":46},{"gcamCode":"c17.43","gcamValue":24},{"gcamCode":"c17.5","gcamValue":135},{"gcamCode":"c17.6","gcamValue":3},{"gcamCode":"c17.7","gcamValue":126},{"gcamCode":"c17.8","gcamValue":72},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.1","gcamValue":6},{"gcamCode":"c18.180","gcamValue":4},{"gcamCode":"c18.193","gcamValue":20},{"gcamCode":"c18.333","gcamValue":1},{"gcamCode":"c18.342","gcamValue":8},{"gcamCode":"c18.35","gcamValue":8},{"gcamCode":"c18.52","gcamValue":6},{"gcamCode":"c18.82","gcamValue":1},{"gcamCode":"c2.1","gcamValue":34},{"gcamCode":"c2.100","gcamValue":10},{"gcamCode":"c2.101","gcamValue":19},{"gcamCode":"c2.102","gcamValue":21},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":87},{"gcamCode":"c2.106","gcamValue":9},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":16},{"gcamCode":"c2.110","gcamValue":8},{"gcamCode":"c2.112","gcamValue":6},{"gcamCode":"c2.113","gcamValue":7},{"gcamCode":"c2.114","gcamValue":25},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":20},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":186},{"gcamCode":"c2.12","gcamValue":25},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":51},{"gcamCode":"c2.122","gcamValue":12},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":26},{"gcamCode":"c2.126","gcamValue":29},{"gcamCode":"c2.127","gcamValue":86},{"gcamCode":"c2.128","gcamValue":24},{"gcamCode":"c2.129","gcamValue":33},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":10},{"gcamCode":"c2.132","gcamValue":7},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.138","gcamValue":6},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":54},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.143","gcamValue":27},{"gcamCode":"c2.144","gcamValue":12},{"gcamCode":"c2.145","gcamValue":6},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":91},{"gcamCode":"c2.148","gcamValue":40},{"gcamCode":"c2.15","gcamValue":11},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":12},{"gcamCode":"c2.154","gcamValue":13},{"gcamCode":"c2.155","gcamValue":81},{"gcamCode":"c2.156","gcamValue":43},{"gcamCode":"c2.157","gcamValue":75},{"gcamCode":"c2.158","gcamValue":47},{"gcamCode":"c2.159","gcamValue":10},{"gcamCode":"c2.160","gcamValue":29},{"gcamCode":"c2.162","gcamValue":10},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":11},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":13},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":6},{"gcamCode":"c2.177","gcamValue":36},{"gcamCode":"c2.179","gcamValue":14},{"gcamCode":"c2.18","gcamValue":24},{"gcamCode":"c2.180","gcamValue":26},{"gcamCode":"c2.181","gcamValue":32},{"gcamCode":"c2.183","gcamValue":34},{"gcamCode":"c2.185","gcamValue":140},{"gcamCode":"c2.186","gcamValue":11},{"gcamCode":"c2.187","gcamValue":52},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":6},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":11},{"gcamCode":"c2.192","gcamValue":16},{"gcamCode":"c2.193","gcamValue":24},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":73},{"gcamCode":"c2.196","gcamValue":9},{"gcamCode":"c2.197","gcamValue":18},{"gcamCode":"c2.198","gcamValue":49},{"gcamCode":"c2.199","gcamValue":16},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":10},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":24},{"gcamCode":"c2.204","gcamValue":54},{"gcamCode":"c2.205","gcamValue":19},{"gcamCode":"c2.206","gcamValue":10},{"gcamCode":"c2.207","gcamValue":9},{"gcamCode":"c2.209","gcamValue":14},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":67},{"gcamCode":"c2.212","gcamValue":3},{"gcamCode":"c2.213","gcamValue":14},{"gcamCode":"c2.214","gcamValue":43},{"gcamCode":"c2.216","gcamValue":4},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.220","gcamValue":17},{"gcamCode":"c2.221","gcamValue":12},{"gcamCode":"c2.222","gcamValue":4},{"gcamCode":"c2.223","gcamValue":16},{"gcamCode":"c2.225","gcamValue":16},{"gcamCode":"c2.226","gcamValue":19},{"gcamCode":"c2.23","gcamValue":10},{"gcamCode":"c2.25","gcamValue":44},{"gcamCode":"c2.26","gcamValue":33},{"gcamCode":"c2.27","gcamValue":33},{"gcamCode":"c2.28","gcamValue":15},{"gcamCode":"c2.30","gcamValue":28},{"gcamCode":"c2.31","gcamValue":30},{"gcamCode":"c2.32","gcamValue":5},{"gcamCode":"c2.33","gcamValue":9},{"gcamCode":"c2.34","gcamValue":25},{"gcamCode":"c2.35","gcamValue":12},{"gcamCode":"c2.36","gcamValue":5},{"gcamCode":"c2.37","gcamValue":8},{"gcamCode":"c2.38","gcamValue":4},{"gcamCode":"c2.39","gcamValue":89},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.44","gcamValue":28},{"gcamCode":"c2.45","gcamValue":41},{"gcamCode":"c2.46","gcamValue":70},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":15},{"gcamCode":"c2.49","gcamValue":5},{"gcamCode":"c2.50","gcamValue":20},{"gcamCode":"c2.52","gcamValue":44},{"gcamCode":"c2.53","gcamValue":3},{"gcamCode":"c2.54","gcamValue":65},{"gcamCode":"c2.55","gcamValue":5},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":12},{"gcamCode":"c2.58","gcamValue":23},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":28},{"gcamCode":"c2.64","gcamValue":20},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":4},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.72","gcamValue":2},{"gcamCode":"c2.73","gcamValue":8},{"gcamCode":"c2.74","gcamValue":5},{"gcamCode":"c2.75","gcamValue":92},{"gcamCode":"c2.76","gcamValue":389},{"gcamCode":"c2.77","gcamValue":45},{"gcamCode":"c2.78","gcamValue":84},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":74},{"gcamCode":"c2.81","gcamValue":16},{"gcamCode":"c2.82","gcamValue":23},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.86","gcamValue":22},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":8},{"gcamCode":"c2.89","gcamValue":14},{"gcamCode":"c2.9","gcamValue":3},{"gcamCode":"c2.90","gcamValue":7},{"gcamCode":"c2.93","gcamValue":17},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":86},{"gcamCode":"c2.97","gcamValue":5},{"gcamCode":"c2.98","gcamValue":44},{"gcamCode":"c25.1","gcamValue":13},{"gcamCode":"c25.2","gcamValue":4},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.6","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":31},{"gcamCode":"c3.2","gcamValue":57},{"gcamCode":"c35.1","gcamValue":13},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":12},{"gcamCode":"c35.20","gcamValue":21},{"gcamCode":"c35.23","gcamValue":4},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.3","gcamValue":6},{"gcamCode":"c35.31","gcamValue":54},{"gcamCode":"c35.32","gcamValue":14},{"gcamCode":"c35.33","gcamValue":26},{"gcamCode":"c35.4","gcamValue":6},{"gcamCode":"c35.5","gcamValue":18},{"gcamCode":"c35.7","gcamValue":9},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":8},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":26},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.32","gcamValue":2},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":20},{"gcamCode":"c39.38","gcamValue":3},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":22},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":12},{"gcamCode":"c39.5","gcamValue":10},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.23","gcamValue":24},{"gcamCode":"c4.4","gcamValue":5},{"gcamCode":"c4.6","gcamValue":4},{"gcamCode":"c40.5","gcamValue":6},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":38},{"gcamCode":"c5.10","gcamValue":34},{"gcamCode":"c5.11","gcamValue":12},{"gcamCode":"c5.12","gcamValue":76},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.16","gcamValue":4},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":16},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":7},{"gcamCode":"c5.24","gcamValue":21},{"gcamCode":"c5.25","gcamValue":5},{"gcamCode":"c5.26","gcamValue":7},{"gcamCode":"c5.27","gcamValue":3},{"gcamCode":"c5.28","gcamValue":19},{"gcamCode":"c5.29","gcamValue":17},{"gcamCode":"c5.3","gcamValue":3},{"gcamCode":"c5.30","gcamValue":77},{"gcamCode":"c5.31","gcamValue":8},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.33","gcamValue":6},{"gcamCode":"c5.34","gcamValue":20},{"gcamCode":"c5.35","gcamValue":26},{"gcamCode":"c5.36","gcamValue":40},{"gcamCode":"c5.37","gcamValue":5},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":4},{"gcamCode":"c5.40","gcamValue":27},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":9},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":15},{"gcamCode":"c5.46","gcamValue":84},{"gcamCode":"c5.47","gcamValue":17},{"gcamCode":"c5.48","gcamValue":8},{"gcamCode":"c5.49","gcamValue":62},{"gcamCode":"c5.50","gcamValue":72},{"gcamCode":"c5.51","gcamValue":55},{"gcamCode":"c5.52","gcamValue":86},{"gcamCode":"c5.53","gcamValue":57},{"gcamCode":"c5.54","gcamValue":25},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":4},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":48},{"gcamCode":"c5.60","gcamValue":8},{"gcamCode":"c5.61","gcamValue":33},{"gcamCode":"c5.62","gcamValue":251},{"gcamCode":"c5.7","gcamValue":30},{"gcamCode":"c5.8","gcamValue":31},{"gcamCode":"c5.9","gcamValue":27},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":6},{"gcamCode":"c6.4","gcamValue":15},{"gcamCode":"c6.5","gcamValue":10},{"gcamCode":"c6.6","gcamValue":11},{"gcamCode":"c7.1","gcamValue":31},{"gcamCode":"c7.2","gcamValue":38},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":11},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":3},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.36","gcamValue":4},{"gcamCode":"c8.37","gcamValue":14},{"gcamCode":"c8.38","gcamValue":35},{"gcamCode":"c8.39","gcamValue":3},{"gcamCode":"c8.4","gcamValue":24},{"gcamCode":"c8.40","gcamValue":8},{"gcamCode":"c8.41","gcamValue":8},{"gcamCode":"c8.42","gcamValue":18},{"gcamCode":"c8.43","gcamValue":24},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":34},{"gcamCode":"c9.10","gcamValue":8},{"gcamCode":"c9.1007","gcamValue":8},{"gcamCode":"c9.1011","gcamValue":4},{"gcamCode":"c9.1014","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1019","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1022","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.103","gcamValue":18},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.108","gcamValue":3},{"gcamCode":"c9.109","gcamValue":6},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":7},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":6},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.122","gcamValue":6},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":41},{"gcamCode":"c9.129","gcamValue":9},{"gcamCode":"c9.130","gcamValue":4},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.135","gcamValue":7},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":8},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":11},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.147","gcamValue":3},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":5},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":13},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":3},{"gcamCode":"c9.160","gcamValue":10},{"gcamCode":"c9.161","gcamValue":3},{"gcamCode":"c9.162","gcamValue":9},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":11},{"gcamCode":"c9.165","gcamValue":8},{"gcamCode":"c9.166","gcamValue":8},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.175","gcamValue":6},{"gcamCode":"c9.176","gcamValue":5},{"gcamCode":"c9.177","gcamValue":5},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":5},{"gcamCode":"c9.182","gcamValue":15},{"gcamCode":"c9.184","gcamValue":12},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.19","gcamValue":7},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.198","gcamValue":23},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":11},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.204","gcamValue":3},{"gcamCode":"c9.205","gcamValue":4},{"gcamCode":"c9.206","gcamValue":6},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":3},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":4},{"gcamCode":"c9.215","gcamValue":5},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.224","gcamValue":5},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":3},{"gcamCode":"c9.240","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.25","gcamValue":3},{"gcamCode":"c9.253","gcamValue":4},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":3},{"gcamCode":"c9.259","gcamValue":3},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.265","gcamValue":4},{"gcamCode":"c9.266","gcamValue":3},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":5},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.28","gcamValue":6},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":15},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":5},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":28},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.305","gcamValue":4},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.314","gcamValue":2},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.318","gcamValue":5},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.324","gcamValue":2},{"gcamCode":"c9.325","gcamValue":2},{"gcamCode":"c9.326","gcamValue":3},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":15},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":5},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.371","gcamValue":5},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":2},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.38","gcamValue":3},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":7},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.385","gcamValue":8},{"gcamCode":"c9.39","gcamValue":10},{"gcamCode":"c9.394","gcamValue":18},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.409","gcamValue":4},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":3},{"gcamCode":"c9.42","gcamValue":7},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.423","gcamValue":2},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.470","gcamValue":3},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":7},{"gcamCode":"c9.48","gcamValue":5},{"gcamCode":"c9.480","gcamValue":8},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":6},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":8},{"gcamCode":"c9.496","gcamValue":9},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":14},{"gcamCode":"c9.5","gcamValue":5},{"gcamCode":"c9.500","gcamValue":4},{"gcamCode":"c9.501","gcamValue":7},{"gcamCode":"c9.502","gcamValue":11},{"gcamCode":"c9.507","gcamValue":6},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":11},{"gcamCode":"c9.513","gcamValue":15},{"gcamCode":"c9.517","gcamValue":8},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":9},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.53","gcamValue":8},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.532","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":3},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.575","gcamValue":7},{"gcamCode":"c9.576","gcamValue":6},{"gcamCode":"c9.579","gcamValue":26},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":4},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":8},{"gcamCode":"c9.62","gcamValue":3},{"gcamCode":"c9.620","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":8},{"gcamCode":"c9.630","gcamValue":3},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":5},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":3},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":10},{"gcamCode":"c9.641","gcamValue":7},{"gcamCode":"c9.642","gcamValue":11},{"gcamCode":"c9.643","gcamValue":1},{"gcamCode":"c9.646","gcamValue":9},{"gcamCode":"c9.647","gcamValue":3},{"gcamCode":"c9.648","gcamValue":12},{"gcamCode":"c9.649","gcamValue":6},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.653","gcamValue":28},{"gcamCode":"c9.654","gcamValue":6},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":5},{"gcamCode":"c9.660","gcamValue":12},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":6},{"gcamCode":"c9.665","gcamValue":3},{"gcamCode":"c9.666","gcamValue":5},{"gcamCode":"c9.667","gcamValue":9},{"gcamCode":"c9.668","gcamValue":4},{"gcamCode":"c9.669","gcamValue":5},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":14},{"gcamCode":"c9.671","gcamValue":6},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":7},{"gcamCode":"c9.674","gcamValue":7},{"gcamCode":"c9.675","gcamValue":5},{"gcamCode":"c9.676","gcamValue":17},{"gcamCode":"c9.677","gcamValue":11},{"gcamCode":"c9.678","gcamValue":6},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.683","gcamValue":15},{"gcamCode":"c9.684","gcamValue":7},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":3},{"gcamCode":"c9.687","gcamValue":14},{"gcamCode":"c9.690","gcamValue":7},{"gcamCode":"c9.692","gcamValue":17},{"gcamCode":"c9.693","gcamValue":4},{"gcamCode":"c9.694","gcamValue":6},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":6},{"gcamCode":"c9.700","gcamValue":2},{"gcamCode":"c9.701","gcamValue":14},{"gcamCode":"c9.704","gcamValue":9},{"gcamCode":"c9.705","gcamValue":12},{"gcamCode":"c9.708","gcamValue":5},{"gcamCode":"c9.71","gcamValue":6},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.718","gcamValue":6},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.720","gcamValue":5},{"gcamCode":"c9.721","gcamValue":4},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":5},{"gcamCode":"c9.726","gcamValue":40},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":29},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.735","gcamValue":4},{"gcamCode":"c9.736","gcamValue":7},{"gcamCode":"c9.739","gcamValue":4},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":5},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":15},{"gcamCode":"c9.748","gcamValue":13},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":7},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.760","gcamValue":6},{"gcamCode":"c9.762","gcamValue":27},{"gcamCode":"c9.763","gcamValue":2},{"gcamCode":"c9.765","gcamValue":5},{"gcamCode":"c9.766","gcamValue":8},{"gcamCode":"c9.767","gcamValue":42},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":6},{"gcamCode":"c9.778","gcamValue":4},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.781","gcamValue":6},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.8","gcamValue":10},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.808","gcamValue":7},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.812","gcamValue":10},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.820","gcamValue":6},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.83","gcamValue":12},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":5},{"gcamCode":"c9.832","gcamValue":3},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.84","gcamValue":3},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.848","gcamValue":5},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":7},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":28},{"gcamCode":"c9.865","gcamValue":6},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":28},{"gcamCode":"c9.87","gcamValue":4},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.88","gcamValue":5},{"gcamCode":"c9.882","gcamValue":9},{"gcamCode":"c9.883","gcamValue":6},{"gcamCode":"c9.884","gcamValue":5},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":8},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.90","gcamValue":4},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":5},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.904","gcamValue":5},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":5},{"gcamCode":"c9.911","gcamValue":6},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.917","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":6},{"gcamCode":"c9.926","gcamValue":9},{"gcamCode":"c9.928","gcamValue":4},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":15},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":5},{"gcamCode":"c9.95","gcamValue":4},{"gcamCode":"c9.955","gcamValue":5},{"gcamCode":"c9.96","gcamValue":9},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.972","gcamValue":10},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":7},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.987","gcamValue":3},{"gcamCode":"c9.989","gcamValue":2},{"gcamCode":"c9.990","gcamValue":3},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.23900304414003},{"gcamCode":"v10.2","gcamValue":0.262879856850716},{"gcamCode":"v11.1","gcamValue":0.0904813363363364},{"gcamCode":"v19.1","gcamValue":5.5908064516129},{"gcamCode":"v19.2","gcamValue":4.94161290322581},{"gcamCode":"v19.3","gcamValue":5.08741935483871},{"gcamCode":"v19.4","gcamValue":5.56064516129032},{"gcamCode":"v19.5","gcamValue":4.90790322580645},{"gcamCode":"v19.6","gcamValue":5.16145161290323},{"gcamCode":"v19.7","gcamValue":5.63645161290322},{"gcamCode":"v19.8","gcamValue":5.0158064516129},{"gcamCode":"v19.9","gcamValue":5.02467741935484},{"gcamCode":"v20.1","gcamValue":0.471},{"gcamCode":"v20.11","gcamValue":0.7501},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.413833333333333},{"gcamCode":"v20.14","gcamValue":-0.383058823529412},{"gcamCode":"v20.15","gcamValue":0.376385714285714},{"gcamCode":"v20.16","gcamValue":-0.322967741935484},{"gcamCode":"v20.3","gcamValue":0.792},{"gcamCode":"v20.5","gcamValue":0.839428571428572},{"gcamCode":"v20.7","gcamValue":0.839428571428572},{"gcamCode":"v20.9","gcamValue":0.812625},{"gcamCode":"v21.1","gcamValue":5.4055294117647},{"gcamCode":"v26.1","gcamValue":0.13125}]https://nnimgt-a.akamaihd.net/transform/v1/crop/frm/AiCzB4VqmYJMUfirK8QQiz/23f96658-a3d5-4e0e-900f-b78f559b6433.jpg/r0_62_4585_2653_w1200_h678_fmax.jpg[""][""][""][][{"name":"New Zealand","charOffset":14},{"name":"New Zealand","charOffset":293},{"name":"Coroner Brigitte Windley","charOffset":434},{"name":"Mrs Blance","charOffset":530},{"name":"Australian Competition","charOffset":910},{"name":"Consumer Commission","charOffset":938},{"name":"Mrs Blance","charOffset":1237},{"name":"New Zealand","charOffset":1734},{"name":"WorkSafe New Zealand","charOffset":1867},{"name":"New Zealand","charOffset":2164},{"name":"New Zealand","charOffset":2230},{"name":"Mrs Blance","charOffset":2631},{"name":"Farm Angel","charOffset":3726},{"name":"Mrs Blance","charOffset":3848}][{"amount":3,"amountType":"roll","charOffset":2974}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.farmonline.com.au/;https://www.farmonline.com.au/story/6170364/nz-coroner-finds-quad-bike-protection-may-have-saved-dairy-worker/</PAGE_LINKS><PAGE_AUTHORS>Sharon O&#39;Keeffe</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBfirstthings.comhttps://www.firstthings.com/web-exclusives/2019/05/an-open-letter-to-georgetown-visitation[{"countType":"KILL","count":4,"objectType":"","location":{"geoType":"USCITY","geoName":"Washington, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}}][{"count":{"countType":"KILL","count":4,"objectType":"","location":{"geoType":"USCITY","geoName":"Washington, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}},"charOffset":650}]["EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_RELIGION","TAX_RELIGION_CATHOLIC","MEDIA_MSM","TAX_FNCACT","TAX_FNCACT_STUDENT","LGBT","ECON_UNIONS","TAX_FNCACT_STUDENTS","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_POLICY","TAX_FNCACT_GUIDE","WB_1675_GRADUATION","WB_855_LABOR_MARKETS","WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_RELIGION_CHURCH","WB_2433_CONFLICT_AND_VIOLENCE","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","PERSECUTION","DISCRIMINATION","UNGP_FREEDOM_FROM_DISCRIMINATION","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_CHILDREN","TAX_FNCACT_WOMEN","IDEOLOGY","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","SOC_MARGINALIZE","UNGP_CRIME_VIOLENCE","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","WB_2089_ETHICS_AND_CODES_OF_CONDUCT","TAX_FNCACT_CHAMPIONS","RELIGION","TAX_FNCACT_EDUCATORS","TAX_FNCACT_FATHER","TAX_RELIGION_CATHOLICS","TAX_ETHNICITY","TAX_ETHNICITY_CATHOLICS","TAX_FNCACT_FOUNDERS","TAX_FNCACT_FOUNDER","CRISISLEX_T11_UPDATESSYMPATHY","TAX_FNCACT_AUTHOR","CRISISLEX_CRISISLEXREC","TAX_FNCACT_CRAFTSMAN","TAX_FNCACT_STAFF_MEMBER","BULLYING","EPU_CATS_MIGRATION_FEAR_FEAR","TAX_FNCACT_LEADERS"][{"theme":"TAX_FNCACT_GUIDE","charOffset":785},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":5600},{"theme":"EDUCATION","charOffset":40},{"theme":"EDUCATION","charOffset":80},{"theme":"EDUCATION","charOffset":392},{"theme":"EDUCATION","charOffset":649},{"theme":"EDUCATION","charOffset":1388},{"theme":"EDUCATION","charOffset":1508},{"theme":"EDUCATION","charOffset":3122},{"theme":"EDUCATION","charOffset":6699},{"theme":"EDUCATION","charOffset":7172},{"theme":"EDUCATION","charOffset":7284},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":40},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":80},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":392},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":649},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1388},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1508},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3122},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":6699},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7172},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7284},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":40},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":80},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":392},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":649},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1388},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1508},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3122},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":6699},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7172},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7284},{"theme":"TAX_FNCACT_CHAMPIONS","charOffset":3920},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":3777},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":3777},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":3777},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":3777},{"theme":"WB_2089_ETHICS_AND_CODES_OF_CONDUCT","charOffset":3777},{"theme":"TAX_FNCACT_LEADERS","charOffset":6652},{"theme":"TAX_FNCACT_LEADERS","charOffset":7076},{"theme":"SOC_MARGINALIZE","charOffset":3668},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":3668},{"theme":"PERSECUTION","charOffset":1911},{"theme":"DISCRIMINATION","charOffset":1911},{"theme":"UNGP_FREEDOM_FROM_DISCRIMINATION","charOffset":1911},{"theme":"TAX_FNCACT_STUDENT","charOffset":278},{"theme":"TAX_FNCACT_STUDENT","charOffset":5925},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":1816},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":1816},{"theme":"TAX_FNCACT_AUTHOR","charOffset":5625},{"theme":"TAX_FNCACT_STAFF_MEMBER","charOffset":5959},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1942},{"theme":"TAX_FNCACT_FOUNDER","charOffset":5440},{"theme":"BULLYING","charOffset":6185},{"theme":"WB_1675_GRADUATION","charOffset":815},{"theme":"WB_855_LABOR_MARKETS","charOffset":815},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":815},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":815},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":5666},{"theme":"TAX_RELIGION_CATHOLICS","charOffset":5208},{"theme":"TAX_RELIGION_CATHOLICS","charOffset":6204},{"theme":"TAX_ETHNICITY_CATHOLICS","charOffset":5208},{"theme":"TAX_ETHNICITY_CATHOLICS","charOffset":6204},{"theme":"IDEOLOGY","charOffset":3492},{"theme":"ECON_UNIONS","charOffset":293},{"theme":"ECON_UNIONS","charOffset":1345},{"theme":"ECON_UNIONS","charOffset":3018},{"theme":"LGBT","charOffset":286},{"theme":"LGBT","charOffset":1338},{"theme":"LGBT","charOffset":2115},{"theme":"LGBT","charOffset":3011},{"theme":"LGBT","charOffset":4947},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":6629},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":3611},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":3866},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":4467},{"theme":"TAX_FNCACT_FATHER","charOffset":5188},{"theme":"TAX_FNCACT_EDUCATORS","charOffset":4614},{"theme":"TAX_FNCACT_STUDENTS","charOffset":401},{"theme":"TAX_FNCACT_STUDENTS","charOffset":6740},{"theme":"USPEC_POLICY1","charOffset":460},{"theme":"EPU_POLICY_POLICY","charOffset":460},{"theme":"RELIGION","charOffset":4563},{"theme":"TAX_FNCACT_WOMEN","charOffset":2433},{"theme":"TAX_FNCACT_WOMEN","charOffset":7021},{"theme":"TAX_FNCACT_CRAFTSMAN","charOffset":5790},{"theme":"TAX_RELIGION_CHURCH","charOffset":1046},{"theme":"TAX_RELIGION_CHURCH","charOffset":2067},{"theme":"TAX_RELIGION_CHURCH","charOffset":2079},{"theme":"TAX_RELIGION_CHURCH","charOffset":2576},{"theme":"TAX_RELIGION_CHURCH","charOffset":2626},{"theme":"TAX_RELIGION_CHURCH","charOffset":2741},{"theme":"TAX_RELIGION_CHURCH","charOffset":3361},{"theme":"TAX_RELIGION_CHURCH","charOffset":3530},{"theme":"TAX_RELIGION_CHURCH","charOffset":3910},{"theme":"TAX_RELIGION_CHURCH","charOffset":4211},{"theme":"TAX_RELIGION_CHURCH","charOffset":4637},{"theme":"TAX_RELIGION_CHURCH","charOffset":4927},{"theme":"TAX_RELIGION_CHURCH","charOffset":5047},{"theme":"TAX_RELIGION_CHURCH","charOffset":5368},{"theme":"TAX_RELIGION_CHURCH","charOffset":5544},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":68},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":915},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":1749},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":2060},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":3457},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":3483},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":3763},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":4604},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":6008},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":6541},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":6677},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":7132},{"theme":"MEDIA_MSM","charOffset":235},{"theme":"MEDIA_MSM","charOffset":1405},{"theme":"MEDIA_MSM","charOffset":1663},{"theme":"MEDIA_MSM","charOffset":2965},{"theme":"TAX_FNCACT_FOUNDERS","charOffset":5254},{"theme":"TAX_FNCACT_CHILDREN","charOffset":2191}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Georgetown Visitation Preparatory School, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.9094,"longitude":-77.0694},"featureId":"530098"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}][{"location":{"geoType":"USCITY","geoName":"Georgetown Visitation Preparatory School, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.9094,"longitude":-77.0694},"featureId":"530098"},"charOffset":40},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4162},{"location":{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":166}]["francis de sales","james martin","molly gurdon pinkoski","jeanne marie hathway","flo mart"][{"person":"Francis De Sales","charOffset":5277},{"person":"James Martin","charOffset":4132},{"person":"Molly Gurdon Pinkoski","charOffset":7521},{"person":"Jeanne Marie Hathway","charOffset":7484},{"person":"Flo Mart","charOffset":7403}]["georgetown visitation preparatory school","catholic church"][{"organisation":"Georgetown Visitation Preparatory School","charOffset":40},{"organisation":"Catholic Church","charOffset":2067}]{"tone":1.9461077,"positiveScore":5.3892217,"negativeScore":3.4431138,"polarity":8.832335,"activityReferenceDensity":23.353292,"selfGroupReferenceDensity":4.1916165,"wordCount":1218}[{"dateResolution":4,"month":5,"day":3,"year":0,"charOffset":397},{"dateResolution":4,"month":5,"day":3,"year":0,"charOffset":1269},{"dateResolution":1,"month":0,"day":0,"year":2012,"charOffset":7546},{"dateResolution":1,"month":0,"day":0,"year":2012,"charOffset":7617}][{"gcamCode":"wc","gcamValue":1218},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":8},{"gcamCode":"c12.1","gcamValue":137},{"gcamCode":"c12.10","gcamValue":94},{"gcamCode":"c12.12","gcamValue":25},{"gcamCode":"c12.13","gcamValue":29},{"gcamCode":"c12.14","gcamValue":45},{"gcamCode":"c12.3","gcamValue":70},{"gcamCode":"c12.4","gcamValue":14},{"gcamCode":"c12.5","gcamValue":84},{"gcamCode":"c12.7","gcamValue":93},{"gcamCode":"c12.8","gcamValue":42},{"gcamCode":"c12.9","gcamValue":118},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":115},{"gcamCode":"c14.10","gcamValue":57},{"gcamCode":"c14.11","gcamValue":171},{"gcamCode":"c14.2","gcamValue":100},{"gcamCode":"c14.3","gcamValue":106},{"gcamCode":"c14.4","gcamValue":22},{"gcamCode":"c14.5","gcamValue":163},{"gcamCode":"c14.6","gcamValue":6},{"gcamCode":"c14.7","gcamValue":13},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":10},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.110","gcamValue":4},{"gcamCode":"c15.111","gcamValue":2},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":20},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.12","gcamValue":3},{"gcamCode":"c15.120","gcamValue":3},{"gcamCode":"c15.121","gcamValue":1},{"gcamCode":"c15.125","gcamValue":3},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.129","gcamValue":2},{"gcamCode":"c15.13","gcamValue":17},{"gcamCode":"c15.133","gcamValue":1},{"gcamCode":"c15.137","gcamValue":7},{"gcamCode":"c15.139","gcamValue":13},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.153","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.165","gcamValue":3},{"gcamCode":"c15.166","gcamValue":3},{"gcamCode":"c15.167","gcamValue":3},{"gcamCode":"c15.168","gcamValue":4},{"gcamCode":"c15.172","gcamValue":3},{"gcamCode":"c15.173","gcamValue":16},{"gcamCode":"c15.175","gcamValue":3},{"gcamCode":"c15.176","gcamValue":22},{"gcamCode":"c15.177","gcamValue":12},{"gcamCode":"c15.178","gcamValue":14},{"gcamCode":"c15.179","gcamValue":12},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.184","gcamValue":1},{"gcamCode":"c15.186","gcamValue":1},{"gcamCode":"c15.187","gcamValue":2},{"gcamCode":"c15.189","gcamValue":1},{"gcamCode":"c15.190","gcamValue":1},{"gcamCode":"c15.191","gcamValue":1},{"gcamCode":"c15.192","gcamValue":1},{"gcamCode":"c15.193","gcamValue":1},{"gcamCode":"c15.195","gcamValue":1},{"gcamCode":"c15.197","gcamValue":5},{"gcamCode":"c15.198","gcamValue":3},{"gcamCode":"c15.2","gcamValue":1},{"gcamCode":"c15.201","gcamValue":4},{"gcamCode":"c15.204","gcamValue":1},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.21","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.217","gcamValue":2},{"gcamCode":"c15.218","gcamValue":12},{"gcamCode":"c15.219","gcamValue":2},{"gcamCode":"c15.22","gcamValue":2},{"gcamCode":"c15.220","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.226","gcamValue":6},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.248","gcamValue":2},{"gcamCode":"c15.249","gcamValue":1},{"gcamCode":"c15.25","gcamValue":1},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.256","gcamValue":19},{"gcamCode":"c15.258","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.262","gcamValue":1},{"gcamCode":"c15.267","gcamValue":2},{"gcamCode":"c15.270","gcamValue":19},{"gcamCode":"c15.273","gcamValue":1},{"gcamCode":"c15.276","gcamValue":1},{"gcamCode":"c15.279","gcamValue":12},{"gcamCode":"c15.3","gcamValue":6},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.36","gcamValue":12},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.39","gcamValue":9},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":20},{"gcamCode":"c15.46","gcamValue":3},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.48","gcamValue":1},{"gcamCode":"c15.53","gcamValue":2},{"gcamCode":"c15.60","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.64","gcamValue":1},{"gcamCode":"c15.66","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.70","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.73","gcamValue":1},{"gcamCode":"c15.74","gcamValue":1},{"gcamCode":"c15.76","gcamValue":14},{"gcamCode":"c15.78","gcamValue":2},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.82","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":2},{"gcamCode":"c15.86","gcamValue":5},{"gcamCode":"c15.87","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.97","gcamValue":5},{"gcamCode":"c16.1","gcamValue":23},{"gcamCode":"c16.100","gcamValue":17},{"gcamCode":"c16.101","gcamValue":13},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":9},{"gcamCode":"c16.105","gcamValue":5},{"gcamCode":"c16.106","gcamValue":51},{"gcamCode":"c16.109","gcamValue":126},{"gcamCode":"c16.11","gcamValue":20},{"gcamCode":"c16.110","gcamValue":213},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":89},{"gcamCode":"c16.115","gcamValue":9},{"gcamCode":"c16.116","gcamValue":8},{"gcamCode":"c16.117","gcamValue":62},{"gcamCode":"c16.118","gcamValue":81},{"gcamCode":"c16.119","gcamValue":1},{"gcamCode":"c16.12","gcamValue":142},{"gcamCode":"c16.120","gcamValue":57},{"gcamCode":"c16.121","gcamValue":116},{"gcamCode":"c16.122","gcamValue":14},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":7},{"gcamCode":"c16.125","gcamValue":117},{"gcamCode":"c16.126","gcamValue":84},{"gcamCode":"c16.127","gcamValue":96},{"gcamCode":"c16.128","gcamValue":17},{"gcamCode":"c16.129","gcamValue":131},{"gcamCode":"c16.13","gcamValue":7},{"gcamCode":"c16.130","gcamValue":17},{"gcamCode":"c16.131","gcamValue":53},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":191},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":90},{"gcamCode":"c16.139","gcamValue":50},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":77},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":98},{"gcamCode":"c16.146","gcamValue":78},{"gcamCode":"c16.150","gcamValue":3},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":44},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":21},{"gcamCode":"c16.158","gcamValue":26},{"gcamCode":"c16.159","gcamValue":107},{"gcamCode":"c16.16","gcamValue":12},{"gcamCode":"c16.161","gcamValue":93},{"gcamCode":"c16.162","gcamValue":65},{"gcamCode":"c16.163","gcamValue":51},{"gcamCode":"c16.164","gcamValue":31},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.168","gcamValue":3},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":3},{"gcamCode":"c16.19","gcamValue":13},{"gcamCode":"c16.2","gcamValue":94},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":8},{"gcamCode":"c16.22","gcamValue":21},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":9},{"gcamCode":"c16.26","gcamValue":167},{"gcamCode":"c16.27","gcamValue":6},{"gcamCode":"c16.29","gcamValue":3},{"gcamCode":"c16.3","gcamValue":21},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":88},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":76},{"gcamCode":"c16.34","gcamValue":4},{"gcamCode":"c16.35","gcamValue":68},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":136},{"gcamCode":"c16.38","gcamValue":37},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":94},{"gcamCode":"c16.41","gcamValue":50},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":60},{"gcamCode":"c16.46","gcamValue":11},{"gcamCode":"c16.47","gcamValue":169},{"gcamCode":"c16.48","gcamValue":10},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":4},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":47},{"gcamCode":"c16.53","gcamValue":15},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":4},{"gcamCode":"c16.56","gcamValue":23},{"gcamCode":"c16.57","gcamValue":658},{"gcamCode":"c16.58","gcamValue":77},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":155},{"gcamCode":"c16.60","gcamValue":10},{"gcamCode":"c16.61","gcamValue":3},{"gcamCode":"c16.62","gcamValue":52},{"gcamCode":"c16.63","gcamValue":11},{"gcamCode":"c16.64","gcamValue":17},{"gcamCode":"c16.65","gcamValue":32},{"gcamCode":"c16.66","gcamValue":44},{"gcamCode":"c16.68","gcamValue":52},{"gcamCode":"c16.69","gcamValue":50},{"gcamCode":"c16.7","gcamValue":18},{"gcamCode":"c16.70","gcamValue":52},{"gcamCode":"c16.71","gcamValue":8},{"gcamCode":"c16.72","gcamValue":6},{"gcamCode":"c16.73","gcamValue":6},{"gcamCode":"c16.74","gcamValue":18},{"gcamCode":"c16.75","gcamValue":54},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":5},{"gcamCode":"c16.78","gcamValue":27},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":10},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":40},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":9},{"gcamCode":"c16.87","gcamValue":98},{"gcamCode":"c16.88","gcamValue":170},{"gcamCode":"c16.89","gcamValue":43},{"gcamCode":"c16.9","gcamValue":17},{"gcamCode":"c16.90","gcamValue":37},{"gcamCode":"c16.91","gcamValue":25},{"gcamCode":"c16.92","gcamValue":78},{"gcamCode":"c16.93","gcamValue":7},{"gcamCode":"c16.94","gcamValue":82},{"gcamCode":"c16.95","gcamValue":67},{"gcamCode":"c16.96","gcamValue":35},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":92},{"gcamCode":"c16.99","gcamValue":16},{"gcamCode":"c17.1","gcamValue":332},{"gcamCode":"c17.10","gcamValue":206},{"gcamCode":"c17.11","gcamValue":186},{"gcamCode":"c17.12","gcamValue":51},{"gcamCode":"c17.13","gcamValue":29},{"gcamCode":"c17.14","gcamValue":7},{"gcamCode":"c17.15","gcamValue":107},{"gcamCode":"c17.16","gcamValue":36},{"gcamCode":"c17.17","gcamValue":7},{"gcamCode":"c17.18","gcamValue":13},{"gcamCode":"c17.19","gcamValue":101},{"gcamCode":"c17.2","gcamValue":19},{"gcamCode":"c17.20","gcamValue":15},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":22},{"gcamCode":"c17.23","gcamValue":10},{"gcamCode":"c17.24","gcamValue":100},{"gcamCode":"c17.25","gcamValue":16},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":135},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":45},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":26},{"gcamCode":"c17.31","gcamValue":64},{"gcamCode":"c17.32","gcamValue":55},{"gcamCode":"c17.33","gcamValue":73},{"gcamCode":"c17.34","gcamValue":21},{"gcamCode":"c17.35","gcamValue":21},{"gcamCode":"c17.36","gcamValue":49},{"gcamCode":"c17.37","gcamValue":49},{"gcamCode":"c17.38","gcamValue":21},{"gcamCode":"c17.39","gcamValue":60},{"gcamCode":"c17.4","gcamValue":292},{"gcamCode":"c17.40","gcamValue":28},{"gcamCode":"c17.41","gcamValue":60},{"gcamCode":"c17.42","gcamValue":92},{"gcamCode":"c17.43","gcamValue":66},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":265},{"gcamCode":"c17.6","gcamValue":11},{"gcamCode":"c17.7","gcamValue":149},{"gcamCode":"c17.8","gcamValue":145},{"gcamCode":"c17.9","gcamValue":13},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.111","gcamValue":4},{"gcamCode":"c18.114","gcamValue":1},{"gcamCode":"c18.12","gcamValue":1},{"gcamCode":"c18.13","gcamValue":4},{"gcamCode":"c18.147","gcamValue":30},{"gcamCode":"c18.152","gcamValue":1},{"gcamCode":"c18.179","gcamValue":29},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":18},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.298","gcamValue":10},{"gcamCode":"c18.331","gcamValue":1},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.345","gcamValue":3},{"gcamCode":"c18.53","gcamValue":3},{"gcamCode":"c18.81","gcamValue":1},{"gcamCode":"c2.1","gcamValue":44},{"gcamCode":"c2.10","gcamValue":18},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":32},{"gcamCode":"c2.102","gcamValue":22},{"gcamCode":"c2.103","gcamValue":6},{"gcamCode":"c2.104","gcamValue":218},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":7},{"gcamCode":"c2.108","gcamValue":11},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":38},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":21},{"gcamCode":"c2.113","gcamValue":15},{"gcamCode":"c2.114","gcamValue":75},{"gcamCode":"c2.115","gcamValue":9},{"gcamCode":"c2.116","gcamValue":49},{"gcamCode":"c2.118","gcamValue":5},{"gcamCode":"c2.119","gcamValue":338},{"gcamCode":"c2.12","gcamValue":97},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":92},{"gcamCode":"c2.122","gcamValue":24},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":45},{"gcamCode":"c2.125","gcamValue":67},{"gcamCode":"c2.126","gcamValue":67},{"gcamCode":"c2.127","gcamValue":127},{"gcamCode":"c2.128","gcamValue":49},{"gcamCode":"c2.129","gcamValue":22},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":5},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":9},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":130},{"gcamCode":"c2.141","gcamValue":28},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":51},{"gcamCode":"c2.144","gcamValue":29},{"gcamCode":"c2.145","gcamValue":14},{"gcamCode":"c2.146","gcamValue":15},{"gcamCode":"c2.147","gcamValue":217},{"gcamCode":"c2.148","gcamValue":165},{"gcamCode":"c2.149","gcamValue":5},{"gcamCode":"c2.15","gcamValue":111},{"gcamCode":"c2.150","gcamValue":12},{"gcamCode":"c2.151","gcamValue":7},{"gcamCode":"c2.152","gcamValue":27},{"gcamCode":"c2.153","gcamValue":73},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":183},{"gcamCode":"c2.156","gcamValue":83},{"gcamCode":"c2.157","gcamValue":167},{"gcamCode":"c2.158","gcamValue":145},{"gcamCode":"c2.159","gcamValue":18},{"gcamCode":"c2.160","gcamValue":62},{"gcamCode":"c2.161","gcamValue":17},{"gcamCode":"c2.162","gcamValue":31},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.165","gcamValue":35},{"gcamCode":"c2.166","gcamValue":81},{"gcamCode":"c2.167","gcamValue":5},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":13},{"gcamCode":"c2.170","gcamValue":23},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":20},{"gcamCode":"c2.174","gcamValue":58},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":10},{"gcamCode":"c2.177","gcamValue":84},{"gcamCode":"c2.178","gcamValue":3},{"gcamCode":"c2.179","gcamValue":79},{"gcamCode":"c2.18","gcamValue":49},{"gcamCode":"c2.180","gcamValue":50},{"gcamCode":"c2.181","gcamValue":54},{"gcamCode":"c2.183","gcamValue":55},{"gcamCode":"c2.185","gcamValue":303},{"gcamCode":"c2.186","gcamValue":23},{"gcamCode":"c2.187","gcamValue":96},{"gcamCode":"c2.188","gcamValue":8},{"gcamCode":"c2.189","gcamValue":8},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.191","gcamValue":39},{"gcamCode":"c2.192","gcamValue":30},{"gcamCode":"c2.193","gcamValue":74},{"gcamCode":"c2.194","gcamValue":4},{"gcamCode":"c2.195","gcamValue":119},{"gcamCode":"c2.196","gcamValue":32},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":89},{"gcamCode":"c2.199","gcamValue":28},{"gcamCode":"c2.2","gcamValue":14},{"gcamCode":"c2.200","gcamValue":13},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.203","gcamValue":67},{"gcamCode":"c2.204","gcamValue":72},{"gcamCode":"c2.205","gcamValue":14},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.209","gcamValue":26},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":139},{"gcamCode":"c2.211","gcamValue":5},{"gcamCode":"c2.213","gcamValue":28},{"gcamCode":"c2.214","gcamValue":67},{"gcamCode":"c2.215","gcamValue":2},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.218","gcamValue":7},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":24},{"gcamCode":"c2.221","gcamValue":13},{"gcamCode":"c2.223","gcamValue":13},{"gcamCode":"c2.225","gcamValue":41},{"gcamCode":"c2.226","gcamValue":47},{"gcamCode":"c2.227","gcamValue":13},{"gcamCode":"c2.228","gcamValue":18},{"gcamCode":"c2.23","gcamValue":32},{"gcamCode":"c2.25","gcamValue":94},{"gcamCode":"c2.26","gcamValue":57},{"gcamCode":"c2.27","gcamValue":57},{"gcamCode":"c2.28","gcamValue":20},{"gcamCode":"c2.3","gcamValue":17},{"gcamCode":"c2.30","gcamValue":83},{"gcamCode":"c2.31","gcamValue":77},{"gcamCode":"c2.32","gcamValue":6},{"gcamCode":"c2.33","gcamValue":13},{"gcamCode":"c2.34","gcamValue":56},{"gcamCode":"c2.35","gcamValue":66},{"gcamCode":"c2.36","gcamValue":49},{"gcamCode":"c2.37","gcamValue":60},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":194},{"gcamCode":"c2.4","gcamValue":43},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":8},{"gcamCode":"c2.44","gcamValue":73},{"gcamCode":"c2.45","gcamValue":24},{"gcamCode":"c2.46","gcamValue":123},{"gcamCode":"c2.47","gcamValue":39},{"gcamCode":"c2.48","gcamValue":23},{"gcamCode":"c2.5","gcamValue":9},{"gcamCode":"c2.50","gcamValue":44},{"gcamCode":"c2.51","gcamValue":3},{"gcamCode":"c2.52","gcamValue":108},{"gcamCode":"c2.53","gcamValue":8},{"gcamCode":"c2.54","gcamValue":147},{"gcamCode":"c2.55","gcamValue":6},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.57","gcamValue":31},{"gcamCode":"c2.58","gcamValue":15},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":58},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":57},{"gcamCode":"c2.64","gcamValue":32},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":8},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":7},{"gcamCode":"c2.69","gcamValue":7},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":7},{"gcamCode":"c2.73","gcamValue":36},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":231},{"gcamCode":"c2.76","gcamValue":912},{"gcamCode":"c2.77","gcamValue":113},{"gcamCode":"c2.78","gcamValue":213},{"gcamCode":"c2.79","gcamValue":18},{"gcamCode":"c2.80","gcamValue":184},{"gcamCode":"c2.81","gcamValue":13},{"gcamCode":"c2.82","gcamValue":67},{"gcamCode":"c2.83","gcamValue":12},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.86","gcamValue":65},{"gcamCode":"c2.87","gcamValue":12},{"gcamCode":"c2.88","gcamValue":35},{"gcamCode":"c2.89","gcamValue":43},{"gcamCode":"c2.9","gcamValue":9},{"gcamCode":"c2.90","gcamValue":20},{"gcamCode":"c2.91","gcamValue":6},{"gcamCode":"c2.92","gcamValue":11},{"gcamCode":"c2.93","gcamValue":25},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":180},{"gcamCode":"c2.96","gcamValue":4},{"gcamCode":"c2.97","gcamValue":11},{"gcamCode":"c2.98","gcamValue":80},{"gcamCode":"c2.99","gcamValue":3},{"gcamCode":"c25.1","gcamValue":5},{"gcamCode":"c25.11","gcamValue":6},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":7},{"gcamCode":"c25.6","gcamValue":3},{"gcamCode":"c25.7","gcamValue":15},{"gcamCode":"c25.8","gcamValue":2},{"gcamCode":"c25.9","gcamValue":21},{"gcamCode":"c3.1","gcamValue":96},{"gcamCode":"c3.2","gcamValue":126},{"gcamCode":"c3.3","gcamValue":2},{"gcamCode":"c3.4","gcamValue":1},{"gcamCode":"c35.1","gcamValue":14},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.13","gcamValue":30},{"gcamCode":"c35.14","gcamValue":33},{"gcamCode":"c35.15","gcamValue":56},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":7},{"gcamCode":"c35.2","gcamValue":5},{"gcamCode":"c35.20","gcamValue":54},{"gcamCode":"c35.24","gcamValue":3},{"gcamCode":"c35.25","gcamValue":4},{"gcamCode":"c35.28","gcamValue":1},{"gcamCode":"c35.3","gcamValue":3},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":45},{"gcamCode":"c35.32","gcamValue":127},{"gcamCode":"c35.33","gcamValue":63},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c35.6","gcamValue":2},{"gcamCode":"c35.7","gcamValue":5},{"gcamCode":"c35.8","gcamValue":3},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":4},{"gcamCode":"c39.17","gcamValue":8},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":14},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.24","gcamValue":1},{"gcamCode":"c39.25","gcamValue":5},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":40},{"gcamCode":"c39.32","gcamValue":2},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":31},{"gcamCode":"c39.38","gcamValue":5},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":21},{"gcamCode":"c39.40","gcamValue":4},{"gcamCode":"c39.41","gcamValue":16},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.8","gcamValue":2},{"gcamCode":"c4.13","gcamValue":5},{"gcamCode":"c4.15","gcamValue":6},{"gcamCode":"c4.2","gcamValue":8},{"gcamCode":"c4.23","gcamValue":49},{"gcamCode":"c4.28","gcamValue":34},{"gcamCode":"c4.8","gcamValue":13},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":7},{"gcamCode":"c40.6","gcamValue":4},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":3},{"gcamCode":"c41.1","gcamValue":24},{"gcamCode":"c5.10","gcamValue":82},{"gcamCode":"c5.11","gcamValue":36},{"gcamCode":"c5.12","gcamValue":158},{"gcamCode":"c5.14","gcamValue":27},{"gcamCode":"c5.15","gcamValue":8},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":35},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":10},{"gcamCode":"c5.23","gcamValue":50},{"gcamCode":"c5.24","gcamValue":8},{"gcamCode":"c5.25","gcamValue":25},{"gcamCode":"c5.26","gcamValue":13},{"gcamCode":"c5.27","gcamValue":12},{"gcamCode":"c5.28","gcamValue":14},{"gcamCode":"c5.29","gcamValue":21},{"gcamCode":"c5.3","gcamValue":55},{"gcamCode":"c5.30","gcamValue":152},{"gcamCode":"c5.31","gcamValue":7},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":21},{"gcamCode":"c5.35","gcamValue":74},{"gcamCode":"c5.36","gcamValue":98},{"gcamCode":"c5.37","gcamValue":15},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.39","gcamValue":11},{"gcamCode":"c5.4","gcamValue":4},{"gcamCode":"c5.40","gcamValue":204},{"gcamCode":"c5.43","gcamValue":38},{"gcamCode":"c5.44","gcamValue":8},{"gcamCode":"c5.45","gcamValue":22},{"gcamCode":"c5.46","gcamValue":215},{"gcamCode":"c5.47","gcamValue":27},{"gcamCode":"c5.48","gcamValue":10},{"gcamCode":"c5.49","gcamValue":121},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":160},{"gcamCode":"c5.51","gcamValue":88},{"gcamCode":"c5.52","gcamValue":177},{"gcamCode":"c5.53","gcamValue":93},{"gcamCode":"c5.54","gcamValue":67},{"gcamCode":"c5.55","gcamValue":10},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":18},{"gcamCode":"c5.58","gcamValue":45},{"gcamCode":"c5.59","gcamValue":8},{"gcamCode":"c5.6","gcamValue":56},{"gcamCode":"c5.60","gcamValue":82},{"gcamCode":"c5.61","gcamValue":149},{"gcamCode":"c5.62","gcamValue":613},{"gcamCode":"c5.7","gcamValue":15},{"gcamCode":"c5.8","gcamValue":61},{"gcamCode":"c5.9","gcamValue":34},{"gcamCode":"c6.1","gcamValue":12},{"gcamCode":"c6.2","gcamValue":13},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":39},{"gcamCode":"c6.5","gcamValue":13},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":88},{"gcamCode":"c7.2","gcamValue":103},{"gcamCode":"c8.1","gcamValue":30},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":5},{"gcamCode":"c8.15","gcamValue":2},{"gcamCode":"c8.17","gcamValue":6},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.21","gcamValue":6},{"gcamCode":"c8.22","gcamValue":5},{"gcamCode":"c8.23","gcamValue":18},{"gcamCode":"c8.24","gcamValue":1},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":4},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.3","gcamValue":5},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":3},{"gcamCode":"c8.36","gcamValue":7},{"gcamCode":"c8.37","gcamValue":35},{"gcamCode":"c8.38","gcamValue":16},{"gcamCode":"c8.39","gcamValue":8},{"gcamCode":"c8.4","gcamValue":49},{"gcamCode":"c8.40","gcamValue":14},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":76},{"gcamCode":"c8.43","gcamValue":29},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c8.6","gcamValue":4},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":61},{"gcamCode":"c9.10","gcamValue":13},{"gcamCode":"c9.1000","gcamValue":3},{"gcamCode":"c9.1002","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":5},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1012","gcamValue":2},{"gcamCode":"c9.1013","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":34},{"gcamCode":"c9.1021","gcamValue":31},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":19},{"gcamCode":"c9.1024","gcamValue":7},{"gcamCode":"c9.1025","gcamValue":1},{"gcamCode":"c9.1027","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":7},{"gcamCode":"c9.1030","gcamValue":8},{"gcamCode":"c9.1033","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":32},{"gcamCode":"c9.1035","gcamValue":13},{"gcamCode":"c9.1036","gcamValue":6},{"gcamCode":"c9.1038","gcamValue":21},{"gcamCode":"c9.1039","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":9},{"gcamCode":"c9.109","gcamValue":5},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":9},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":8},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":11},{"gcamCode":"c9.12","gcamValue":6},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":70},{"gcamCode":"c9.129","gcamValue":6},{"gcamCode":"c9.13","gcamValue":3},{"gcamCode":"c9.130","gcamValue":15},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":2},{"gcamCode":"c9.133","gcamValue":4},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.143","gcamValue":9},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":7},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":8},{"gcamCode":"c9.150","gcamValue":5},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":42},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":3},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":5},{"gcamCode":"c9.162","gcamValue":12},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.165","gcamValue":4},{"gcamCode":"c9.166","gcamValue":5},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":14},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.171","gcamValue":2},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":4},{"gcamCode":"c9.175","gcamValue":8},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":12},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.179","gcamValue":6},{"gcamCode":"c9.18","gcamValue":24},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":17},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":16},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":16},{"gcamCode":"c9.19","gcamValue":9},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":5},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":6},{"gcamCode":"c9.195","gcamValue":10},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":10},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":8},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.205","gcamValue":7},{"gcamCode":"c9.206","gcamValue":10},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.213","gcamValue":2},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.215","gcamValue":4},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":4},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":7},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.23","gcamValue":18},{"gcamCode":"c9.230","gcamValue":3},{"gcamCode":"c9.231","gcamValue":7},{"gcamCode":"c9.232","gcamValue":3},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":21},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":4},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.25","gcamValue":5},{"gcamCode":"c9.250","gcamValue":4},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.26","gcamValue":2},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.262","gcamValue":5},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":4},{"gcamCode":"c9.275","gcamValue":10},{"gcamCode":"c9.276","gcamValue":5},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.28","gcamValue":3},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":4},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":53},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":9},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":4},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.31","gcamValue":5},{"gcamCode":"c9.311","gcamValue":2},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.324","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.33","gcamValue":27},{"gcamCode":"c9.331","gcamValue":3},{"gcamCode":"c9.335","gcamValue":3},{"gcamCode":"c9.34","gcamValue":8},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":13},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":5},{"gcamCode":"c9.359","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":9},{"gcamCode":"c9.371","gcamValue":8},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.374","gcamValue":7},{"gcamCode":"c9.375","gcamValue":3},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":15},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.385","gcamValue":9},{"gcamCode":"c9.386","gcamValue":13},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":27},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.398","gcamValue":4},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.411","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":4},{"gcamCode":"c9.420","gcamValue":4},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":5},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":7},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.435","gcamValue":3},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":10},{"gcamCode":"c9.440","gcamValue":8},{"gcamCode":"c9.442","gcamValue":2},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.446","gcamValue":9},{"gcamCode":"c9.45","gcamValue":5},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.458","gcamValue":5},{"gcamCode":"c9.459","gcamValue":6},{"gcamCode":"c9.46","gcamValue":44},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.466","gcamValue":5},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":5},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.474","gcamValue":5},{"gcamCode":"c9.476","gcamValue":6},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.478","gcamValue":7},{"gcamCode":"c9.479","gcamValue":16},{"gcamCode":"c9.48","gcamValue":10},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.485","gcamValue":3},{"gcamCode":"c9.488","gcamValue":4},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":5},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":3},{"gcamCode":"c9.496","gcamValue":28},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":15},{"gcamCode":"c9.499","gcamValue":9},{"gcamCode":"c9.5","gcamValue":6},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":13},{"gcamCode":"c9.502","gcamValue":5},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":48},{"gcamCode":"c9.509","gcamValue":2},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.510","gcamValue":2},{"gcamCode":"c9.511","gcamValue":32},{"gcamCode":"c9.512","gcamValue":2},{"gcamCode":"c9.513","gcamValue":72},{"gcamCode":"c9.514","gcamValue":4},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":31},{"gcamCode":"c9.518","gcamValue":9},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":13},{"gcamCode":"c9.522","gcamValue":12},{"gcamCode":"c9.523","gcamValue":13},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.528","gcamValue":5},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":12},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":3},{"gcamCode":"c9.534","gcamValue":4},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":12},{"gcamCode":"c9.540","gcamValue":6},{"gcamCode":"c9.542","gcamValue":5},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":9},{"gcamCode":"c9.55","gcamValue":18},{"gcamCode":"c9.550","gcamValue":3},{"gcamCode":"c9.551","gcamValue":40},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":10},{"gcamCode":"c9.557","gcamValue":14},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.560","gcamValue":11},{"gcamCode":"c9.561","gcamValue":9},{"gcamCode":"c9.562","gcamValue":35},{"gcamCode":"c9.563","gcamValue":1},{"gcamCode":"c9.564","gcamValue":11},{"gcamCode":"c9.565","gcamValue":34},{"gcamCode":"c9.566","gcamValue":19},{"gcamCode":"c9.567","gcamValue":16},{"gcamCode":"c9.568","gcamValue":22},{"gcamCode":"c9.569","gcamValue":3},{"gcamCode":"c9.57","gcamValue":4},{"gcamCode":"c9.570","gcamValue":9},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.572","gcamValue":2},{"gcamCode":"c9.574","gcamValue":3},{"gcamCode":"c9.575","gcamValue":9},{"gcamCode":"c9.576","gcamValue":11},{"gcamCode":"c9.579","gcamValue":53},{"gcamCode":"c9.58","gcamValue":2},{"gcamCode":"c9.581","gcamValue":17},{"gcamCode":"c9.582","gcamValue":2},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":10},{"gcamCode":"c9.586","gcamValue":10},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":5},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.591","gcamValue":4},{"gcamCode":"c9.594","gcamValue":2},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.600","gcamValue":4},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.605","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":7},{"gcamCode":"c9.615","gcamValue":11},{"gcamCode":"c9.616","gcamValue":10},{"gcamCode":"c9.617","gcamValue":8},{"gcamCode":"c9.618","gcamValue":9},{"gcamCode":"c9.619","gcamValue":11},{"gcamCode":"c9.62","gcamValue":11},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":6},{"gcamCode":"c9.625","gcamValue":14},{"gcamCode":"c9.626","gcamValue":7},{"gcamCode":"c9.627","gcamValue":9},{"gcamCode":"c9.629","gcamValue":12},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":9},{"gcamCode":"c9.635","gcamValue":15},{"gcamCode":"c9.636","gcamValue":3},{"gcamCode":"c9.637","gcamValue":4},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":10},{"gcamCode":"c9.640","gcamValue":18},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":19},{"gcamCode":"c9.645","gcamValue":2},{"gcamCode":"c9.646","gcamValue":9},{"gcamCode":"c9.648","gcamValue":19},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.651","gcamValue":2},{"gcamCode":"c9.653","gcamValue":64},{"gcamCode":"c9.654","gcamValue":11},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":11},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":10},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":6},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":10},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":27},{"gcamCode":"c9.671","gcamValue":5},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":7},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":17},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.680","gcamValue":3},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":37},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.686","gcamValue":3},{"gcamCode":"c9.687","gcamValue":14},{"gcamCode":"c9.688","gcamValue":2},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.692","gcamValue":15},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":8},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.698","gcamValue":18},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":22},{"gcamCode":"c9.702","gcamValue":2},{"gcamCode":"c9.704","gcamValue":14},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":12},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":10},{"gcamCode":"c9.710","gcamValue":8},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":10},{"gcamCode":"c9.721","gcamValue":5},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":3},{"gcamCode":"c9.724","gcamValue":6},{"gcamCode":"c9.725","gcamValue":4},{"gcamCode":"c9.726","gcamValue":62},{"gcamCode":"c9.727","gcamValue":4},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":5},{"gcamCode":"c9.730","gcamValue":55},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.735","gcamValue":10},{"gcamCode":"c9.736","gcamValue":12},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":8},{"gcamCode":"c9.741","gcamValue":12},{"gcamCode":"c9.742","gcamValue":19},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.745","gcamValue":6},{"gcamCode":"c9.746","gcamValue":10},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":26},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.752","gcamValue":2},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":4},{"gcamCode":"c9.757","gcamValue":9},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":14},{"gcamCode":"c9.760","gcamValue":9},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":52},{"gcamCode":"c9.763","gcamValue":24},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.765","gcamValue":6},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":72},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.77","gcamValue":2},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":10},{"gcamCode":"c9.773","gcamValue":10},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":4},{"gcamCode":"c9.78","gcamValue":10},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.785","gcamValue":3},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":10},{"gcamCode":"c9.790","gcamValue":9},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":9},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.794","gcamValue":2},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.798","gcamValue":4},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":7},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":9},{"gcamCode":"c9.803","gcamValue":12},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":6},{"gcamCode":"c9.808","gcamValue":15},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.810","gcamValue":4},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":9},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.816","gcamValue":12},{"gcamCode":"c9.817","gcamValue":3},{"gcamCode":"c9.818","gcamValue":6},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":28},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.83","gcamValue":35},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.832","gcamValue":4},{"gcamCode":"c9.833","gcamValue":7},{"gcamCode":"c9.834","gcamValue":7},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":8},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.841","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.844","gcamValue":3},{"gcamCode":"c9.846","gcamValue":5},{"gcamCode":"c9.847","gcamValue":3},{"gcamCode":"c9.848","gcamValue":4},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":11},{"gcamCode":"c9.854","gcamValue":1},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.857","gcamValue":15},{"gcamCode":"c9.858","gcamValue":16},{"gcamCode":"c9.859","gcamValue":1},{"gcamCode":"c9.86","gcamValue":6},{"gcamCode":"c9.860","gcamValue":15},{"gcamCode":"c9.861","gcamValue":25},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":5},{"gcamCode":"c9.864","gcamValue":65},{"gcamCode":"c9.865","gcamValue":27},{"gcamCode":"c9.866","gcamValue":6},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":50},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.873","gcamValue":27},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.878","gcamValue":6},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.888","gcamValue":3},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":11},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":6},{"gcamCode":"c9.899","gcamValue":7},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":11},{"gcamCode":"c9.900","gcamValue":3},{"gcamCode":"c9.901","gcamValue":4},{"gcamCode":"c9.902","gcamValue":5},{"gcamCode":"c9.903","gcamValue":30},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":14},{"gcamCode":"c9.911","gcamValue":20},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.915","gcamValue":6},{"gcamCode":"c9.916","gcamValue":7},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":14},{"gcamCode":"c9.919","gcamValue":2},{"gcamCode":"c9.920","gcamValue":5},{"gcamCode":"c9.921","gcamValue":6},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":8},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":29},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.930","gcamValue":10},{"gcamCode":"c9.931","gcamValue":10},{"gcamCode":"c9.932","gcamValue":17},{"gcamCode":"c9.935","gcamValue":44},{"gcamCode":"c9.936","gcamValue":6},{"gcamCode":"c9.937","gcamValue":12},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.941","gcamValue":12},{"gcamCode":"c9.942","gcamValue":8},{"gcamCode":"c9.943","gcamValue":1},{"gcamCode":"c9.945","gcamValue":39},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.95","gcamValue":4},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":9},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":10},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":3},{"gcamCode":"c9.965","gcamValue":4},{"gcamCode":"c9.966","gcamValue":8},{"gcamCode":"c9.969","gcamValue":5},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":42},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.975","gcamValue":2},{"gcamCode":"c9.978","gcamValue":15},{"gcamCode":"c9.980","gcamValue":25},{"gcamCode":"c9.981","gcamValue":11},{"gcamCode":"c9.983","gcamValue":4},{"gcamCode":"c9.984","gcamValue":16},{"gcamCode":"c9.985","gcamValue":19},{"gcamCode":"c9.986","gcamValue":10},{"gcamCode":"c9.987","gcamValue":2},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.992","gcamValue":1},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"c9.998","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.309120221176673},{"gcamCode":"v10.2","gcamValue":0.262681892555091},{"gcamCode":"v11.1","gcamValue":0.0946882477924944},{"gcamCode":"v19.1","gcamValue":6.40815028901734},{"gcamCode":"v19.2","gcamValue":5.17994219653179},{"gcamCode":"v19.3","gcamValue":5.55936416184971},{"gcamCode":"v19.4","gcamValue":6.18595375722543},{"gcamCode":"v19.5","gcamValue":5.04815028901734},{"gcamCode":"v19.6","gcamValue":5.57208092485549},{"gcamCode":"v19.7","gcamValue":6.57982658959537},{"gcamCode":"v19.8","gcamValue":5.32323699421965},{"gcamCode":"v19.9","gcamValue":5.52612716763006},{"gcamCode":"v20.1","gcamValue":0.465052631578947},{"gcamCode":"v20.10","gcamValue":-0.688090909090909},{"gcamCode":"v20.11","gcamValue":0.583522388059702},{"gcamCode":"v20.12","gcamValue":-0.647785714285714},{"gcamCode":"v20.13","gcamValue":0.469570422535212},{"gcamCode":"v20.14","gcamValue":-0.588823529411765},{"gcamCode":"v20.15","gcamValue":0.401844919786096},{"gcamCode":"v20.16","gcamValue":-0.442518518518519},{"gcamCode":"v20.2","gcamValue":-0.433},{"gcamCode":"v20.3","gcamValue":0.50132},{"gcamCode":"v20.4","gcamValue":-0.602375},{"gcamCode":"v20.5","gcamValue":0.550285714285714},{"gcamCode":"v20.6","gcamValue":-0.6819},{"gcamCode":"v20.7","gcamValue":0.557172413793103},{"gcamCode":"v20.8","gcamValue":-0.688090909090909},{"gcamCode":"v20.9","gcamValue":0.595559322033898},{"gcamCode":"v21.1","gcamValue":5.62412199630313},{"gcamCode":"v26.1","gcamValue":1.1260162601626}]https://www.firstthings.com/uploads/article_5ce66a34c03dd.jpg[""][""][""][][{"name":"Georgetown Visitation Preparatory School","charOffset":41},{"name":"Salesian Sisters","charOffset":97},{"name":"Holy Mary","charOffset":141},{"name":"Mary Berchmans","charOffset":298},{"name":"Visitation Monastery","charOffset":349},{"name":"Thirty-fifth Street","charOffset":794},{"name":"Holy Spirit","charOffset":3027},{"name":"James Martin","charOffset":4407},{"name":"Holy Father","charOffset":5514},{"name":"Francis De Sales","charOffset":5618},{"name":"Master Craftsman","charOffset":6152}][{"amount":1000000,"amountType":"of Catholics around the","charOffset":4323}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Authors</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523000000</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEB93x.comhttp://www.93x.com/2019/05/23/diary-farmer-gets-hit-by-long-ranged-cow-pie/[][]["AGRICULTURE","TAX_FNCACT","TAX_FNCACT_FARMER","TAX_FNCACT_DAIRY_FARMER","DELAY","MEDIA_SOCIAL"][{"theme":"MEDIA_SOCIAL","charOffset":22},{"theme":"MEDIA_SOCIAL","charOffset":493},{"theme":"AGRICULTURE","charOffset":58},{"theme":"AGRICULTURE","charOffset":254},{"theme":"AGRICULTURE","charOffset":316},{"theme":"TAX_FNCACT_FARMER","charOffset":58},{"theme":"TAX_FNCACT_FARMER","charOffset":254},{"theme":"TAX_FNCACT_FARMER","charOffset":316},{"theme":"TAX_FNCACT_DAIRY_FARMER","charOffset":58},{"theme":"DELAY","charOffset":160},{"theme":"DELAY","charOffset":204}][][]["karter kilburg"][{"person":"Karter Kilburg","charOffset":333},{"person":"Karter Kilburg","charOffset":533}][""][]{"tone":-0.9433962,"positiveScore":2.8301888,"negativeScore":3.7735848,"polarity":6.6037736,"activityReferenceDensity":28.301888,"selfGroupReferenceDensity":0,"wordCount":91}[][{"gcamCode":"wc","gcamValue":91},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":11},{"gcamCode":"c12.12","gcamValue":4},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":5},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":4},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":7},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c14.1","gcamValue":7},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":8},{"gcamCode":"c14.2","gcamValue":8},{"gcamCode":"c14.3","gcamValue":4},{"gcamCode":"c14.5","gcamValue":11},{"gcamCode":"c14.7","gcamValue":1},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c15.111","gcamValue":3},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.185","gcamValue":1},{"gcamCode":"c15.198","gcamValue":3},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.30","gcamValue":3},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.68","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.109","gcamValue":3},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":22},{"gcamCode":"c16.114","gcamValue":4},{"gcamCode":"c16.115","gcamValue":6},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":2},{"gcamCode":"c16.118","gcamValue":6},{"gcamCode":"c16.12","gcamValue":12},{"gcamCode":"c16.120","gcamValue":8},{"gcamCode":"c16.121","gcamValue":7},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":10},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":11},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":13},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":4},{"gcamCode":"c16.132","gcamValue":2},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":2},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":7},{"gcamCode":"c16.146","gcamValue":8},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":7},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.159","gcamValue":4},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.160","gcamValue":1},{"gcamCode":"c16.161","gcamValue":9},{"gcamCode":"c16.162","gcamValue":5},{"gcamCode":"c16.163","gcamValue":11},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.19","gcamValue":5},{"gcamCode":"c16.2","gcamValue":4},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":14},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":6},{"gcamCode":"c16.31","gcamValue":10},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":11},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":8},{"gcamCode":"c16.38","gcamValue":1},{"gcamCode":"c16.4","gcamValue":12},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":10},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":8},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":49},{"gcamCode":"c16.58","gcamValue":9},{"gcamCode":"c16.6","gcamValue":15},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":2},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":3},{"gcamCode":"c16.68","gcamValue":6},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":2},{"gcamCode":"c16.88","gcamValue":13},{"gcamCode":"c16.89","gcamValue":7},{"gcamCode":"c16.90","gcamValue":2},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":5},{"gcamCode":"c16.94","gcamValue":6},{"gcamCode":"c16.95","gcamValue":9},{"gcamCode":"c16.96","gcamValue":5},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":25},{"gcamCode":"c17.10","gcamValue":10},{"gcamCode":"c17.11","gcamValue":15},{"gcamCode":"c17.12","gcamValue":6},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":3},{"gcamCode":"c17.16","gcamValue":5},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":16},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":7},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":9},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":8},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":3},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.36","gcamValue":5},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":4},{"gcamCode":"c17.39","gcamValue":7},{"gcamCode":"c17.4","gcamValue":17},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":6},{"gcamCode":"c17.5","gcamValue":21},{"gcamCode":"c17.6","gcamValue":6},{"gcamCode":"c17.7","gcamValue":23},{"gcamCode":"c17.8","gcamValue":7},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.193","gcamValue":4},{"gcamCode":"c18.33","gcamValue":2},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.52","gcamValue":3},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":11},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.114","gcamValue":4},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.119","gcamValue":30},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.125","gcamValue":5},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":10},{"gcamCode":"c2.128","gcamValue":4},{"gcamCode":"c2.129","gcamValue":1},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.139","gcamValue":4},{"gcamCode":"c2.14","gcamValue":8},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":6},{"gcamCode":"c2.147","gcamValue":13},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.15","gcamValue":4},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":9},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":8},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.159","gcamValue":3},{"gcamCode":"c2.160","gcamValue":2},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":4},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.177","gcamValue":7},{"gcamCode":"c2.179","gcamValue":2},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":2},{"gcamCode":"c2.183","gcamValue":2},{"gcamCode":"c2.185","gcamValue":23},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":3},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":10},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":13},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":6},{"gcamCode":"c2.204","gcamValue":12},{"gcamCode":"c2.205","gcamValue":1},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":5},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.222","gcamValue":3},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.23","gcamValue":1},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":5},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":4},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.34","gcamValue":4},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":14},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":6},{"gcamCode":"c2.46","gcamValue":7},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":4},{"gcamCode":"c2.54","gcamValue":5},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":6},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.63","gcamValue":1},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.7","gcamValue":3},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":9},{"gcamCode":"c2.76","gcamValue":62},{"gcamCode":"c2.77","gcamValue":7},{"gcamCode":"c2.78","gcamValue":11},{"gcamCode":"c2.79","gcamValue":6},{"gcamCode":"c2.80","gcamValue":18},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":5},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":6},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.89","gcamValue":6},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.95","gcamValue":14},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":3},{"gcamCode":"c3.2","gcamValue":4},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":3},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.33","gcamValue":3},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":1},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":9},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":5},{"gcamCode":"c5.11","gcamValue":4},{"gcamCode":"c5.12","gcamValue":16},{"gcamCode":"c5.16","gcamValue":4},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":2},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":7},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":4},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":14},{"gcamCode":"c5.47","gcamValue":3},{"gcamCode":"c5.49","gcamValue":6},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":8},{"gcamCode":"c5.51","gcamValue":3},{"gcamCode":"c5.52","gcamValue":9},{"gcamCode":"c5.53","gcamValue":10},{"gcamCode":"c5.54","gcamValue":6},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":3},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":7},{"gcamCode":"c5.62","gcamValue":38},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":3},{"gcamCode":"c7.2","gcamValue":4},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.16","gcamValue":2},{"gcamCode":"c8.19","gcamValue":2},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":4},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1025","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.120","gcamValue":4},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.128","gcamValue":2},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.200","gcamValue":4},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":5},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":4},{"gcamCode":"c9.256","gcamValue":3},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.377","gcamValue":3},{"gcamCode":"c9.382","gcamValue":3},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.385","gcamValue":3},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.411","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.458","gcamValue":2},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.643","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":3},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":3},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.831","gcamValue":8},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.898","gcamValue":3},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.271},{"gcamCode":"v10.2","gcamValue":0.263373655913978},{"gcamCode":"v11.1","gcamValue":0.052044696969697},{"gcamCode":"v19.1","gcamValue":5.73857142857143},{"gcamCode":"v19.2","gcamValue":4.40857142857143},{"gcamCode":"v19.3","gcamValue":5.49857142857143},{"gcamCode":"v19.4","gcamValue":5.80142857142857},{"gcamCode":"v19.5","gcamValue":4.22214285714286},{"gcamCode":"v19.6","gcamValue":5.45357142857143},{"gcamCode":"v19.7","gcamValue":5.72571428571429},{"gcamCode":"v19.8","gcamValue":4.55357142857143},{"gcamCode":"v19.9","gcamValue":5.54428571428571},{"gcamCode":"v20.11","gcamValue":0.521},{"gcamCode":"v20.13","gcamValue":0.421},{"gcamCode":"v20.15","gcamValue":0.3925},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v20.9","gcamValue":0.542},{"gcamCode":"v21.1","gcamValue":5.28818181818182},{"gcamCode":"v26.1","gcamValue":0.614285714285714}][""]["https://pic.twitter.com/iJpiyu5GxK"]["https://youtube.com/channel/UC9_fhCajqXhV-mYZylp_w7A"][][{"name":"Photo Credit","charOffset":13},{"name":"Karter Kilburg","charOffset":345},{"name":"Kilburg Diary","charOffset":371},{"name":"Karter Kilburg","charOffset":556}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://deadspin.com/ajax/inset/iframe?id=twitter-1128110611487916032&autosize=1;https://deadspin.com/the-sports-highlight-of-the-day-is-this-cows-long-range-1834954662;https://t.co/iJpiyu5GxK;https://twitter.com/karter_kilburg/status/1128110611487916032</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBcnnphilippines.comhttp://www.cnnphilippines.com/business/2019/5/23/BSP-reserve-cuts-thrift-rural.html[][]["RURAL","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","MEDIA_MSM","WB_318_FINANCIAL_ARCHITECTURE_AND_BANKING","WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","WB_1234_BANKING_INSTITUTIONS","WB_1236_COMMERCIAL_BANKING","ECON_TAXATION","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_TAX","EPU_CATS_TAXES","ECON_INTEREST_RATES","EPU_POLICY_INTEREST_RATES","EPU_CATS_MONETARY_POLICY","ECON_INFLATION","WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","WB_442_INFLATION","TAX_ECON_PRICE","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_716_MANAGING_PUBLIC_FINANCES","WB_713_PUBLIC_FINANCE","EPU_POLICY_BUDGET","ECON_CENTRALBANK","WB_1235_CENTRAL_BANKS","EPU_POLICY_CENTRAL_BANK","EPU_ECONOMY_HISTORIC","EPU_POLICY_INTEREST_RATE","EPU_POLICY_POLICY","WB_444_MONETARY_POLICY","WB_439_MACROECONOMIC_AND_STRUCTURAL_POLICIES","EPU_POLICY_MONETARY_POLICY"][{"theme":"ECON_INTEREST_RATES","charOffset":1486},{"theme":"EPU_POLICY_INTEREST_RATES","charOffset":1486},{"theme":"EPU_CATS_MONETARY_POLICY","charOffset":1486},{"theme":"MEDIA_MSM","charOffset":267},{"theme":"RURAL","charOffset":212},{"theme":"RURAL","charOffset":385},{"theme":"RURAL","charOffset":961},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":2111},{"theme":"ECON_CENTRALBANK","charOffset":2001},{"theme":"WB_1235_CENTRAL_BANKS","charOffset":2001},{"theme":"EPU_POLICY_CENTRAL_BANK","charOffset":2001},{"theme":"WB_444_MONETARY_POLICY","charOffset":2249},{"theme":"WB_439_MACROECONOMIC_AND_STRUCTURAL_POLICIES","charOffset":2249},{"theme":"EPU_POLICY_MONETARY_POLICY","charOffset":2249},{"theme":"ECON_INFLATION","charOffset":1692},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":1692},{"theme":"WB_442_INFLATION","charOffset":1692},{"theme":"ECON_TAXATION","charOffset":767},{"theme":"USPEC_POLICY1","charOffset":767},{"theme":"EPU_POLICY_TAX","charOffset":767},{"theme":"EPU_CATS_TAXES","charOffset":767},{"theme":"LEADER","charOffset":236},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":236},{"theme":"EPU_POLICY_INTEREST_RATE","charOffset":2176},{"theme":"TAX_ECON_PRICE","charOffset":1709},{"theme":"WB_318_FINANCIAL_ARCHITECTURE_AND_BANKING","charOffset":548},{"theme":"WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","charOffset":548},{"theme":"WB_1234_BANKING_INSTITUTIONS","charOffset":548},{"theme":"WB_1236_COMMERCIAL_BANKING","charOffset":548},{"theme":"EPU_POLICY_POLICY","charOffset":2249},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1920},{"theme":"WB_716_MANAGING_PUBLIC_FINANCES","charOffset":1920},{"theme":"WB_713_PUBLIC_FINANCE","charOffset":1920},{"theme":"EPU_POLICY_BUDGET","charOffset":1941}][{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},{"geoType":"WORLDCITY","geoName":"Metro Manila, Philippines (General), Philippines","countryCode":"RP","adm1Code":"RP00","adm2Code":"","geoPoint":{"latitude":14.5833,"longitude":121},"featureId":"-2439768"}][{"location":{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},"charOffset":26},{"location":{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},"charOffset":42},{"location":{"geoType":"WORLDCITY","geoName":"Metro Manila, Philippines (General), Philippines","countryCode":"RP","adm1Code":"RP00","adm2Code":"24210","geoPoint":{"latitude":14.5833,"longitude":121},"featureId":"-2439768"},"charOffset":13}]["benjamin diokno","bangko sentral"][{"person":"Benjamin Diokno","charOffset":252},{"person":"Bangko Sentral","charOffset":150}][""][]{"tone":-1.285347,"positiveScore":1.5424165,"negativeScore":2.8277636,"polarity":4.37018,"activityReferenceDensity":22.622108,"selfGroupReferenceDensity":0,"wordCount":359}[{"dateResolution":4,"month":5,"day":31,"year":0,"charOffset":1001},{"dateResolution":4,"month":5,"day":31,"year":0,"charOffset":1275},{"dateResolution":4,"month":6,"day":28,"year":0,"charOffset":1300},{"dateResolution":4,"month":7,"day":26,"year":0,"charOffset":1350},{"dateResolution":4,"month":5,"day":9,"year":0,"charOffset":2156}][{"gcamCode":"wc","gcamValue":359},{"gcamCode":"c1.2","gcamValue":6},{"gcamCode":"c12.1","gcamValue":18},{"gcamCode":"c12.10","gcamValue":35},{"gcamCode":"c12.12","gcamValue":10},{"gcamCode":"c12.13","gcamValue":12},{"gcamCode":"c12.14","gcamValue":17},{"gcamCode":"c12.3","gcamValue":10},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":12},{"gcamCode":"c12.7","gcamValue":20},{"gcamCode":"c12.8","gcamValue":13},{"gcamCode":"c12.9","gcamValue":27},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":6},{"gcamCode":"c14.1","gcamValue":39},{"gcamCode":"c14.10","gcamValue":12},{"gcamCode":"c14.11","gcamValue":48},{"gcamCode":"c14.2","gcamValue":44},{"gcamCode":"c14.3","gcamValue":24},{"gcamCode":"c14.5","gcamValue":58},{"gcamCode":"c14.7","gcamValue":5},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":10},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.107","gcamValue":1},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.168","gcamValue":3},{"gcamCode":"c15.197","gcamValue":2},{"gcamCode":"c15.211","gcamValue":2},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.26","gcamValue":2},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.77","gcamValue":7},{"gcamCode":"c15.85","gcamValue":2},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":5},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":10},{"gcamCode":"c16.109","gcamValue":9},{"gcamCode":"c16.110","gcamValue":36},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":9},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":11},{"gcamCode":"c16.117","gcamValue":10},{"gcamCode":"c16.118","gcamValue":33},{"gcamCode":"c16.12","gcamValue":16},{"gcamCode":"c16.120","gcamValue":19},{"gcamCode":"c16.121","gcamValue":23},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":35},{"gcamCode":"c16.126","gcamValue":27},{"gcamCode":"c16.127","gcamValue":24},{"gcamCode":"c16.129","gcamValue":47},{"gcamCode":"c16.13","gcamValue":6},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":9},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":34},{"gcamCode":"c16.137","gcamValue":1},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":8},{"gcamCode":"c16.141","gcamValue":4},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":16},{"gcamCode":"c16.146","gcamValue":25},{"gcamCode":"c16.149","gcamValue":3},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":5},{"gcamCode":"c16.152","gcamValue":7},{"gcamCode":"c16.153","gcamValue":13},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.159","gcamValue":20},{"gcamCode":"c16.16","gcamValue":7},{"gcamCode":"c16.161","gcamValue":23},{"gcamCode":"c16.162","gcamValue":15},{"gcamCode":"c16.163","gcamValue":36},{"gcamCode":"c16.164","gcamValue":5},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":15},{"gcamCode":"c16.2","gcamValue":25},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":22},{"gcamCode":"c16.22","gcamValue":18},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":36},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":17},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":21},{"gcamCode":"c16.32","gcamValue":9},{"gcamCode":"c16.33","gcamValue":23},{"gcamCode":"c16.34","gcamValue":5},{"gcamCode":"c16.35","gcamValue":16},{"gcamCode":"c16.37","gcamValue":31},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.4","gcamValue":19},{"gcamCode":"c16.40","gcamValue":1},{"gcamCode":"c16.41","gcamValue":6},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":10},{"gcamCode":"c16.47","gcamValue":82},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.49","gcamValue":6},{"gcamCode":"c16.50","gcamValue":9},{"gcamCode":"c16.52","gcamValue":33},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.56","gcamValue":16},{"gcamCode":"c16.57","gcamValue":197},{"gcamCode":"c16.58","gcamValue":23},{"gcamCode":"c16.6","gcamValue":30},{"gcamCode":"c16.60","gcamValue":9},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":6},{"gcamCode":"c16.64","gcamValue":8},{"gcamCode":"c16.65","gcamValue":16},{"gcamCode":"c16.66","gcamValue":10},{"gcamCode":"c16.68","gcamValue":19},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":15},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":2},{"gcamCode":"c16.79","gcamValue":4},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.84","gcamValue":25},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":53},{"gcamCode":"c16.88","gcamValue":28},{"gcamCode":"c16.89","gcamValue":11},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":14},{"gcamCode":"c16.92","gcamValue":28},{"gcamCode":"c16.93","gcamValue":5},{"gcamCode":"c16.94","gcamValue":34},{"gcamCode":"c16.95","gcamValue":21},{"gcamCode":"c16.96","gcamValue":45},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":18},{"gcamCode":"c17.1","gcamValue":99},{"gcamCode":"c17.10","gcamValue":33},{"gcamCode":"c17.11","gcamValue":42},{"gcamCode":"c17.12","gcamValue":11},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":9},{"gcamCode":"c17.15","gcamValue":28},{"gcamCode":"c17.16","gcamValue":8},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":14},{"gcamCode":"c17.19","gcamValue":15},{"gcamCode":"c17.2","gcamValue":12},{"gcamCode":"c17.20","gcamValue":5},{"gcamCode":"c17.21","gcamValue":11},{"gcamCode":"c17.22","gcamValue":30},{"gcamCode":"c17.23","gcamValue":8},{"gcamCode":"c17.24","gcamValue":23},{"gcamCode":"c17.25","gcamValue":13},{"gcamCode":"c17.27","gcamValue":27},{"gcamCode":"c17.28","gcamValue":7},{"gcamCode":"c17.29","gcamValue":13},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":29},{"gcamCode":"c17.32","gcamValue":25},{"gcamCode":"c17.33","gcamValue":30},{"gcamCode":"c17.34","gcamValue":6},{"gcamCode":"c17.35","gcamValue":17},{"gcamCode":"c17.36","gcamValue":18},{"gcamCode":"c17.37","gcamValue":7},{"gcamCode":"c17.38","gcamValue":7},{"gcamCode":"c17.39","gcamValue":20},{"gcamCode":"c17.4","gcamValue":88},{"gcamCode":"c17.40","gcamValue":6},{"gcamCode":"c17.41","gcamValue":33},{"gcamCode":"c17.42","gcamValue":23},{"gcamCode":"c17.43","gcamValue":21},{"gcamCode":"c17.5","gcamValue":93},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":38},{"gcamCode":"c17.8","gcamValue":47},{"gcamCode":"c17.9","gcamValue":6},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.198","gcamValue":2},{"gcamCode":"c18.213","gcamValue":1},{"gcamCode":"c18.287","gcamValue":1},{"gcamCode":"c18.355","gcamValue":1},{"gcamCode":"c18.63","gcamValue":2},{"gcamCode":"c2.1","gcamValue":8},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":11},{"gcamCode":"c2.102","gcamValue":21},{"gcamCode":"c2.104","gcamValue":74},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.112","gcamValue":8},{"gcamCode":"c2.113","gcamValue":7},{"gcamCode":"c2.114","gcamValue":22},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":12},{"gcamCode":"c2.119","gcamValue":92},{"gcamCode":"c2.12","gcamValue":11},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":27},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":19},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":37},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":17},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":3},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":30},{"gcamCode":"c2.141","gcamValue":11},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":23},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.146","gcamValue":3},{"gcamCode":"c2.147","gcamValue":55},{"gcamCode":"c2.148","gcamValue":20},{"gcamCode":"c2.15","gcamValue":16},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":7},{"gcamCode":"c2.153","gcamValue":12},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":36},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":28},{"gcamCode":"c2.158","gcamValue":23},{"gcamCode":"c2.159","gcamValue":11},{"gcamCode":"c2.160","gcamValue":27},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":4},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.17","gcamValue":8},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":4},{"gcamCode":"c2.173","gcamValue":6},{"gcamCode":"c2.177","gcamValue":6},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":73},{"gcamCode":"c2.186","gcamValue":7},{"gcamCode":"c2.187","gcamValue":9},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":22},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":37},{"gcamCode":"c2.196","gcamValue":11},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":21},{"gcamCode":"c2.199","gcamValue":13},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":13},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.205","gcamValue":8},{"gcamCode":"c2.206","gcamValue":12},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.209","gcamValue":8},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":29},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":17},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.221","gcamValue":19},{"gcamCode":"c2.222","gcamValue":3},{"gcamCode":"c2.223","gcamValue":22},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":11},{"gcamCode":"c2.226","gcamValue":4},{"gcamCode":"c2.23","gcamValue":12},{"gcamCode":"c2.25","gcamValue":21},{"gcamCode":"c2.26","gcamValue":19},{"gcamCode":"c2.27","gcamValue":19},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.3","gcamValue":4},{"gcamCode":"c2.30","gcamValue":21},{"gcamCode":"c2.31","gcamValue":23},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":11},{"gcamCode":"c2.34","gcamValue":19},{"gcamCode":"c2.35","gcamValue":4},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":3},{"gcamCode":"c2.39","gcamValue":51},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":4},{"gcamCode":"c2.42","gcamValue":12},{"gcamCode":"c2.44","gcamValue":10},{"gcamCode":"c2.45","gcamValue":39},{"gcamCode":"c2.46","gcamValue":21},{"gcamCode":"c2.47","gcamValue":9},{"gcamCode":"c2.48","gcamValue":14},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":17},{"gcamCode":"c2.54","gcamValue":20},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":6},{"gcamCode":"c2.58","gcamValue":34},{"gcamCode":"c2.59","gcamValue":6},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.60","gcamValue":4},{"gcamCode":"c2.61","gcamValue":4},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":14},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":7},{"gcamCode":"c2.70","gcamValue":7},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.75","gcamValue":54},{"gcamCode":"c2.76","gcamValue":215},{"gcamCode":"c2.77","gcamValue":18},{"gcamCode":"c2.78","gcamValue":39},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":55},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":14},{"gcamCode":"c2.83","gcamValue":2},{"gcamCode":"c2.86","gcamValue":13},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":10},{"gcamCode":"c2.89","gcamValue":12},{"gcamCode":"c2.93","gcamValue":6},{"gcamCode":"c2.95","gcamValue":51},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":9},{"gcamCode":"c2.98","gcamValue":10},{"gcamCode":"c3.1","gcamValue":24},{"gcamCode":"c3.2","gcamValue":35},{"gcamCode":"c35.1","gcamValue":9},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":7},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.31","gcamValue":21},{"gcamCode":"c35.32","gcamValue":12},{"gcamCode":"c35.33","gcamValue":4},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c39.10","gcamValue":2},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":7},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.3","gcamValue":11},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":15},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":8},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":10},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.1","gcamValue":4},{"gcamCode":"c4.10","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.16","gcamValue":14},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":16},{"gcamCode":"c5.10","gcamValue":27},{"gcamCode":"c5.11","gcamValue":7},{"gcamCode":"c5.12","gcamValue":46},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.24","gcamValue":15},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":5},{"gcamCode":"c5.27","gcamValue":4},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":38},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":6},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":19},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":30},{"gcamCode":"c5.40","gcamValue":21},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":13},{"gcamCode":"c5.45","gcamValue":4},{"gcamCode":"c5.46","gcamValue":56},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.48","gcamValue":7},{"gcamCode":"c5.49","gcamValue":19},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":26},{"gcamCode":"c5.51","gcamValue":15},{"gcamCode":"c5.52","gcamValue":33},{"gcamCode":"c5.53","gcamValue":35},{"gcamCode":"c5.54","gcamValue":13},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.6","gcamValue":5},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":15},{"gcamCode":"c5.62","gcamValue":135},{"gcamCode":"c5.7","gcamValue":10},{"gcamCode":"c5.8","gcamValue":12},{"gcamCode":"c5.9","gcamValue":13},{"gcamCode":"c6.1","gcamValue":7},{"gcamCode":"c6.2","gcamValue":9},{"gcamCode":"c6.4","gcamValue":12},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":20},{"gcamCode":"c7.2","gcamValue":21},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":7},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.37","gcamValue":6},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":8},{"gcamCode":"c8.42","gcamValue":21},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c9.1","gcamValue":7},{"gcamCode":"c9.1008","gcamValue":4},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.103","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":7},{"gcamCode":"c9.108","gcamValue":5},{"gcamCode":"c9.109","gcamValue":5},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.12","gcamValue":1},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":10},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":5},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.148","gcamValue":3},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":7},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":4},{"gcamCode":"c9.162","gcamValue":14},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.184","gcamValue":14},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":5},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":3},{"gcamCode":"c9.201","gcamValue":3},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":4},{"gcamCode":"c9.204","gcamValue":4},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":6},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":5},{"gcamCode":"c9.215","gcamValue":5},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.224","gcamValue":6},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":4},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.25","gcamValue":3},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.257","gcamValue":2},{"gcamCode":"c9.259","gcamValue":3},{"gcamCode":"c9.263","gcamValue":7},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":7},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":4},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":3},{"gcamCode":"c9.308","gcamValue":7},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.318","gcamValue":5},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":7},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":4},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.34","gcamValue":3},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.343","gcamValue":1},{"gcamCode":"c9.35","gcamValue":6},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.359","gcamValue":3},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.38","gcamValue":5},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":3},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.39","gcamValue":6},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.395","gcamValue":6},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.423","gcamValue":2},{"gcamCode":"c9.434","gcamValue":4},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.440","gcamValue":7},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.463","gcamValue":3},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":13},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":13},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":11},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":2},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.53","gcamValue":4},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":9},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":7},{"gcamCode":"c9.554","gcamValue":4},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":7},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.602","gcamValue":4},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":7},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.626","gcamValue":4},{"gcamCode":"c9.627","gcamValue":8},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":9},{"gcamCode":"c9.632","gcamValue":7},{"gcamCode":"c9.635","gcamValue":9},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.642","gcamValue":14},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":13},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.653","gcamValue":11},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":7},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":10},{"gcamCode":"c9.665","gcamValue":4},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.668","gcamValue":4},{"gcamCode":"c9.669","gcamValue":5},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":6},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.695","gcamValue":3},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":16},{"gcamCode":"c9.702","gcamValue":5},{"gcamCode":"c9.704","gcamValue":15},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.706","gcamValue":4},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.723","gcamValue":3},{"gcamCode":"c9.724","gcamValue":5},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":10},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.744","gcamValue":6},{"gcamCode":"c9.745","gcamValue":6},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":12},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.754","gcamValue":9},{"gcamCode":"c9.756","gcamValue":4},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":5},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":10},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":14},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.77","gcamValue":2},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":8},{"gcamCode":"c9.792","gcamValue":10},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":7},{"gcamCode":"c9.803","gcamValue":2},{"gcamCode":"c9.805","gcamValue":1},{"gcamCode":"c9.806","gcamValue":7},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":5},{"gcamCode":"c9.813","gcamValue":8},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.815","gcamValue":2},{"gcamCode":"c9.816","gcamValue":10},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.818","gcamValue":2},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":4},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.832","gcamValue":4},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":15},{"gcamCode":"c9.836","gcamValue":3},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":5},{"gcamCode":"c9.841","gcamValue":2},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":9},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":5},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":11},{"gcamCode":"c9.855","gcamValue":6},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":6},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":12},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.867","gcamValue":6},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.877","gcamValue":3},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.893","gcamValue":3},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.903","gcamValue":9},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.919","gcamValue":7},{"gcamCode":"c9.92","gcamValue":1},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":14},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.942","gcamValue":2},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.972","gcamValue":6},{"gcamCode":"c9.973","gcamValue":9},{"gcamCode":"c9.978","gcamValue":12},{"gcamCode":"c9.979","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.216001305125321},{"gcamCode":"v10.2","gcamValue":0.266769688644689},{"gcamCode":"v11.1","gcamValue":0.0685804487179488},{"gcamCode":"v19.1","gcamValue":5.21217391304348},{"gcamCode":"v19.2","gcamValue":4.47086956521739},{"gcamCode":"v19.3","gcamValue":5.16391304347826},{"gcamCode":"v19.4","gcamValue":5.06521739130435},{"gcamCode":"v19.5","gcamValue":4.25826086956522},{"gcamCode":"v19.6","gcamValue":5.16782608695652},{"gcamCode":"v19.7","gcamValue":5.38695652173913},{"gcamCode":"v19.8","gcamValue":4.70217391304348},{"gcamCode":"v19.9","gcamValue":5.14869565217391},{"gcamCode":"v20.10","gcamValue":-0.646},{"gcamCode":"v20.11","gcamValue":0.5625},{"gcamCode":"v20.12","gcamValue":-0.573},{"gcamCode":"v20.13","gcamValue":0.390192307692308},{"gcamCode":"v20.14","gcamValue":-0.443714285714286},{"gcamCode":"v20.15","gcamValue":0.35803125},{"gcamCode":"v20.16","gcamValue":-0.3856},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.5},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.5},{"gcamCode":"v20.6","gcamValue":-0.646},{"gcamCode":"v20.7","gcamValue":0.583333333333333},{"gcamCode":"v20.8","gcamValue":-0.646},{"gcamCode":"v20.9","gcamValue":0.583333333333333},{"gcamCode":"v21.1","gcamValue":5.29116040955632},{"gcamCode":"v26.1","gcamValue":0.344}]http://cnnphilippines.com/.imaging/mte/demo-cnn-new/750x450/dam/cnn/2019/01/16/ben-diokno_CNNPH.jpg/jcr:content/ben-diokno_CNNPH.jpg[""][""][""][][{"name":"Metro Manila","charOffset":14},{"name":"Bangko Sentral","charOffset":157},{"name":"Benjamin Diokno","charOffset":260},{"name":"Monetary Board","charOffset":311},{"name":"Monetary Board","charOffset":472},{"name":"Monetary Board","charOffset":935},{"name":"Monetary Board","charOffset":1887}][{"amount":3,"amountType":"bank reserve cuts","charOffset":556},{"amount":100,"amountType":"basis points","charOffset":1044},{"amount":50,"amountType":"bp reduction will take","charOffset":1096}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://cnnphilippines.com/business/2019/5/9/BSP-trims-interest-rates.html;http://www.cnnphilippines.com/business/2019/5/16/BSP-bank-reserve-cuts.html</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBiheart.comhttps://933flz.iheart.com/featured/florida-news/content/2019-05-23-sheriffs-office-tweets-dont-shoot-guns-in-public/[][]["TAX_FNCACT","TAX_FNCACT_SHERIFF","CRISISLEX_C07_SAFETY","TAX_WEAPONS","TAX_WEAPONS_FIREARM","TAX_WEAPONS_GUNS"][{"theme":"TAX_WEAPONS_FIREARM","charOffset":101},{"theme":"TAX_FNCACT_SHERIFF","charOffset":29},{"theme":"CRISISLEX_C07_SAFETY","charOffset":29},{"theme":"TAX_WEAPONS_GUNS","charOffset":246}][{"geoType":"USSTATE","geoName":"Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":27.8333,"longitude":-81.717},"featureId":"FL"},{"geoType":"USCITY","geoName":"Royal Palm Beach, Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":26.7084,"longitude":-80.2306},"featureId":"302697"}][{"location":{"geoType":"USSTATE","geoName":"Floridians, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":27.8333,"longitude":-81.717},"featureId":"FL"},"charOffset":169},{"location":{"geoType":"USCITY","geoName":"Royal Palm Beach, Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"FL099","geoPoint":{"latitude":26.7084,"longitude":-80.2306},"featureId":"302697"},"charOffset":318}][""][]["palm beach county sheriff office"][{"organisation":"Palm Beach County Sheriff Office","charOffset":36}]{"tone":-3.3333333,"positiveScore":0,"negativeScore":3.3333333,"polarity":3.3333333,"activityReferenceDensity":25,"selfGroupReferenceDensity":3.3333333,"wordCount":58}[][{"gcamCode":"wc","gcamValue":58},{"gcamCode":"c12.10","gcamValue":3},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.13","gcamValue":2},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.8","gcamValue":2},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":1},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":1},{"gcamCode":"c14.3","gcamValue":2},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":1},{"gcamCode":"c16.100","gcamValue":2},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":4},{"gcamCode":"c16.109","gcamValue":5},{"gcamCode":"c16.110","gcamValue":10},{"gcamCode":"c16.114","gcamValue":7},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":8},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":1},{"gcamCode":"c16.121","gcamValue":2},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.127","gcamValue":4},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":6},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":6},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.139","gcamValue":4},{"gcamCode":"c16.140","gcamValue":2},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":4},{"gcamCode":"c16.146","gcamValue":2},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.159","gcamValue":5},{"gcamCode":"c16.161","gcamValue":6},{"gcamCode":"c16.162","gcamValue":1},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.19","gcamValue":4},{"gcamCode":"c16.2","gcamValue":3},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":11},{"gcamCode":"c16.31","gcamValue":1},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":8},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.37","gcamValue":8},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":4},{"gcamCode":"c16.47","gcamValue":8},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.52","gcamValue":3},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":34},{"gcamCode":"c16.58","gcamValue":4},{"gcamCode":"c16.6","gcamValue":8},{"gcamCode":"c16.62","gcamValue":4},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":4},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.75","gcamValue":4},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.84","gcamValue":1},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":7},{"gcamCode":"c16.88","gcamValue":11},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.90","gcamValue":2},{"gcamCode":"c16.91","gcamValue":2},{"gcamCode":"c16.92","gcamValue":3},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":6},{"gcamCode":"c16.98","gcamValue":6},{"gcamCode":"c17.1","gcamValue":16},{"gcamCode":"c17.10","gcamValue":7},{"gcamCode":"c17.11","gcamValue":10},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.15","gcamValue":3},{"gcamCode":"c17.16","gcamValue":2},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":2},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":4},{"gcamCode":"c17.22","gcamValue":1},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":11},{"gcamCode":"c17.27","gcamValue":6},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":3},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":5},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":16},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.42","gcamValue":2},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":12},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":9},{"gcamCode":"c17.8","gcamValue":1},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.235","gcamValue":2},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":10},{"gcamCode":"c2.114","gcamValue":3},{"gcamCode":"c2.116","gcamValue":2},{"gcamCode":"c2.119","gcamValue":16},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":4},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":4},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":6},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.14","gcamValue":3},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":7},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":9},{"gcamCode":"c2.148","gcamValue":6},{"gcamCode":"c2.15","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":4},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":4},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":5},{"gcamCode":"c2.179","gcamValue":2},{"gcamCode":"c2.18","gcamValue":4},{"gcamCode":"c2.180","gcamValue":4},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":8},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":4},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.193","gcamValue":6},{"gcamCode":"c2.195","gcamValue":5},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.198","gcamValue":4},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":5},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":6},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.220","gcamValue":1},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":6},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":3},{"gcamCode":"c2.31","gcamValue":4},{"gcamCode":"c2.34","gcamValue":2},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":10},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":1},{"gcamCode":"c2.46","gcamValue":6},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":7},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.75","gcamValue":9},{"gcamCode":"c2.76","gcamValue":41},{"gcamCode":"c2.77","gcamValue":8},{"gcamCode":"c2.78","gcamValue":12},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":4},{"gcamCode":"c2.82","gcamValue":5},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":1},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":1},{"gcamCode":"c35.32","gcamValue":2},{"gcamCode":"c35.33","gcamValue":7},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.23","gcamValue":4},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":5},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":6},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":3},{"gcamCode":"c5.40","gcamValue":4},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":9},{"gcamCode":"c5.47","gcamValue":1},{"gcamCode":"c5.49","gcamValue":7},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":6},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":7},{"gcamCode":"c5.53","gcamValue":6},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":7},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":27},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.25","gcamValue":3},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":4},{"gcamCode":"c8.42","gcamValue":2},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":4},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.128","gcamValue":5},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":4},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.579","gcamValue":4},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":4},{"gcamCode":"c9.730","gcamValue":4},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":4},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":6},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":4},{"gcamCode":"c9.868","gcamValue":4},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.234375},{"gcamCode":"v10.2","gcamValue":0.215625},{"gcamCode":"v11.1","gcamValue":0.07280625},{"gcamCode":"v19.1","gcamValue":7.1},{"gcamCode":"v19.2","gcamValue":5.04666666666667},{"gcamCode":"v19.3","gcamValue":5.49},{"gcamCode":"v19.4","gcamValue":7.40666666666667},{"gcamCode":"v19.5","gcamValue":5.94666666666667},{"gcamCode":"v19.6","gcamValue":5.63333333333333},{"gcamCode":"v19.7","gcamValue":6.83},{"gcamCode":"v19.8","gcamValue":4.32666666666667},{"gcamCode":"v19.9","gcamValue":5.39333333333333},{"gcamCode":"v20.13","gcamValue":0.396},{"gcamCode":"v20.15","gcamValue":0.3595},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v21.1","gcamValue":5.33137254901961},{"gcamCode":"v26.1","gcamValue":-0.733333333333333}]https://i.iheart.com/v3/re/new_assets/5cacb3ea049949b8c53687b7[""]["https://pic.twitter.com/VTVSJSFB9q"][""][][{"name":"Palm Beach County Sheriff","charOffset":30},{"name":"Shoot Guns In Public","charOffset":260},{"name":"Royal Palm Beach","charOffset":325}][]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523113700</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBsoftpedia.comhttps://news.softpedia.com/news/apple-says-it-ll-warn-users-when-ios-updates-make-iphones-slower-526131.shtml[][]["GENERAL_HEALTH","MEDICAL","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","WB_729_PERFORMANCE_MANAGEMENT","WB_723_PUBLIC_ADMINISTRATION","WB_725_ORGANIZATIONAL_MANAGEMENT","TAX_FNCACT","TAX_FNCACT_OFFICIAL"][{"theme":"GENERAL_HEALTH","charOffset":281},{"theme":"GENERAL_HEALTH","charOffset":1414},{"theme":"GENERAL_HEALTH","charOffset":1503},{"theme":"GENERAL_HEALTH","charOffset":1837},{"theme":"GENERAL_HEALTH","charOffset":1908},{"theme":"MEDICAL","charOffset":281},{"theme":"MEDICAL","charOffset":1414},{"theme":"MEDICAL","charOffset":1503},{"theme":"MEDICAL","charOffset":1837},{"theme":"MEDICAL","charOffset":1908},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":805},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":805},{"theme":"WB_840_JUSTICE","charOffset":805},{"theme":"WB_2025_INVESTIGATION","charOffset":805},{"theme":"WB_831_GOVERNANCE","charOffset":805},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":805},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":805},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":1328},{"theme":"WB_729_PERFORMANCE_MANAGEMENT","charOffset":1266},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":1266},{"theme":"WB_725_ORGANIZATIONAL_MANAGEMENT","charOffset":1266}][{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}][{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":738}][""][]["settings battery battery health maximum capacity"][{"organisation":"Settings Battery Battery Health Maximum Capacity","charOffset":1925}]{"tone":1.916933,"positiveScore":3.833866,"negativeScore":1.916933,"polarity":5.7507987,"activityReferenceDensity":20.447285,"selfGroupReferenceDensity":0,"wordCount":296}[][{"gcamCode":"wc","gcamValue":296},{"gcamCode":"c1.3","gcamValue":3},{"gcamCode":"c12.1","gcamValue":20},{"gcamCode":"c12.10","gcamValue":22},{"gcamCode":"c12.12","gcamValue":9},{"gcamCode":"c12.13","gcamValue":7},{"gcamCode":"c12.14","gcamValue":6},{"gcamCode":"c12.3","gcamValue":9},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":16},{"gcamCode":"c12.8","gcamValue":8},{"gcamCode":"c12.9","gcamValue":19},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":21},{"gcamCode":"c14.10","gcamValue":17},{"gcamCode":"c14.11","gcamValue":26},{"gcamCode":"c14.2","gcamValue":15},{"gcamCode":"c14.3","gcamValue":27},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":40},{"gcamCode":"c14.7","gcamValue":10},{"gcamCode":"c14.9","gcamValue":3},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.213","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.248","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.261","gcamValue":2},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.94","gcamValue":3},{"gcamCode":"c16.1","gcamValue":3},{"gcamCode":"c16.100","gcamValue":11},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":6},{"gcamCode":"c16.109","gcamValue":15},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":26},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.114","gcamValue":12},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":5},{"gcamCode":"c16.117","gcamValue":9},{"gcamCode":"c16.118","gcamValue":23},{"gcamCode":"c16.12","gcamValue":36},{"gcamCode":"c16.120","gcamValue":11},{"gcamCode":"c16.121","gcamValue":19},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":26},{"gcamCode":"c16.126","gcamValue":27},{"gcamCode":"c16.127","gcamValue":18},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":30},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":12},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.134","gcamValue":20},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":8},{"gcamCode":"c16.140","gcamValue":11},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":20},{"gcamCode":"c16.146","gcamValue":35},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":16},{"gcamCode":"c16.155","gcamValue":3},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":10},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":20},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":18},{"gcamCode":"c16.162","gcamValue":11},{"gcamCode":"c16.163","gcamValue":25},{"gcamCode":"c16.164","gcamValue":7},{"gcamCode":"c16.167","gcamValue":1},{"gcamCode":"c16.19","gcamValue":7},{"gcamCode":"c16.2","gcamValue":16},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":12},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":36},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":29},{"gcamCode":"c16.33","gcamValue":24},{"gcamCode":"c16.35","gcamValue":11},{"gcamCode":"c16.37","gcamValue":20},{"gcamCode":"c16.38","gcamValue":20},{"gcamCode":"c16.4","gcamValue":15},{"gcamCode":"c16.41","gcamValue":15},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":8},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":33},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.49","gcamValue":11},{"gcamCode":"c16.50","gcamValue":10},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":25},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":170},{"gcamCode":"c16.58","gcamValue":12},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":36},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":8},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":10},{"gcamCode":"c16.66","gcamValue":6},{"gcamCode":"c16.68","gcamValue":19},{"gcamCode":"c16.69","gcamValue":7},{"gcamCode":"c16.7","gcamValue":3},{"gcamCode":"c16.70","gcamValue":10},{"gcamCode":"c16.71","gcamValue":6},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":7},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.76","gcamValue":7},{"gcamCode":"c16.78","gcamValue":14},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":4},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":38},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.87","gcamValue":41},{"gcamCode":"c16.88","gcamValue":38},{"gcamCode":"c16.89","gcamValue":16},{"gcamCode":"c16.90","gcamValue":6},{"gcamCode":"c16.91","gcamValue":9},{"gcamCode":"c16.92","gcamValue":32},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":28},{"gcamCode":"c16.95","gcamValue":26},{"gcamCode":"c16.96","gcamValue":7},{"gcamCode":"c16.98","gcamValue":22},{"gcamCode":"c17.1","gcamValue":62},{"gcamCode":"c17.10","gcamValue":33},{"gcamCode":"c17.11","gcamValue":48},{"gcamCode":"c17.12","gcamValue":17},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":10},{"gcamCode":"c17.15","gcamValue":24},{"gcamCode":"c17.16","gcamValue":10},{"gcamCode":"c17.18","gcamValue":5},{"gcamCode":"c17.19","gcamValue":11},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":9},{"gcamCode":"c17.21","gcamValue":7},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.23","gcamValue":8},{"gcamCode":"c17.24","gcamValue":15},{"gcamCode":"c17.25","gcamValue":4},{"gcamCode":"c17.27","gcamValue":31},{"gcamCode":"c17.29","gcamValue":7},{"gcamCode":"c17.30","gcamValue":4},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":9},{"gcamCode":"c17.33","gcamValue":17},{"gcamCode":"c17.34","gcamValue":6},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":12},{"gcamCode":"c17.37","gcamValue":6},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":10},{"gcamCode":"c17.4","gcamValue":69},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":12},{"gcamCode":"c17.42","gcamValue":15},{"gcamCode":"c17.43","gcamValue":16},{"gcamCode":"c17.5","gcamValue":76},{"gcamCode":"c17.6","gcamValue":3},{"gcamCode":"c17.7","gcamValue":39},{"gcamCode":"c17.8","gcamValue":46},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.149","gcamValue":5},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.34","gcamValue":10},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":9},{"gcamCode":"c2.102","gcamValue":10},{"gcamCode":"c2.104","gcamValue":44},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":10},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":9},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":69},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.121","gcamValue":15},{"gcamCode":"c2.122","gcamValue":6},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":14},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":24},{"gcamCode":"c2.128","gcamValue":3},{"gcamCode":"c2.129","gcamValue":7},{"gcamCode":"c2.13","gcamValue":1},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":29},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":7},{"gcamCode":"c2.143","gcamValue":19},{"gcamCode":"c2.144","gcamValue":6},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":53},{"gcamCode":"c2.148","gcamValue":21},{"gcamCode":"c2.15","gcamValue":14},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":5},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":27},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":24},{"gcamCode":"c2.158","gcamValue":14},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":4},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":7},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":8},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":12},{"gcamCode":"c2.183","gcamValue":12},{"gcamCode":"c2.185","gcamValue":54},{"gcamCode":"c2.186","gcamValue":8},{"gcamCode":"c2.187","gcamValue":11},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":25},{"gcamCode":"c2.195","gcamValue":40},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":1},{"gcamCode":"c2.198","gcamValue":33},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":15},{"gcamCode":"c2.204","gcamValue":21},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":7},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":27},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":4},{"gcamCode":"c2.214","gcamValue":11},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.222","gcamValue":5},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":16},{"gcamCode":"c2.26","gcamValue":18},{"gcamCode":"c2.27","gcamValue":18},{"gcamCode":"c2.28","gcamValue":5},{"gcamCode":"c2.30","gcamValue":12},{"gcamCode":"c2.31","gcamValue":10},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":13},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.39","gcamValue":41},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":5},{"gcamCode":"c2.46","gcamValue":21},{"gcamCode":"c2.47","gcamValue":5},{"gcamCode":"c2.48","gcamValue":5},{"gcamCode":"c2.5","gcamValue":3},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":13},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":18},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.58","gcamValue":5},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":12},{"gcamCode":"c2.64","gcamValue":9},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.73","gcamValue":6},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":42},{"gcamCode":"c2.76","gcamValue":187},{"gcamCode":"c2.77","gcamValue":17},{"gcamCode":"c2.78","gcamValue":36},{"gcamCode":"c2.79","gcamValue":3},{"gcamCode":"c2.80","gcamValue":33},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":14},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":15},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":11},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":46},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":10},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":7},{"gcamCode":"c3.2","gcamValue":24},{"gcamCode":"c35.1","gcamValue":14},{"gcamCode":"c35.11","gcamValue":4},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.14","gcamValue":7},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":9},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.3","gcamValue":2},{"gcamCode":"c35.31","gcamValue":33},{"gcamCode":"c35.32","gcamValue":10},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":6},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.13","gcamValue":4},{"gcamCode":"c39.14","gcamValue":6},{"gcamCode":"c39.17","gcamValue":6},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":23},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":22},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":16},{"gcamCode":"c39.40","gcamValue":6},{"gcamCode":"c39.41","gcamValue":11},{"gcamCode":"c39.5","gcamValue":1},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c4.3","gcamValue":5},{"gcamCode":"c40.8","gcamValue":3},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":20},{"gcamCode":"c5.11","gcamValue":9},{"gcamCode":"c5.12","gcamValue":56},{"gcamCode":"c5.15","gcamValue":5},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":10},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":7},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":8},{"gcamCode":"c5.30","gcamValue":40},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.34","gcamValue":4},{"gcamCode":"c5.35","gcamValue":4},{"gcamCode":"c5.36","gcamValue":13},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":5},{"gcamCode":"c5.40","gcamValue":17},{"gcamCode":"c5.43","gcamValue":7},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":51},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":20},{"gcamCode":"c5.50","gcamValue":24},{"gcamCode":"c5.51","gcamValue":15},{"gcamCode":"c5.52","gcamValue":32},{"gcamCode":"c5.53","gcamValue":26},{"gcamCode":"c5.54","gcamValue":13},{"gcamCode":"c5.55","gcamValue":4},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":17},{"gcamCode":"c5.62","gcamValue":129},{"gcamCode":"c5.7","gcamValue":12},{"gcamCode":"c5.8","gcamValue":9},{"gcamCode":"c5.9","gcamValue":27},{"gcamCode":"c6.1","gcamValue":5},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":22},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":13},{"gcamCode":"c7.2","gcamValue":19},{"gcamCode":"c8.10","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.20","gcamValue":6},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":10},{"gcamCode":"c8.38","gcamValue":12},{"gcamCode":"c8.39","gcamValue":3},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":11},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":8},{"gcamCode":"c9.10","gcamValue":6},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1009","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":4},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.107","gcamValue":3},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.123","gcamValue":7},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":10},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":5},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":5},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":6},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":3},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":8},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.168","gcamValue":7},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":5},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.285","gcamValue":3},{"gcamCode":"c9.286","gcamValue":5},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":5},{"gcamCode":"c9.3","gcamValue":8},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":7},{"gcamCode":"c9.310","gcamValue":4},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.326","gcamValue":3},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.34","gcamValue":5},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.354","gcamValue":3},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.39","gcamValue":9},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.415","gcamValue":4},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.433","gcamValue":6},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.44","gcamValue":6},{"gcamCode":"c9.440","gcamValue":3},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":7},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":8},{"gcamCode":"c9.513","gcamValue":5},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":4},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":9},{"gcamCode":"c9.552","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.559","gcamValue":3},{"gcamCode":"c9.560","gcamValue":5},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":3},{"gcamCode":"c9.564","gcamValue":4},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.579","gcamValue":7},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":2},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":9},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.627","gcamValue":4},{"gcamCode":"c9.628","gcamValue":2},{"gcamCode":"c9.629","gcamValue":7},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":2},{"gcamCode":"c9.632","gcamValue":6},{"gcamCode":"c9.635","gcamValue":4},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.642","gcamValue":6},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":11},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":7},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":9},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":8},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":6},{"gcamCode":"c9.67","gcamValue":5},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":6},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.684","gcamValue":5},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.688","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.708","gcamValue":10},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.721","gcamValue":3},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.723","gcamValue":4},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":8},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.736","gcamValue":7},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":12},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.754","gcamValue":11},{"gcamCode":"c9.755","gcamValue":8},{"gcamCode":"c9.757","gcamValue":7},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":4},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.792","gcamValue":5},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.803","gcamValue":6},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":2},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":4},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":6},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":6},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.882","gcamValue":2},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.893","gcamValue":2},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.935","gcamValue":10},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":2},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.955","gcamValue":6},{"gcamCode":"c9.96","gcamValue":10},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.966","gcamValue":6},{"gcamCode":"c9.967","gcamValue":6},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.260254791504792},{"gcamCode":"v10.2","gcamValue":0.263034526127881},{"gcamCode":"v11.1","gcamValue":0.120631385135135},{"gcamCode":"v19.1","gcamValue":5.96521739130435},{"gcamCode":"v19.2","gcamValue":4.96521739130435},{"gcamCode":"v19.3","gcamValue":5.40913043478261},{"gcamCode":"v19.4","gcamValue":6.03347826086956},{"gcamCode":"v19.5","gcamValue":4.88260869565217},{"gcamCode":"v19.6","gcamValue":5.51521739130435},{"gcamCode":"v19.7","gcamValue":5.90608695652174},{"gcamCode":"v19.8","gcamValue":5.09521739130435},{"gcamCode":"v19.9","gcamValue":5.31739130434783},{"gcamCode":"v20.1","gcamValue":0.578},{"gcamCode":"v20.10","gcamValue":-0.278},{"gcamCode":"v20.11","gcamValue":0.5688},{"gcamCode":"v20.12","gcamValue":-0.3335},{"gcamCode":"v20.13","gcamValue":0.405041666666667},{"gcamCode":"v20.14","gcamValue":-0.347333333333333},{"gcamCode":"v20.15","gcamValue":0.353361111111111},{"gcamCode":"v20.16","gcamValue":-0.333428571428571},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.578},{"gcamCode":"v20.4","gcamValue":-0.278},{"gcamCode":"v20.5","gcamValue":0.578},{"gcamCode":"v20.6","gcamValue":-0.278},{"gcamCode":"v20.7","gcamValue":0.578},{"gcamCode":"v20.8","gcamValue":-0.278},{"gcamCode":"v20.9","gcamValue":0.586},{"gcamCode":"v21.1","gcamValue":5.53351145038169},{"gcamCode":"v26.1","gcamValue":-0.0785714285714285}]https://news-cdn.softpedia.com/images/news2/apple-says-it-ll-warn-users-when-ios-updates-make-iphones-slower-526131-2.jpg[""][""][""][][{"name":"United Kingdom Competition","charOffset":770},{"name":"Markets Authority","charOffset":792},{"name":"Battery Health","charOffset":1968}][{"amount":79,"amountType":"dollars ","charOffset":209},{"amount":29,"amountType":"dollars ","charOffset":214}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.gov.uk/government/news/apple-pledges-clearer-information-on-iphone-performance</PAGE_LINKS><PAGE_AUTHORS>Bogdan Popa</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523082500</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBmalaymail.comhttps://www.malaymail.com/news/money/2019/05/23/germany-fines-bosch-over-dieselgate-role/1755764[][]["WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","TAX_ETHNICITY","TAX_ETHNICITY_GERMAN","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_GERMAN","TRIAL","TAX_FNCACT","TAX_FNCACT_PROSECUTORS","SCANDAL","CRISISLEX_C07_SAFETY","EPU_ECONOMY","EPU_ECONOMY_HISTORIC","USPEC_POLICY1","TAX_ECON_PRICE","TAX_FNCACT_EXECUTIVES","TAX_FNCACT_EMPLOYEES","TAX_FNCACT_CRIMINAL","TAX_FNCACT_AUTHORITIES","CRISISLEX_CRISISLEXREC","EPU_POLICY","EPU_POLICY_AUTHORITIES","WB_2670_JOBS","WB_2769_JOBS_STRATEGIES","WB_2840_INTEGRATION","WB_2836_MIGRATION_POLICIES_AND_JOBS"][{"theme":"TAX_ETHNICITY_GERMAN","charOffset":260},{"theme":"TAX_ETHNICITY_GERMAN","charOffset":607},{"theme":"TAX_ETHNICITY_GERMAN","charOffset":1243},{"theme":"TAX_WORLDLANGUAGES_GERMAN","charOffset":260},{"theme":"TAX_WORLDLANGUAGES_GERMAN","charOffset":607},{"theme":"TAX_WORLDLANGUAGES_GERMAN","charOffset":1243},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":1537},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":133},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":133},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":133},{"theme":"TAX_ECON_PRICE","charOffset":1232},{"theme":"CRISISLEX_C07_SAFETY","charOffset":456},{"theme":"SCANDAL","charOffset":429},{"theme":"EPU_ECONOMY","charOffset":774},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":774},{"theme":"WB_2670_JOBS","charOffset":1602},{"theme":"WB_2769_JOBS_STRATEGIES","charOffset":1602},{"theme":"WB_2840_INTEGRATION","charOffset":1602},{"theme":"WB_2836_MIGRATION_POLICIES_AND_JOBS","charOffset":1602},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1559},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1559},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1559},{"theme":"USPEC_POLICY1","charOffset":1117},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":1511},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":1660},{"theme":"TAX_FNCACT_EXECUTIVES","charOffset":1357},{"theme":"TRIAL","charOffset":272},{"theme":"TRIAL","charOffset":1019},{"theme":"TRIAL","charOffset":1475},{"theme":"TAX_FNCACT_PROSECUTORS","charOffset":272},{"theme":"TAX_FNCACT_PROSECUTORS","charOffset":1019},{"theme":"TAX_FNCACT_PROSECUTORS","charOffset":1475}][{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"WORLDCITY","geoName":"Renningen, Baden-WüBerg, Germany","countryCode":"GM","adm1Code":"GM01","adm2Code":"","geoPoint":{"latitude":48.7667,"longitude":8.93333},"featureId":"-1848765"},{"geoType":"WORLDCITY","geoName":"Frankfurt, Brandenburg, Germany","countryCode":"GM","adm1Code":"GM11","adm2Code":"","geoPoint":{"latitude":52.35,"longitude":14.55},"featureId":"-1771146"}][{"location":{"geoType":"WORLDCITY","geoName":"Renningen, Baden-WüBerg, Germany","countryCode":"GM","adm1Code":"GM01","adm2Code":"16528","geoPoint":{"latitude":48.7667,"longitude":8.93333},"featureId":"-1848765"},"charOffset":102},{"location":{"geoType":"WORLDCITY","geoName":"Renningen, Baden-WüBerg, Germany","countryCode":"GM","adm1Code":"GM01","adm2Code":"16528","geoPoint":{"latitude":48.7667,"longitude":8.93333},"featureId":"-1848765"},"charOffset":151},{"location":{"geoType":"WORLDCITY","geoName":"Frankfurt, Brandenburg, Germany","countryCode":"GM","adm1Code":"GM11","adm2Code":"16538","geoPoint":{"latitude":52.35,"longitude":14.55},"featureId":"-1771146"},"charOffset":225},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":111},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":160},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":170},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":234},{"location":{"geoType":"COUNTRY","geoName":"German","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":260},{"location":{"geoType":"COUNTRY","geoName":"German","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":607},{"location":{"geoType":"COUNTRY","geoName":"German","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":1243}]["robert bosch gmb"][]["volkswagen","reuters"][{"organisation":"Volkswagen","charOffset":1130},{"organisation":"Reuters","charOffset":209}]{"tone":-2.621723,"positiveScore":2.621723,"negativeScore":5.243446,"polarity":7.8651686,"activityReferenceDensity":19.850187,"selfGroupReferenceDensity":0,"wordCount":238}[{"dateResolution":1,"month":0,"day":0,"year":2008,"charOffset":839}][{"gcamCode":"wc","gcamValue":238},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":14},{"gcamCode":"c12.10","gcamValue":22},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":8},{"gcamCode":"c12.14","gcamValue":5},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":10},{"gcamCode":"c12.7","gcamValue":13},{"gcamCode":"c12.8","gcamValue":9},{"gcamCode":"c12.9","gcamValue":12},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.7","gcamValue":5},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.10","gcamValue":9},{"gcamCode":"c14.11","gcamValue":17},{"gcamCode":"c14.2","gcamValue":6},{"gcamCode":"c14.3","gcamValue":16},{"gcamCode":"c14.4","gcamValue":3},{"gcamCode":"c14.5","gcamValue":17},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":6},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.229","gcamValue":3},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.103","gcamValue":3},{"gcamCode":"c16.106","gcamValue":9},{"gcamCode":"c16.109","gcamValue":11},{"gcamCode":"c16.110","gcamValue":24},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.114","gcamValue":11},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":9},{"gcamCode":"c16.117","gcamValue":7},{"gcamCode":"c16.118","gcamValue":9},{"gcamCode":"c16.12","gcamValue":22},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":12},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":8},{"gcamCode":"c16.126","gcamValue":6},{"gcamCode":"c16.127","gcamValue":12},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":28},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":8},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.132","gcamValue":3},{"gcamCode":"c16.133","gcamValue":4},{"gcamCode":"c16.134","gcamValue":12},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":7},{"gcamCode":"c16.140","gcamValue":1},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":15},{"gcamCode":"c16.146","gcamValue":16},{"gcamCode":"c16.152","gcamValue":4},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.155","gcamValue":3},{"gcamCode":"c16.157","gcamValue":3},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":14},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":18},{"gcamCode":"c16.162","gcamValue":11},{"gcamCode":"c16.163","gcamValue":19},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.19","gcamValue":5},{"gcamCode":"c16.2","gcamValue":17},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.26","gcamValue":13},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":2},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":19},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":15},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.37","gcamValue":22},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.4","gcamValue":12},{"gcamCode":"c16.41","gcamValue":6},{"gcamCode":"c16.45","gcamValue":9},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":36},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.51","gcamValue":4},{"gcamCode":"c16.52","gcamValue":10},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":107},{"gcamCode":"c16.58","gcamValue":12},{"gcamCode":"c16.6","gcamValue":14},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":9},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":3},{"gcamCode":"c16.70","gcamValue":7},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":22},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.87","gcamValue":24},{"gcamCode":"c16.88","gcamValue":24},{"gcamCode":"c16.89","gcamValue":6},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":6},{"gcamCode":"c16.91","gcamValue":11},{"gcamCode":"c16.92","gcamValue":9},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":11},{"gcamCode":"c16.95","gcamValue":16},{"gcamCode":"c16.96","gcamValue":7},{"gcamCode":"c16.98","gcamValue":17},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":51},{"gcamCode":"c17.10","gcamValue":24},{"gcamCode":"c17.11","gcamValue":25},{"gcamCode":"c17.12","gcamValue":8},{"gcamCode":"c17.13","gcamValue":2},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":9},{"gcamCode":"c17.16","gcamValue":5},{"gcamCode":"c17.18","gcamValue":6},{"gcamCode":"c17.19","gcamValue":13},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":9},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":15},{"gcamCode":"c17.25","gcamValue":4},{"gcamCode":"c17.27","gcamValue":19},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":5},{"gcamCode":"c17.3","gcamValue":3},{"gcamCode":"c17.31","gcamValue":4},{"gcamCode":"c17.32","gcamValue":8},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":1},{"gcamCode":"c17.36","gcamValue":4},{"gcamCode":"c17.37","gcamValue":3},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":5},{"gcamCode":"c17.4","gcamValue":46},{"gcamCode":"c17.41","gcamValue":2},{"gcamCode":"c17.42","gcamValue":11},{"gcamCode":"c17.43","gcamValue":6},{"gcamCode":"c17.5","gcamValue":42},{"gcamCode":"c17.7","gcamValue":28},{"gcamCode":"c17.8","gcamValue":23},{"gcamCode":"c17.9","gcamValue":5},{"gcamCode":"c18.137","gcamValue":3},{"gcamCode":"c18.180","gcamValue":3},{"gcamCode":"c18.193","gcamValue":8},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.48","gcamValue":1},{"gcamCode":"c2.1","gcamValue":3},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":26},{"gcamCode":"c2.106","gcamValue":6},{"gcamCode":"c2.107","gcamValue":4},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.110","gcamValue":7},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.114","gcamValue":13},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":10},{"gcamCode":"c2.119","gcamValue":59},{"gcamCode":"c2.12","gcamValue":10},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":13},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":7},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":13},{"gcamCode":"c2.128","gcamValue":2},{"gcamCode":"c2.129","gcamValue":14},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.134","gcamValue":4},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.14","gcamValue":16},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.143","gcamValue":12},{"gcamCode":"c2.144","gcamValue":7},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":33},{"gcamCode":"c2.148","gcamValue":10},{"gcamCode":"c2.15","gcamValue":5},{"gcamCode":"c2.153","gcamValue":4},{"gcamCode":"c2.155","gcamValue":23},{"gcamCode":"c2.156","gcamValue":8},{"gcamCode":"c2.157","gcamValue":20},{"gcamCode":"c2.158","gcamValue":12},{"gcamCode":"c2.159","gcamValue":7},{"gcamCode":"c2.160","gcamValue":12},{"gcamCode":"c2.162","gcamValue":6},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":7},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":9},{"gcamCode":"c2.179","gcamValue":4},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":9},{"gcamCode":"c2.183","gcamValue":9},{"gcamCode":"c2.185","gcamValue":36},{"gcamCode":"c2.186","gcamValue":6},{"gcamCode":"c2.187","gcamValue":11},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":12},{"gcamCode":"c2.195","gcamValue":26},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":17},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.203","gcamValue":6},{"gcamCode":"c2.204","gcamValue":15},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":12},{"gcamCode":"c2.212","gcamValue":3},{"gcamCode":"c2.213","gcamValue":5},{"gcamCode":"c2.214","gcamValue":10},{"gcamCode":"c2.221","gcamValue":6},{"gcamCode":"c2.222","gcamValue":3},{"gcamCode":"c2.223","gcamValue":10},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":3},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":4},{"gcamCode":"c2.25","gcamValue":15},{"gcamCode":"c2.26","gcamValue":16},{"gcamCode":"c2.27","gcamValue":16},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":10},{"gcamCode":"c2.31","gcamValue":7},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":3},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":35},{"gcamCode":"c2.44","gcamValue":11},{"gcamCode":"c2.45","gcamValue":23},{"gcamCode":"c2.46","gcamValue":16},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.5","gcamValue":3},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":13},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":11},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.60","gcamValue":4},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":7},{"gcamCode":"c2.64","gcamValue":9},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":20},{"gcamCode":"c2.76","gcamValue":144},{"gcamCode":"c2.77","gcamValue":13},{"gcamCode":"c2.78","gcamValue":17},{"gcamCode":"c2.79","gcamValue":7},{"gcamCode":"c2.80","gcamValue":23},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":3},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":5},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":8},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":6},{"gcamCode":"c2.95","gcamValue":32},{"gcamCode":"c2.97","gcamValue":9},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.6","gcamValue":1},{"gcamCode":"c25.7","gcamValue":6},{"gcamCode":"c25.8","gcamValue":2},{"gcamCode":"c3.1","gcamValue":15},{"gcamCode":"c3.2","gcamValue":14},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.29","gcamValue":4},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":16},{"gcamCode":"c35.32","gcamValue":3},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":5},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":11},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":12},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c4.12","gcamValue":5},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c41.1","gcamValue":11},{"gcamCode":"c5.10","gcamValue":17},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":36},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":6},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.26","gcamValue":4},{"gcamCode":"c5.27","gcamValue":2},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":24},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":6},{"gcamCode":"c5.36","gcamValue":7},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":8},{"gcamCode":"c5.43","gcamValue":9},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":5},{"gcamCode":"c5.46","gcamValue":33},{"gcamCode":"c5.47","gcamValue":5},{"gcamCode":"c5.49","gcamValue":14},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":18},{"gcamCode":"c5.51","gcamValue":9},{"gcamCode":"c5.52","gcamValue":18},{"gcamCode":"c5.53","gcamValue":23},{"gcamCode":"c5.54","gcamValue":5},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.6","gcamValue":8},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":7},{"gcamCode":"c5.62","gcamValue":89},{"gcamCode":"c5.7","gcamValue":10},{"gcamCode":"c5.8","gcamValue":14},{"gcamCode":"c5.9","gcamValue":12},{"gcamCode":"c6.1","gcamValue":8},{"gcamCode":"c6.4","gcamValue":19},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":8},{"gcamCode":"c7.2","gcamValue":9},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":6},{"gcamCode":"c8.38","gcamValue":9},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":7},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":2},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":4},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":4},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.126","gcamValue":2},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":10},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.164","gcamValue":4},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.212","gcamValue":6},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.247","gcamValue":3},{"gcamCode":"c9.25","gcamValue":3},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.325","gcamValue":2},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.332","gcamValue":3},{"gcamCode":"c9.339","gcamValue":4},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.341","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.350","gcamValue":3},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.37","gcamValue":3},{"gcamCode":"c9.373","gcamValue":2},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.39","gcamValue":6},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.479","gcamValue":4},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":3},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":5},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":9},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.624","gcamValue":4},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":7},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.704","gcamValue":4},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":3},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":14},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":8},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.748","gcamValue":6},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.765","gcamValue":3},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":10},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.791","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.868","gcamValue":6},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.916","gcamValue":3},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":6},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.962","gcamValue":4},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.97","gcamValue":2},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.974","gcamValue":4},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.979","gcamValue":1},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":4},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.999","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.287692307692308},{"gcamCode":"v10.2","gcamValue":0.219166666666667},{"gcamCode":"v11.1","gcamValue":0.0909368458781362},{"gcamCode":"v19.1","gcamValue":6.05722222222222},{"gcamCode":"v19.2","gcamValue":5.37222222222222},{"gcamCode":"v19.3","gcamValue":5.76722222222222},{"gcamCode":"v19.4","gcamValue":6.18777777777778},{"gcamCode":"v19.5","gcamValue":5.13944444444445},{"gcamCode":"v19.6","gcamValue":5.96944444444444},{"gcamCode":"v19.7","gcamValue":5.92777777777778},{"gcamCode":"v19.8","gcamValue":5.62222222222222},{"gcamCode":"v19.9","gcamValue":5.55222222222222},{"gcamCode":"v20.1","gcamValue":0.281},{"gcamCode":"v20.10","gcamValue":-0.75},{"gcamCode":"v20.11","gcamValue":0.5938},{"gcamCode":"v20.12","gcamValue":-0.75},{"gcamCode":"v20.13","gcamValue":0.413588235294118},{"gcamCode":"v20.14","gcamValue":-0.4205},{"gcamCode":"v20.15","gcamValue":0.339233333333333},{"gcamCode":"v20.16","gcamValue":-0.346333333333333},{"gcamCode":"v20.3","gcamValue":0.281},{"gcamCode":"v20.5","gcamValue":0.578},{"gcamCode":"v20.7","gcamValue":0.578},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.61725},{"gcamCode":"v21.1","gcamValue":5.34507692307692},{"gcamCode":"v26.1","gcamValue":-0.0647058823529412}]https://media.malaymail.com/resize_cache/uploads/articles/2016-01/20160128_BOSCH_01_VOLKSWAGEN-EMISSIONS-BOSCH-seo.JPG[""][""]["https://youtube.com/user/themalaymailonline/videos"][{"charLength":119,"verb":"","quote":"the initiative for the integration and form of the illegal strategies both came from employees at the car manufacturers","charOffset":1778}][{"name":"Campus Renningen","charOffset":106},{"name":"Robert Bosch GmbH","charOffset":519}][{"amount":90000000,"amountType":"sum is made up","charOffset":574},{"amount":88000000,"amountType":"covers the estimated economic","charOffset":635},{"amount":17000000,"amountType":"motor control","charOffset":741},{"amount":11000000,"amountType":"cars worldwide with such","charOffset":1008}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBktts.comhttps://www.ktts.com/2019/05/23/violent-tornado-touches-down-in-jefferson-city/[{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}}][{"count":{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1378},{"count":{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1378},{"count":{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}},"charOffset":3189}]["EPU_CATS_MIGRATION_FEAR_FEAR","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","KILL","CRISISLEX_T03_DEAD","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_SHERIFF","TAX_DISEASE","TAX_DISEASE_SHINGLES","SHORTAGE","MANMADE_DISASTER","MANMADE_DISASTER_POWER_OUTAGES","POWER_OUTAGE","NATURAL_DISASTER_SEVERE_WEATHER","NATURAL_DISASTER_TORNADOES","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","UNGP_CRIME_VIOLENCE","NATURAL_DISASTER_TWISTER","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_AIRPORT","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_1804_AIRPORTS","NATURAL_DISASTER_TORRENTIAL_RAINS","MARITIME_INCIDENT","MARITIME","MANMADE_DISASTER_IMPLIED","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_KANSAS","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_OFFICIALS","GOV_LOCALGOV","EVACUATION","CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","TAX_FNCACT_OFFICIAL","MEDIA_SOCIAL","AFFECT","NATURAL_DISASTER_DAM_BREAKS","MEDIA_MSM","TAX_FNCACT_WOMAN","NATURAL_DISASTER_HEAVY_RAIN","TRAFFIC","ROAD_INCIDENT","MANMADE_DISASTER_TRAFFIC_ACCIDENT","SOC_TRAFFICACCIDENT","WB_168_ROADS_AND_HIGHWAYS","WB_1809_HIGHWAYS","NATURAL_DISASTER_DROWNED","GENERAL_HEALTH","MEDICAL","CRISISLEX_C03_WELLBEING_HEALTH","TAX_FNCACT_EXAMINER","TAX_FNCACT_MEDICAL_EXAMINER","TAX_FNCACT_SPOKESWOMAN"][{"theme":"SHORTAGE","charOffset":948},{"theme":"TAX_FNCACT_WOMAN","charOffset":3036},{"theme":"TAX_FNCACT_WOMAN","charOffset":3438},{"theme":"TAX_FNCACT_WOMAN","charOffset":3601},{"theme":"EVACUATION","charOffset":2135},{"theme":"CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","charOffset":2135},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":1671},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":1954},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":2940},{"theme":"TAX_FNCACT_SHERIFF","charOffset":814},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":144},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":144},{"theme":"KILL","charOffset":493},{"theme":"CRISISLEX_T03_DEAD","charOffset":493},{"theme":"MANMADE_DISASTER_POWER_OUTAGES","charOffset":948},{"theme":"POWER_OUTAGE","charOffset":948},{"theme":"MARITIME_INCIDENT","charOffset":1723},{"theme":"MARITIME_INCIDENT","charOffset":2302},{"theme":"MARITIME_INCIDENT","charOffset":2388},{"theme":"MARITIME_INCIDENT","charOffset":2561},{"theme":"MARITIME","charOffset":1723},{"theme":"MARITIME","charOffset":2302},{"theme":"MARITIME","charOffset":2388},{"theme":"MARITIME","charOffset":2561},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1723},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2302},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2388},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2561},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":1134},{"theme":"AFFECT","charOffset":2335},{"theme":"NATURAL_DISASTER_DAM_BREAKS","charOffset":2462},{"theme":"SECURITY_SERVICES","charOffset":551},{"theme":"TAX_FNCACT_POLICE","charOffset":551},{"theme":"CRISISLEX_C07_SAFETY","charOffset":551},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":2245},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":1056},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":1056},{"theme":"TRAFFIC","charOffset":3291},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":3418},{"theme":"WB_1809_HIGHWAYS","charOffset":3418},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":3226},{"theme":"GOV_LOCALGOV","charOffset":2104},{"theme":"GENERAL_HEALTH","charOffset":3636},{"theme":"MEDICAL","charOffset":3636},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":3636},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":1607},{"theme":"TAX_FNCACT_EXAMINER","charOffset":3645},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":56},{"theme":"NATURAL_DISASTER_DROWNED","charOffset":3457},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1894},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":3210},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1894},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":3210},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1985},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2796},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":1021},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":2970},{"theme":"TAX_FNCACT_MEDICAL_EXAMINER","charOffset":3645},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":1311},{"theme":"MEDIA_SOCIAL","charOffset":2254},{"theme":"MEDIA_MSM","charOffset":2600},{"theme":"ROAD_INCIDENT","charOffset":3300},{"theme":"MANMADE_DISASTER_TRAFFIC_ACCIDENT","charOffset":3300},{"theme":"SOC_TRAFFICACCIDENT","charOffset":3300},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":64},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":267},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1324},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1413},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1461},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":3132},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":64},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":267},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1324},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1413},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1461},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3132},{"theme":"CRISISLEX_O01_WEATHER","charOffset":64},{"theme":"CRISISLEX_O01_WEATHER","charOffset":267},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1324},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1413},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1461},{"theme":"CRISISLEX_O01_WEATHER","charOffset":3132},{"theme":"SOC_POINTSOFINTEREST_AIRPORT","charOffset":1578},{"theme":"WB_135_TRANSPORT","charOffset":1578},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1578},{"theme":"WB_1804_AIRPORTS","charOffset":1578},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":3739},{"theme":"TAX_DISEASE_SHINGLES","charOffset":874},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":2104},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":3085},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1039},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1211},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2879}][{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}][{"location":{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO077","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"},"charOffset":3325},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":1689},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":3074},{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":1645},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":1671},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":1954},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":2940},{"location":{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},"charOffset":2789},{"location":{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO001","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},"charOffset":3173},{"location":{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK109","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},"charOffset":3562},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":2044},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":2349},{"location":{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},"charOffset":791},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":121},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1120},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1376},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1700},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2775},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2931},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":3198},{"location":{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},"charOffset":1682},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1662},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1805},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1945},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":2070},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":2920},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3398},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3557},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3692},{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":1711},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":1509},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":95},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":297},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":529}]["keli cain","david williams"][{"person":"Keli Cain","charOffset":3749},{"person":"David Williams","charOffset":570}]["jefferson city police","facebook","national weather service","oklahoma department of emergency management"][{"organisation":"Facebook","charOffset":2254},{"organisation":"National Weather Service","charOffset":198},{"organisation":"National Weather Service","charOffset":1166},{"organisation":"Oklahoma Department Of Emergency Management","charOffset":3727}]{"tone":-6.6666665,"positiveScore":0.16260162,"negativeScore":6.8292685,"polarity":6.99187,"activityReferenceDensity":20.487804,"selfGroupReferenceDensity":0.16260162,"wordCount":568}[][{"gcamCode":"wc","gcamValue":568},{"gcamCode":"c12.1","gcamValue":24},{"gcamCode":"c12.10","gcamValue":45},{"gcamCode":"c12.12","gcamValue":23},{"gcamCode":"c12.13","gcamValue":14},{"gcamCode":"c12.14","gcamValue":13},{"gcamCode":"c12.3","gcamValue":16},{"gcamCode":"c12.4","gcamValue":4},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":35},{"gcamCode":"c12.8","gcamValue":17},{"gcamCode":"c12.9","gcamValue":16},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c13.3","gcamValue":9},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":28},{"gcamCode":"c14.10","gcamValue":19},{"gcamCode":"c14.11","gcamValue":50},{"gcamCode":"c14.2","gcamValue":25},{"gcamCode":"c14.3","gcamValue":27},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":61},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.48","gcamValue":2},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":18},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":20},{"gcamCode":"c16.109","gcamValue":30},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":71},{"gcamCode":"c16.111","gcamValue":11},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":32},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":18},{"gcamCode":"c16.117","gcamValue":19},{"gcamCode":"c16.118","gcamValue":36},{"gcamCode":"c16.12","gcamValue":45},{"gcamCode":"c16.120","gcamValue":22},{"gcamCode":"c16.121","gcamValue":47},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.125","gcamValue":23},{"gcamCode":"c16.126","gcamValue":20},{"gcamCode":"c16.127","gcamValue":35},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":74},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":21},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":62},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":19},{"gcamCode":"c16.140","gcamValue":29},{"gcamCode":"c16.143","gcamValue":3},{"gcamCode":"c16.145","gcamValue":30},{"gcamCode":"c16.146","gcamValue":28},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":3},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":16},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":7},{"gcamCode":"c16.159","gcamValue":44},{"gcamCode":"c16.16","gcamValue":7},{"gcamCode":"c16.161","gcamValue":58},{"gcamCode":"c16.162","gcamValue":41},{"gcamCode":"c16.163","gcamValue":46},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":12},{"gcamCode":"c16.2","gcamValue":54},{"gcamCode":"c16.20","gcamValue":3},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":9},{"gcamCode":"c16.26","gcamValue":55},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":5},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":25},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":53},{"gcamCode":"c16.35","gcamValue":27},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":42},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":36},{"gcamCode":"c16.41","gcamValue":21},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":20},{"gcamCode":"c16.46","gcamValue":8},{"gcamCode":"c16.47","gcamValue":53},{"gcamCode":"c16.48","gcamValue":5},{"gcamCode":"c16.49","gcamValue":4},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.52","gcamValue":33},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.55","gcamValue":9},{"gcamCode":"c16.56","gcamValue":6},{"gcamCode":"c16.57","gcamValue":305},{"gcamCode":"c16.58","gcamValue":29},{"gcamCode":"c16.6","gcamValue":57},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.62","gcamValue":20},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":8},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":21},{"gcamCode":"c16.69","gcamValue":19},{"gcamCode":"c16.7","gcamValue":11},{"gcamCode":"c16.70","gcamValue":60},{"gcamCode":"c16.71","gcamValue":23},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":20},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":28},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":18},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":50},{"gcamCode":"c16.88","gcamValue":78},{"gcamCode":"c16.89","gcamValue":12},{"gcamCode":"c16.9","gcamValue":8},{"gcamCode":"c16.90","gcamValue":12},{"gcamCode":"c16.91","gcamValue":15},{"gcamCode":"c16.92","gcamValue":43},{"gcamCode":"c16.93","gcamValue":19},{"gcamCode":"c16.94","gcamValue":42},{"gcamCode":"c16.95","gcamValue":49},{"gcamCode":"c16.96","gcamValue":5},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":29},{"gcamCode":"c16.99","gcamValue":12},{"gcamCode":"c17.1","gcamValue":155},{"gcamCode":"c17.10","gcamValue":35},{"gcamCode":"c17.11","gcamValue":63},{"gcamCode":"c17.12","gcamValue":24},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":48},{"gcamCode":"c17.16","gcamValue":39},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":15},{"gcamCode":"c17.19","gcamValue":28},{"gcamCode":"c17.2","gcamValue":9},{"gcamCode":"c17.20","gcamValue":20},{"gcamCode":"c17.21","gcamValue":7},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":3},{"gcamCode":"c17.24","gcamValue":44},{"gcamCode":"c17.25","gcamValue":9},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":51},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":18},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":7},{"gcamCode":"c17.31","gcamValue":34},{"gcamCode":"c17.32","gcamValue":12},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":8},{"gcamCode":"c17.35","gcamValue":9},{"gcamCode":"c17.36","gcamValue":29},{"gcamCode":"c17.37","gcamValue":11},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":21},{"gcamCode":"c17.4","gcamValue":141},{"gcamCode":"c17.40","gcamValue":9},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":24},{"gcamCode":"c17.43","gcamValue":25},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":100},{"gcamCode":"c17.6","gcamValue":5},{"gcamCode":"c17.7","gcamValue":69},{"gcamCode":"c17.8","gcamValue":43},{"gcamCode":"c17.9","gcamValue":11},{"gcamCode":"c18.1","gcamValue":6},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.156","gcamValue":27},{"gcamCode":"c18.159","gcamValue":1},{"gcamCode":"c18.162","gcamValue":2},{"gcamCode":"c18.163","gcamValue":1},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":13},{"gcamCode":"c18.245","gcamValue":1},{"gcamCode":"c18.257","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":15},{"gcamCode":"c18.50","gcamValue":1},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.83","gcamValue":2},{"gcamCode":"c2.1","gcamValue":30},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":13},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.103","gcamValue":4},{"gcamCode":"c2.104","gcamValue":68},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":10},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":5},{"gcamCode":"c2.112","gcamValue":12},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":29},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":26},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":169},{"gcamCode":"c2.12","gcamValue":23},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":32},{"gcamCode":"c2.122","gcamValue":10},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":27},{"gcamCode":"c2.126","gcamValue":23},{"gcamCode":"c2.127","gcamValue":58},{"gcamCode":"c2.128","gcamValue":51},{"gcamCode":"c2.129","gcamValue":55},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.132","gcamValue":6},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":4},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":37},{"gcamCode":"c2.141","gcamValue":12},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":31},{"gcamCode":"c2.144","gcamValue":12},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":9},{"gcamCode":"c2.147","gcamValue":81},{"gcamCode":"c2.148","gcamValue":37},{"gcamCode":"c2.15","gcamValue":8},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":11},{"gcamCode":"c2.155","gcamValue":28},{"gcamCode":"c2.156","gcamValue":23},{"gcamCode":"c2.157","gcamValue":27},{"gcamCode":"c2.158","gcamValue":36},{"gcamCode":"c2.159","gcamValue":7},{"gcamCode":"c2.16","gcamValue":6},{"gcamCode":"c2.160","gcamValue":28},{"gcamCode":"c2.162","gcamValue":9},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":10},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":11},{"gcamCode":"c2.173","gcamValue":7},{"gcamCode":"c2.174","gcamValue":3},{"gcamCode":"c2.175","gcamValue":4},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":25},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":16},{"gcamCode":"c2.18","gcamValue":19},{"gcamCode":"c2.180","gcamValue":19},{"gcamCode":"c2.181","gcamValue":20},{"gcamCode":"c2.183","gcamValue":20},{"gcamCode":"c2.185","gcamValue":101},{"gcamCode":"c2.186","gcamValue":6},{"gcamCode":"c2.187","gcamValue":34},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.190","gcamValue":5},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":9},{"gcamCode":"c2.193","gcamValue":48},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":48},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":19},{"gcamCode":"c2.198","gcamValue":74},{"gcamCode":"c2.199","gcamValue":12},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.201","gcamValue":10},{"gcamCode":"c2.203","gcamValue":18},{"gcamCode":"c2.204","gcamValue":51},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.208","gcamValue":17},{"gcamCode":"c2.209","gcamValue":16},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":44},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":15},{"gcamCode":"c2.214","gcamValue":13},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.220","gcamValue":16},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":17},{"gcamCode":"c2.226","gcamValue":10},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":36},{"gcamCode":"c2.25","gcamValue":30},{"gcamCode":"c2.26","gcamValue":21},{"gcamCode":"c2.27","gcamValue":21},{"gcamCode":"c2.28","gcamValue":9},{"gcamCode":"c2.30","gcamValue":21},{"gcamCode":"c2.31","gcamValue":22},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":41},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":7},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":80},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":24},{"gcamCode":"c2.45","gcamValue":39},{"gcamCode":"c2.46","gcamValue":55},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":15},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":36},{"gcamCode":"c2.54","gcamValue":44},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":10},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":19},{"gcamCode":"c2.64","gcamValue":15},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":5},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":5},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":62},{"gcamCode":"c2.76","gcamValue":361},{"gcamCode":"c2.77","gcamValue":45},{"gcamCode":"c2.78","gcamValue":63},{"gcamCode":"c2.79","gcamValue":14},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":40},{"gcamCode":"c2.81","gcamValue":15},{"gcamCode":"c2.82","gcamValue":15},{"gcamCode":"c2.83","gcamValue":5},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":15},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":7},{"gcamCode":"c2.89","gcamValue":12},{"gcamCode":"c2.9","gcamValue":17},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":12},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":80},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":9},{"gcamCode":"c2.98","gcamValue":37},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":6},{"gcamCode":"c25.5","gcamValue":13},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":54},{"gcamCode":"c3.2","gcamValue":23},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":21},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":11},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":6},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.33","gcamValue":34},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":3},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":23},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":7},{"gcamCode":"c39.37","gcamValue":22},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":31},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":8},{"gcamCode":"c39.5","gcamValue":18},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":3},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":3},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":19},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.3","gcamValue":7},{"gcamCode":"c40.4","gcamValue":8},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":25},{"gcamCode":"c5.10","gcamValue":63},{"gcamCode":"c5.11","gcamValue":14},{"gcamCode":"c5.12","gcamValue":108},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":5},{"gcamCode":"c5.19","gcamValue":11},{"gcamCode":"c5.2","gcamValue":9},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":17},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.26","gcamValue":12},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":33},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":7},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":17},{"gcamCode":"c5.35","gcamValue":1},{"gcamCode":"c5.36","gcamValue":19},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.40","gcamValue":32},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":13},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":77},{"gcamCode":"c5.47","gcamValue":23},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":37},{"gcamCode":"c5.5","gcamValue":5},{"gcamCode":"c5.50","gcamValue":49},{"gcamCode":"c5.51","gcamValue":39},{"gcamCode":"c5.52","gcamValue":63},{"gcamCode":"c5.53","gcamValue":55},{"gcamCode":"c5.54","gcamValue":13},{"gcamCode":"c5.55","gcamValue":5},{"gcamCode":"c5.56","gcamValue":2},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":22},{"gcamCode":"c5.60","gcamValue":8},{"gcamCode":"c5.61","gcamValue":21},{"gcamCode":"c5.62","gcamValue":221},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":14},{"gcamCode":"c5.9","gcamValue":29},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":3},{"gcamCode":"c6.3","gcamValue":7},{"gcamCode":"c6.4","gcamValue":20},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":9},{"gcamCode":"c7.1","gcamValue":36},{"gcamCode":"c7.2","gcamValue":9},{"gcamCode":"c8.10","gcamValue":7},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":4},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":15},{"gcamCode":"c8.2","gcamValue":24},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":15},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.28","gcamValue":4},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":4},{"gcamCode":"c8.37","gcamValue":10},{"gcamCode":"c8.38","gcamValue":3},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":19},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":16},{"gcamCode":"c8.43","gcamValue":15},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":23},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":5},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.104","gcamValue":4},{"gcamCode":"c9.1040","gcamValue":5},{"gcamCode":"c9.1041","gcamValue":4},{"gcamCode":"c9.107","gcamValue":7},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":9},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":8},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":12},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":31},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":4},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.138","gcamValue":5},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":7},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":6},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":8},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":10},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.179","gcamValue":2},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.180","gcamValue":3},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":5},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":11},{"gcamCode":"c9.197","gcamValue":5},{"gcamCode":"c9.198","gcamValue":14},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":7},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.215","gcamValue":6},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":5},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":5},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":3},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.289","gcamValue":2},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":20},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.318","gcamValue":3},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.322","gcamValue":7},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.330","gcamValue":3},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.34","gcamValue":10},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.348","gcamValue":4},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":5},{"gcamCode":"c9.358","gcamValue":10},{"gcamCode":"c9.359","gcamValue":11},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.360","gcamValue":4},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":6},{"gcamCode":"c9.372","gcamValue":3},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.383","gcamValue":11},{"gcamCode":"c9.385","gcamValue":5},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.4","gcamValue":4},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":6},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":8},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.489","gcamValue":7},{"gcamCode":"c9.49","gcamValue":11},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":4},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":6},{"gcamCode":"c9.513","gcamValue":8},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":10},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.54","gcamValue":7},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":8},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.560","gcamValue":11},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":20},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.642","gcamValue":9},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":3},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":29},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":9},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.667","gcamValue":7},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.677","gcamValue":5},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":10},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":9},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":6},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":7},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":3},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.724","gcamValue":13},{"gcamCode":"c9.726","gcamValue":22},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.730","gcamValue":19},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.734","gcamValue":8},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":11},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":3},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":2},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.762","gcamValue":19},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":16},{"gcamCode":"c9.767","gcamValue":32},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":3},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":19},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":6},{"gcamCode":"c9.868","gcamValue":19},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.880","gcamValue":2},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":5},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.897","gcamValue":4},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":7},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":5},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.948","gcamValue":2},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":6},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":3},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.257770065240479},{"gcamCode":"v10.2","gcamValue":0.287880378720896},{"gcamCode":"v11.1","gcamValue":0.000950626477541364},{"gcamCode":"v19.1","gcamValue":5.08208955223881},{"gcamCode":"v19.2","gcamValue":5.3476119402985},{"gcamCode":"v19.3","gcamValue":5.02029850746268},{"gcamCode":"v19.4","gcamValue":5.16537313432836},{"gcamCode":"v19.5","gcamValue":5.01805970149254},{"gcamCode":"v19.6","gcamValue":4.9920895522388},{"gcamCode":"v19.7","gcamValue":5.02686567164179},{"gcamCode":"v19.8","gcamValue":5.6176119402985},{"gcamCode":"v19.9","gcamValue":5.02880597014925},{"gcamCode":"v20.1","gcamValue":0.5915},{"gcamCode":"v20.10","gcamValue":-0.579916666666667},{"gcamCode":"v20.11","gcamValue":0.5366},{"gcamCode":"v20.12","gcamValue":-0.563933333333333},{"gcamCode":"v20.13","gcamValue":0.380826086956522},{"gcamCode":"v20.14","gcamValue":-0.506952380952381},{"gcamCode":"v20.15","gcamValue":0.352672413793103},{"gcamCode":"v20.16","gcamValue":-0.429866666666667},{"gcamCode":"v20.2","gcamValue":-0.271},{"gcamCode":"v20.3","gcamValue":0.5915},{"gcamCode":"v20.4","gcamValue":-0.271},{"gcamCode":"v20.5","gcamValue":0.5915},{"gcamCode":"v20.6","gcamValue":-0.493166666666667},{"gcamCode":"v20.7","gcamValue":0.5915},{"gcamCode":"v20.8","gcamValue":-0.557375},{"gcamCode":"v20.9","gcamValue":0.5915},{"gcamCode":"v21.1","gcamValue":5.24369696969697},{"gcamCode":"v26.1","gcamValue":-0.918181818181818}]https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/1028/2019/05/23073005/Jefferson-City-5-5-23-19.jpg[""][""][""][{"charLength":39,"verb":"","quote":"confirmed large and destructive tornado","charOffset":256},{"charLength":165,"verb":"","quote":"Evacuate Webbers Falls immediately. The barges are loose and has the potential to hit the lock and dam 16. If the dam breaks , it will be catastrophic!! Leave now!!","charOffset":2531}][{"name":"Jefferson City","charOffset":82},{"name":"National Weather","charOffset":171},{"name":"Jefferson City","charOffset":284},{"name":"Jefferson City Police","charOffset":541},{"name":"David Williams","charOffset":560},{"name":"Cole County Sheriff","charOffset":806},{"name":"Missouri Public","charOffset":1135},{"name":"National Weather Service","charOffset":1173},{"name":"Carl Junction","charOffset":1545},{"name":"Arkansas River","charOffset":1847},{"name":"Arkansas River","charOffset":2089},{"name":"Webbers Falls","charOffset":2111},{"name":"Webbers Falls","charOffset":2419},{"name":"Arkansas River","charOffset":2779},{"name":"Mississippi Rivers","charOffset":2870},{"name":"Highway Patrol","charOffset":3497},{"name":"Emergency Management","charOffset":3805},{"name":"Keli Cain","charOffset":3827}][{"amount":130,"amountType":"miles","charOffset":341},{"amount":209,"amountType":"kilometers","charOffset":350},{"amount":22,"amountType":"reports of tornadoes by","charOffset":961},{"amount":161,"amountType":"people","charOffset":1174},{"amount":4,"amountType":"miles","charOffset":1246},{"amount":44,"amountType":"kilometers","charOffset":1255},{"amount":2,"amountType":"barges broke loose","charOffset":1407},{"amount":600,"amountType":"residents","charOffset":1900},{"amount":12,"amountType":"of tornadoes","charOffset":2358},{"amount":2,"amountType":"people","charOffset":2693},{"amount":4,"amountType":"weather","charOffset":2748},{"amount":45,"amountType":"miles","charOffset":2896},{"amount":72,"amountType":"kilometers","charOffset":2904}]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://www.ktts.com/2019/05/23/violent-tornado-touches-down-in-jefferson-city/amp/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBakp.gov.khhttp://www.akp.gov.kh/post/detail/9761[][]["ELECTION","USPEC_POLITICS_GENERAL1","EPU_POLICY","EPU_POLICY_POLITICAL","TAX_ETHNICITY","TAX_ETHNICITY_KHMER","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_KHMER","TAX_WORLDLANGUAGES_CAMBODIAN","TAX_POLITICAL_PARTY","TAX_POLITICAL_PARTY_YOUTH_PARTY","TAX_POLITICAL_PARTY_PEOPLE_PARTY","TAX_TERROR_GROUP","TAX_TERROR_GROUP_CAMBODIAN_PEOPLE_PARTY","TAX_POLITICAL_PARTY_CAMBODIAN_PEOPLE_PARTY"][{"theme":"TAX_TERROR_GROUP_CAMBODIAN_PEOPLE_PARTY","charOffset":523},{"theme":"TAX_POLITICAL_PARTY_CAMBODIAN_PEOPLE_PARTY","charOffset":523},{"theme":"TAX_WORLDLANGUAGES_CAMBODIAN","charOffset":456},{"theme":"TAX_WORLDLANGUAGES_CAMBODIAN","charOffset":486},{"theme":"TAX_WORLDLANGUAGES_CAMBODIAN","charOffset":510},{"theme":"EPU_POLICY_POLITICAL","charOffset":275},{"theme":"EPU_POLICY_POLITICAL","charOffset":328},{"theme":"EPU_POLICY_POLITICAL","charOffset":415},{"theme":"EPU_POLICY_POLITICAL","charOffset":601},{"theme":"EPU_POLICY_POLITICAL","charOffset":827},{"theme":"TAX_POLITICAL_PARTY_YOUTH_PARTY","charOffset":498},{"theme":"TAX_ETHNICITY_KHMER","charOffset":433},{"theme":"TAX_ETHNICITY_KHMER","charOffset":531},{"theme":"TAX_WORLDLANGUAGES_KHMER","charOffset":433},{"theme":"TAX_WORLDLANGUAGES_KHMER","charOffset":531},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":235},{"theme":"ELECTION","charOffset":72},{"theme":"ELECTION","charOffset":225},{"theme":"ELECTION","charOffset":889},{"theme":"TAX_POLITICAL_PARTY_PEOPLE_PARTY","charOffset":523}][{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"}][{"location":{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"12390","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},"charOffset":15},{"location":{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"12390","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},"charOffset":367},{"location":{"geoType":"COUNTRY","geoName":"Cambodian","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"},"charOffset":456},{"location":{"geoType":"COUNTRY","geoName":"Cambodian","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"},"charOffset":486},{"location":{"geoType":"COUNTRY","geoName":"Cambodian","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"},"charOffset":510}][""][]["cambodian nationality party","cambodian people party","cambodian youth party","khmer national united party","khan councils","national election committee"][{"organisation":"Cambodian Nationality Party","charOffset":474},{"organisation":"Cambodian People Party","charOffset":523},{"organisation":"Cambodian Youth Party","charOffset":498},{"organisation":"Khmer National United Party","charOffset":553},{"organisation":"Khan Councils","charOffset":135},{"organisation":"Khan Councils","charOffset":740},{"organisation":"Khan Councils","charOffset":952},{"organisation":"National Election Committee","charOffset":235}]{"tone":3.9325843,"positiveScore":5.05618,"negativeScore":1.1235955,"polarity":6.179775,"activityReferenceDensity":17.41573,"selfGroupReferenceDensity":0,"wordCount":144}[{"dateResolution":4,"month":5,"day":24,"year":0,"charOffset":801},{"dateResolution":4,"month":5,"day":26,"year":0,"charOffset":986}][{"gcamCode":"wc","gcamValue":144},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":3},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":2},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":3},{"gcamCode":"c12.8","gcamValue":2},{"gcamCode":"c12.9","gcamValue":5},{"gcamCode":"c14.1","gcamValue":6},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":9},{"gcamCode":"c14.2","gcamValue":6},{"gcamCode":"c14.3","gcamValue":5},{"gcamCode":"c14.5","gcamValue":6},{"gcamCode":"c14.7","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":7},{"gcamCode":"c16.101","gcamValue":4},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":7},{"gcamCode":"c16.11","gcamValue":4},{"gcamCode":"c16.110","gcamValue":28},{"gcamCode":"c16.114","gcamValue":7},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":11},{"gcamCode":"c16.12","gcamValue":5},{"gcamCode":"c16.120","gcamValue":4},{"gcamCode":"c16.121","gcamValue":31},{"gcamCode":"c16.125","gcamValue":7},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":15},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":10},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":6},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":19},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":3},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.145","gcamValue":21},{"gcamCode":"c16.146","gcamValue":12},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.153","gcamValue":5},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":11},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":18},{"gcamCode":"c16.162","gcamValue":16},{"gcamCode":"c16.163","gcamValue":10},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.19","gcamValue":4},{"gcamCode":"c16.2","gcamValue":17},{"gcamCode":"c16.22","gcamValue":5},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":24},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.31","gcamValue":13},{"gcamCode":"c16.33","gcamValue":8},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":6},{"gcamCode":"c16.37","gcamValue":13},{"gcamCode":"c16.38","gcamValue":3},{"gcamCode":"c16.4","gcamValue":5},{"gcamCode":"c16.41","gcamValue":10},{"gcamCode":"c16.45","gcamValue":9},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":20},{"gcamCode":"c16.52","gcamValue":7},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":73},{"gcamCode":"c16.58","gcamValue":7},{"gcamCode":"c16.6","gcamValue":17},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":6},{"gcamCode":"c16.66","gcamValue":3},{"gcamCode":"c16.68","gcamValue":3},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":7},{"gcamCode":"c16.70","gcamValue":19},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.78","gcamValue":12},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":14},{"gcamCode":"c16.88","gcamValue":14},{"gcamCode":"c16.89","gcamValue":4},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":9},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":6},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":10},{"gcamCode":"c16.95","gcamValue":11},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":9},{"gcamCode":"c16.99","gcamValue":3},{"gcamCode":"c17.1","gcamValue":28},{"gcamCode":"c17.10","gcamValue":15},{"gcamCode":"c17.11","gcamValue":17},{"gcamCode":"c17.12","gcamValue":12},{"gcamCode":"c17.15","gcamValue":14},{"gcamCode":"c17.16","gcamValue":10},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":15},{"gcamCode":"c17.2","gcamValue":13},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.24","gcamValue":15},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.27","gcamValue":16},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":8},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":7},{"gcamCode":"c17.34","gcamValue":8},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":4},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":34},{"gcamCode":"c17.40","gcamValue":1},{"gcamCode":"c17.41","gcamValue":7},{"gcamCode":"c17.42","gcamValue":14},{"gcamCode":"c17.43","gcamValue":4},{"gcamCode":"c17.5","gcamValue":28},{"gcamCode":"c17.7","gcamValue":19},{"gcamCode":"c17.8","gcamValue":9},{"gcamCode":"c18.140","gcamValue":3},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.194","gcamValue":1},{"gcamCode":"c18.195","gcamValue":1},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c2.1","gcamValue":2},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.104","gcamValue":25},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":8},{"gcamCode":"c2.116","gcamValue":5},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":37},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":10},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":6},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":17},{"gcamCode":"c2.128","gcamValue":4},{"gcamCode":"c2.129","gcamValue":31},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":6},{"gcamCode":"c2.134","gcamValue":4},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":13},{"gcamCode":"c2.141","gcamValue":13},{"gcamCode":"c2.142","gcamValue":5},{"gcamCode":"c2.143","gcamValue":35},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":21},{"gcamCode":"c2.148","gcamValue":3},{"gcamCode":"c2.15","gcamValue":11},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.154","gcamValue":27},{"gcamCode":"c2.155","gcamValue":10},{"gcamCode":"c2.156","gcamValue":10},{"gcamCode":"c2.157","gcamValue":9},{"gcamCode":"c2.158","gcamValue":10},{"gcamCode":"c2.160","gcamValue":4},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":4},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":11},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":6},{"gcamCode":"c2.183","gcamValue":6},{"gcamCode":"c2.185","gcamValue":23},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":5},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.195","gcamValue":13},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":11},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":10},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.210","gcamValue":12},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.23","gcamValue":11},{"gcamCode":"c2.25","gcamValue":9},{"gcamCode":"c2.26","gcamValue":6},{"gcamCode":"c2.27","gcamValue":6},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":1},{"gcamCode":"c2.31","gcamValue":8},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":6},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.39","gcamValue":14},{"gcamCode":"c2.4","gcamValue":5},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":10},{"gcamCode":"c2.45","gcamValue":8},{"gcamCode":"c2.46","gcamValue":9},{"gcamCode":"c2.47","gcamValue":3},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":7},{"gcamCode":"c2.58","gcamValue":5},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.62","gcamValue":10},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.68","gcamValue":3},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":21},{"gcamCode":"c2.76","gcamValue":80},{"gcamCode":"c2.77","gcamValue":17},{"gcamCode":"c2.78","gcamValue":17},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":15},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":4},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.95","gcamValue":18},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c3.2","gcamValue":9},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.16","gcamValue":1},{"gcamCode":"c35.20","gcamValue":9},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.26","gcamValue":4},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.32","gcamValue":3},{"gcamCode":"c35.33","gcamValue":14},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.17","gcamValue":3},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.3","gcamValue":5},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":5},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c4.24","gcamValue":6},{"gcamCode":"c4.7","gcamValue":1},{"gcamCode":"c40.7","gcamValue":5},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":3},{"gcamCode":"c5.10","gcamValue":14},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":14},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.40","gcamValue":19},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":21},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":8},{"gcamCode":"c5.50","gcamValue":10},{"gcamCode":"c5.51","gcamValue":8},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":10},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.6","gcamValue":15},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":1},{"gcamCode":"c5.62","gcamValue":45},{"gcamCode":"c5.7","gcamValue":1},{"gcamCode":"c5.8","gcamValue":11},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.1","gcamValue":3},{"gcamCode":"c6.2","gcamValue":3},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":3},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.23","gcamValue":7},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.42","gcamValue":5},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.101","gcamValue":2},{"gcamCode":"c9.102","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.158","gcamValue":3},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.184","gcamValue":6},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":10},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.276","gcamValue":3},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.342","gcamValue":1},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.383","gcamValue":10},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":3},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.458","gcamValue":5},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.586","gcamValue":3},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":3},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.626","gcamValue":3},{"gcamCode":"c9.627","gcamValue":4},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.635","gcamValue":7},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.648","gcamValue":5},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":7},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.660","gcamValue":5},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.701","gcamValue":5},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.737","gcamValue":5},{"gcamCode":"c9.740","gcamValue":5},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":3},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":23},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.775","gcamValue":3},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":3},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.83","gcamValue":6},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":5},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.889","gcamValue":3},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":5},{"gcamCode":"c9.935","gcamValue":6},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.978","gcamValue":5},{"gcamCode":"v10.1","gcamValue":0.285618279569892},{"gcamCode":"v10.2","gcamValue":0.292835884353742},{"gcamCode":"v11.1","gcamValue":0.0923161640211641},{"gcamCode":"v19.1","gcamValue":6.69538461538462},{"gcamCode":"v19.2","gcamValue":5.66923076923077},{"gcamCode":"v19.3","gcamValue":5.53923076923077},{"gcamCode":"v19.4","gcamValue":6.33615384615385},{"gcamCode":"v19.5","gcamValue":5.47923076923077},{"gcamCode":"v19.6","gcamValue":5.53692307692308},{"gcamCode":"v19.7","gcamValue":6.98153846153846},{"gcamCode":"v19.8","gcamValue":5.83},{"gcamCode":"v19.9","gcamValue":5.52230769230769},{"gcamCode":"v20.11","gcamValue":0.583333333333333},{"gcamCode":"v20.13","gcamValue":0.464285714285714},{"gcamCode":"v20.15","gcamValue":0.365384615384615},{"gcamCode":"v20.7","gcamValue":0.75},{"gcamCode":"v20.9","gcamValue":0.75},{"gcamCode":"v21.1","gcamValue":5.49096153846154},{"gcamCode":"v26.1","gcamValue":1.5}]http://www.akp.gov.kh/uploads/posts/akp-23-05-2019-14-28-20-9761.jpg[""][""]["https://youtube.com/channel/UC_pMdWNb4Ta3n44fAMMf98g"][][{"name":"Khan Councils","charOffset":152},{"name":"National Election Committee","charOffset":256},{"name":"Phnom Penh","charOffset":400},{"name":"Khmer Will Party","charOffset":470},{"name":"Cambodian Nationality Party","charOffset":503},{"name":"Cambodian Youth Party","charOffset":530},{"name":"Cambodian People","charOffset":552},{"name":"Khmer National United Party","charOffset":592},{"name":"Khan Councils","charOffset":1041}][{"amount":6,"amountType":"political parties held the","charOffset":227},{"amount":6,"amountType":"political parties","charOffset":337},{"amount":7,"amountType":"political parties registered for","charOffset":497},{"amount":559,"amountType":"seats at capital","charOffset":542},{"amount":555,"amountType":"seats at municipal","charOffset":585},{"amount":2,"amountType":"marches","charOffset":733},{"amount":228,"amountType":"polling stations across the","charOffset":846},{"amount":572,"amountType":"commune/Sangkat councillors","charOffset":890}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Sor Vichey</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBhemeltoday.co.ukhttps://www.hemeltoday.co.uk/lifestyle/console-corner-saints-row-the-third-nintendo-switch-review-1-8938343[][][""][][][]["damien lucas"][{"person":"Damien Lucas","charOffset":987}][""][]{"tone":-1.4492754,"positiveScore":1.6563147,"negativeScore":3.10559,"polarity":4.7619047,"activityReferenceDensity":25.879917,"selfGroupReferenceDensity":0.82815737,"wordCount":440}[][{"gcamCode":"wc","gcamValue":440},{"gcamCode":"c12.1","gcamValue":40},{"gcamCode":"c12.10","gcamValue":59},{"gcamCode":"c12.12","gcamValue":19},{"gcamCode":"c12.13","gcamValue":25},{"gcamCode":"c12.14","gcamValue":16},{"gcamCode":"c12.3","gcamValue":15},{"gcamCode":"c12.4","gcamValue":4},{"gcamCode":"c12.5","gcamValue":26},{"gcamCode":"c12.7","gcamValue":30},{"gcamCode":"c12.8","gcamValue":28},{"gcamCode":"c12.9","gcamValue":40},{"gcamCode":"c13.1","gcamValue":6},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c14.1","gcamValue":25},{"gcamCode":"c14.10","gcamValue":12},{"gcamCode":"c14.11","gcamValue":55},{"gcamCode":"c14.2","gcamValue":40},{"gcamCode":"c14.3","gcamValue":31},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":50},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":12},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":8},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.133","gcamValue":1},{"gcamCode":"c15.134","gcamValue":1},{"gcamCode":"c15.136","gcamValue":1},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.171","gcamValue":5},{"gcamCode":"c15.172","gcamValue":5},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":3},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.187","gcamValue":1},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.209","gcamValue":2},{"gcamCode":"c15.215","gcamValue":2},{"gcamCode":"c15.220","gcamValue":1},{"gcamCode":"c15.224","gcamValue":1},{"gcamCode":"c15.225","gcamValue":2},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.233","gcamValue":2},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.272","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.43","gcamValue":3},{"gcamCode":"c15.51","gcamValue":2},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.85","gcamValue":2},{"gcamCode":"c15.94","gcamValue":2},{"gcamCode":"c16.1","gcamValue":11},{"gcamCode":"c16.100","gcamValue":24},{"gcamCode":"c16.101","gcamValue":13},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":15},{"gcamCode":"c16.109","gcamValue":24},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":78},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":27},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":10},{"gcamCode":"c16.117","gcamValue":11},{"gcamCode":"c16.118","gcamValue":25},{"gcamCode":"c16.12","gcamValue":62},{"gcamCode":"c16.120","gcamValue":38},{"gcamCode":"c16.121","gcamValue":18},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":5},{"gcamCode":"c16.125","gcamValue":46},{"gcamCode":"c16.126","gcamValue":30},{"gcamCode":"c16.127","gcamValue":35},{"gcamCode":"c16.128","gcamValue":8},{"gcamCode":"c16.129","gcamValue":56},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":14},{"gcamCode":"c16.131","gcamValue":26},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":34},{"gcamCode":"c16.136","gcamValue":6},{"gcamCode":"c16.137","gcamValue":2},{"gcamCode":"c16.138","gcamValue":5},{"gcamCode":"c16.139","gcamValue":15},{"gcamCode":"c16.140","gcamValue":13},{"gcamCode":"c16.144","gcamValue":1},{"gcamCode":"c16.145","gcamValue":34},{"gcamCode":"c16.146","gcamValue":50},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":26},{"gcamCode":"c16.155","gcamValue":3},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.159","gcamValue":27},{"gcamCode":"c16.16","gcamValue":8},{"gcamCode":"c16.161","gcamValue":39},{"gcamCode":"c16.162","gcamValue":11},{"gcamCode":"c16.163","gcamValue":57},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.168","gcamValue":2},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":9},{"gcamCode":"c16.2","gcamValue":16},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":17},{"gcamCode":"c16.23","gcamValue":11},{"gcamCode":"c16.24","gcamValue":10},{"gcamCode":"c16.26","gcamValue":54},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":12},{"gcamCode":"c16.3","gcamValue":5},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":41},{"gcamCode":"c16.32","gcamValue":11},{"gcamCode":"c16.33","gcamValue":34},{"gcamCode":"c16.34","gcamValue":3},{"gcamCode":"c16.35","gcamValue":22},{"gcamCode":"c16.37","gcamValue":37},{"gcamCode":"c16.38","gcamValue":25},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":27},{"gcamCode":"c16.41","gcamValue":17},{"gcamCode":"c16.45","gcamValue":16},{"gcamCode":"c16.46","gcamValue":19},{"gcamCode":"c16.47","gcamValue":47},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":7},{"gcamCode":"c16.52","gcamValue":14},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":242},{"gcamCode":"c16.58","gcamValue":48},{"gcamCode":"c16.59","gcamValue":3},{"gcamCode":"c16.6","gcamValue":53},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.61","gcamValue":4},{"gcamCode":"c16.62","gcamValue":14},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":18},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":21},{"gcamCode":"c16.69","gcamValue":14},{"gcamCode":"c16.7","gcamValue":3},{"gcamCode":"c16.70","gcamValue":15},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":6},{"gcamCode":"c16.74","gcamValue":4},{"gcamCode":"c16.75","gcamValue":16},{"gcamCode":"c16.76","gcamValue":9},{"gcamCode":"c16.77","gcamValue":6},{"gcamCode":"c16.78","gcamValue":7},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":6},{"gcamCode":"c16.82","gcamValue":7},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":32},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":54},{"gcamCode":"c16.88","gcamValue":89},{"gcamCode":"c16.89","gcamValue":18},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":27},{"gcamCode":"c16.91","gcamValue":32},{"gcamCode":"c16.92","gcamValue":39},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":48},{"gcamCode":"c16.95","gcamValue":35},{"gcamCode":"c16.96","gcamValue":21},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":56},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":114},{"gcamCode":"c17.10","gcamValue":63},{"gcamCode":"c17.11","gcamValue":74},{"gcamCode":"c17.12","gcamValue":23},{"gcamCode":"c17.13","gcamValue":11},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":26},{"gcamCode":"c17.16","gcamValue":10},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":14},{"gcamCode":"c17.19","gcamValue":20},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":9},{"gcamCode":"c17.23","gcamValue":3},{"gcamCode":"c17.24","gcamValue":53},{"gcamCode":"c17.25","gcamValue":13},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":65},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":24},{"gcamCode":"c17.3","gcamValue":15},{"gcamCode":"c17.30","gcamValue":13},{"gcamCode":"c17.31","gcamValue":43},{"gcamCode":"c17.32","gcamValue":29},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":25},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":48},{"gcamCode":"c17.37","gcamValue":16},{"gcamCode":"c17.38","gcamValue":10},{"gcamCode":"c17.39","gcamValue":25},{"gcamCode":"c17.4","gcamValue":110},{"gcamCode":"c17.40","gcamValue":13},{"gcamCode":"c17.41","gcamValue":27},{"gcamCode":"c17.42","gcamValue":22},{"gcamCode":"c17.43","gcamValue":24},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":108},{"gcamCode":"c17.6","gcamValue":13},{"gcamCode":"c17.7","gcamValue":91},{"gcamCode":"c17.8","gcamValue":77},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c18.84","gcamValue":2},{"gcamCode":"c2.1","gcamValue":10},{"gcamCode":"c2.10","gcamValue":9},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":6},{"gcamCode":"c2.102","gcamValue":10},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":80},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.109","gcamValue":8},{"gcamCode":"c2.11","gcamValue":6},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":24},{"gcamCode":"c2.116","gcamValue":19},{"gcamCode":"c2.118","gcamValue":5},{"gcamCode":"c2.119","gcamValue":128},{"gcamCode":"c2.12","gcamValue":16},{"gcamCode":"c2.120","gcamValue":8},{"gcamCode":"c2.121","gcamValue":41},{"gcamCode":"c2.122","gcamValue":5},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.125","gcamValue":34},{"gcamCode":"c2.126","gcamValue":15},{"gcamCode":"c2.127","gcamValue":47},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":8},{"gcamCode":"c2.130","gcamValue":9},{"gcamCode":"c2.131","gcamValue":8},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":9},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":44},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":21},{"gcamCode":"c2.144","gcamValue":17},{"gcamCode":"c2.145","gcamValue":5},{"gcamCode":"c2.146","gcamValue":12},{"gcamCode":"c2.147","gcamValue":75},{"gcamCode":"c2.148","gcamValue":50},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":13},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.152","gcamValue":10},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":58},{"gcamCode":"c2.156","gcamValue":12},{"gcamCode":"c2.157","gcamValue":45},{"gcamCode":"c2.158","gcamValue":35},{"gcamCode":"c2.159","gcamValue":15},{"gcamCode":"c2.160","gcamValue":43},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":2},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":12},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":10},{"gcamCode":"c2.177","gcamValue":16},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":14},{"gcamCode":"c2.180","gcamValue":16},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":95},{"gcamCode":"c2.186","gcamValue":10},{"gcamCode":"c2.187","gcamValue":23},{"gcamCode":"c2.188","gcamValue":5},{"gcamCode":"c2.189","gcamValue":5},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":2},{"gcamCode":"c2.192","gcamValue":12},{"gcamCode":"c2.193","gcamValue":40},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":59},{"gcamCode":"c2.196","gcamValue":10},{"gcamCode":"c2.197","gcamValue":4},{"gcamCode":"c2.198","gcamValue":33},{"gcamCode":"c2.199","gcamValue":20},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":24},{"gcamCode":"c2.204","gcamValue":29},{"gcamCode":"c2.205","gcamValue":18},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":9},{"gcamCode":"c2.209","gcamValue":14},{"gcamCode":"c2.210","gcamValue":37},{"gcamCode":"c2.211","gcamValue":10},{"gcamCode":"c2.212","gcamValue":1},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":13},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.218","gcamValue":5},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":10},{"gcamCode":"c2.223","gcamValue":10},{"gcamCode":"c2.225","gcamValue":11},{"gcamCode":"c2.226","gcamValue":16},{"gcamCode":"c2.227","gcamValue":4},{"gcamCode":"c2.228","gcamValue":9},{"gcamCode":"c2.23","gcamValue":1},{"gcamCode":"c2.25","gcamValue":18},{"gcamCode":"c2.26","gcamValue":28},{"gcamCode":"c2.27","gcamValue":28},{"gcamCode":"c2.28","gcamValue":7},{"gcamCode":"c2.30","gcamValue":9},{"gcamCode":"c2.31","gcamValue":22},{"gcamCode":"c2.32","gcamValue":11},{"gcamCode":"c2.33","gcamValue":12},{"gcamCode":"c2.34","gcamValue":28},{"gcamCode":"c2.35","gcamValue":7},{"gcamCode":"c2.36","gcamValue":5},{"gcamCode":"c2.37","gcamValue":6},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":106},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":4},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":15},{"gcamCode":"c2.45","gcamValue":8},{"gcamCode":"c2.46","gcamValue":37},{"gcamCode":"c2.47","gcamValue":7},{"gcamCode":"c2.48","gcamValue":6},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":22},{"gcamCode":"c2.54","gcamValue":22},{"gcamCode":"c2.55","gcamValue":11},{"gcamCode":"c2.56","gcamValue":9},{"gcamCode":"c2.57","gcamValue":9},{"gcamCode":"c2.58","gcamValue":6},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.61","gcamValue":10},{"gcamCode":"c2.62","gcamValue":30},{"gcamCode":"c2.64","gcamValue":5},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":3},{"gcamCode":"c2.7","gcamValue":7},{"gcamCode":"c2.70","gcamValue":6},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":14},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":81},{"gcamCode":"c2.76","gcamValue":325},{"gcamCode":"c2.77","gcamValue":17},{"gcamCode":"c2.78","gcamValue":81},{"gcamCode":"c2.79","gcamValue":16},{"gcamCode":"c2.80","gcamValue":60},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":23},{"gcamCode":"c2.83","gcamValue":7},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":25},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":9},{"gcamCode":"c2.89","gcamValue":18},{"gcamCode":"c2.9","gcamValue":5},{"gcamCode":"c2.90","gcamValue":8},{"gcamCode":"c2.93","gcamValue":15},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":87},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":36},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.9","gcamValue":7},{"gcamCode":"c3.1","gcamValue":17},{"gcamCode":"c3.2","gcamValue":40},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":6},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.27","gcamValue":2},{"gcamCode":"c35.3","gcamValue":2},{"gcamCode":"c35.31","gcamValue":21},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.7","gcamValue":7},{"gcamCode":"c35.8","gcamValue":2},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.3","gcamValue":15},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":8},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.4","gcamValue":14},{"gcamCode":"c39.41","gcamValue":8},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":14},{"gcamCode":"c4.28","gcamValue":7},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":50},{"gcamCode":"c5.11","gcamValue":5},{"gcamCode":"c5.12","gcamValue":69},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":3},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":7},{"gcamCode":"c5.23","gcamValue":8},{"gcamCode":"c5.24","gcamValue":6},{"gcamCode":"c5.25","gcamValue":6},{"gcamCode":"c5.26","gcamValue":11},{"gcamCode":"c5.27","gcamValue":5},{"gcamCode":"c5.28","gcamValue":11},{"gcamCode":"c5.29","gcamValue":8},{"gcamCode":"c5.3","gcamValue":7},{"gcamCode":"c5.30","gcamValue":54},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":7},{"gcamCode":"c5.35","gcamValue":24},{"gcamCode":"c5.36","gcamValue":33},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":24},{"gcamCode":"c5.42","gcamValue":8},{"gcamCode":"c5.43","gcamValue":27},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":13},{"gcamCode":"c5.46","gcamValue":67},{"gcamCode":"c5.47","gcamValue":18},{"gcamCode":"c5.48","gcamValue":2},{"gcamCode":"c5.49","gcamValue":40},{"gcamCode":"c5.50","gcamValue":48},{"gcamCode":"c5.51","gcamValue":27},{"gcamCode":"c5.52","gcamValue":61},{"gcamCode":"c5.53","gcamValue":56},{"gcamCode":"c5.54","gcamValue":25},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.57","gcamValue":9},{"gcamCode":"c5.59","gcamValue":7},{"gcamCode":"c5.6","gcamValue":37},{"gcamCode":"c5.60","gcamValue":17},{"gcamCode":"c5.61","gcamValue":42},{"gcamCode":"c5.62","gcamValue":241},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":7},{"gcamCode":"c5.9","gcamValue":13},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":7},{"gcamCode":"c6.5","gcamValue":7},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":20},{"gcamCode":"c7.2","gcamValue":32},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":10},{"gcamCode":"c8.24","gcamValue":2},{"gcamCode":"c8.25","gcamValue":6},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.31","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":4},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.4","gcamValue":28},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c8.6","gcamValue":9},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.9","gcamValue":2},{"gcamCode":"c9.1","gcamValue":18},{"gcamCode":"c9.10","gcamValue":7},{"gcamCode":"c9.1000","gcamValue":6},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.101","gcamValue":8},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":10},{"gcamCode":"c9.1017","gcamValue":8},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1019","gcamValue":7},{"gcamCode":"c9.102","gcamValue":8},{"gcamCode":"c9.1021","gcamValue":9},{"gcamCode":"c9.1023","gcamValue":5},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1042","gcamValue":1},{"gcamCode":"c9.107","gcamValue":5},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":6},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.12","gcamValue":1},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":18},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":7},{"gcamCode":"c9.134","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":5},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.148","gcamValue":3},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.158","gcamValue":13},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":7},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":7},{"gcamCode":"c9.163","gcamValue":7},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.175","gcamValue":3},{"gcamCode":"c9.177","gcamValue":5},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":6},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.184","gcamValue":6},{"gcamCode":"c9.188","gcamValue":11},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.193","gcamValue":6},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.198","gcamValue":10},{"gcamCode":"c9.2","gcamValue":2},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":3},{"gcamCode":"c9.201","gcamValue":11},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":4},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":3},{"gcamCode":"c9.21","gcamValue":5},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.212","gcamValue":3},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":6},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":3},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":6},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":7},{"gcamCode":"c9.270","gcamValue":7},{"gcamCode":"c9.274","gcamValue":4},{"gcamCode":"c9.275","gcamValue":5},{"gcamCode":"c9.277","gcamValue":6},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":19},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":4},{"gcamCode":"c9.31","gcamValue":2},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.324","gcamValue":2},{"gcamCode":"c9.328","gcamValue":4},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":28},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.346","gcamValue":2},{"gcamCode":"c9.35","gcamValue":12},{"gcamCode":"c9.350","gcamValue":2},{"gcamCode":"c9.352","gcamValue":4},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.361","gcamValue":2},{"gcamCode":"c9.362","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.377","gcamValue":6},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.38","gcamValue":1},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.39","gcamValue":15},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.398","gcamValue":3},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.400","gcamValue":2},{"gcamCode":"c9.405","gcamValue":6},{"gcamCode":"c9.409","gcamValue":9},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.420","gcamValue":8},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.429","gcamValue":6},{"gcamCode":"c9.430","gcamValue":16},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.433","gcamValue":5},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.441","gcamValue":2},{"gcamCode":"c9.446","gcamValue":6},{"gcamCode":"c9.45","gcamValue":2},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.461","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.469","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.471","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.476","gcamValue":5},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":2},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":6},{"gcamCode":"c9.480","gcamValue":4},{"gcamCode":"c9.481","gcamValue":3},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.484","gcamValue":1},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":3},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.497","gcamValue":1},{"gcamCode":"c9.498","gcamValue":11},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":5},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":13},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.52","gcamValue":1},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":3},{"gcamCode":"c9.527","gcamValue":2},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":4},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":12},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.555","gcamValue":4},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":5},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":3},{"gcamCode":"c9.570","gcamValue":11},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.579","gcamValue":19},{"gcamCode":"c9.581","gcamValue":2},{"gcamCode":"c9.586","gcamValue":6},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":4},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":2},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":10},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":5},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":7},{"gcamCode":"c9.629","gcamValue":10},{"gcamCode":"c9.630","gcamValue":8},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.635","gcamValue":6},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":4},{"gcamCode":"c9.640","gcamValue":7},{"gcamCode":"c9.642","gcamValue":9},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":15},{"gcamCode":"c9.649","gcamValue":6},{"gcamCode":"c9.650","gcamValue":11},{"gcamCode":"c9.653","gcamValue":16},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":10},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":11},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":5},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":12},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":8},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":5},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":4},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.680","gcamValue":8},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":6},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":5},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":4},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":6},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.705","gcamValue":5},{"gcamCode":"c9.708","gcamValue":5},{"gcamCode":"c9.709","gcamValue":2},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.712","gcamValue":6},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":9},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":18},{"gcamCode":"c9.73","gcamValue":8},{"gcamCode":"c9.730","gcamValue":14},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":6},{"gcamCode":"c9.736","gcamValue":7},{"gcamCode":"c9.738","gcamValue":1},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":11},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":4},{"gcamCode":"c9.746","gcamValue":3},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":15},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":8},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":5},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.76","gcamValue":9},{"gcamCode":"c9.762","gcamValue":16},{"gcamCode":"c9.765","gcamValue":4},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":19},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.770","gcamValue":3},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":3},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.790","gcamValue":4},{"gcamCode":"c9.791","gcamValue":2},{"gcamCode":"c9.792","gcamValue":4},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.802","gcamValue":5},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.808","gcamValue":7},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.812","gcamValue":17},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":3},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":5},{"gcamCode":"c9.821","gcamValue":5},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":5},{"gcamCode":"c9.824","gcamValue":3},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":15},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":3},{"gcamCode":"c9.855","gcamValue":6},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":9},{"gcamCode":"c9.860","gcamValue":6},{"gcamCode":"c9.863","gcamValue":5},{"gcamCode":"c9.864","gcamValue":18},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":19},{"gcamCode":"c9.87","gcamValue":6},{"gcamCode":"c9.870","gcamValue":1},{"gcamCode":"c9.873","gcamValue":5},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.876","gcamValue":1},{"gcamCode":"c9.877","gcamValue":19},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":7},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":8},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":9},{"gcamCode":"c9.891","gcamValue":2},{"gcamCode":"c9.893","gcamValue":2},{"gcamCode":"c9.894","gcamValue":2},{"gcamCode":"c9.895","gcamValue":9},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.899","gcamValue":9},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":7},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":7},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.907","gcamValue":3},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":10},{"gcamCode":"c9.913","gcamValue":6},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.917","gcamValue":2},{"gcamCode":"c9.920","gcamValue":6},{"gcamCode":"c9.926","gcamValue":7},{"gcamCode":"c9.93","gcamValue":3},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":12},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.95","gcamValue":5},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":5},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.968","gcamValue":2},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":12},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":5},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":8},{"gcamCode":"c9.985","gcamValue":16},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.272879023150762},{"gcamCode":"v10.2","gcamValue":0.232971071829405},{"gcamCode":"v11.1","gcamValue":0.102767021116139},{"gcamCode":"v19.1","gcamValue":6.04418604651163},{"gcamCode":"v19.2","gcamValue":5.58790697674418},{"gcamCode":"v19.3","gcamValue":5.37441860465116},{"gcamCode":"v19.4","gcamValue":6.10325581395349},{"gcamCode":"v19.5","gcamValue":5.67116279069768},{"gcamCode":"v19.6","gcamValue":5.50604651162791},{"gcamCode":"v19.7","gcamValue":5.9846511627907},{"gcamCode":"v19.8","gcamValue":5.54279069767442},{"gcamCode":"v19.9","gcamValue":5.27069767441861},{"gcamCode":"v20.1","gcamValue":0.357},{"gcamCode":"v20.10","gcamValue":-0.666666666666667},{"gcamCode":"v20.11","gcamValue":0.541727272727273},{"gcamCode":"v20.12","gcamValue":-0.583333333333333},{"gcamCode":"v20.13","gcamValue":0.422882352941177},{"gcamCode":"v20.14","gcamValue":-0.4192},{"gcamCode":"v20.15","gcamValue":0.380622222222222},{"gcamCode":"v20.16","gcamValue":-0.399294117647059},{"gcamCode":"v20.3","gcamValue":0.4854},{"gcamCode":"v20.5","gcamValue":0.4854},{"gcamCode":"v20.7","gcamValue":0.5295},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.557375},{"gcamCode":"v21.1","gcamValue":5.47733502538071},{"gcamCode":"v26.1","gcamValue":0.664516129032258}]["https://images-o.jpimedia.uk/imagefetch/w_auto,f_auto,ar_3:2,q_auto:low,c_fill/if_h_lte_200,c_mfit,h_201/https://www.hemeltoday.co.uk/webimage/1.8933891.1558362573!/image/image.jpg","https://images-o.jpimedia.uk/imagefetch/w_auto,f_auto,ar_3:2,q_auto:low,c_fill/if_h_lte_200,c_mfit,h_201/https://www.hemeltoday.co.uk/webimage/1.8938341.1558611902!/image/image.jpg","https://images-o.jpimedia.uk/imagefetch/w_auto,f_auto,ar_3:2,q_auto:low,c_fill/if_h_lte_200,c_mfit,h_201/https://www.hemeltoday.co.uk/webimage/1.8938342.1558611903!/image/image.jpg"][""][""][][{"name":"Saints Row The Third","charOffset":116},{"name":"Full Package","charOffset":136},{"name":"Nintendo Switch","charOffset":178},{"name":"Row The Third","charOffset":284},{"name":"Saints Row","charOffset":398},{"name":"Grand Theft Auto","charOffset":521},{"name":"Third Street Saints","charOffset":759},{"name":"Row The Third","charOffset":1415},{"name":"Saints Row The Third","charOffset":1871},{"name":"Row The Third","charOffset":1986}][]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://www.hemeltoday.co.uk/lifestyle/console-corner-saints-row-the-third-nintendo-switch-review-1-8938343/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBcumberlandnewsnow.comhttps://www.cumberlandnewsnow.com/opinion/changing-times-drive-leadership-change-314856/[][]["USPEC_POLICY1","EPU_POLICY","EPU_POLICY_POLICY","TAX_FNCACT","TAX_FNCACT_LEADER","SLFID_DICTATORSHIP","ARMEDCONFLICT","EPU_CATS_NATIONAL_SECURITY","TAX_FNCACT_MINISTER","LEADER","TAX_FNCACT_PRIME_MINISTER","RESIGNATION","TAX_FNCACT_KING","TAX_FNCACT_MAN","ALLIANCE","ELECTION","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","GENERAL_HEALTH","MEDICAL","WB_1305_HEALTH_SERVICES_DELIVERY","WB_621_HEALTH_NUTRITION_AND_POPULATION","CRISISLEX_T04_INFRASTRUCTURE","ECON_SUBSIDIES","WB_1948_SUBSIDIES","WB_695_POVERTY","WB_706_EVIDENCE_BASED_POLICY","CRISISLEX_C07_SAFETY","EPU_CATS_ENTITLEMENT_PROGRAMS","RETIREMENT","UNEMPLOYMENT","WB_2745_JOB_QUALITY_AND_LABOR_MARKET_PERFORMANCE","WB_2670_JOBS","WB_2689_JOBS_DIAGNOSTICS","WB_2747_UNEMPLOYMENT","UNGP_JOB_OPPORTUNITIES_EMPLOYMENT","WB_1606_SCHOLARSHIPS","WB_1608_CASH_TRANSFERS","WB_1466_SOCIAL_ASSISTANCE","WB_1603_FEE_WAIVERS","WB_697_SOCIAL_PROTECTION_AND_LABOR","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITIES","WB_470_EDUCATION","UNGP_FORESTS_RIVERS_OCEANS","INFO_RUMOR","AUSTERITY","WB_1074_FISCAL_CONTRACTION","WB_1070_ECONOMIC_GROWTH_POLICY","WB_471_ECONOMIC_GROWTH","WB_1072_FISCAL_POLICY_AND_GROWTH","EPU_POLICY_BUDGET","USPEC_POLITICS_GENERAL1","TAX_POLITICAL_PARTY","TAX_POLITICAL_PARTY_CONSERVATIVE_PARTY","WB_2931_IRON","WB_507_ENERGY_AND_EXTRACTIVES","WB_895_MINING_SYSTEMS","WB_1699_METAL_ORE_MINING","TAX_FNCACT_LADY","WB_698_TRADE","ECON_UNIONS","WB_1668_LABOR_STANDARDS","WB_855_LABOR_MARKETS","WB_1670_TRADE_UNIONS","TAX_FNCACT_MINER","CLOSURE","ENV_COAL","ENV_MINING","WB_1467_EDUCATION_FOR_ALL","WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","CRISISLEX_CRISISLEXREC","PRIVATIZATION","WB_728_PUBLIC_SERVICE_DELIVERY","WB_1283_PRIVATIZATION","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_723_PUBLIC_ADMINISTRATION","WB_721_STATE_OWNED_ENTERPRISES","TAX_FNCACT_TENANTS","IDEOLOGY","TAX_FNCACT_DEPUTY","WB_135_TRANSPORT","SLFID_NATURAL_RESOURCES","WB_1078_DETERMINANTS_OF_GROWTH","WB_1079_COMMODITIES_AND_RESOURCES","LEGISLATION","EPU_POLICY_LAW","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_ENGINEER","AGRICULTURE"][{"theme":"TAX_FNCACT_DEPUTY","charOffset":4461},{"theme":"PRIVATIZATION","charOffset":3539},{"theme":"WB_728_PUBLIC_SERVICE_DELIVERY","charOffset":3539},{"theme":"WB_1283_PRIVATIZATION","charOffset":3539},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":3539},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":3539},{"theme":"WB_721_STATE_OWNED_ENTERPRISES","charOffset":3539},{"theme":"RETIREMENT","charOffset":2308},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":4707},{"theme":"EDUCATION","charOffset":2391},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITIES","charOffset":2391},{"theme":"ARMEDCONFLICT","charOffset":719},{"theme":"ARMEDCONFLICT","charOffset":1260},{"theme":"ARMEDCONFLICT","charOffset":1402},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":719},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":1260},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":1402},{"theme":"LEADER","charOffset":857},{"theme":"LEADER","charOffset":1201},{"theme":"LEADER","charOffset":1246},{"theme":"LEADER","charOffset":2167},{"theme":"TAX_FNCACT_PRIME_MINISTER","charOffset":857},{"theme":"TAX_FNCACT_PRIME_MINISTER","charOffset":1201},{"theme":"TAX_FNCACT_PRIME_MINISTER","charOffset":1246},{"theme":"TAX_FNCACT_PRIME_MINISTER","charOffset":2167},{"theme":"TAX_FNCACT_LADY","charOffset":3050},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2220},{"theme":"SLFID_NATURAL_RESOURCES","charOffset":4657},{"theme":"WB_1078_DETERMINANTS_OF_GROWTH","charOffset":4657},{"theme":"WB_1079_COMMODITIES_AND_RESOURCES","charOffset":4657},{"theme":"ECON_SUBSIDIES","charOffset":2020},{"theme":"WB_1948_SUBSIDIES","charOffset":2020},{"theme":"WB_695_POVERTY","charOffset":2020},{"theme":"WB_706_EVIDENCE_BASED_POLICY","charOffset":2020},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3480},{"theme":"TAX_FNCACT_ENGINEER","charOffset":5020},{"theme":"WB_470_EDUCATION","charOffset":2596},{"theme":"CRISISLEX_T04_INFRASTRUCTURE","charOffset":1967},{"theme":"AUSTERITY","charOffset":2748},{"theme":"WB_1074_FISCAL_CONTRACTION","charOffset":2748},{"theme":"WB_1070_ECONOMIC_GROWTH_POLICY","charOffset":2748},{"theme":"WB_471_ECONOMIC_GROWTH","charOffset":2748},{"theme":"WB_1072_FISCAL_POLICY_AND_GROWTH","charOffset":2748},{"theme":"TAX_FNCACT_LEADER","charOffset":355},{"theme":"TAX_FNCACT_LEADER","charOffset":629},{"theme":"TAX_FNCACT_LEADER","charOffset":1092},{"theme":"TAX_FNCACT_LEADER","charOffset":4468},{"theme":"ENV_MINING","charOffset":3408},{"theme":"AGRICULTURE","charOffset":5150},{"theme":"TAX_FNCACT_KING","charOffset":1154},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":2917},{"theme":"ECON_UNIONS","charOffset":3206},{"theme":"ECON_UNIONS","charOffset":3334},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2635},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":4657},{"theme":"ALLIANCE","charOffset":1429},{"theme":"IDEOLOGY","charOffset":4194},{"theme":"GENERAL_GOVERNMENT","charOffset":1572},{"theme":"GENERAL_GOVERNMENT","charOffset":2428},{"theme":"GENERAL_GOVERNMENT","charOffset":2677},{"theme":"GENERAL_GOVERNMENT","charOffset":3351},{"theme":"GENERAL_GOVERNMENT","charOffset":4334},{"theme":"GENERAL_GOVERNMENT","charOffset":4587},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1572},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2428},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2677},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":3351},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":4334},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":4587},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":2375},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":2455},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":2375},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":2455},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2375},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2455},{"theme":"WB_1603_FEE_WAIVERS","charOffset":2375},{"theme":"WB_1603_FEE_WAIVERS","charOffset":2455},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2375},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2455},{"theme":"EPU_CATS_ENTITLEMENT_PROGRAMS","charOffset":2220},{"theme":"SLFID_DICTATORSHIP","charOffset":622},{"theme":"TAX_FNCACT_TENANTS","charOffset":3953},{"theme":"USPEC_POLICY1","charOffset":145},{"theme":"USPEC_POLICY1","charOffset":2530},{"theme":"USPEC_POLICY1","charOffset":3522},{"theme":"EPU_POLICY_POLICY","charOffset":145},{"theme":"EPU_POLICY_POLICY","charOffset":2530},{"theme":"EPU_POLICY_POLICY","charOffset":3522},{"theme":"INFO_RUMOR","charOffset":2732},{"theme":"WB_135_TRANSPORT","charOffset":4637},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":3448},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":3448},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":3448},{"theme":"TAX_FNCACT_MINISTER","charOffset":857},{"theme":"TAX_FNCACT_MINISTER","charOffset":1201},{"theme":"TAX_FNCACT_MINISTER","charOffset":1246},{"theme":"TAX_FNCACT_MINISTER","charOffset":2167},{"theme":"TAX_FNCACT_MINER","charOffset":3262},{"theme":"GENERAL_HEALTH","charOffset":1677},{"theme":"MEDICAL","charOffset":1677},{"theme":"WB_1668_LABOR_STANDARDS","charOffset":3206},{"theme":"WB_855_LABOR_MARKETS","charOffset":3206},{"theme":"WB_1670_TRADE_UNIONS","charOffset":3206},{"theme":"UNEMPLOYMENT","charOffset":2334},{"theme":"WB_2745_JOB_QUALITY_AND_LABOR_MARKET_PERFORMANCE","charOffset":2334},{"theme":"WB_2670_JOBS","charOffset":2334},{"theme":"WB_2689_JOBS_DIAGNOSTICS","charOffset":2334},{"theme":"WB_2747_UNEMPLOYMENT","charOffset":2334},{"theme":"UNGP_JOB_OPPORTUNITIES_EMPLOYMENT","charOffset":2334},{"theme":"TAX_POLITICAL_PARTY_CONSERVATIVE_PARTY","charOffset":2917},{"theme":"WB_2931_IRON","charOffset":3045},{"theme":"WB_507_ENERGY_AND_EXTRACTIVES","charOffset":3045},{"theme":"WB_895_MINING_SYSTEMS","charOffset":3045},{"theme":"WB_1699_METAL_ORE_MINING","charOffset":3045},{"theme":"WB_698_TRADE","charOffset":3199},{"theme":"RESIGNATION","charOffset":1037},{"theme":"ELECTION","charOffset":1459},{"theme":"ELECTION","charOffset":2866},{"theme":"ELECTION","charOffset":4066},{"theme":"LEGISLATION","charOffset":4676},{"theme":"LEGISLATION","charOffset":4700},{"theme":"EPU_POLICY_LAW","charOffset":4676},{"theme":"EPU_POLICY_LAW","charOffset":4700},{"theme":"WB_1305_HEALTH_SERVICES_DELIVERY","charOffset":1685},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1685},{"theme":"TAX_FNCACT_MAN","charOffset":1347},{"theme":"ENV_COAL","charOffset":3402},{"theme":"CLOSURE","charOffset":3379},{"theme":"EPU_POLICY_BUDGET","charOffset":2755}][{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"COUNTRY","geoName":"Poland","countryCode":"PL","adm1Code":"PL","adm2Code":"","geoPoint":{"latitude":52,"longitude":20},"featureId":"PL"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Munich, Bayern, Germany","countryCode":"GM","adm1Code":"GM02","adm2Code":"","geoPoint":{"latitude":48.15,"longitude":11.5833},"featureId":"-1829149"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"}][{"location":{"geoType":"WORLDCITY","geoName":"Munich, Bayern, Germany","countryCode":"GM","adm1Code":"GM02","adm2Code":"16532","geoPoint":{"latitude":48.15,"longitude":11.5833},"featureId":"-1829149"},"charOffset":946},{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":3593},{"location":{"geoType":"COUNTRY","geoName":"Poland","countryCode":"PL","adm1Code":"PL","adm2Code":"","geoPoint":{"latitude":52,"longitude":20},"featureId":"PL"},"charOffset":794},{"location":{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},"charOffset":803},{"location":{"geoType":"COUNTRY","geoName":"Britons","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":818},{"location":{"geoType":"COUNTRY","geoName":"British","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":1311},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3712}]["neville chamberlain","king george","clement attlee","alan walter","lady maggie thatcher","lisa raitt","adolf hitler"][{"person":"Neville Chamberlain","charOffset":877},{"person":"King George","charOffset":1161},{"person":"Clement Attlee","charOffset":1594},{"person":"Alan Walter","charOffset":4985},{"person":"Lady Maggie Thatcher","charOffset":3066},{"person":"Lisa Raitt","charOffset":4479},{"person":"Adolf Hitler","charOffset":774}]["osgoode law school","national health service"][{"organisation":"Osgoode Law School","charOffset":4707},{"organisation":"National Health Service","charOffset":1685}]{"tone":-1.4606742,"positiveScore":3.483146,"negativeScore":4.94382,"polarity":8.426967,"activityReferenceDensity":23.370787,"selfGroupReferenceDensity":1.011236,"wordCount":827}[{"dateResolution":1,"month":0,"day":0,"year":1940,"charOffset":810},{"dateResolution":1,"month":0,"day":0,"year":1945,"charOffset":1409},{"dateResolution":1,"month":0,"day":0,"year":1951,"charOffset":2662},{"dateResolution":2,"month":10,"day":0,"year":1951,"charOffset":2892},{"dateResolution":1,"month":0,"day":0,"year":1979,"charOffset":3038},{"dateResolution":1,"month":0,"day":0,"year":1984,"charOffset":3304},{"dateResolution":1,"month":0,"day":0,"year":1987,"charOffset":3654}][{"gcamCode":"wc","gcamValue":827},{"gcamCode":"c1.3","gcamValue":2},{"gcamCode":"c12.1","gcamValue":68},{"gcamCode":"c12.10","gcamValue":117},{"gcamCode":"c12.12","gcamValue":32},{"gcamCode":"c12.13","gcamValue":41},{"gcamCode":"c12.14","gcamValue":49},{"gcamCode":"c12.3","gcamValue":30},{"gcamCode":"c12.4","gcamValue":9},{"gcamCode":"c12.5","gcamValue":32},{"gcamCode":"c12.7","gcamValue":50},{"gcamCode":"c12.8","gcamValue":48},{"gcamCode":"c12.9","gcamValue":74},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c14.1","gcamValue":55},{"gcamCode":"c14.10","gcamValue":41},{"gcamCode":"c14.11","gcamValue":104},{"gcamCode":"c14.2","gcamValue":56},{"gcamCode":"c14.3","gcamValue":53},{"gcamCode":"c14.4","gcamValue":8},{"gcamCode":"c14.5","gcamValue":97},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":20},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":12},{"gcamCode":"c15.10","gcamValue":4},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.107","gcamValue":1},{"gcamCode":"c15.112","gcamValue":4},{"gcamCode":"c15.115","gcamValue":1},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.122","gcamValue":1},{"gcamCode":"c15.123","gcamValue":3},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.131","gcamValue":2},{"gcamCode":"c15.132","gcamValue":2},{"gcamCode":"c15.135","gcamValue":1},{"gcamCode":"c15.137","gcamValue":3},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.152","gcamValue":3},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.159","gcamValue":2},{"gcamCode":"c15.160","gcamValue":1},{"gcamCode":"c15.166","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.171","gcamValue":3},{"gcamCode":"c15.172","gcamValue":2},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.185","gcamValue":1},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.208","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.22","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.229","gcamValue":4},{"gcamCode":"c15.23","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.236","gcamValue":1},{"gcamCode":"c15.24","gcamValue":2},{"gcamCode":"c15.241","gcamValue":3},{"gcamCode":"c15.242","gcamValue":1},{"gcamCode":"c15.245","gcamValue":1},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.255","gcamValue":3},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.257","gcamValue":2},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.27","gcamValue":4},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.31","gcamValue":1},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.4","gcamValue":3},{"gcamCode":"c15.42","gcamValue":4},{"gcamCode":"c15.45","gcamValue":1},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.55","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.59","gcamValue":1},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":2},{"gcamCode":"c15.68","gcamValue":1},{"gcamCode":"c15.69","gcamValue":3},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.9","gcamValue":2},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":22},{"gcamCode":"c16.101","gcamValue":11},{"gcamCode":"c16.102","gcamValue":3},{"gcamCode":"c16.103","gcamValue":3},{"gcamCode":"c16.105","gcamValue":7},{"gcamCode":"c16.106","gcamValue":48},{"gcamCode":"c16.109","gcamValue":58},{"gcamCode":"c16.11","gcamValue":4},{"gcamCode":"c16.110","gcamValue":151},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":55},{"gcamCode":"c16.115","gcamValue":8},{"gcamCode":"c16.116","gcamValue":27},{"gcamCode":"c16.117","gcamValue":25},{"gcamCode":"c16.118","gcamValue":58},{"gcamCode":"c16.119","gcamValue":1},{"gcamCode":"c16.12","gcamValue":82},{"gcamCode":"c16.120","gcamValue":40},{"gcamCode":"c16.121","gcamValue":89},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":8},{"gcamCode":"c16.125","gcamValue":66},{"gcamCode":"c16.126","gcamValue":54},{"gcamCode":"c16.127","gcamValue":66},{"gcamCode":"c16.128","gcamValue":12},{"gcamCode":"c16.129","gcamValue":111},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":40},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":103},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.138","gcamValue":21},{"gcamCode":"c16.139","gcamValue":38},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":24},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":78},{"gcamCode":"c16.146","gcamValue":59},{"gcamCode":"c16.147","gcamValue":5},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":36},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":17},{"gcamCode":"c16.158","gcamValue":6},{"gcamCode":"c16.159","gcamValue":85},{"gcamCode":"c16.16","gcamValue":21},{"gcamCode":"c16.161","gcamValue":72},{"gcamCode":"c16.162","gcamValue":27},{"gcamCode":"c16.163","gcamValue":61},{"gcamCode":"c16.164","gcamValue":11},{"gcamCode":"c16.165","gcamValue":8},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":7},{"gcamCode":"c16.19","gcamValue":15},{"gcamCode":"c16.2","gcamValue":53},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":7},{"gcamCode":"c16.22","gcamValue":16},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":5},{"gcamCode":"c16.26","gcamValue":120},{"gcamCode":"c16.27","gcamValue":8},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":14},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":61},{"gcamCode":"c16.32","gcamValue":6},{"gcamCode":"c16.33","gcamValue":73},{"gcamCode":"c16.34","gcamValue":3},{"gcamCode":"c16.35","gcamValue":47},{"gcamCode":"c16.36","gcamValue":8},{"gcamCode":"c16.37","gcamValue":80},{"gcamCode":"c16.38","gcamValue":25},{"gcamCode":"c16.4","gcamValue":75},{"gcamCode":"c16.41","gcamValue":43},{"gcamCode":"c16.43","gcamValue":5},{"gcamCode":"c16.45","gcamValue":39},{"gcamCode":"c16.46","gcamValue":14},{"gcamCode":"c16.47","gcamValue":150},{"gcamCode":"c16.48","gcamValue":14},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":5},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.51","gcamValue":8},{"gcamCode":"c16.52","gcamValue":57},{"gcamCode":"c16.53","gcamValue":7},{"gcamCode":"c16.54","gcamValue":3},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":32},{"gcamCode":"c16.57","gcamValue":460},{"gcamCode":"c16.58","gcamValue":70},{"gcamCode":"c16.6","gcamValue":96},{"gcamCode":"c16.60","gcamValue":16},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":40},{"gcamCode":"c16.63","gcamValue":11},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":19},{"gcamCode":"c16.66","gcamValue":16},{"gcamCode":"c16.68","gcamValue":36},{"gcamCode":"c16.69","gcamValue":41},{"gcamCode":"c16.7","gcamValue":30},{"gcamCode":"c16.70","gcamValue":41},{"gcamCode":"c16.71","gcamValue":10},{"gcamCode":"c16.72","gcamValue":6},{"gcamCode":"c16.73","gcamValue":5},{"gcamCode":"c16.74","gcamValue":15},{"gcamCode":"c16.75","gcamValue":41},{"gcamCode":"c16.76","gcamValue":7},{"gcamCode":"c16.77","gcamValue":10},{"gcamCode":"c16.78","gcamValue":30},{"gcamCode":"c16.8","gcamValue":3},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":53},{"gcamCode":"c16.85","gcamValue":7},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":85},{"gcamCode":"c16.88","gcamValue":103},{"gcamCode":"c16.89","gcamValue":25},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":37},{"gcamCode":"c16.91","gcamValue":33},{"gcamCode":"c16.92","gcamValue":53},{"gcamCode":"c16.93","gcamValue":8},{"gcamCode":"c16.94","gcamValue":75},{"gcamCode":"c16.95","gcamValue":75},{"gcamCode":"c16.96","gcamValue":27},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":75},{"gcamCode":"c16.99","gcamValue":6},{"gcamCode":"c17.1","gcamValue":241},{"gcamCode":"c17.10","gcamValue":116},{"gcamCode":"c17.11","gcamValue":112},{"gcamCode":"c17.12","gcamValue":32},{"gcamCode":"c17.13","gcamValue":12},{"gcamCode":"c17.14","gcamValue":5},{"gcamCode":"c17.15","gcamValue":74},{"gcamCode":"c17.16","gcamValue":24},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":12},{"gcamCode":"c17.19","gcamValue":65},{"gcamCode":"c17.2","gcamValue":18},{"gcamCode":"c17.20","gcamValue":10},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":22},{"gcamCode":"c17.23","gcamValue":10},{"gcamCode":"c17.24","gcamValue":94},{"gcamCode":"c17.25","gcamValue":12},{"gcamCode":"c17.27","gcamValue":108},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":36},{"gcamCode":"c17.3","gcamValue":8},{"gcamCode":"c17.30","gcamValue":14},{"gcamCode":"c17.31","gcamValue":55},{"gcamCode":"c17.32","gcamValue":37},{"gcamCode":"c17.33","gcamValue":39},{"gcamCode":"c17.34","gcamValue":23},{"gcamCode":"c17.35","gcamValue":18},{"gcamCode":"c17.36","gcamValue":41},{"gcamCode":"c17.37","gcamValue":27},{"gcamCode":"c17.38","gcamValue":13},{"gcamCode":"c17.39","gcamValue":30},{"gcamCode":"c17.4","gcamValue":202},{"gcamCode":"c17.40","gcamValue":18},{"gcamCode":"c17.41","gcamValue":39},{"gcamCode":"c17.42","gcamValue":62},{"gcamCode":"c17.43","gcamValue":42},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":199},{"gcamCode":"c17.6","gcamValue":9},{"gcamCode":"c17.7","gcamValue":124},{"gcamCode":"c17.8","gcamValue":96},{"gcamCode":"c17.9","gcamValue":15},{"gcamCode":"c18.10","gcamValue":1},{"gcamCode":"c18.122","gcamValue":1},{"gcamCode":"c18.139","gcamValue":4},{"gcamCode":"c18.140","gcamValue":3},{"gcamCode":"c18.143","gcamValue":1},{"gcamCode":"c18.147","gcamValue":3},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.171","gcamValue":1},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.187","gcamValue":1},{"gcamCode":"c18.193","gcamValue":19},{"gcamCode":"c18.195","gcamValue":1},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.201","gcamValue":1},{"gcamCode":"c18.209","gcamValue":1},{"gcamCode":"c18.21","gcamValue":2},{"gcamCode":"c18.221","gcamValue":1},{"gcamCode":"c18.231","gcamValue":1},{"gcamCode":"c18.236","gcamValue":1},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":17},{"gcamCode":"c18.35","gcamValue":12},{"gcamCode":"c18.52","gcamValue":1},{"gcamCode":"c18.53","gcamValue":3},{"gcamCode":"c18.76","gcamValue":3},{"gcamCode":"c18.90","gcamValue":1},{"gcamCode":"c18.96","gcamValue":1},{"gcamCode":"c18.99","gcamValue":1},{"gcamCode":"c2.1","gcamValue":26},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":12},{"gcamCode":"c2.102","gcamValue":29},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":138},{"gcamCode":"c2.106","gcamValue":5},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":7},{"gcamCode":"c2.109","gcamValue":3},{"gcamCode":"c2.11","gcamValue":14},{"gcamCode":"c2.110","gcamValue":6},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":36},{"gcamCode":"c2.115","gcamValue":9},{"gcamCode":"c2.116","gcamValue":19},{"gcamCode":"c2.117","gcamValue":3},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":230},{"gcamCode":"c2.12","gcamValue":43},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":63},{"gcamCode":"c2.122","gcamValue":21},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":8},{"gcamCode":"c2.125","gcamValue":46},{"gcamCode":"c2.126","gcamValue":43},{"gcamCode":"c2.127","gcamValue":77},{"gcamCode":"c2.128","gcamValue":15},{"gcamCode":"c2.129","gcamValue":67},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":5},{"gcamCode":"c2.132","gcamValue":15},{"gcamCode":"c2.133","gcamValue":7},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":13},{"gcamCode":"c2.136","gcamValue":5},{"gcamCode":"c2.138","gcamValue":6},{"gcamCode":"c2.139","gcamValue":11},{"gcamCode":"c2.14","gcamValue":64},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":26},{"gcamCode":"c2.142","gcamValue":8},{"gcamCode":"c2.143","gcamValue":94},{"gcamCode":"c2.144","gcamValue":17},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":13},{"gcamCode":"c2.147","gcamValue":137},{"gcamCode":"c2.148","gcamValue":83},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":36},{"gcamCode":"c2.150","gcamValue":9},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":17},{"gcamCode":"c2.154","gcamValue":43},{"gcamCode":"c2.155","gcamValue":100},{"gcamCode":"c2.156","gcamValue":54},{"gcamCode":"c2.157","gcamValue":84},{"gcamCode":"c2.158","gcamValue":82},{"gcamCode":"c2.159","gcamValue":19},{"gcamCode":"c2.160","gcamValue":42},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":7},{"gcamCode":"c2.163","gcamValue":6},{"gcamCode":"c2.165","gcamValue":4},{"gcamCode":"c2.166","gcamValue":14},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":7},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":9},{"gcamCode":"c2.172","gcamValue":7},{"gcamCode":"c2.173","gcamValue":7},{"gcamCode":"c2.174","gcamValue":6},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":8},{"gcamCode":"c2.177","gcamValue":63},{"gcamCode":"c2.179","gcamValue":21},{"gcamCode":"c2.18","gcamValue":37},{"gcamCode":"c2.180","gcamValue":38},{"gcamCode":"c2.181","gcamValue":45},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":48},{"gcamCode":"c2.185","gcamValue":179},{"gcamCode":"c2.186","gcamValue":13},{"gcamCode":"c2.187","gcamValue":57},{"gcamCode":"c2.188","gcamValue":10},{"gcamCode":"c2.189","gcamValue":10},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":7},{"gcamCode":"c2.192","gcamValue":19},{"gcamCode":"c2.193","gcamValue":62},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":100},{"gcamCode":"c2.196","gcamValue":13},{"gcamCode":"c2.197","gcamValue":11},{"gcamCode":"c2.198","gcamValue":87},{"gcamCode":"c2.199","gcamValue":16},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.203","gcamValue":36},{"gcamCode":"c2.204","gcamValue":73},{"gcamCode":"c2.205","gcamValue":17},{"gcamCode":"c2.206","gcamValue":15},{"gcamCode":"c2.207","gcamValue":3},{"gcamCode":"c2.209","gcamValue":19},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":86},{"gcamCode":"c2.211","gcamValue":5},{"gcamCode":"c2.212","gcamValue":3},{"gcamCode":"c2.213","gcamValue":17},{"gcamCode":"c2.214","gcamValue":41},{"gcamCode":"c2.215","gcamValue":6},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":12},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.220","gcamValue":22},{"gcamCode":"c2.221","gcamValue":15},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":19},{"gcamCode":"c2.224","gcamValue":4},{"gcamCode":"c2.225","gcamValue":23},{"gcamCode":"c2.226","gcamValue":29},{"gcamCode":"c2.227","gcamValue":7},{"gcamCode":"c2.23","gcamValue":29},{"gcamCode":"c2.25","gcamValue":50},{"gcamCode":"c2.26","gcamValue":34},{"gcamCode":"c2.27","gcamValue":34},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.30","gcamValue":17},{"gcamCode":"c2.31","gcamValue":43},{"gcamCode":"c2.32","gcamValue":8},{"gcamCode":"c2.33","gcamValue":8},{"gcamCode":"c2.34","gcamValue":37},{"gcamCode":"c2.35","gcamValue":33},{"gcamCode":"c2.36","gcamValue":26},{"gcamCode":"c2.37","gcamValue":30},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":130},{"gcamCode":"c2.4","gcamValue":4},{"gcamCode":"c2.40","gcamValue":8},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":60},{"gcamCode":"c2.45","gcamValue":37},{"gcamCode":"c2.46","gcamValue":82},{"gcamCode":"c2.47","gcamValue":9},{"gcamCode":"c2.48","gcamValue":11},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":52},{"gcamCode":"c2.54","gcamValue":55},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":8},{"gcamCode":"c2.57","gcamValue":15},{"gcamCode":"c2.58","gcamValue":22},{"gcamCode":"c2.59","gcamValue":9},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.60","gcamValue":3},{"gcamCode":"c2.61","gcamValue":11},{"gcamCode":"c2.62","gcamValue":41},{"gcamCode":"c2.64","gcamValue":12},{"gcamCode":"c2.65","gcamValue":6},{"gcamCode":"c2.66","gcamValue":5},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.69","gcamValue":5},{"gcamCode":"c2.70","gcamValue":5},{"gcamCode":"c2.71","gcamValue":6},{"gcamCode":"c2.73","gcamValue":14},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":155},{"gcamCode":"c2.76","gcamValue":563},{"gcamCode":"c2.77","gcamValue":89},{"gcamCode":"c2.78","gcamValue":130},{"gcamCode":"c2.79","gcamValue":28},{"gcamCode":"c2.80","gcamValue":105},{"gcamCode":"c2.81","gcamValue":11},{"gcamCode":"c2.82","gcamValue":29},{"gcamCode":"c2.83","gcamValue":16},{"gcamCode":"c2.84","gcamValue":9},{"gcamCode":"c2.85","gcamValue":5},{"gcamCode":"c2.86","gcamValue":22},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":32},{"gcamCode":"c2.89","gcamValue":32},{"gcamCode":"c2.9","gcamValue":7},{"gcamCode":"c2.90","gcamValue":12},{"gcamCode":"c2.91","gcamValue":3},{"gcamCode":"c2.92","gcamValue":3},{"gcamCode":"c2.93","gcamValue":26},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":159},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":8},{"gcamCode":"c2.98","gcamValue":32},{"gcamCode":"c2.99","gcamValue":11},{"gcamCode":"c25.1","gcamValue":5},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c25.6","gcamValue":1},{"gcamCode":"c25.7","gcamValue":11},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":47},{"gcamCode":"c3.2","gcamValue":64},{"gcamCode":"c35.1","gcamValue":15},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":14},{"gcamCode":"c35.18","gcamValue":5},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":36},{"gcamCode":"c35.22","gcamValue":3},{"gcamCode":"c35.24","gcamValue":6},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.3","gcamValue":5},{"gcamCode":"c35.30","gcamValue":2},{"gcamCode":"c35.31","gcamValue":47},{"gcamCode":"c35.32","gcamValue":23},{"gcamCode":"c35.33","gcamValue":53},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":16},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":21},{"gcamCode":"c39.20","gcamValue":9},{"gcamCode":"c39.28","gcamValue":6},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":36},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":11},{"gcamCode":"c39.37","gcamValue":28},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":15},{"gcamCode":"c39.4","gcamValue":35},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":7},{"gcamCode":"c39.5","gcamValue":6},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.7","gcamValue":3},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.1","gcamValue":5},{"gcamCode":"c4.10","gcamValue":1},{"gcamCode":"c4.12","gcamValue":4},{"gcamCode":"c4.15","gcamValue":5},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.17","gcamValue":3},{"gcamCode":"c4.2","gcamValue":4},{"gcamCode":"c4.22","gcamValue":3},{"gcamCode":"c4.23","gcamValue":37},{"gcamCode":"c4.3","gcamValue":4},{"gcamCode":"c4.4","gcamValue":1},{"gcamCode":"c4.6","gcamValue":3},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.7","gcamValue":4},{"gcamCode":"c41.1","gcamValue":53},{"gcamCode":"c5.10","gcamValue":70},{"gcamCode":"c5.11","gcamValue":28},{"gcamCode":"c5.12","gcamValue":140},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":8},{"gcamCode":"c5.16","gcamValue":5},{"gcamCode":"c5.17","gcamValue":12},{"gcamCode":"c5.18","gcamValue":4},{"gcamCode":"c5.2","gcamValue":4},{"gcamCode":"c5.20","gcamValue":6},{"gcamCode":"c5.21","gcamValue":12},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":23},{"gcamCode":"c5.24","gcamValue":11},{"gcamCode":"c5.25","gcamValue":8},{"gcamCode":"c5.26","gcamValue":18},{"gcamCode":"c5.27","gcamValue":8},{"gcamCode":"c5.28","gcamValue":21},{"gcamCode":"c5.29","gcamValue":10},{"gcamCode":"c5.3","gcamValue":6},{"gcamCode":"c5.30","gcamValue":96},{"gcamCode":"c5.31","gcamValue":9},{"gcamCode":"c5.32","gcamValue":7},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":22},{"gcamCode":"c5.35","gcamValue":36},{"gcamCode":"c5.36","gcamValue":59},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.39","gcamValue":4},{"gcamCode":"c5.4","gcamValue":10},{"gcamCode":"c5.40","gcamValue":52},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":18},{"gcamCode":"c5.44","gcamValue":7},{"gcamCode":"c5.45","gcamValue":15},{"gcamCode":"c5.46","gcamValue":133},{"gcamCode":"c5.47","gcamValue":30},{"gcamCode":"c5.48","gcamValue":5},{"gcamCode":"c5.49","gcamValue":86},{"gcamCode":"c5.5","gcamValue":9},{"gcamCode":"c5.50","gcamValue":85},{"gcamCode":"c5.51","gcamValue":69},{"gcamCode":"c5.52","gcamValue":108},{"gcamCode":"c5.53","gcamValue":85},{"gcamCode":"c5.54","gcamValue":31},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":13},{"gcamCode":"c5.58","gcamValue":8},{"gcamCode":"c5.59","gcamValue":10},{"gcamCode":"c5.6","gcamValue":45},{"gcamCode":"c5.60","gcamValue":34},{"gcamCode":"c5.61","gcamValue":65},{"gcamCode":"c5.62","gcamValue":394},{"gcamCode":"c5.7","gcamValue":35},{"gcamCode":"c5.8","gcamValue":52},{"gcamCode":"c5.9","gcamValue":39},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":8},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":16},{"gcamCode":"c6.5","gcamValue":13},{"gcamCode":"c6.6","gcamValue":8},{"gcamCode":"c7.1","gcamValue":55},{"gcamCode":"c7.2","gcamValue":65},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.10","gcamValue":6},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.16","gcamValue":3},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":10},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":24},{"gcamCode":"c8.25","gcamValue":5},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.33","gcamValue":2},{"gcamCode":"c8.36","gcamValue":7},{"gcamCode":"c8.37","gcamValue":13},{"gcamCode":"c8.38","gcamValue":25},{"gcamCode":"c8.39","gcamValue":7},{"gcamCode":"c8.4","gcamValue":40},{"gcamCode":"c8.40","gcamValue":4},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":22},{"gcamCode":"c8.43","gcamValue":30},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":42},{"gcamCode":"c9.10","gcamValue":14},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1002","gcamValue":2},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1004","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":2},{"gcamCode":"c9.1006","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":7},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":6},{"gcamCode":"c9.1021","gcamValue":3},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.103","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":6},{"gcamCode":"c9.1039","gcamValue":4},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":6},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.108","gcamValue":3},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":16},{"gcamCode":"c9.113","gcamValue":4},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":9},{"gcamCode":"c9.117","gcamValue":4},{"gcamCode":"c9.118","gcamValue":7},{"gcamCode":"c9.119","gcamValue":9},{"gcamCode":"c9.12","gcamValue":3},{"gcamCode":"c9.120","gcamValue":3},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":7},{"gcamCode":"c9.125","gcamValue":10},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":51},{"gcamCode":"c9.129","gcamValue":3},{"gcamCode":"c9.130","gcamValue":12},{"gcamCode":"c9.131","gcamValue":4},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":8},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":9},{"gcamCode":"c9.142","gcamValue":8},{"gcamCode":"c9.143","gcamValue":3},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":10},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":15},{"gcamCode":"c9.159","gcamValue":5},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":5},{"gcamCode":"c9.161","gcamValue":6},{"gcamCode":"c9.162","gcamValue":10},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":8},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":9},{"gcamCode":"c9.169","gcamValue":6},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":5},{"gcamCode":"c9.175","gcamValue":5},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":9},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":3},{"gcamCode":"c9.182","gcamValue":6},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":12},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":5},{"gcamCode":"c9.191","gcamValue":3},{"gcamCode":"c9.192","gcamValue":4},{"gcamCode":"c9.193","gcamValue":7},{"gcamCode":"c9.194","gcamValue":3},{"gcamCode":"c9.195","gcamValue":7},{"gcamCode":"c9.196","gcamValue":3},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":12},{"gcamCode":"c9.199","gcamValue":2},{"gcamCode":"c9.2","gcamValue":4},{"gcamCode":"c9.20","gcamValue":3},{"gcamCode":"c9.200","gcamValue":10},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.202","gcamValue":4},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":5},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.212","gcamValue":6},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":6},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":11},{"gcamCode":"c9.234","gcamValue":2},{"gcamCode":"c9.235","gcamValue":8},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.238","gcamValue":2},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":4},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":3},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.253","gcamValue":3},{"gcamCode":"c9.256","gcamValue":3},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.262","gcamValue":4},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.273","gcamValue":2},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":4},{"gcamCode":"c9.276","gcamValue":10},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":4},{"gcamCode":"c9.28","gcamValue":5},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.281","gcamValue":3},{"gcamCode":"c9.282","gcamValue":5},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.288","gcamValue":5},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":3},{"gcamCode":"c9.291","gcamValue":6},{"gcamCode":"c9.292","gcamValue":3},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":39},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":4},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.32","gcamValue":5},{"gcamCode":"c9.322","gcamValue":3},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":26},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.333","gcamValue":2},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.337","gcamValue":3},{"gcamCode":"c9.338","gcamValue":2},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":12},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.35","gcamValue":8},{"gcamCode":"c9.351","gcamValue":3},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.357","gcamValue":1},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.359","gcamValue":2},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.37","gcamValue":2},{"gcamCode":"c9.370","gcamValue":3},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.374","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":3},{"gcamCode":"c9.383","gcamValue":15},{"gcamCode":"c9.384","gcamValue":11},{"gcamCode":"c9.385","gcamValue":5},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.387","gcamValue":3},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":22},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.391","gcamValue":2},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.398","gcamValue":2},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.403","gcamValue":2},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.410","gcamValue":1},{"gcamCode":"c9.413","gcamValue":2},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.422","gcamValue":2},{"gcamCode":"c9.43","gcamValue":1},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.432","gcamValue":3},{"gcamCode":"c9.433","gcamValue":3},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":4},{"gcamCode":"c9.44","gcamValue":10},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.446","gcamValue":3},{"gcamCode":"c9.447","gcamValue":3},{"gcamCode":"c9.449","gcamValue":1},{"gcamCode":"c9.45","gcamValue":3},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.456","gcamValue":2},{"gcamCode":"c9.458","gcamValue":2},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":6},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":4},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.465","gcamValue":2},{"gcamCode":"c9.466","gcamValue":6},{"gcamCode":"c9.467","gcamValue":3},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":9},{"gcamCode":"c9.48","gcamValue":12},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.488","gcamValue":5},{"gcamCode":"c9.489","gcamValue":5},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":6},{"gcamCode":"c9.492","gcamValue":3},{"gcamCode":"c9.494","gcamValue":5},{"gcamCode":"c9.496","gcamValue":5},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":11},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":4},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.507","gcamValue":8},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":17},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":9},{"gcamCode":"c9.517","gcamValue":9},{"gcamCode":"c9.518","gcamValue":3},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":13},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":4},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.532","gcamValue":1},{"gcamCode":"c9.533","gcamValue":3},{"gcamCode":"c9.534","gcamValue":2},{"gcamCode":"c9.537","gcamValue":5},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":4},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":8},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":5},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":4},{"gcamCode":"c9.559","gcamValue":3},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":6},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":2},{"gcamCode":"c9.567","gcamValue":3},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":9},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.574","gcamValue":3},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":41},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.581","gcamValue":12},{"gcamCode":"c9.583","gcamValue":3},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":3},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.589","gcamValue":4},{"gcamCode":"c9.59","gcamValue":2},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":4},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":3},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":3},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.604","gcamValue":2},{"gcamCode":"c9.605","gcamValue":3},{"gcamCode":"c9.61","gcamValue":5},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.619","gcamValue":6},{"gcamCode":"c9.62","gcamValue":3},{"gcamCode":"c9.620","gcamValue":4},{"gcamCode":"c9.621","gcamValue":2},{"gcamCode":"c9.624","gcamValue":4},{"gcamCode":"c9.625","gcamValue":4},{"gcamCode":"c9.626","gcamValue":5},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.629","gcamValue":7},{"gcamCode":"c9.630","gcamValue":3},{"gcamCode":"c9.631","gcamValue":3},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":6},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.639","gcamValue":2},{"gcamCode":"c9.64","gcamValue":5},{"gcamCode":"c9.640","gcamValue":9},{"gcamCode":"c9.642","gcamValue":15},{"gcamCode":"c9.645","gcamValue":2},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":3},{"gcamCode":"c9.648","gcamValue":11},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":53},{"gcamCode":"c9.654","gcamValue":11},{"gcamCode":"c9.655","gcamValue":4},{"gcamCode":"c9.657","gcamValue":1},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":10},{"gcamCode":"c9.660","gcamValue":13},{"gcamCode":"c9.661","gcamValue":4},{"gcamCode":"c9.662","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":4},{"gcamCode":"c9.665","gcamValue":3},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":8},{"gcamCode":"c9.669","gcamValue":11},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":16},{"gcamCode":"c9.671","gcamValue":4},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":4},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":14},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.679","gcamValue":7},{"gcamCode":"c9.68","gcamValue":4},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":8},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":12},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":3},{"gcamCode":"c9.692","gcamValue":6},{"gcamCode":"c9.694","gcamValue":4},{"gcamCode":"c9.697","gcamValue":3},{"gcamCode":"c9.698","gcamValue":13},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":9},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":31},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.704","gcamValue":10},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":8},{"gcamCode":"c9.71","gcamValue":8},{"gcamCode":"c9.710","gcamValue":11},{"gcamCode":"c9.713","gcamValue":6},{"gcamCode":"c9.714","gcamValue":6},{"gcamCode":"c9.716","gcamValue":5},{"gcamCode":"c9.718","gcamValue":7},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":15},{"gcamCode":"c9.721","gcamValue":11},{"gcamCode":"c9.722","gcamValue":17},{"gcamCode":"c9.723","gcamValue":3},{"gcamCode":"c9.724","gcamValue":10},{"gcamCode":"c9.725","gcamValue":5},{"gcamCode":"c9.726","gcamValue":52},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":6},{"gcamCode":"c9.730","gcamValue":38},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":4},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":6},{"gcamCode":"c9.736","gcamValue":11},{"gcamCode":"c9.737","gcamValue":4},{"gcamCode":"c9.739","gcamValue":3},{"gcamCode":"c9.740","gcamValue":14},{"gcamCode":"c9.741","gcamValue":11},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.744","gcamValue":4},{"gcamCode":"c9.745","gcamValue":4},{"gcamCode":"c9.747","gcamValue":7},{"gcamCode":"c9.748","gcamValue":23},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.75","gcamValue":6},{"gcamCode":"c9.750","gcamValue":5},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":2},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":6},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":7},{"gcamCode":"c9.760","gcamValue":6},{"gcamCode":"c9.762","gcamValue":40},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":11},{"gcamCode":"c9.766","gcamValue":29},{"gcamCode":"c9.767","gcamValue":58},{"gcamCode":"c9.769","gcamValue":5},{"gcamCode":"c9.770","gcamValue":6},{"gcamCode":"c9.771","gcamValue":7},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.773","gcamValue":2},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":9},{"gcamCode":"c9.776","gcamValue":5},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":8},{"gcamCode":"c9.779","gcamValue":3},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.787","gcamValue":1},{"gcamCode":"c9.788","gcamValue":3},{"gcamCode":"c9.789","gcamValue":6},{"gcamCode":"c9.79","gcamValue":6},{"gcamCode":"c9.790","gcamValue":5},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.798","gcamValue":5},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":5},{"gcamCode":"c9.80","gcamValue":4},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":2},{"gcamCode":"c9.804","gcamValue":3},{"gcamCode":"c9.806","gcamValue":6},{"gcamCode":"c9.807","gcamValue":3},{"gcamCode":"c9.808","gcamValue":8},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":12},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":5},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":4},{"gcamCode":"c9.824","gcamValue":2},{"gcamCode":"c9.826","gcamValue":5},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":13},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":3},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.837","gcamValue":6},{"gcamCode":"c9.838","gcamValue":5},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":4},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.851","gcamValue":2},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.855","gcamValue":2},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":8},{"gcamCode":"c9.86","gcamValue":14},{"gcamCode":"c9.860","gcamValue":12},{"gcamCode":"c9.861","gcamValue":10},{"gcamCode":"c9.862","gcamValue":4},{"gcamCode":"c9.863","gcamValue":12},{"gcamCode":"c9.864","gcamValue":41},{"gcamCode":"c9.865","gcamValue":10},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":41},{"gcamCode":"c9.87","gcamValue":3},{"gcamCode":"c9.871","gcamValue":2},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.874","gcamValue":8},{"gcamCode":"c9.877","gcamValue":6},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.879","gcamValue":2},{"gcamCode":"c9.88","gcamValue":8},{"gcamCode":"c9.882","gcamValue":11},{"gcamCode":"c9.883","gcamValue":6},{"gcamCode":"c9.884","gcamValue":6},{"gcamCode":"c9.890","gcamValue":7},{"gcamCode":"c9.894","gcamValue":1},{"gcamCode":"c9.896","gcamValue":9},{"gcamCode":"c9.897","gcamValue":4},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":11},{"gcamCode":"c9.90","gcamValue":6},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":8},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.910","gcamValue":2},{"gcamCode":"c9.911","gcamValue":9},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.917","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.92","gcamValue":1},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":10},{"gcamCode":"c9.924","gcamValue":3},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":14},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":2},{"gcamCode":"c9.930","gcamValue":4},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":5},{"gcamCode":"c9.935","gcamValue":22},{"gcamCode":"c9.938","gcamValue":10},{"gcamCode":"c9.939","gcamValue":2},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.942","gcamValue":2},{"gcamCode":"c9.945","gcamValue":5},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.947","gcamValue":1},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":4},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":6},{"gcamCode":"c9.954","gcamValue":2},{"gcamCode":"c9.955","gcamValue":10},{"gcamCode":"c9.96","gcamValue":10},{"gcamCode":"c9.962","gcamValue":7},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.964","gcamValue":8},{"gcamCode":"c9.965","gcamValue":4},{"gcamCode":"c9.966","gcamValue":10},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.969","gcamValue":5},{"gcamCode":"c9.972","gcamValue":8},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.978","gcamValue":11},{"gcamCode":"c9.979","gcamValue":1},{"gcamCode":"c9.98","gcamValue":4},{"gcamCode":"c9.980","gcamValue":5},{"gcamCode":"c9.981","gcamValue":7},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":6},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":4},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":3},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.995","gcamValue":4},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.270222907539084},{"gcamCode":"v10.2","gcamValue":0.251221577199256},{"gcamCode":"v11.1","gcamValue":0.0518289808153478},{"gcamCode":"v19.1","gcamValue":5.65602150537634},{"gcamCode":"v19.2","gcamValue":5.11483870967742},{"gcamCode":"v19.3","gcamValue":5.27505376344086},{"gcamCode":"v19.4","gcamValue":5.58322580645161},{"gcamCode":"v19.5","gcamValue":5.08623655913978},{"gcamCode":"v19.6","gcamValue":5.31075268817204},{"gcamCode":"v19.7","gcamValue":5.74258064516129},{"gcamCode":"v19.8","gcamValue":5.16967741935484},{"gcamCode":"v19.9","gcamValue":5.28},{"gcamCode":"v20.1","gcamValue":0.446166666666667},{"gcamCode":"v20.10","gcamValue":-0.626},{"gcamCode":"v20.11","gcamValue":0.59624},{"gcamCode":"v20.12","gcamValue":-0.605},{"gcamCode":"v20.13","gcamValue":0.42484},{"gcamCode":"v20.14","gcamValue":-0.50578947368421},{"gcamCode":"v20.15","gcamValue":0.391516483516483},{"gcamCode":"v20.16","gcamValue":-0.423571428571429},{"gcamCode":"v20.2","gcamValue":-0.316},{"gcamCode":"v20.3","gcamValue":0.562285714285714},{"gcamCode":"v20.4","gcamValue":-0.39325},{"gcamCode":"v20.5","gcamValue":0.617},{"gcamCode":"v20.6","gcamValue":-0.5955},{"gcamCode":"v20.7","gcamValue":0.653272727272727},{"gcamCode":"v20.8","gcamValue":-0.617571428571429},{"gcamCode":"v20.9","gcamValue":0.633666666666667},{"gcamCode":"v21.1","gcamValue":5.42076495132127},{"gcamCode":"v26.1","gcamValue":0.434285714285714}]https://www.cumberlandnewsnow.com/media/photologue/photos/cache/did-you-know-that-with-alan-walter-3009037_medium.jpg[""][""][""][{"charLength":64,"verb":"","quote":"destroying the power of the trade unions for almost a generation","charOffset":3351}][{"name":"Second World War","charOffset":752},{"name":"Adolf Hitler","charOffset":808},{"name":"Neville Chamberlain","charOffset":920},{"name":"Munich Agreement","charOffset":1002},{"name":"King George","charOffset":1212},{"name":"Clement Attlee","charOffset":1673},{"name":"National Health Service","charOffset":1767},{"name":"Minister Attlee","charOffset":2287},{"name":"Conservative Party","charOffset":3075},{"name":"United Kingdom","charOffset":3803},{"name":"Google Maps","charOffset":3968},{"name":"Lisa Raitt","charOffset":4719},{"name":"Natural Resources","charOffset":4904},{"name":"Osgoode Law School","charOffset":4955}][{"amount":3,"amountType":"major parties","charOffset":936},{"amount":1000000,"amountType":"of people with habitable","charOffset":1611},{"amount":85,"amountType":"was the biggest confrontation","charOffset":2774},{"amount":150,"amountType":"state","charOffset":2861},{"amount":10000,"amountType":"of thousands of jobs","charOffset":2905},{"amount":3,"amountType":"main contestants not being","charOffset":3450}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBchelmsfordweeklynews.co.ukhttps://www.chelmsfordweeklynews.co.uk/news/national/17659678.judith-kerr-the-author-whose-tiger-and-mog-creations-are-a-bookshelf-staple/[{"countType":"KILL","count":95,"objectType":"aged","location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}},{"countType":"CRISISLEX_T03_DEAD","count":95,"objectType":"aged","location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}}][{"count":{"countType":"KILL","count":95,"objectType":"aged","location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}},"charOffset":4329},{"count":{"countType":"CRISISLEX_T03_DEAD","count":95,"objectType":"aged","location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}},"charOffset":4329}]["TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_TIGER","TAX_FNCACT","TAX_FNCACT_CHILDREN","TAX_FNCACT_AUTHOR","TAX_FNCACT_ILLUSTRATOR","TAX_WORLDMAMMALS_CAT","TAX_FNCACT_CHILD","TAX_FNCACT_FATHER","TAX_FNCACT_WRITER","TAX_FNCACT_CRITIC","GENERAL_GOVERNMENT","EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_PRINCE","EXTREMISM","TAX_WORLDMAMMALS_RABBIT","TAX_FNCACT_SCREENWRITER","UNGP_FORESTS_RIVERS_OCEANS","WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","WB_1777_FORESTS","WB_590_ECOSYSTEMS","AFFECT","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","CRISISLEX_T11_UPDATESSYMPATHY","KILL","CRISISLEX_T03_DEAD","GENERAL_HEALTH"][{"theme":"WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","charOffset":3499},{"theme":"WB_1777_FORESTS","charOffset":3499},{"theme":"WB_590_ECOSYSTEMS","charOffset":3499},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":3868},{"theme":"EDUCATION","charOffset":1222},{"theme":"EDUCATION","charOffset":2718},{"theme":"EDUCATION","charOffset":4122},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1222},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2718},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":4122},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1222},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2718},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":4122},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2197},{"theme":"TAX_FNCACT_FATHER","charOffset":1036},{"theme":"TAX_FNCACT_CHILD","charOffset":1004},{"theme":"TAX_WORLDMAMMALS_CAT","charOffset":805},{"theme":"TAX_WORLDMAMMALS_CAT","charOffset":3206},{"theme":"TAX_WORLDMAMMALS_CAT","charOffset":3285},{"theme":"TAX_WORLDMAMMALS_CAT","charOffset":3427},{"theme":"EXTREMISM","charOffset":1815},{"theme":"TAX_FNCACT_PRINCE","charOffset":1395},{"theme":"TAX_FNCACT_PRINCE","charOffset":1617},{"theme":"GENERAL_HEALTH","charOffset":4375},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3893},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3972},{"theme":"TAX_FNCACT_SCREENWRITER","charOffset":2144},{"theme":"TAX_FNCACT_AUTHOR","charOffset":518},{"theme":"TAX_FNCACT_AUTHOR","charOffset":648},{"theme":"TAX_FNCACT_AUTHOR","charOffset":757},{"theme":"TAX_FNCACT_AUTHOR","charOffset":3196},{"theme":"KILL","charOffset":4339},{"theme":"CRISISLEX_T03_DEAD","charOffset":4339},{"theme":"TAX_FNCACT_WRITER","charOffset":1075},{"theme":"TAX_FNCACT_WRITER","charOffset":1726},{"theme":"GENERAL_GOVERNMENT","charOffset":1145},{"theme":"TAX_WORLDMAMMALS_RABBIT","charOffset":1856},{"theme":"TAX_WORLDMAMMALS_RABBIT","charOffset":4129},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":64},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":164},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":419},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":531},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":661},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":2287},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":2399},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":2429},{"theme":"TAX_WORLDMAMMALS_TIGER","charOffset":2667},{"theme":"TAX_FNCACT_CRITIC","charOffset":1098},{"theme":"AFFECT","charOffset":3868},{"theme":"TAX_FNCACT_CHILDREN","charOffset":319},{"theme":"TAX_FNCACT_CHILDREN","charOffset":2214},{"theme":"TAX_FNCACT_CHILDREN","charOffset":2805},{"theme":"TAX_FNCACT_CHILDREN","charOffset":4071},{"theme":"TAX_FNCACT_ILLUSTRATOR","charOffset":771},{"theme":"TAX_FNCACT_ILLUSTRATOR","charOffset":1740},{"theme":"TAX_FNCACT_ILLUSTRATOR","charOffset":3939},{"theme":"TAX_FNCACT_ILLUSTRATOR","charOffset":4287}][{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Berlin, Berlin, Germany","countryCode":"GM","adm1Code":"GM16","adm2Code":"","geoPoint":{"latitude":52.5167,"longitude":13.4},"featureId":"-1746443"},{"geoType":"WORLDCITY","geoName":"Buckingham Palace, Westminster, United Kingdom","countryCode":"UK","adm1Code":"UKP5","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":-0.133333},"featureId":"-2591190"}][{"location":{"geoType":"WORLDCITY","geoName":"Buckingham Palace, Westminster, United Kingdom","countryCode":"UK","adm1Code":"UKP5","adm2Code":"40110","geoPoint":{"latitude":51.5,"longitude":-0.133333},"featureId":"-2591190"},"charOffset":1457},{"location":{"geoType":"WORLDCITY","geoName":"Buckingham Palace, Westminster, United Kingdom","countryCode":"UK","adm1Code":"UKP5","adm2Code":"40110","geoPoint":{"latitude":51.5,"longitude":-0.133333},"featureId":"-2591190"},"charOffset":1515},{"location":{"geoType":"WORLDCITY","geoName":"Buckingham Palace, Westminster, United Kingdom","countryCode":"UK","adm1Code":"UKP5","adm2Code":"40110","geoPoint":{"latitude":51.5,"longitude":-0.133333},"featureId":"-2591190"},"charOffset":1679},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":841},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":947},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":1823},{"location":{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":1924},{"location":{"geoType":"COUNTRY","geoName":"British","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":1332},{"location":{"geoType":"COUNTRY","geoName":"British","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":4314},{"location":{"geoType":"COUNTRY","geoName":"German","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},"charOffset":1061},{"location":{"geoType":"WORLDCITY","geoName":"Berlin, Berlin, Germany","countryCode":"GM","adm1Code":"GM16","adm2Code":"16538","geoPoint":{"latitude":52.5167,"longitude":13.4},"featureId":"-1746443"},"charOffset":832}]["nigel kneale","alfred kerr","john stillwell","judith kerr","battersea judith kerr"][{"person":"Nigel Kneale","charOffset":2157},{"person":"Alfred Kerr","charOffset":1050},{"person":"John Stillwell","charOffset":1710},{"person":"Judith Kerr","charOffset":11},{"person":"Judith Kerr","charOffset":509},{"person":"Judith Kerr","charOffset":639},{"person":"Judith Kerr","charOffset":1293},{"person":"Judith Kerr","charOffset":1543},{"person":"Battersea Judith Kerr","charOffset":639}]["central school of art","school rabbit"][{"organisation":"Central School Of Art","charOffset":1229},{"organisation":"School Rabbit","charOffset":4129}]{"tone":1.7632241,"positiveScore":4.534005,"negativeScore":2.7707808,"polarity":7.3047857,"activityReferenceDensity":23.929472,"selfGroupReferenceDensity":0.12594458,"wordCount":731}[{"dateResolution":1,"month":0,"day":0,"year":1968,"charOffset":271},{"dateResolution":1,"month":0,"day":0,"year":1923,"charOffset":875},{"dateResolution":1,"month":0,"day":0,"year":1933,"charOffset":982},{"dateResolution":1,"month":0,"day":0,"year":1954,"charOffset":2143},{"dateResolution":1,"month":0,"day":0,"year":2002,"charOffset":3365}][{"gcamCode":"wc","gcamValue":731},{"gcamCode":"c1.4","gcamValue":2},{"gcamCode":"c12.1","gcamValue":47},{"gcamCode":"c12.10","gcamValue":49},{"gcamCode":"c12.12","gcamValue":13},{"gcamCode":"c12.13","gcamValue":18},{"gcamCode":"c12.14","gcamValue":19},{"gcamCode":"c12.3","gcamValue":26},{"gcamCode":"c12.4","gcamValue":7},{"gcamCode":"c12.5","gcamValue":22},{"gcamCode":"c12.7","gcamValue":38},{"gcamCode":"c12.8","gcamValue":21},{"gcamCode":"c12.9","gcamValue":36},{"gcamCode":"c13.1","gcamValue":16},{"gcamCode":"c13.12","gcamValue":7},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c13.6","gcamValue":9},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":21},{"gcamCode":"c14.10","gcamValue":25},{"gcamCode":"c14.11","gcamValue":61},{"gcamCode":"c14.2","gcamValue":24},{"gcamCode":"c14.3","gcamValue":36},{"gcamCode":"c14.4","gcamValue":11},{"gcamCode":"c14.5","gcamValue":66},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":18},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":9},{"gcamCode":"c15.10","gcamValue":4},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.105","gcamValue":2},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.116","gcamValue":3},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.13","gcamValue":3},{"gcamCode":"c15.139","gcamValue":2},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.176","gcamValue":4},{"gcamCode":"c15.177","gcamValue":2},{"gcamCode":"c15.178","gcamValue":2},{"gcamCode":"c15.179","gcamValue":2},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.20","gcamValue":2},{"gcamCode":"c15.206","gcamValue":2},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.218","gcamValue":2},{"gcamCode":"c15.230","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.256","gcamValue":3},{"gcamCode":"c15.270","gcamValue":3},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.278","gcamValue":1},{"gcamCode":"c15.279","gcamValue":2},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":3},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":3},{"gcamCode":"c15.47","gcamValue":2},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.63","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.76","gcamValue":2},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":10},{"gcamCode":"c16.102","gcamValue":3},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":6},{"gcamCode":"c16.106","gcamValue":34},{"gcamCode":"c16.108","gcamValue":4},{"gcamCode":"c16.109","gcamValue":46},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":134},{"gcamCode":"c16.111","gcamValue":6},{"gcamCode":"c16.113","gcamValue":15},{"gcamCode":"c16.114","gcamValue":55},{"gcamCode":"c16.115","gcamValue":7},{"gcamCode":"c16.116","gcamValue":18},{"gcamCode":"c16.117","gcamValue":32},{"gcamCode":"c16.118","gcamValue":58},{"gcamCode":"c16.119","gcamValue":1},{"gcamCode":"c16.12","gcamValue":94},{"gcamCode":"c16.120","gcamValue":19},{"gcamCode":"c16.121","gcamValue":56},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":32},{"gcamCode":"c16.126","gcamValue":24},{"gcamCode":"c16.127","gcamValue":89},{"gcamCode":"c16.128","gcamValue":13},{"gcamCode":"c16.129","gcamValue":67},{"gcamCode":"c16.13","gcamValue":3},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":36},{"gcamCode":"c16.132","gcamValue":3},{"gcamCode":"c16.134","gcamValue":99},{"gcamCode":"c16.135","gcamValue":12},{"gcamCode":"c16.138","gcamValue":19},{"gcamCode":"c16.139","gcamValue":27},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":26},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":57},{"gcamCode":"c16.146","gcamValue":47},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":32},{"gcamCode":"c16.155","gcamValue":5},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":26},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":64},{"gcamCode":"c16.16","gcamValue":17},{"gcamCode":"c16.161","gcamValue":79},{"gcamCode":"c16.162","gcamValue":22},{"gcamCode":"c16.163","gcamValue":46},{"gcamCode":"c16.164","gcamValue":10},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":17},{"gcamCode":"c16.2","gcamValue":30},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":21},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":113},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":12},{"gcamCode":"c16.29","gcamValue":7},{"gcamCode":"c16.3","gcamValue":10},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":46},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":58},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":37},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":57},{"gcamCode":"c16.38","gcamValue":18},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":59},{"gcamCode":"c16.41","gcamValue":30},{"gcamCode":"c16.43","gcamValue":7},{"gcamCode":"c16.45","gcamValue":38},{"gcamCode":"c16.46","gcamValue":9},{"gcamCode":"c16.47","gcamValue":97},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.49","gcamValue":4},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":34},{"gcamCode":"c16.54","gcamValue":3},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":364},{"gcamCode":"c16.58","gcamValue":57},{"gcamCode":"c16.6","gcamValue":99},{"gcamCode":"c16.60","gcamValue":4},{"gcamCode":"c16.62","gcamValue":33},{"gcamCode":"c16.63","gcamValue":14},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":18},{"gcamCode":"c16.66","gcamValue":16},{"gcamCode":"c16.68","gcamValue":35},{"gcamCode":"c16.69","gcamValue":27},{"gcamCode":"c16.7","gcamValue":7},{"gcamCode":"c16.70","gcamValue":36},{"gcamCode":"c16.71","gcamValue":9},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":5},{"gcamCode":"c16.74","gcamValue":5},{"gcamCode":"c16.75","gcamValue":30},{"gcamCode":"c16.76","gcamValue":6},{"gcamCode":"c16.77","gcamValue":4},{"gcamCode":"c16.78","gcamValue":25},{"gcamCode":"c16.80","gcamValue":5},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":5},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":27},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":63},{"gcamCode":"c16.88","gcamValue":90},{"gcamCode":"c16.89","gcamValue":67},{"gcamCode":"c16.90","gcamValue":16},{"gcamCode":"c16.91","gcamValue":30},{"gcamCode":"c16.92","gcamValue":37},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":51},{"gcamCode":"c16.95","gcamValue":42},{"gcamCode":"c16.96","gcamValue":12},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":80},{"gcamCode":"c16.99","gcamValue":9},{"gcamCode":"c17.1","gcamValue":207},{"gcamCode":"c17.10","gcamValue":64},{"gcamCode":"c17.11","gcamValue":115},{"gcamCode":"c17.12","gcamValue":29},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":14},{"gcamCode":"c17.15","gcamValue":62},{"gcamCode":"c17.16","gcamValue":14},{"gcamCode":"c17.18","gcamValue":14},{"gcamCode":"c17.19","gcamValue":62},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":9},{"gcamCode":"c17.22","gcamValue":23},{"gcamCode":"c17.23","gcamValue":7},{"gcamCode":"c17.24","gcamValue":56},{"gcamCode":"c17.25","gcamValue":12},{"gcamCode":"c17.26","gcamValue":4},{"gcamCode":"c17.27","gcamValue":70},{"gcamCode":"c17.28","gcamValue":6},{"gcamCode":"c17.29","gcamValue":32},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":16},{"gcamCode":"c17.31","gcamValue":29},{"gcamCode":"c17.32","gcamValue":35},{"gcamCode":"c17.33","gcamValue":31},{"gcamCode":"c17.34","gcamValue":18},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":35},{"gcamCode":"c17.37","gcamValue":26},{"gcamCode":"c17.38","gcamValue":11},{"gcamCode":"c17.39","gcamValue":28},{"gcamCode":"c17.4","gcamValue":132},{"gcamCode":"c17.40","gcamValue":16},{"gcamCode":"c17.41","gcamValue":12},{"gcamCode":"c17.42","gcamValue":49},{"gcamCode":"c17.43","gcamValue":26},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":167},{"gcamCode":"c17.6","gcamValue":21},{"gcamCode":"c17.7","gcamValue":120},{"gcamCode":"c17.8","gcamValue":60},{"gcamCode":"c17.9","gcamValue":19},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.147","gcamValue":3},{"gcamCode":"c18.180","gcamValue":10},{"gcamCode":"c18.193","gcamValue":20},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":19},{"gcamCode":"c18.345","gcamValue":15},{"gcamCode":"c18.35","gcamValue":1},{"gcamCode":"c18.44","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":15},{"gcamCode":"c2.101","gcamValue":12},{"gcamCode":"c2.102","gcamValue":13},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":86},{"gcamCode":"c2.106","gcamValue":7},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":6},{"gcamCode":"c2.11","gcamValue":4},{"gcamCode":"c2.110","gcamValue":9},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":6},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":39},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":27},{"gcamCode":"c2.118","gcamValue":5},{"gcamCode":"c2.119","gcamValue":210},{"gcamCode":"c2.12","gcamValue":31},{"gcamCode":"c2.120","gcamValue":6},{"gcamCode":"c2.121","gcamValue":79},{"gcamCode":"c2.122","gcamValue":35},{"gcamCode":"c2.125","gcamValue":29},{"gcamCode":"c2.126","gcamValue":42},{"gcamCode":"c2.127","gcamValue":76},{"gcamCode":"c2.128","gcamValue":23},{"gcamCode":"c2.129","gcamValue":24},{"gcamCode":"c2.130","gcamValue":7},{"gcamCode":"c2.131","gcamValue":3},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":5},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":5},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":64},{"gcamCode":"c2.141","gcamValue":9},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":32},{"gcamCode":"c2.144","gcamValue":10},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":109},{"gcamCode":"c2.148","gcamValue":83},{"gcamCode":"c2.149","gcamValue":5},{"gcamCode":"c2.15","gcamValue":20},{"gcamCode":"c2.150","gcamValue":7},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":5},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":14},{"gcamCode":"c2.155","gcamValue":61},{"gcamCode":"c2.156","gcamValue":25},{"gcamCode":"c2.157","gcamValue":54},{"gcamCode":"c2.158","gcamValue":57},{"gcamCode":"c2.159","gcamValue":10},{"gcamCode":"c2.16","gcamValue":1},{"gcamCode":"c2.160","gcamValue":33},{"gcamCode":"c2.162","gcamValue":10},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":11},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":14},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":16},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":7},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":5},{"gcamCode":"c2.177","gcamValue":50},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":10},{"gcamCode":"c2.18","gcamValue":27},{"gcamCode":"c2.180","gcamValue":27},{"gcamCode":"c2.181","gcamValue":28},{"gcamCode":"c2.183","gcamValue":28},{"gcamCode":"c2.185","gcamValue":154},{"gcamCode":"c2.186","gcamValue":14},{"gcamCode":"c2.187","gcamValue":46},{"gcamCode":"c2.188","gcamValue":17},{"gcamCode":"c2.189","gcamValue":17},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.190","gcamValue":2},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":15},{"gcamCode":"c2.193","gcamValue":29},{"gcamCode":"c2.195","gcamValue":49},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":11},{"gcamCode":"c2.198","gcamValue":77},{"gcamCode":"c2.199","gcamValue":13},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.20","gcamValue":5},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.202","gcamValue":3},{"gcamCode":"c2.203","gcamValue":42},{"gcamCode":"c2.204","gcamValue":64},{"gcamCode":"c2.205","gcamValue":19},{"gcamCode":"c2.206","gcamValue":15},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.209","gcamValue":18},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":75},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.213","gcamValue":19},{"gcamCode":"c2.214","gcamValue":14},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":10},{"gcamCode":"c2.218","gcamValue":4},{"gcamCode":"c2.219","gcamValue":5},{"gcamCode":"c2.220","gcamValue":19},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":15},{"gcamCode":"c2.226","gcamValue":18},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.23","gcamValue":18},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":71},{"gcamCode":"c2.26","gcamValue":18},{"gcamCode":"c2.27","gcamValue":18},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.3","gcamValue":3},{"gcamCode":"c2.30","gcamValue":28},{"gcamCode":"c2.31","gcamValue":48},{"gcamCode":"c2.32","gcamValue":5},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":53},{"gcamCode":"c2.35","gcamValue":57},{"gcamCode":"c2.36","gcamValue":36},{"gcamCode":"c2.37","gcamValue":54},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":130},{"gcamCode":"c2.4","gcamValue":8},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":18},{"gcamCode":"c2.46","gcamValue":85},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":12},{"gcamCode":"c2.5","gcamValue":6},{"gcamCode":"c2.50","gcamValue":20},{"gcamCode":"c2.52","gcamValue":70},{"gcamCode":"c2.53","gcamValue":10},{"gcamCode":"c2.54","gcamValue":89},{"gcamCode":"c2.55","gcamValue":5},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":16},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.61","gcamValue":5},{"gcamCode":"c2.62","gcamValue":49},{"gcamCode":"c2.64","gcamValue":19},{"gcamCode":"c2.65","gcamValue":10},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":31},{"gcamCode":"c2.7","gcamValue":15},{"gcamCode":"c2.70","gcamValue":4},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.72","gcamValue":5},{"gcamCode":"c2.73","gcamValue":34},{"gcamCode":"c2.74","gcamValue":2},{"gcamCode":"c2.75","gcamValue":109},{"gcamCode":"c2.76","gcamValue":502},{"gcamCode":"c2.77","gcamValue":67},{"gcamCode":"c2.78","gcamValue":92},{"gcamCode":"c2.79","gcamValue":17},{"gcamCode":"c2.80","gcamValue":82},{"gcamCode":"c2.81","gcamValue":10},{"gcamCode":"c2.82","gcamValue":16},{"gcamCode":"c2.83","gcamValue":18},{"gcamCode":"c2.84","gcamValue":4},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":15},{"gcamCode":"c2.87","gcamValue":5},{"gcamCode":"c2.88","gcamValue":13},{"gcamCode":"c2.89","gcamValue":17},{"gcamCode":"c2.9","gcamValue":5},{"gcamCode":"c2.90","gcamValue":5},{"gcamCode":"c2.91","gcamValue":9},{"gcamCode":"c2.92","gcamValue":9},{"gcamCode":"c2.93","gcamValue":13},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":108},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":5},{"gcamCode":"c2.98","gcamValue":40},{"gcamCode":"c2.99","gcamValue":5},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c25.7","gcamValue":4},{"gcamCode":"c3.1","gcamValue":32},{"gcamCode":"c3.2","gcamValue":52},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.13","gcamValue":4},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":6},{"gcamCode":"c35.17","gcamValue":5},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.2","gcamValue":4},{"gcamCode":"c35.20","gcamValue":29},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.23","gcamValue":1},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.31","gcamValue":18},{"gcamCode":"c35.32","gcamValue":22},{"gcamCode":"c35.33","gcamValue":35},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c39.1","gcamValue":4},{"gcamCode":"c39.12","gcamValue":4},{"gcamCode":"c39.13","gcamValue":7},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":6},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":20},{"gcamCode":"c39.22","gcamValue":2},{"gcamCode":"c39.23","gcamValue":1},{"gcamCode":"c39.25","gcamValue":6},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":43},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":8},{"gcamCode":"c39.37","gcamValue":30},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":10},{"gcamCode":"c39.4","gcamValue":35},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":44},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.5","gcamValue":1},{"gcamCode":"c4.8","gcamValue":3},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":4},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":5},{"gcamCode":"c41.1","gcamValue":6},{"gcamCode":"c5.10","gcamValue":39},{"gcamCode":"c5.11","gcamValue":16},{"gcamCode":"c5.12","gcamValue":100},{"gcamCode":"c5.13","gcamValue":8},{"gcamCode":"c5.14","gcamValue":3},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":12},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":11},{"gcamCode":"c5.21","gcamValue":18},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":17},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.25","gcamValue":7},{"gcamCode":"c5.26","gcamValue":8},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":9},{"gcamCode":"c5.29","gcamValue":9},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":71},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":12},{"gcamCode":"c5.35","gcamValue":23},{"gcamCode":"c5.36","gcamValue":35},{"gcamCode":"c5.37","gcamValue":8},{"gcamCode":"c5.39","gcamValue":14},{"gcamCode":"c5.4","gcamValue":5},{"gcamCode":"c5.40","gcamValue":95},{"gcamCode":"c5.42","gcamValue":4},{"gcamCode":"c5.43","gcamValue":9},{"gcamCode":"c5.44","gcamValue":7},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":103},{"gcamCode":"c5.47","gcamValue":20},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":108},{"gcamCode":"c5.5","gcamValue":4},{"gcamCode":"c5.50","gcamValue":98},{"gcamCode":"c5.51","gcamValue":78},{"gcamCode":"c5.52","gcamValue":137},{"gcamCode":"c5.53","gcamValue":78},{"gcamCode":"c5.54","gcamValue":33},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":29},{"gcamCode":"c5.59","gcamValue":19},{"gcamCode":"c5.6","gcamValue":53},{"gcamCode":"c5.60","gcamValue":50},{"gcamCode":"c5.61","gcamValue":83},{"gcamCode":"c5.62","gcamValue":345},{"gcamCode":"c5.7","gcamValue":25},{"gcamCode":"c5.8","gcamValue":34},{"gcamCode":"c5.9","gcamValue":46},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":13},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":4},{"gcamCode":"c7.1","gcamValue":36},{"gcamCode":"c7.2","gcamValue":33},{"gcamCode":"c8.1","gcamValue":5},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":2},{"gcamCode":"c8.16","gcamValue":2},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.20","gcamValue":7},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":15},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":6},{"gcamCode":"c8.36","gcamValue":9},{"gcamCode":"c8.37","gcamValue":10},{"gcamCode":"c8.38","gcamValue":11},{"gcamCode":"c8.4","gcamValue":27},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":14},{"gcamCode":"c8.43","gcamValue":25},{"gcamCode":"c8.5","gcamValue":12},{"gcamCode":"c8.6","gcamValue":3},{"gcamCode":"c8.9","gcamValue":3},{"gcamCode":"c9.1","gcamValue":31},{"gcamCode":"c9.10","gcamValue":6},{"gcamCode":"c9.1004","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1009","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":4},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":5},{"gcamCode":"c9.1042","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":3},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.11","gcamValue":3},{"gcamCode":"c9.111","gcamValue":15},{"gcamCode":"c9.112","gcamValue":2},{"gcamCode":"c9.113","gcamValue":6},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":5},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":8},{"gcamCode":"c9.125","gcamValue":6},{"gcamCode":"c9.127","gcamValue":7},{"gcamCode":"c9.128","gcamValue":42},{"gcamCode":"c9.129","gcamValue":5},{"gcamCode":"c9.130","gcamValue":12},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.134","gcamValue":8},{"gcamCode":"c9.135","gcamValue":6},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":5},{"gcamCode":"c9.142","gcamValue":3},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.145","gcamValue":8},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":9},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.152","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.158","gcamValue":12},{"gcamCode":"c9.159","gcamValue":7},{"gcamCode":"c9.160","gcamValue":6},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.171","gcamValue":4},{"gcamCode":"c9.173","gcamValue":7},{"gcamCode":"c9.174","gcamValue":6},{"gcamCode":"c9.175","gcamValue":5},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":10},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":9},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":4},{"gcamCode":"c9.197","gcamValue":5},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":2},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":10},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":7},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.209","gcamValue":4},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.213","gcamValue":5},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.223","gcamValue":3},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":4},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":4},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":14},{"gcamCode":"c9.237","gcamValue":5},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.245","gcamValue":7},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":4},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.262","gcamValue":5},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":8},{"gcamCode":"c9.273","gcamValue":2},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":6},{"gcamCode":"c9.282","gcamValue":5},{"gcamCode":"c9.283","gcamValue":4},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.287","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.291","gcamValue":10},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.295","gcamValue":2},{"gcamCode":"c9.298","gcamValue":2},{"gcamCode":"c9.3","gcamValue":31},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":4},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":4},{"gcamCode":"c9.308","gcamValue":7},{"gcamCode":"c9.310","gcamValue":3},{"gcamCode":"c9.311","gcamValue":2},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":3},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.321","gcamValue":2},{"gcamCode":"c9.322","gcamValue":4},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":3},{"gcamCode":"c9.329","gcamValue":3},{"gcamCode":"c9.33","gcamValue":11},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":16},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.344","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.348","gcamValue":1},{"gcamCode":"c9.35","gcamValue":6},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":2},{"gcamCode":"c9.361","gcamValue":2},{"gcamCode":"c9.37","gcamValue":2},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":18},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.377","gcamValue":4},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.383","gcamValue":8},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.385","gcamValue":28},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.41","gcamValue":3},{"gcamCode":"c9.415","gcamValue":4},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.423","gcamValue":4},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.431","gcamValue":4},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":3},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.439","gcamValue":2},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.441","gcamValue":2},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.449","gcamValue":2},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":9},{"gcamCode":"c9.46","gcamValue":5},{"gcamCode":"c9.460","gcamValue":2},{"gcamCode":"c9.461","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":3},{"gcamCode":"c9.465","gcamValue":3},{"gcamCode":"c9.466","gcamValue":6},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.469","gcamValue":2},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.470","gcamValue":4},{"gcamCode":"c9.471","gcamValue":2},{"gcamCode":"c9.472","gcamValue":4},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":10},{"gcamCode":"c9.477","gcamValue":3},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":6},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":16},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.487","gcamValue":1},{"gcamCode":"c9.488","gcamValue":4},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":8},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.5","gcamValue":3},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.507","gcamValue":10},{"gcamCode":"c9.509","gcamValue":5},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":24},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.517","gcamValue":4},{"gcamCode":"c9.518","gcamValue":4},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":11},{"gcamCode":"c9.522","gcamValue":14},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":15},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.538","gcamValue":3},{"gcamCode":"c9.539","gcamValue":7},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.541","gcamValue":2},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.543","gcamValue":3},{"gcamCode":"c9.545","gcamValue":3},{"gcamCode":"c9.546","gcamValue":3},{"gcamCode":"c9.547","gcamValue":2},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":6},{"gcamCode":"c9.550","gcamValue":3},{"gcamCode":"c9.551","gcamValue":8},{"gcamCode":"c9.553","gcamValue":5},{"gcamCode":"c9.554","gcamValue":5},{"gcamCode":"c9.555","gcamValue":3},{"gcamCode":"c9.556","gcamValue":9},{"gcamCode":"c9.557","gcamValue":5},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":15},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":3},{"gcamCode":"c9.566","gcamValue":4},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.568","gcamValue":5},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":5},{"gcamCode":"c9.571","gcamValue":6},{"gcamCode":"c9.572","gcamValue":4},{"gcamCode":"c9.573","gcamValue":5},{"gcamCode":"c9.574","gcamValue":4},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":25},{"gcamCode":"c9.577","gcamValue":1},{"gcamCode":"c9.579","gcamValue":32},{"gcamCode":"c9.581","gcamValue":10},{"gcamCode":"c9.582","gcamValue":2},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":3},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":2},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.594","gcamValue":2},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.600","gcamValue":5},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":3},{"gcamCode":"c9.615","gcamValue":10},{"gcamCode":"c9.616","gcamValue":21},{"gcamCode":"c9.618","gcamValue":14},{"gcamCode":"c9.619","gcamValue":15},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":4},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":4},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":17},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":5},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.651","gcamValue":2},{"gcamCode":"c9.653","gcamValue":28},{"gcamCode":"c9.654","gcamValue":5},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.658","gcamValue":6},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.663","gcamValue":2},{"gcamCode":"c9.664","gcamValue":3},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":6},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.67","gcamValue":6},{"gcamCode":"c9.670","gcamValue":17},{"gcamCode":"c9.671","gcamValue":6},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":10},{"gcamCode":"c9.677","gcamValue":5},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.681","gcamValue":5},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":11},{"gcamCode":"c9.689","gcamValue":1},{"gcamCode":"c9.69","gcamValue":3},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":7},{"gcamCode":"c9.694","gcamValue":4},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.699","gcamValue":4},{"gcamCode":"c9.70","gcamValue":7},{"gcamCode":"c9.701","gcamValue":10},{"gcamCode":"c9.702","gcamValue":2},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":4},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.708","gcamValue":6},{"gcamCode":"c9.71","gcamValue":12},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":30},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.73","gcamValue":4},{"gcamCode":"c9.730","gcamValue":28},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.739","gcamValue":4},{"gcamCode":"c9.740","gcamValue":7},{"gcamCode":"c9.741","gcamValue":7},{"gcamCode":"c9.742","gcamValue":5},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.757","gcamValue":7},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.76","gcamValue":9},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.761","gcamValue":3},{"gcamCode":"c9.762","gcamValue":28},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":7},{"gcamCode":"c9.767","gcamValue":38},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":4},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":10},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.79","gcamValue":7},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":3},{"gcamCode":"c9.795","gcamValue":4},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":8},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":12},{"gcamCode":"c9.814","gcamValue":2},{"gcamCode":"c9.816","gcamValue":5},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.83","gcamValue":6},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":16},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.852","gcamValue":2},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.854","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":4},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":9},{"gcamCode":"c9.862","gcamValue":6},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":32},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":28},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.873","gcamValue":4},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":12},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":10},{"gcamCode":"c9.883","gcamValue":8},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.885","gcamValue":4},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.888","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":6},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":10},{"gcamCode":"c9.90","gcamValue":24},{"gcamCode":"c9.901","gcamValue":3},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":7},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":11},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":6},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":3},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.920","gcamValue":4},{"gcamCode":"c9.921","gcamValue":7},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":9},{"gcamCode":"c9.932","gcamValue":5},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.937","gcamValue":2},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.941","gcamValue":3},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":10},{"gcamCode":"c9.947","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.952","gcamValue":9},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.962","gcamValue":3},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.967","gcamValue":2},{"gcamCode":"c9.969","gcamValue":3},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.982","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":9},{"gcamCode":"c9.985","gcamValue":8},{"gcamCode":"c9.986","gcamValue":6},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.989","gcamValue":2},{"gcamCode":"c9.99","gcamValue":4},{"gcamCode":"c9.990","gcamValue":10},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.314834770114943},{"gcamCode":"v10.2","gcamValue":0.277120245763362},{"gcamCode":"v11.1","gcamValue":0.0912865169660679},{"gcamCode":"v19.1","gcamValue":6.09190909090909},{"gcamCode":"v19.2","gcamValue":5.03154545454546},{"gcamCode":"v19.3","gcamValue":5.332},{"gcamCode":"v19.4","gcamValue":5.92081818181818},{"gcamCode":"v19.5","gcamValue":4.94863636363636},{"gcamCode":"v19.6","gcamValue":5.26509090909091},{"gcamCode":"v19.7","gcamValue":6.24709090909091},{"gcamCode":"v19.8","gcamValue":5.12236363636364},{"gcamCode":"v19.9","gcamValue":5.40936363636364},{"gcamCode":"v20.1","gcamValue":0.527142857142857},{"gcamCode":"v20.10","gcamValue":-0.375},{"gcamCode":"v20.11","gcamValue":0.589458333333333},{"gcamCode":"v20.12","gcamValue":-0.464285714285714},{"gcamCode":"v20.13","gcamValue":0.464980769230769},{"gcamCode":"v20.14","gcamValue":-0.404545454545454},{"gcamCode":"v20.15","gcamValue":0.401784615384615},{"gcamCode":"v20.16","gcamValue":-0.319047619047619},{"gcamCode":"v20.2","gcamValue":-0.375},{"gcamCode":"v20.3","gcamValue":0.515111111111111},{"gcamCode":"v20.4","gcamValue":-0.375},{"gcamCode":"v20.5","gcamValue":0.62075},{"gcamCode":"v20.6","gcamValue":-0.375},{"gcamCode":"v20.7","gcamValue":0.639214285714286},{"gcamCode":"v20.8","gcamValue":-0.375},{"gcamCode":"v20.9","gcamValue":0.6341875},{"gcamCode":"v21.1","gcamValue":5.58350793650793},{"gcamCode":"v26.1","gcamValue":1.11190476190476}]https://www.chelmsfordweeklynews.co.uk/resources/images/9892039/["https://image.assets.pressassociation.io/v2/image/production/cf045caa5ac6ae79ff39daf4503f302bY29udGVudHNlYXJjaCwxNTU4NjkzNDc5/2.15631380.jpg"]["https://pic.twitter.com/8YA7pXZkRr"][""][{"charLength":42,"verb":"","quote":"remember a time when I didn't want to draw","charOffset":1002}][{"name":"Judith Kerr","charOffset":12},{"name":"Tiger Who Came To Tea","charOffset":83},{"name":"Tiger Who Came To Tea","charOffset":581},{"name":"Storystock Festival Battersea","charOffset":683},{"name":"Judith Kerr","charOffset":697},{"name":"Tiger Who Came To Tea","charOffset":738},{"name":"Alfred Kerr","charOffset":1144},{"name":"Central School","charOffset":1328},{"name":"British Empire","charOffset":1442},{"name":"Buckingham Palace","charOffset":1567},{"name":"Buckingham Palace","charOffset":1612},{"name":"Judith Kerr","charOffset":1626},{"name":"Buckingham Palace","charOffset":1763},{"name":"Hitler Stole Pink Rabbit","charOffset":1933},{"name":"Out Of The Hitler Time","charOffset":2064},{"name":"Nigel Kneale","charOffset":2239},{"name":"Tiger Who Came To Tea","charOffset":2544},{"name":"Press Association","charOffset":3202},{"name":"Mog The Forgetful Cat","charOffset":3463},{"name":"Goodbye Mog","charOffset":3548},{"name":"Mummy Time","charOffset":3761},{"name":"Press Association","charOffset":3868},{"name":"Collins Children","charOffset":4307},{"name":"Curse Of The School Rabbit","charOffset":4370},{"name":"Booktrust Lifetime Achievement Award","charOffset":4481},{"name":"Illustrator Of The Year","charOffset":4546},{"name":"British Book","charOffset":4566}][{"amount":2,"amountType":"children","charOffset":1814},{"amount":5000000,"amountType":"copies","charOffset":2341},{"amount":4,"amountType":"will air a special","charOffset":2396},{"amount":15,"amountType":"titles","charOffset":2760}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523124400</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEBanimalforum.comhttp://www.animalforum.com/list.php/author/14009-Paw-Campus?s=2692723e5b688bd68431264d3c6f1006[][][""][][][][""][]["welcome to animal forum"][{"organisation":"Welcome To Animal Forum","charOffset":23}]{"tone":5.263158,"positiveScore":5.263158,"negativeScore":0,"polarity":5.263158,"activityReferenceDensity":33.333332,"selfGroupReferenceDensity":3.508772,"wordCount":49}[][{"gcamCode":"wc","gcamValue":49},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":4},{"gcamCode":"c12.5","gcamValue":4},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":6},{"gcamCode":"c14.1","gcamValue":6},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":4},{"gcamCode":"c14.2","gcamValue":5},{"gcamCode":"c14.3","gcamValue":2},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":5},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":2},{"gcamCode":"c16.109","gcamValue":3},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":12},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":2},{"gcamCode":"c16.116","gcamValue":1},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":3},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":4},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.125","gcamValue":2},{"gcamCode":"c16.126","gcamValue":5},{"gcamCode":"c16.127","gcamValue":5},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":5},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":4},{"gcamCode":"c16.134","gcamValue":5},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.140","gcamValue":2},{"gcamCode":"c16.145","gcamValue":3},{"gcamCode":"c16.146","gcamValue":9},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.153","gcamValue":5},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.161","gcamValue":8},{"gcamCode":"c16.162","gcamValue":2},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.164","gcamValue":2},{"gcamCode":"c16.2","gcamValue":6},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":12},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.31","gcamValue":6},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":3},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":4},{"gcamCode":"c16.37","gcamValue":8},{"gcamCode":"c16.38","gcamValue":6},{"gcamCode":"c16.4","gcamValue":7},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.47","gcamValue":13},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.52","gcamValue":4},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":28},{"gcamCode":"c16.58","gcamValue":3},{"gcamCode":"c16.6","gcamValue":11},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":3},{"gcamCode":"c16.65","gcamValue":2},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.70","gcamValue":2},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.84","gcamValue":6},{"gcamCode":"c16.87","gcamValue":7},{"gcamCode":"c16.88","gcamValue":7},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":6},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":2},{"gcamCode":"c16.96","gcamValue":3},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c17.1","gcamValue":14},{"gcamCode":"c17.10","gcamValue":4},{"gcamCode":"c17.11","gcamValue":14},{"gcamCode":"c17.12","gcamValue":1},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.15","gcamValue":5},{"gcamCode":"c17.16","gcamValue":2},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":3},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.24","gcamValue":6},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":7},{"gcamCode":"c17.29","gcamValue":2},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":6},{"gcamCode":"c17.32","gcamValue":7},{"gcamCode":"c17.33","gcamValue":11},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.37","gcamValue":5},{"gcamCode":"c17.39","gcamValue":5},{"gcamCode":"c17.4","gcamValue":8},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":6},{"gcamCode":"c17.42","gcamValue":10},{"gcamCode":"c17.43","gcamValue":8},{"gcamCode":"c17.5","gcamValue":11},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":13},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c2.1","gcamValue":1},{"gcamCode":"c2.10","gcamValue":3},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.104","gcamValue":5},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.119","gcamValue":19},{"gcamCode":"c2.12","gcamValue":2},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":9},{"gcamCode":"c2.125","gcamValue":4},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.128","gcamValue":1},{"gcamCode":"c2.129","gcamValue":3},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.143","gcamValue":4},{"gcamCode":"c2.147","gcamValue":10},{"gcamCode":"c2.148","gcamValue":5},{"gcamCode":"c2.15","gcamValue":4},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":5},{"gcamCode":"c2.156","gcamValue":2},{"gcamCode":"c2.157","gcamValue":5},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":2},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":3},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":2},{"gcamCode":"c2.183","gcamValue":2},{"gcamCode":"c2.185","gcamValue":20},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":5},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":5},{"gcamCode":"c2.195","gcamValue":4},{"gcamCode":"c2.197","gcamValue":1},{"gcamCode":"c2.198","gcamValue":8},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":4},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.210","gcamValue":10},{"gcamCode":"c2.214","gcamValue":3},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.228","gcamValue":3},{"gcamCode":"c2.23","gcamValue":1},{"gcamCode":"c2.25","gcamValue":5},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":3},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.34","gcamValue":1},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":7},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":5},{"gcamCode":"c2.46","gcamValue":4},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.52","gcamValue":5},{"gcamCode":"c2.54","gcamValue":5},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.7","gcamValue":3},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":9},{"gcamCode":"c2.76","gcamValue":38},{"gcamCode":"c2.77","gcamValue":4},{"gcamCode":"c2.78","gcamValue":13},{"gcamCode":"c2.80","gcamValue":14},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":9},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":1},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.13","gcamValue":2},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.31","gcamValue":1},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":2},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":2},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":3},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":8},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":2},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.35","gcamValue":4},{"gcamCode":"c5.36","gcamValue":4},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":7},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":10},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":4},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":3},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":5},{"gcamCode":"c5.53","gcamValue":4},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.57","gcamValue":3},{"gcamCode":"c5.6","gcamValue":2},{"gcamCode":"c5.60","gcamValue":3},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":26},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":2},{"gcamCode":"c5.9","gcamValue":3},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.37","gcamValue":2},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c9.1","gcamValue":2},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.11","gcamValue":2},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.208","gcamValue":2},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.229","gcamValue":3},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.377","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.428","gcamValue":2},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.578","gcamValue":2},{"gcamCode":"c9.579","gcamValue":2},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.746","gcamValue":2},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.239508928571429},{"gcamCode":"v10.2","gcamValue":0.220238095238095},{"gcamCode":"v11.1","gcamValue":0.177821845238095},{"gcamCode":"v19.1","gcamValue":6.41666666666667},{"gcamCode":"v19.2","gcamValue":5.27333333333333},{"gcamCode":"v19.3","gcamValue":6.04833333333333},{"gcamCode":"v19.4","gcamValue":6.08666666666667},{"gcamCode":"v19.5","gcamValue":5.36},{"gcamCode":"v19.6","gcamValue":5.92666666666667},{"gcamCode":"v19.7","gcamValue":6.78},{"gcamCode":"v19.8","gcamValue":5.2},{"gcamCode":"v19.9","gcamValue":6.19666666666667},{"gcamCode":"v20.11","gcamValue":0.8125},{"gcamCode":"v20.13","gcamValue":0.427166666666667},{"gcamCode":"v20.15","gcamValue":0.340333333333333},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v20.5","gcamValue":0.875},{"gcamCode":"v20.7","gcamValue":0.8125},{"gcamCode":"v20.9","gcamValue":0.8125},{"gcamCode":"v21.1","gcamValue":5.74170212765957},{"gcamCode":"v26.1","gcamValue":2.4875}]https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash3/c10.10.160.160/164418_143855522442517_660289714_a.png[""][""][""][][][]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.animalforum.com/list.php/author/faq.php??s=cbef11cf4ee0e4607d8ae81995af0df5;http://www.animalforum.com/list.php/author/register.php??s=cbef11cf4ee0e4607d8ae81995af0df5</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBpressparty.comhttps://www.pressparty.com/pg/newsdesk/dreamrecords/view/189492/[][][""][][][][""][]["bloomberg","goldman sachs","associated press","reuters"][{"organisation":"Bloomberg","charOffset":295},{"organisation":"Goldman Sachs","charOffset":255},{"organisation":"Associated Press","charOffset":314},{"organisation":"Reuters","charOffset":283}]{"tone":3.0769231,"positiveScore":3.0769231,"negativeScore":0,"polarity":3.0769231,"activityReferenceDensity":23.076923,"selfGroupReferenceDensity":0,"wordCount":55}[][{"gcamCode":"wc","gcamValue":55},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":8},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.8","gcamValue":6},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":1},{"gcamCode":"c14.3","gcamValue":2},{"gcamCode":"c14.5","gcamValue":2},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":1},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.109","gcamValue":4},{"gcamCode":"c16.110","gcamValue":9},{"gcamCode":"c16.114","gcamValue":3},{"gcamCode":"c16.116","gcamValue":1},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":3},{"gcamCode":"c16.12","gcamValue":5},{"gcamCode":"c16.120","gcamValue":2},{"gcamCode":"c16.121","gcamValue":1},{"gcamCode":"c16.125","gcamValue":5},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":6},{"gcamCode":"c16.129","gcamValue":6},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":4},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.145","gcamValue":3},{"gcamCode":"c16.146","gcamValue":4},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":2},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":3},{"gcamCode":"c16.161","gcamValue":4},{"gcamCode":"c16.163","gcamValue":2},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.2","gcamValue":1},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.26","gcamValue":3},{"gcamCode":"c16.31","gcamValue":4},{"gcamCode":"c16.33","gcamValue":6},{"gcamCode":"c16.35","gcamValue":4},{"gcamCode":"c16.37","gcamValue":5},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":3},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.47","gcamValue":10},{"gcamCode":"c16.52","gcamValue":4},{"gcamCode":"c16.56","gcamValue":4},{"gcamCode":"c16.57","gcamValue":25},{"gcamCode":"c16.58","gcamValue":4},{"gcamCode":"c16.6","gcamValue":4},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":1},{"gcamCode":"c16.69","gcamValue":3},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.75","gcamValue":3},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":4},{"gcamCode":"c16.88","gcamValue":5},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.91","gcamValue":2},{"gcamCode":"c16.92","gcamValue":4},{"gcamCode":"c16.94","gcamValue":5},{"gcamCode":"c16.95","gcamValue":3},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":6},{"gcamCode":"c17.1","gcamValue":11},{"gcamCode":"c17.10","gcamValue":7},{"gcamCode":"c17.11","gcamValue":6},{"gcamCode":"c17.13","gcamValue":2},{"gcamCode":"c17.15","gcamValue":8},{"gcamCode":"c17.19","gcamValue":4},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.24","gcamValue":5},{"gcamCode":"c17.27","gcamValue":7},{"gcamCode":"c17.31","gcamValue":3},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":1},{"gcamCode":"c17.34","gcamValue":1},{"gcamCode":"c17.36","gcamValue":1},{"gcamCode":"c17.37","gcamValue":3},{"gcamCode":"c17.39","gcamValue":1},{"gcamCode":"c17.4","gcamValue":11},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.42","gcamValue":2},{"gcamCode":"c17.43","gcamValue":3},{"gcamCode":"c17.5","gcamValue":8},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":4},{"gcamCode":"c17.8","gcamValue":3},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":1},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":9},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.114","gcamValue":1},{"gcamCode":"c2.116","gcamValue":1},{"gcamCode":"c2.119","gcamValue":15},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":4},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":3},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.129","gcamValue":1},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.14","gcamValue":2},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":3},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":7},{"gcamCode":"c2.148","gcamValue":3},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":1},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.155","gcamValue":7},{"gcamCode":"c2.156","gcamValue":1},{"gcamCode":"c2.157","gcamValue":7},{"gcamCode":"c2.158","gcamValue":6},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":6},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.177","gcamValue":4},{"gcamCode":"c2.179","gcamValue":2},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":4},{"gcamCode":"c2.181","gcamValue":3},{"gcamCode":"c2.183","gcamValue":4},{"gcamCode":"c2.185","gcamValue":10},{"gcamCode":"c2.187","gcamValue":4},{"gcamCode":"c2.193","gcamValue":4},{"gcamCode":"c2.195","gcamValue":6},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.198","gcamValue":4},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":3},{"gcamCode":"c2.205","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":5},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":1},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.222","gcamValue":3},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":3},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":6},{"gcamCode":"c2.25","gcamValue":6},{"gcamCode":"c2.26","gcamValue":5},{"gcamCode":"c2.27","gcamValue":5},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":3},{"gcamCode":"c2.31","gcamValue":3},{"gcamCode":"c2.34","gcamValue":4},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":7},{"gcamCode":"c2.44","gcamValue":4},{"gcamCode":"c2.45","gcamValue":6},{"gcamCode":"c2.46","gcamValue":6},{"gcamCode":"c2.48","gcamValue":3},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.52","gcamValue":4},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":5},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":5},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":4},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":6},{"gcamCode":"c2.76","gcamValue":31},{"gcamCode":"c2.77","gcamValue":9},{"gcamCode":"c2.78","gcamValue":7},{"gcamCode":"c2.80","gcamValue":2},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.86","gcamValue":2},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.31","gcamValue":4},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.37","gcamValue":1},{"gcamCode":"c4.23","gcamValue":4},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c5.10","gcamValue":2},{"gcamCode":"c5.12","gcamValue":2},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":3},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":3},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":4},{"gcamCode":"c5.46","gcamValue":5},{"gcamCode":"c5.47","gcamValue":3},{"gcamCode":"c5.49","gcamValue":4},{"gcamCode":"c5.50","gcamValue":5},{"gcamCode":"c5.51","gcamValue":4},{"gcamCode":"c5.52","gcamValue":5},{"gcamCode":"c5.53","gcamValue":4},{"gcamCode":"c5.54","gcamValue":2},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":3},{"gcamCode":"c5.62","gcamValue":19},{"gcamCode":"c5.8","gcamValue":5},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.24","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.4","gcamValue":3},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":3},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.333","gcamValue":2},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.762","gcamValue":3},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":5},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.829","gcamValue":2},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.864","gcamValue":3},{"gcamCode":"c9.868","gcamValue":3},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.298465986394558},{"gcamCode":"v10.2","gcamValue":0.151736111111111},{"gcamCode":"v11.1","gcamValue":0.133894047619048},{"gcamCode":"v19.1","gcamValue":6.6},{"gcamCode":"v19.2","gcamValue":4.7475},{"gcamCode":"v19.3","gcamValue":5.5075},{"gcamCode":"v19.4","gcamValue":6.34},{"gcamCode":"v19.5","gcamValue":4.6725},{"gcamCode":"v19.6","gcamValue":4.9625},{"gcamCode":"v19.7","gcamValue":6.7875},{"gcamCode":"v19.8","gcamValue":4.8425},{"gcamCode":"v19.9","gcamValue":5.905},{"gcamCode":"v20.13","gcamValue":0.396},{"gcamCode":"v20.15","gcamValue":0.312571428571429},{"gcamCode":"v21.1","gcamValue":5.50217391304348},{"gcamCode":"v26.1","gcamValue":0.9}]https://www.pressparty.com/assets/epk/newsdesk/189492/postimg_1558325992[""][""]["https://youtube.com/embed/Y5tjV4uShSA?modestbranding=1"][][{"name":"About Dream Holdings","charOffset":21},{"name":"Goldman Sachs","charOffset":246},{"name":"Associated Press","charOffset":318}][{"amount":29,"amountType":"public","charOffset":79}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBchelmsfordweeklynews.co.ukhttps://www.chelmsfordweeklynews.co.uk/news/national/17659721.farage-delivers-warning-to-westminster-as-he-votes-in-european-election/[][]["USPEC_POLITICS_GENERAL1","TAX_FNCACT","TAX_FNCACT_LEADER","GENERAL_GOVERNMENT","ELECTION","MEDIA_MSM","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_AIRPORT","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_1804_AIRPORTS","TAX_ECON_PRICE","WB_2670_JOBS","WB_1467_EDUCATION_FOR_ALL","WB_470_EDUCATION","WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","UNEMPLOYMENT","TAX_FNCACT_UNEMPLOYED","UNGP_JOB_OPPORTUNITIES_EMPLOYMENT","RATIFY","LEADER","TAX_FNCACT_PRESIDENT"][{"theme":"MEDIA_MSM","charOffset":323},{"theme":"TAX_FNCACT_LEADER","charOffset":19},{"theme":"TAX_ECON_PRICE","charOffset":695},{"theme":"GENERAL_GOVERNMENT","charOffset":144},{"theme":"LEADER","charOffset":1262},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":1262},{"theme":"UNEMPLOYMENT","charOffset":800},{"theme":"TAX_FNCACT_UNEMPLOYED","charOffset":800},{"theme":"UNGP_JOB_OPPORTUNITIES_EMPLOYMENT","charOffset":800},{"theme":"ELECTION","charOffset":153},{"theme":"ELECTION","charOffset":261},{"theme":"ELECTION","charOffset":679},{"theme":"SOC_POINTSOFINTEREST_AIRPORT","charOffset":381},{"theme":"WB_135_TRANSPORT","charOffset":381},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":381},{"theme":"WB_1804_AIRPORTS","charOffset":381},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":12},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":930},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":950},{"theme":"RATIFY","charOffset":830},{"theme":"WB_2670_JOBS","charOffset":715},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":715},{"theme":"WB_470_EDUCATION","charOffset":715},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":715},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":715}][][]["nigel farage","jean-claude juncker"][{"person":"Nigel Farage","charOffset":32},{"person":"Jean-Claude Juncker","charOffset":1282}]["european parliament","european commission","brexit party"][{"organisation":"European Parliament","charOffset":144},{"organisation":"European Commission","charOffset":1252},{"organisation":"Brexit Party","charOffset":12},{"organisation":"Brexit Party","charOffset":930}]{"tone":-1.6393442,"positiveScore":2.0491803,"negativeScore":3.6885245,"polarity":5.7377048,"activityReferenceDensity":20.491804,"selfGroupReferenceDensity":2.8688524,"wordCount":232}[][{"gcamCode":"wc","gcamValue":232},{"gcamCode":"c12.1","gcamValue":11},{"gcamCode":"c12.10","gcamValue":19},{"gcamCode":"c12.12","gcamValue":6},{"gcamCode":"c12.13","gcamValue":6},{"gcamCode":"c12.14","gcamValue":7},{"gcamCode":"c12.3","gcamValue":6},{"gcamCode":"c12.5","gcamValue":7},{"gcamCode":"c12.7","gcamValue":11},{"gcamCode":"c12.8","gcamValue":6},{"gcamCode":"c12.9","gcamValue":11},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c14.1","gcamValue":13},{"gcamCode":"c14.10","gcamValue":6},{"gcamCode":"c14.11","gcamValue":19},{"gcamCode":"c14.2","gcamValue":16},{"gcamCode":"c14.3","gcamValue":10},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":16},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":4},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.122","gcamValue":2},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.166","gcamValue":1},{"gcamCode":"c15.18","gcamValue":4},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.213","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":3},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.259","gcamValue":1},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.75","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.100","gcamValue":1},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.110","gcamValue":33},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":5},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":7},{"gcamCode":"c16.119","gcamValue":1},{"gcamCode":"c16.12","gcamValue":15},{"gcamCode":"c16.120","gcamValue":9},{"gcamCode":"c16.121","gcamValue":26},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":13},{"gcamCode":"c16.126","gcamValue":15},{"gcamCode":"c16.127","gcamValue":8},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":22},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":21},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.139","gcamValue":6},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.145","gcamValue":20},{"gcamCode":"c16.146","gcamValue":12},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":11},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":11},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":13},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":13},{"gcamCode":"c16.164","gcamValue":2},{"gcamCode":"c16.19","gcamValue":5},{"gcamCode":"c16.2","gcamValue":8},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.24","gcamValue":3},{"gcamCode":"c16.26","gcamValue":26},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":10},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":11},{"gcamCode":"c16.35","gcamValue":8},{"gcamCode":"c16.37","gcamValue":20},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":8},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":28},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":2},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.57","gcamValue":107},{"gcamCode":"c16.58","gcamValue":10},{"gcamCode":"c16.6","gcamValue":15},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.63","gcamValue":3},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":8},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":8},{"gcamCode":"c16.70","gcamValue":12},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":11},{"gcamCode":"c16.81","gcamValue":3},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":3},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":21},{"gcamCode":"c16.88","gcamValue":25},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":4},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":13},{"gcamCode":"c16.94","gcamValue":11},{"gcamCode":"c16.95","gcamValue":14},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":13},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":47},{"gcamCode":"c17.10","gcamValue":19},{"gcamCode":"c17.11","gcamValue":32},{"gcamCode":"c17.12","gcamValue":7},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":5},{"gcamCode":"c17.15","gcamValue":13},{"gcamCode":"c17.16","gcamValue":7},{"gcamCode":"c17.18","gcamValue":3},{"gcamCode":"c17.19","gcamValue":13},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.24","gcamValue":15},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":20},{"gcamCode":"c17.29","gcamValue":5},{"gcamCode":"c17.30","gcamValue":6},{"gcamCode":"c17.31","gcamValue":8},{"gcamCode":"c17.32","gcamValue":9},{"gcamCode":"c17.33","gcamValue":12},{"gcamCode":"c17.34","gcamValue":6},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":8},{"gcamCode":"c17.37","gcamValue":8},{"gcamCode":"c17.38","gcamValue":7},{"gcamCode":"c17.39","gcamValue":8},{"gcamCode":"c17.4","gcamValue":40},{"gcamCode":"c17.40","gcamValue":5},{"gcamCode":"c17.41","gcamValue":8},{"gcamCode":"c17.42","gcamValue":17},{"gcamCode":"c17.43","gcamValue":9},{"gcamCode":"c17.5","gcamValue":43},{"gcamCode":"c17.7","gcamValue":22},{"gcamCode":"c17.8","gcamValue":20},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.122","gcamValue":1},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.140","gcamValue":3},{"gcamCode":"c18.19","gcamValue":1},{"gcamCode":"c18.193","gcamValue":3},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.35","gcamValue":1},{"gcamCode":"c2.1","gcamValue":6},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":6},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":25},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":4},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":13},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":7},{"gcamCode":"c2.119","gcamValue":50},{"gcamCode":"c2.12","gcamValue":8},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":12},{"gcamCode":"c2.122","gcamValue":20},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":4},{"gcamCode":"c2.125","gcamValue":19},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":20},{"gcamCode":"c2.128","gcamValue":3},{"gcamCode":"c2.129","gcamValue":21},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":5},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":5},{"gcamCode":"c2.14","gcamValue":21},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":26},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":31},{"gcamCode":"c2.148","gcamValue":40},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":14},{"gcamCode":"c2.150","gcamValue":2},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":15},{"gcamCode":"c2.154","gcamValue":13},{"gcamCode":"c2.155","gcamValue":12},{"gcamCode":"c2.156","gcamValue":17},{"gcamCode":"c2.157","gcamValue":11},{"gcamCode":"c2.158","gcamValue":13},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":12},{"gcamCode":"c2.162","gcamValue":6},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.176","gcamValue":8},{"gcamCode":"c2.177","gcamValue":12},{"gcamCode":"c2.179","gcamValue":17},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":6},{"gcamCode":"c2.183","gcamValue":6},{"gcamCode":"c2.185","gcamValue":51},{"gcamCode":"c2.186","gcamValue":6},{"gcamCode":"c2.187","gcamValue":11},{"gcamCode":"c2.188","gcamValue":3},{"gcamCode":"c2.189","gcamValue":3},{"gcamCode":"c2.191","gcamValue":2},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":11},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":24},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":20},{"gcamCode":"c2.199","gcamValue":4},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.203","gcamValue":27},{"gcamCode":"c2.204","gcamValue":14},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":3},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":29},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.212","gcamValue":1},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":4},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":7},{"gcamCode":"c2.25","gcamValue":11},{"gcamCode":"c2.26","gcamValue":13},{"gcamCode":"c2.27","gcamValue":13},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":8},{"gcamCode":"c2.31","gcamValue":6},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":19},{"gcamCode":"c2.35","gcamValue":23},{"gcamCode":"c2.36","gcamValue":18},{"gcamCode":"c2.37","gcamValue":23},{"gcamCode":"c2.39","gcamValue":31},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":8},{"gcamCode":"c2.46","gcamValue":23},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":15},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":9},{"gcamCode":"c2.64","gcamValue":3},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":45},{"gcamCode":"c2.76","gcamValue":154},{"gcamCode":"c2.77","gcamValue":15},{"gcamCode":"c2.78","gcamValue":41},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.80","gcamValue":32},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":15},{"gcamCode":"c2.83","gcamValue":5},{"gcamCode":"c2.84","gcamValue":4},{"gcamCode":"c2.86","gcamValue":11},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":7},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.93","gcamValue":6},{"gcamCode":"c2.95","gcamValue":35},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":12},{"gcamCode":"c2.99","gcamValue":8},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":12},{"gcamCode":"c3.2","gcamValue":6},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.2","gcamValue":4},{"gcamCode":"c35.20","gcamValue":9},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":8},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":9},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":3},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.3","gcamValue":11},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":5},{"gcamCode":"c39.4","gcamValue":10},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.1","gcamValue":1},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c41.1","gcamValue":8},{"gcamCode":"c5.10","gcamValue":15},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":31},{"gcamCode":"c5.13","gcamValue":3},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.19","gcamValue":5},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":7},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":9},{"gcamCode":"c5.27","gcamValue":8},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":27},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":13},{"gcamCode":"c5.37","gcamValue":6},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":47},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":3},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":30},{"gcamCode":"c5.47","gcamValue":13},{"gcamCode":"c5.48","gcamValue":4},{"gcamCode":"c5.49","gcamValue":36},{"gcamCode":"c5.50","gcamValue":32},{"gcamCode":"c5.51","gcamValue":24},{"gcamCode":"c5.52","gcamValue":47},{"gcamCode":"c5.53","gcamValue":18},{"gcamCode":"c5.54","gcamValue":15},{"gcamCode":"c5.55","gcamValue":9},{"gcamCode":"c5.56","gcamValue":8},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":4},{"gcamCode":"c5.59","gcamValue":3},{"gcamCode":"c5.6","gcamValue":8},{"gcamCode":"c5.60","gcamValue":26},{"gcamCode":"c5.61","gcamValue":41},{"gcamCode":"c5.62","gcamValue":122},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":7},{"gcamCode":"c5.9","gcamValue":10},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":6},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":13},{"gcamCode":"c7.2","gcamValue":8},{"gcamCode":"c8.13","gcamValue":2},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.33","gcamValue":2},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":9},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.42","gcamValue":12},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.111","gcamValue":4},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":9},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.158","gcamValue":6},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":4},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.294","gcamValue":3},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.33","gcamValue":4},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":3},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.383","gcamValue":5},{"gcamCode":"c9.384","gcamValue":8},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.480","gcamValue":5},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":2},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":7},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":3},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.570","gcamValue":4},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.607","gcamValue":3},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":4},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":7},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.648","gcamValue":4},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":7},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.706","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":23},{"gcamCode":"c9.77","gcamValue":3},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.775","gcamValue":4},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.795","gcamValue":2},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":4},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":3},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.872","gcamValue":1},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.877","gcamValue":4},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":4},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.894","gcamValue":2},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.970","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.982","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.284122474747475},{"gcamCode":"v10.2","gcamValue":0.313858695652174},{"gcamCode":"v11.1","gcamValue":0.0837756914893617},{"gcamCode":"v19.1","gcamValue":6.19260869565217},{"gcamCode":"v19.2","gcamValue":5.28869565217391},{"gcamCode":"v19.3","gcamValue":5.57260869565217},{"gcamCode":"v19.4","gcamValue":6.18652173913044},{"gcamCode":"v19.5","gcamValue":5.27521739130435},{"gcamCode":"v19.6","gcamValue":5.70304347826087},{"gcamCode":"v19.7","gcamValue":6.20130434782609},{"gcamCode":"v19.8","gcamValue":5.32434782608696},{"gcamCode":"v19.9","gcamValue":5.4704347826087},{"gcamCode":"v20.1","gcamValue":0.520666666666667},{"gcamCode":"v20.11","gcamValue":0.532714285714286},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.446625},{"gcamCode":"v20.14","gcamValue":-0.369333333333333},{"gcamCode":"v20.15","gcamValue":0.404631578947368},{"gcamCode":"v20.16","gcamValue":-0.309666666666667},{"gcamCode":"v20.3","gcamValue":0.520666666666667},{"gcamCode":"v20.5","gcamValue":0.520666666666667},{"gcamCode":"v20.7","gcamValue":0.578},{"gcamCode":"v20.9","gcamValue":0.5458},{"gcamCode":"v21.1","gcamValue":5.40315270935961},{"gcamCode":"v26.1","gcamValue":0.32}]https://www.chelmsfordweeklynews.co.uk/resources/images/9892117/[""][""][""][][{"name":"Brexit Party","charOffset":13},{"name":"Nigel Farage","charOffset":33},{"name":"European Parliament","charOffset":143},{"name":"General Election","charOffset":260},{"name":"London Biggin Hill","charOffset":370},{"name":"General Election","charOffset":693},{"name":"Brexit Party","charOffset":949},{"name":"European Commission","charOffset":1284}][]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523125500</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBgwdtoday.comhttp://gwdtoday.com/main.asp?SectionID=2&TM=28816.37[][]["TAX_WORLDINSECTS","TAX_WORLDINSECTS_BEE","USPEC_POLITICS_GENERAL1","GENERAL_HEALTH","MEDICAL","TAX_FNCACT","TAX_FNCACT_NURSES","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","MANMADE_DISASTER_IMPLIED","PUBLIC_TRANSPORT","TAX_FNCACT_NURSE","TAX_FNCACT_LEADERS","TAX_FNCACT_EMPLOYEES","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_STAFF_MEMBERS","TAX_FNCACT_STUDENTS","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","UNGP_FORESTS_RIVERS_OCEANS","WB_841_JUSTICE_SYSTEM_ADMINISTRATION","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1211_HUMAN_RESOURCES","TAX_FNCACT_COORDINATOR","LEADER","TAX_FNCACT_PRESIDENT","AGRICULTURE","TAX_FNCACT_FARMER","WB_644_NUTRITION","WB_621_HEALTH_NUTRITION_AND_POPULATION","CRISISLEX_T11_UPDATESSYMPATHY","TAX_FNCACT_FARMERS","WB_2141_EDUCATION_DISTRICTS","WB_1502_EDUCATIONAL_DECENTRALIZATION","WB_470_EDUCATION","WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_SUPERINTENDENT","TAX_FNCACT_SUPERINTENDENT","SOC_POINTSOFINTEREST_COLLEGE","WB_1606_SCHOLARSHIPS","WB_1608_CASH_TRANSFERS","WB_1466_SOCIAL_ASSISTANCE","WB_1603_FEE_WAIVERS","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_RELIGION","TAX_RELIGION_METHODIST","TAX_RELIGION_CHURCH","SOC_POINTSOFINTEREST_HIGH_SCHOOL","WB_482_TERTIARY_EDUCATION","WB_478_LEVELS_OF_EDUCATION","TAX_FNCACT_STUDENT","TAX_FNCACT_SPEAKER","TAX_FNCACT_FOUNDER","TAX_FNCACT_TECHNICIAN","SCIENCE","SOC_POINTSOFINTEREST_COLLEGES","SOC_POINTSOFINTEREST_UNIVERSITIES","TAX_FNCACT_MAN","SOC_GENERALCRIME","TAX_FNCACT_SOLICITOR","ARREST","SOC_POINTSOFINTEREST_JAIL","TAX_MILITARY_TITLE_OFFICERS","TAX_FNCACT_OFFICERS","TAX_DISEASE","TAX_DISEASE_LACERATIONS","TAX_FNCACT_VICTIM","WB_135_TRANSPORT","CRISISLEX_CRISISLEXREC","AFFECT","POVERTY","CRISISLEX_C05_NEED_OF_SHELTERS","MEDIA_SOCIAL","WB_1921_PRIVATE_SECTOR_DEVELOPMENT","WB_346_COMPETITIVE_INDUSTRIES","WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","WB_1281_MANUFACTURING","TAX_FNCACT_GUARD","SECURITY_SERVICES","SOC_USSECURITYAGENCIES","TAX_FNCACT_VETERANS","TAX_FNCACT_LIBRARIAN","TAX_FNCACT_DIRECTOR","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_SHERIFF","TAX_FNCACT_FACULTY","TAX_FNCACT_ADJUNCT_FACULTY","TAX_FNCACT_REPRESENTATIVES","TAX_FNCACT_SUPPORTER","TAX_FNCACT_REPRESENTATIVE","TAX_FNCACT_FACULTY_MEMBER","EPU_ECONOMY_HISTORIC","USPEC_UNCERTAINTY1","TAX_FNCACT_VICE_PRESIDENT","WB_2937_SILVER","WB_507_ENERGY_AND_EXTRACTIVES","WB_895_MINING_SYSTEMS","WB_1699_METAL_ORE_MINING","TAX_FNCACT_EXECUTIVE","GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_GOVERNMENT","TAX_FNCACT_VOLUNTEER","TAX_FNCACT_CHILDREN","DISABILITY","WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","WB_635_PUBLIC_HEALTH","WB_1464_HEALTH_OF_THE_DISABLED"][{"theme":"TAX_FNCACT_VICE_PRESIDENT","charOffset":11901},{"theme":"SOC_POINTSOFINTEREST_COLLEGES","charOffset":4601},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":1422},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":2552},{"theme":"TAX_FNCACT_LIBRARIAN","charOffset":9588},{"theme":"TAX_FNCACT_STUDENT","charOffset":3764},{"theme":"TAX_FNCACT_STUDENT","charOffset":4575},{"theme":"TAX_FNCACT_STUDENT","charOffset":5917},{"theme":"TAX_FNCACT_STUDENT","charOffset":6488},{"theme":"TAX_FNCACT_STUDENT","charOffset":7189},{"theme":"TAX_FNCACT_STUDENT","charOffset":11451},{"theme":"TAX_FNCACT_STUDENT","charOffset":13559},{"theme":"TAX_FNCACT_STUDENT","charOffset":13797},{"theme":"TAX_FNCACT_FARMERS","charOffset":1451},{"theme":"GENERAL_HEALTH","charOffset":377},{"theme":"MEDICAL","charOffset":377},{"theme":"TAX_FNCACT_NURSES","charOffset":377},{"theme":"TAX_FNCACT_VOLUNTEER","charOffset":13229},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":11861},{"theme":"TAX_MILITARY_TITLE_OFFICERS","charOffset":5199},{"theme":"TAX_FNCACT_OFFICERS","charOffset":5199},{"theme":"TAX_FNCACT_FOUNDER","charOffset":3995},{"theme":"TAX_FNCACT_STAFF_MEMBERS","charOffset":724},{"theme":"TAX_FNCACT_POLICE","charOffset":9631},{"theme":"TAX_FNCACT_POLICE","charOffset":9958},{"theme":"CRISISLEX_C07_SAFETY","charOffset":9631},{"theme":"CRISISLEX_C07_SAFETY","charOffset":9958},{"theme":"TAX_FNCACT_FACULTY_MEMBER","charOffset":11806},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1117},{"theme":"GENERAL_GOVERNMENT","charOffset":13103},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":13103},{"theme":"ARREST","charOffset":5129},{"theme":"SOC_POINTSOFINTEREST_JAIL","charOffset":5129},{"theme":"TAX_FNCACT_DIRECTOR","charOffset":9614},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":13051},{"theme":"TAX_FNCACT_SOLICITOR","charOffset":5061},{"theme":"TAX_FNCACT_SOLICITOR","charOffset":9522},{"theme":"WB_2937_SILVER","charOffset":12380},{"theme":"WB_507_ENERGY_AND_EXTRACTIVES","charOffset":12380},{"theme":"WB_895_MINING_SYSTEMS","charOffset":12380},{"theme":"WB_1699_METAL_ORE_MINING","charOffset":12380},{"theme":"SOC_GENERALCRIME","charOffset":4969},{"theme":"SOC_GENERALCRIME","charOffset":9430},{"theme":"WB_644_NUTRITION","charOffset":1280},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1280},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1076},{"theme":"TAX_FNCACT_STUDENTS","charOffset":2107},{"theme":"TAX_FNCACT_STUDENTS","charOffset":2514},{"theme":"TAX_FNCACT_STUDENTS","charOffset":3508},{"theme":"TAX_FNCACT_STUDENTS","charOffset":4231},{"theme":"TAX_FNCACT_STUDENTS","charOffset":7022},{"theme":"TAX_FNCACT_STUDENTS","charOffset":8279},{"theme":"TAX_FNCACT_STUDENTS","charOffset":11985},{"theme":"TAX_FNCACT_VICTIM","charOffset":5376},{"theme":"USPEC_UNCERTAINTY1","charOffset":11884},{"theme":"AFFECT","charOffset":5643},{"theme":"POVERTY","charOffset":5643},{"theme":"CRISISLEX_C05_NEED_OF_SHELTERS","charOffset":5643},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":256},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":517},{"theme":"PUBLIC_TRANSPORT","charOffset":517},{"theme":"TAX_RELIGION_CHURCH","charOffset":3089},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":3499},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":3808},{"theme":"TAX_FNCACT_MAN","charOffset":4918},{"theme":"TAX_FNCACT_MAN","charOffset":5118},{"theme":"TAX_FNCACT_MAN","charOffset":5297},{"theme":"TAX_FNCACT_MAN","charOffset":9379},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":5471},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":637},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1848},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3499},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3808},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITIES","charOffset":4616},{"theme":"TAX_FNCACT_FACULTY","charOffset":10290},{"theme":"TAX_FNCACT_FACULTY","charOffset":10534},{"theme":"TAX_FNCACT_FACULTY","charOffset":11799},{"theme":"TAX_FNCACT_FACULTY","charOffset":12013},{"theme":"TAX_FNCACT_LEADERS","charOffset":541},{"theme":"TAX_FNCACT_LEADERS","charOffset":12213},{"theme":"WB_841_JUSTICE_SYSTEM_ADMINISTRATION","charOffset":1117},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1117},{"theme":"WB_840_JUSTICE","charOffset":1117},{"theme":"WB_1211_HUMAN_RESOURCES","charOffset":1117},{"theme":"TAX_MILITARY_TITLE_SUPERINTENDENT","charOffset":1909},{"theme":"TAX_FNCACT_SUPERINTENDENT","charOffset":1909},{"theme":"TAX_FNCACT_SHERIFF","charOffset":10009},{"theme":"TAX_FNCACT_GUARD","charOffset":8356},{"theme":"TAX_FNCACT_VETERANS","charOffset":8451},{"theme":"TAX_FNCACT_REPRESENTATIVES","charOffset":10838},{"theme":"SECURITY_SERVICES","charOffset":8356},{"theme":"SOC_USSECURITYAGENCIES","charOffset":8356},{"theme":"TAX_RELIGION_METHODIST","charOffset":3082},{"theme":"TAX_DISEASE_LACERATIONS","charOffset":5364},{"theme":"DISABILITY","charOffset":13376},{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":13376},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":13376},{"theme":"WB_1464_HEALTH_OF_THE_DISABLED","charOffset":13376},{"theme":"WB_482_TERTIARY_EDUCATION","charOffset":3548},{"theme":"WB_478_LEVELS_OF_EDUCATION","charOffset":3548},{"theme":"TAX_FNCACT_SPEAKER","charOffset":3928},{"theme":"LEADER","charOffset":1218},{"theme":"LEADER","charOffset":9802},{"theme":"LEADER","charOffset":11057},{"theme":"LEADER","charOffset":11901},{"theme":"LEADER","charOffset":12149},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":1218},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":9802},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":11057},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":11901},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":12149},{"theme":"TAX_FNCACT_ADJUNCT_FACULTY","charOffset":10290},{"theme":"TAX_FNCACT_ADJUNCT_FACULTY","charOffset":10534},{"theme":"TAX_FNCACT_COORDINATOR","charOffset":1129},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2439},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2539},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":3689},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":3823},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":5840},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":6411},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":6882},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":7112},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":9710},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":9791},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":11374},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":11821},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12120},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12182},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12259},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12373},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":13482},{"theme":"TAX_FNCACT_SUPPORTER","charOffset":11127},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":1107},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":7730},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":4008},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":4048},{"theme":"SCIENCE","charOffset":4587},{"theme":"TAX_WORLDINSECTS_BEE","charOffset":3},{"theme":"TAX_WORLDINSECTS_BEE","charOffset":177},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":7641},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":10978},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":11084},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":7641},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":10978},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":11084},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":7641},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":10978},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":11084},{"theme":"WB_1281_MANUFACTURING","charOffset":7641},{"theme":"WB_1281_MANUFACTURING","charOffset":10978},{"theme":"WB_1281_MANUFACTURING","charOffset":11084},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":608},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":917},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":6941},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":9850},{"theme":"MEDIA_SOCIAL","charOffset":5774},{"theme":"AGRICULTURE","charOffset":1263},{"theme":"AGRICULTURE","charOffset":1583},{"theme":"TAX_FNCACT_FARMER","charOffset":1263},{"theme":"TAX_FNCACT_FARMER","charOffset":1583},{"theme":"TAX_FNCACT_REPRESENTATIVE","charOffset":11704},{"theme":"TAX_FNCACT_REPRESENTATIVE","charOffset":13926},{"theme":"TAX_FNCACT_REPRESENTATIVE","charOffset":13983},{"theme":"EDUCATION","charOffset":508},{"theme":"EDUCATION","charOffset":598},{"theme":"EDUCATION","charOffset":3280},{"theme":"EDUCATION","charOffset":4222},{"theme":"EDUCATION","charOffset":4492},{"theme":"EDUCATION","charOffset":8263},{"theme":"EDUCATION","charOffset":10321},{"theme":"EDUCATION","charOffset":10433},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":508},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":598},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":3280},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":4222},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":4492},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":8263},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":10321},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":10433},{"theme":"TAX_FNCACT_NURSE","charOffset":533},{"theme":"WB_135_TRANSPORT","charOffset":5404},{"theme":"TAX_FNCACT_CHILDREN","charOffset":13342},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":2874},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":2894},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5887},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6024},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6282},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6316},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6458},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6611},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6792},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6997},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7159},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7318},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7434},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7697},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":11421},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":11583},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":11746},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":12074},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":13529},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":13686},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":13771},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":2874},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":2894},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5887},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6024},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6282},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6316},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6458},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6611},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6792},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6997},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7159},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7318},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7434},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7697},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":11421},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":11583},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":11746},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":12074},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":13529},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":13686},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":13771},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2874},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2894},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5887},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6024},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6282},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6316},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6458},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6611},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6792},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6997},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7159},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7318},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7434},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7697},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":11421},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":11583},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":11746},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":12074},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":13529},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":13686},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":13771},{"theme":"WB_1603_FEE_WAIVERS","charOffset":2874},{"theme":"WB_1603_FEE_WAIVERS","charOffset":2894},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5887},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6024},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6282},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6316},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6458},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6611},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6792},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6997},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7159},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7318},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7434},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7697},{"theme":"WB_1603_FEE_WAIVERS","charOffset":11421},{"theme":"WB_1603_FEE_WAIVERS","charOffset":11583},{"theme":"WB_1603_FEE_WAIVERS","charOffset":11746},{"theme":"WB_1603_FEE_WAIVERS","charOffset":12074},{"theme":"WB_1603_FEE_WAIVERS","charOffset":13529},{"theme":"WB_1603_FEE_WAIVERS","charOffset":13686},{"theme":"WB_1603_FEE_WAIVERS","charOffset":13771},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2874},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2894},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5887},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6024},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6282},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6316},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6458},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6611},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6792},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6997},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7159},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7318},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7434},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7697},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":11421},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":11583},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":11746},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":12074},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":13529},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":13686},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":13771},{"theme":"WB_2141_EDUCATION_DISTRICTS","charOffset":1857},{"theme":"WB_1502_EDUCATIONAL_DECENTRALIZATION","charOffset":1857},{"theme":"WB_470_EDUCATION","charOffset":1857},{"theme":"WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","charOffset":1857}][{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},{"geoType":"USCITY","geoName":"Leesville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.9165,"longitude":-81.5134},"featureId":"1223870"},{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},{"geoType":"USCITY","geoName":"Trinity United Methodist Church, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.2957,"longitude":-81.0315},"featureId":"1230987"},{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"}][{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":6083},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":6726},{"location":{"geoType":"USCITY","geoName":"Leesville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC063","geoPoint":{"latitude":33.9165,"longitude":-81.5134},"featureId":"1223870"},"charOffset":4741},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":22},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2038},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2454},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2993},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3104},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3704},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4117},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4756},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":5028},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":5686},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":5855},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6098},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6212},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6426},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6741},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6897},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":7127},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":7844},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":9489},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":9725},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":10001},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":10992},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":11098},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":11389},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":12135},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13497},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":67},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":1437},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":7627},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":8341},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":12701},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":13092},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":2439},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":3689},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":5840},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":6411},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":6882},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":7112},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":9710},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":11374},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":12120},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":13482},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":5013},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":5671},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":9474},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":9986},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":2978},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":4102},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":7829},{"location":{"geoType":"USCITY","geoName":"Trinity United Methodist Church, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC009","geoPoint":{"latitude":33.2957,"longitude":-81.0315},"featureId":"1230987"},"charOffset":3089},{"location":{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},"charOffset":6197},{"location":{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC077","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},"charOffset":2023}]["ashlee riley","michelle freeman","jeff wilson","amber christine lee","david m stumbo","tlaysha creswell","carl brock","sally baumeister","zelea james","kurstin lacoste","perrin rickenbaker","linh nguyen","terry ledford","doug timmerman","marquel evans","richard gregory","sarah foster","ray brooks","dylan antone","daniel johnson","bianca earl","dorothy holmes","yvonne hudgens","andrea pozo","todd croker","mac francisco","kendall adams"][{"person":"Ashlee Riley","charOffset":7334},{"person":"Michelle Freeman","charOffset":6659},{"person":"Jeff Wilson","charOffset":4145},{"person":"Amber Christine Lee","charOffset":4694},{"person":"Tlaysha Creswell","charOffset":3752},{"person":"Carl Brock","charOffset":7280},{"person":"Carl Brock","charOffset":7487},{"person":"Sally Baumeister","charOffset":11721},{"person":"Zelea James","charOffset":6711},{"person":"Kurstin Lacoste","charOffset":1099},{"person":"Perrin Rickenbaker","charOffset":4657},{"person":"Linh Nguyen","charOffset":11635},{"person":"Terry Ledford","charOffset":9656},{"person":"Doug Timmerman","charOffset":13941},{"person":"Marquel Evans","charOffset":6629},{"person":"Richard Gregory","charOffset":6116},{"person":"Sarah Foster","charOffset":6068},{"person":"Ray Brooks","charOffset":9813},{"person":"Ray Brooks","charOffset":12164},{"person":"Dylan Antone","charOffset":4061},{"person":"Daniel Johnson","charOffset":13704},{"person":"Daniel Johnson","charOffset":13958},{"person":"Bianca Earl","charOffset":6040},{"person":"Dorothy Holmes","charOffset":11602},{"person":"Yvonne Hudgens","charOffset":9603},{"person":"Andrea Pozo","charOffset":6181},{"person":"Todd Croker","charOffset":11045},{"person":"Mac Francisco","charOffset":13997},{"person":"Kendall Adams","charOffset":8914}]["warner lambert company","university legion hall","lander university","greenwood city police","national conference on undergraduate research","carolina national guard","burton center","office of academic affairs","mccormick high school middle college","campus police","greenwood county sheriff office","genesis education center","sterilite corporation","greenwood miracle league","arts center","kennesaw state university in marietta","greenwood school district","sterilite corporation endowed scholarship","human services","greenwood corvette club automotive scholarship","educational affairs","piedmont technical college spring commencement","humane society of greenwood","piedmont technical college","automotive technology","trinity united methodist church","senior farmer market nutrition program"][{"organisation":"Warner Lambert Company","charOffset":6242},{"organisation":"University Legion Hall","charOffset":10445},{"organisation":"Lander University","charOffset":508},{"organisation":"Lander University","charOffset":598},{"organisation":"Lander University","charOffset":3280},{"organisation":"Lander University","charOffset":4222},{"organisation":"Lander University","charOffset":8263},{"organisation":"Lander University","charOffset":10321},{"organisation":"Greenwood City Police","charOffset":9958},{"organisation":"National Conference On Undergraduate Research","charOffset":4348},{"organisation":"Carolina National Guard","charOffset":8356},{"organisation":"Burton Center","charOffset":13325},{"organisation":"Office Of Academic Affairs","charOffset":10363},{"organisation":"Mccormick High School Middle College","charOffset":3823},{"organisation":"Campus Police","charOffset":9631},{"organisation":"Genesis Education Center","charOffset":1982},{"organisation":"Sterilite Corporation","charOffset":6591},{"organisation":"Sterilite Corporation","charOffset":6766},{"organisation":"Greenwood Miracle League","charOffset":13258},{"organisation":"Arts Center","charOffset":7928},{"organisation":"Kennesaw State University In Marietta","charOffset":4504},{"organisation":"Greenwood School District","charOffset":1857},{"organisation":"Sterilite Corporation Endowed Scholarship","charOffset":6611},{"organisation":"Human Services","charOffset":7739},{"organisation":"Greenwood Corvette Club Automotive Scholarship","charOffset":13686},{"organisation":"Greenwood Corvette Club Automotive Scholarship","charOffset":13771},{"organisation":"Educational Affairs","charOffset":11925},{"organisation":"Humane Society Of Greenwood","charOffset":5521},{"organisation":"Piedmont Technical College","charOffset":2439},{"organisation":"Piedmont Technical College","charOffset":3689},{"organisation":"Piedmont Technical College","charOffset":5840},{"organisation":"Piedmont Technical College","charOffset":6411},{"organisation":"Piedmont Technical College","charOffset":6882},{"organisation":"Piedmont Technical College","charOffset":7112},{"organisation":"Piedmont Technical College","charOffset":9710},{"organisation":"Piedmont Technical College","charOffset":11374},{"organisation":"Piedmont Technical College","charOffset":12120},{"organisation":"Piedmont Technical College","charOffset":13482},{"organisation":"Automotive Technology","charOffset":13835},{"organisation":"Trinity United Methodist Church","charOffset":3089},{"organisation":"Senior Farmer Market Nutrition Program","charOffset":1288}]{"tone":3.6023712,"positiveScore":4.6511626,"negativeScore":1.0487916,"polarity":5.6999545,"activityReferenceDensity":19.972641,"selfGroupReferenceDensity":0.09119927,"wordCount":1907}[{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":636},{"dateResolution":1,"month":0,"day":0,"year":2001,"charOffset":718},{"dateResolution":4,"month":10,"day":15,"year":0,"charOffset":1724},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":2013},{"dateResolution":4,"month":5,"day":22,"year":0,"charOffset":2037},{"dateResolution":4,"month":4,"day":28,"year":0,"charOffset":2797},{"dateResolution":4,"month":5,"day":18,"year":0,"charOffset":2829},{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":3458},{"dateResolution":4,"month":5,"day":18,"year":0,"charOffset":5652},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":6338},{"dateResolution":1,"month":0,"day":0,"year":2010,"charOffset":6833},{"dateResolution":1,"month":0,"day":0,"year":2000,"charOffset":7468},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":10469},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":11832},{"dateResolution":1,"month":0,"day":0,"year":1991,"charOffset":12427}][{"gcamCode":"wc","gcamValue":1907},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":103},{"gcamCode":"c12.10","gcamValue":117},{"gcamCode":"c12.12","gcamValue":20},{"gcamCode":"c12.13","gcamValue":39},{"gcamCode":"c12.14","gcamValue":69},{"gcamCode":"c12.3","gcamValue":24},{"gcamCode":"c12.4","gcamValue":11},{"gcamCode":"c12.5","gcamValue":78},{"gcamCode":"c12.7","gcamValue":42},{"gcamCode":"c12.8","gcamValue":42},{"gcamCode":"c12.9","gcamValue":136},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.6","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":97},{"gcamCode":"c14.10","gcamValue":63},{"gcamCode":"c14.11","gcamValue":145},{"gcamCode":"c14.2","gcamValue":86},{"gcamCode":"c14.3","gcamValue":103},{"gcamCode":"c14.4","gcamValue":8},{"gcamCode":"c14.5","gcamValue":171},{"gcamCode":"c14.6","gcamValue":5},{"gcamCode":"c14.7","gcamValue":21},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":14},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.102","gcamValue":4},{"gcamCode":"c15.107","gcamValue":2},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.112","gcamValue":5},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.123","gcamValue":2},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.135","gcamValue":2},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.15","gcamValue":2},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.156","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.171","gcamValue":2},{"gcamCode":"c15.172","gcamValue":2},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":4},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.233","gcamValue":2},{"gcamCode":"c15.241","gcamValue":3},{"gcamCode":"c15.242","gcamValue":2},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.272","gcamValue":1},{"gcamCode":"c15.277","gcamValue":2},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.32","gcamValue":2},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.97","gcamValue":2},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":39},{"gcamCode":"c16.101","gcamValue":14},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":7},{"gcamCode":"c16.105","gcamValue":22},{"gcamCode":"c16.106","gcamValue":68},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":159},{"gcamCode":"c16.11","gcamValue":14},{"gcamCode":"c16.110","gcamValue":276},{"gcamCode":"c16.111","gcamValue":6},{"gcamCode":"c16.113","gcamValue":9},{"gcamCode":"c16.114","gcamValue":122},{"gcamCode":"c16.115","gcamValue":17},{"gcamCode":"c16.116","gcamValue":53},{"gcamCode":"c16.117","gcamValue":44},{"gcamCode":"c16.118","gcamValue":111},{"gcamCode":"c16.12","gcamValue":149},{"gcamCode":"c16.120","gcamValue":84},{"gcamCode":"c16.121","gcamValue":154},{"gcamCode":"c16.122","gcamValue":6},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":10},{"gcamCode":"c16.125","gcamValue":94},{"gcamCode":"c16.126","gcamValue":108},{"gcamCode":"c16.127","gcamValue":130},{"gcamCode":"c16.128","gcamValue":16},{"gcamCode":"c16.129","gcamValue":183},{"gcamCode":"c16.13","gcamValue":10},{"gcamCode":"c16.130","gcamValue":43},{"gcamCode":"c16.131","gcamValue":68},{"gcamCode":"c16.132","gcamValue":6},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":216},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.137","gcamValue":3},{"gcamCode":"c16.138","gcamValue":120},{"gcamCode":"c16.139","gcamValue":59},{"gcamCode":"c16.14","gcamValue":6},{"gcamCode":"c16.140","gcamValue":71},{"gcamCode":"c16.141","gcamValue":2},{"gcamCode":"c16.142","gcamValue":8},{"gcamCode":"c16.143","gcamValue":6},{"gcamCode":"c16.145","gcamValue":181},{"gcamCode":"c16.146","gcamValue":143},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.15","gcamValue":19},{"gcamCode":"c16.150","gcamValue":7},{"gcamCode":"c16.151","gcamValue":5},{"gcamCode":"c16.152","gcamValue":17},{"gcamCode":"c16.153","gcamValue":77},{"gcamCode":"c16.155","gcamValue":7},{"gcamCode":"c16.156","gcamValue":9},{"gcamCode":"c16.157","gcamValue":34},{"gcamCode":"c16.158","gcamValue":7},{"gcamCode":"c16.159","gcamValue":149},{"gcamCode":"c16.16","gcamValue":39},{"gcamCode":"c16.161","gcamValue":131},{"gcamCode":"c16.162","gcamValue":108},{"gcamCode":"c16.163","gcamValue":109},{"gcamCode":"c16.164","gcamValue":77},{"gcamCode":"c16.165","gcamValue":12},{"gcamCode":"c16.167","gcamValue":1},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":5},{"gcamCode":"c16.19","gcamValue":33},{"gcamCode":"c16.2","gcamValue":160},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":9},{"gcamCode":"c16.22","gcamValue":34},{"gcamCode":"c16.23","gcamValue":31},{"gcamCode":"c16.24","gcamValue":13},{"gcamCode":"c16.26","gcamValue":190},{"gcamCode":"c16.27","gcamValue":5},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":9},{"gcamCode":"c16.3","gcamValue":30},{"gcamCode":"c16.30","gcamValue":5},{"gcamCode":"c16.31","gcamValue":106},{"gcamCode":"c16.32","gcamValue":12},{"gcamCode":"c16.33","gcamValue":130},{"gcamCode":"c16.34","gcamValue":13},{"gcamCode":"c16.35","gcamValue":88},{"gcamCode":"c16.36","gcamValue":6},{"gcamCode":"c16.37","gcamValue":152},{"gcamCode":"c16.38","gcamValue":57},{"gcamCode":"c16.39","gcamValue":6},{"gcamCode":"c16.4","gcamValue":110},{"gcamCode":"c16.41","gcamValue":63},{"gcamCode":"c16.42","gcamValue":6},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":78},{"gcamCode":"c16.46","gcamValue":16},{"gcamCode":"c16.47","gcamValue":280},{"gcamCode":"c16.48","gcamValue":12},{"gcamCode":"c16.49","gcamValue":8},{"gcamCode":"c16.5","gcamValue":8},{"gcamCode":"c16.50","gcamValue":10},{"gcamCode":"c16.51","gcamValue":25},{"gcamCode":"c16.52","gcamValue":113},{"gcamCode":"c16.53","gcamValue":15},{"gcamCode":"c16.54","gcamValue":5},{"gcamCode":"c16.55","gcamValue":6},{"gcamCode":"c16.56","gcamValue":45},{"gcamCode":"c16.57","gcamValue":977},{"gcamCode":"c16.58","gcamValue":103},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":176},{"gcamCode":"c16.60","gcamValue":22},{"gcamCode":"c16.61","gcamValue":4},{"gcamCode":"c16.62","gcamValue":60},{"gcamCode":"c16.63","gcamValue":24},{"gcamCode":"c16.64","gcamValue":33},{"gcamCode":"c16.65","gcamValue":52},{"gcamCode":"c16.66","gcamValue":32},{"gcamCode":"c16.68","gcamValue":84},{"gcamCode":"c16.69","gcamValue":57},{"gcamCode":"c16.7","gcamValue":37},{"gcamCode":"c16.70","gcamValue":139},{"gcamCode":"c16.71","gcamValue":27},{"gcamCode":"c16.72","gcamValue":10},{"gcamCode":"c16.73","gcamValue":10},{"gcamCode":"c16.74","gcamValue":19},{"gcamCode":"c16.75","gcamValue":63},{"gcamCode":"c16.76","gcamValue":7},{"gcamCode":"c16.77","gcamValue":5},{"gcamCode":"c16.78","gcamValue":35},{"gcamCode":"c16.79","gcamValue":20},{"gcamCode":"c16.8","gcamValue":6},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.81","gcamValue":13},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":91},{"gcamCode":"c16.85","gcamValue":11},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":179},{"gcamCode":"c16.88","gcamValue":179},{"gcamCode":"c16.89","gcamValue":43},{"gcamCode":"c16.9","gcamValue":9},{"gcamCode":"c16.90","gcamValue":36},{"gcamCode":"c16.91","gcamValue":47},{"gcamCode":"c16.92","gcamValue":116},{"gcamCode":"c16.93","gcamValue":14},{"gcamCode":"c16.94","gcamValue":133},{"gcamCode":"c16.95","gcamValue":141},{"gcamCode":"c16.96","gcamValue":34},{"gcamCode":"c16.97","gcamValue":5},{"gcamCode":"c16.98","gcamValue":115},{"gcamCode":"c16.99","gcamValue":5},{"gcamCode":"c17.1","gcamValue":479},{"gcamCode":"c17.10","gcamValue":216},{"gcamCode":"c17.11","gcamValue":214},{"gcamCode":"c17.12","gcamValue":50},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":33},{"gcamCode":"c17.15","gcamValue":182},{"gcamCode":"c17.16","gcamValue":75},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":78},{"gcamCode":"c17.19","gcamValue":118},{"gcamCode":"c17.2","gcamValue":60},{"gcamCode":"c17.20","gcamValue":14},{"gcamCode":"c17.21","gcamValue":12},{"gcamCode":"c17.22","gcamValue":69},{"gcamCode":"c17.23","gcamValue":13},{"gcamCode":"c17.24","gcamValue":133},{"gcamCode":"c17.25","gcamValue":26},{"gcamCode":"c17.26","gcamValue":6},{"gcamCode":"c17.27","gcamValue":165},{"gcamCode":"c17.28","gcamValue":18},{"gcamCode":"c17.29","gcamValue":65},{"gcamCode":"c17.3","gcamValue":12},{"gcamCode":"c17.30","gcamValue":26},{"gcamCode":"c17.31","gcamValue":83},{"gcamCode":"c17.32","gcamValue":75},{"gcamCode":"c17.33","gcamValue":98},{"gcamCode":"c17.34","gcamValue":43},{"gcamCode":"c17.35","gcamValue":36},{"gcamCode":"c17.36","gcamValue":53},{"gcamCode":"c17.37","gcamValue":50},{"gcamCode":"c17.38","gcamValue":10},{"gcamCode":"c17.39","gcamValue":61},{"gcamCode":"c17.4","gcamValue":348},{"gcamCode":"c17.40","gcamValue":37},{"gcamCode":"c17.41","gcamValue":64},{"gcamCode":"c17.42","gcamValue":112},{"gcamCode":"c17.43","gcamValue":90},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":386},{"gcamCode":"c17.6","gcamValue":21},{"gcamCode":"c17.7","gcamValue":239},{"gcamCode":"c17.8","gcamValue":155},{"gcamCode":"c17.9","gcamValue":21},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.110","gcamValue":1},{"gcamCode":"c18.136","gcamValue":1},{"gcamCode":"c18.139","gcamValue":5},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.147","gcamValue":37},{"gcamCode":"c18.149","gcamValue":4},{"gcamCode":"c18.179","gcamValue":2},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.186","gcamValue":1},{"gcamCode":"c18.193","gcamValue":69},{"gcamCode":"c18.269","gcamValue":2},{"gcamCode":"c18.298","gcamValue":42},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":16},{"gcamCode":"c18.345","gcamValue":2},{"gcamCode":"c18.347","gcamValue":2},{"gcamCode":"c18.35","gcamValue":2},{"gcamCode":"c18.365","gcamValue":1},{"gcamCode":"c18.52","gcamValue":4},{"gcamCode":"c18.71","gcamValue":3},{"gcamCode":"c18.73","gcamValue":2},{"gcamCode":"c18.77","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.82","gcamValue":1},{"gcamCode":"c2.1","gcamValue":91},{"gcamCode":"c2.10","gcamValue":4},{"gcamCode":"c2.100","gcamValue":8},{"gcamCode":"c2.101","gcamValue":22},{"gcamCode":"c2.102","gcamValue":42},{"gcamCode":"c2.103","gcamValue":7},{"gcamCode":"c2.104","gcamValue":215},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":4},{"gcamCode":"c2.11","gcamValue":35},{"gcamCode":"c2.110","gcamValue":15},{"gcamCode":"c2.111","gcamValue":4},{"gcamCode":"c2.112","gcamValue":19},{"gcamCode":"c2.113","gcamValue":15},{"gcamCode":"c2.114","gcamValue":56},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":39},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":7},{"gcamCode":"c2.119","gcamValue":565},{"gcamCode":"c2.12","gcamValue":152},{"gcamCode":"c2.120","gcamValue":4},{"gcamCode":"c2.121","gcamValue":110},{"gcamCode":"c2.122","gcamValue":29},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":62},{"gcamCode":"c2.126","gcamValue":76},{"gcamCode":"c2.127","gcamValue":163},{"gcamCode":"c2.128","gcamValue":84},{"gcamCode":"c2.129","gcamValue":112},{"gcamCode":"c2.13","gcamValue":1},{"gcamCode":"c2.130","gcamValue":11},{"gcamCode":"c2.131","gcamValue":11},{"gcamCode":"c2.132","gcamValue":25},{"gcamCode":"c2.133","gcamValue":17},{"gcamCode":"c2.134","gcamValue":4},{"gcamCode":"c2.135","gcamValue":5},{"gcamCode":"c2.136","gcamValue":11},{"gcamCode":"c2.137","gcamValue":2},{"gcamCode":"c2.138","gcamValue":5},{"gcamCode":"c2.139","gcamValue":7},{"gcamCode":"c2.14","gcamValue":137},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":42},{"gcamCode":"c2.142","gcamValue":13},{"gcamCode":"c2.143","gcamValue":122},{"gcamCode":"c2.144","gcamValue":17},{"gcamCode":"c2.145","gcamValue":7},{"gcamCode":"c2.146","gcamValue":10},{"gcamCode":"c2.147","gcamValue":299},{"gcamCode":"c2.148","gcamValue":81},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":83},{"gcamCode":"c2.150","gcamValue":11},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.152","gcamValue":12},{"gcamCode":"c2.153","gcamValue":31},{"gcamCode":"c2.154","gcamValue":49},{"gcamCode":"c2.155","gcamValue":209},{"gcamCode":"c2.156","gcamValue":82},{"gcamCode":"c2.157","gcamValue":179},{"gcamCode":"c2.158","gcamValue":122},{"gcamCode":"c2.159","gcamValue":10},{"gcamCode":"c2.160","gcamValue":46},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":25},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":28},{"gcamCode":"c2.167","gcamValue":4},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":15},{"gcamCode":"c2.170","gcamValue":22},{"gcamCode":"c2.171","gcamValue":2},{"gcamCode":"c2.172","gcamValue":18},{"gcamCode":"c2.173","gcamValue":25},{"gcamCode":"c2.174","gcamValue":5},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":31},{"gcamCode":"c2.177","gcamValue":125},{"gcamCode":"c2.178","gcamValue":4},{"gcamCode":"c2.179","gcamValue":47},{"gcamCode":"c2.18","gcamValue":56},{"gcamCode":"c2.180","gcamValue":61},{"gcamCode":"c2.181","gcamValue":79},{"gcamCode":"c2.182","gcamValue":4},{"gcamCode":"c2.183","gcamValue":86},{"gcamCode":"c2.184","gcamValue":2},{"gcamCode":"c2.185","gcamValue":323},{"gcamCode":"c2.186","gcamValue":15},{"gcamCode":"c2.187","gcamValue":77},{"gcamCode":"c2.19","gcamValue":17},{"gcamCode":"c2.191","gcamValue":49},{"gcamCode":"c2.192","gcamValue":22},{"gcamCode":"c2.193","gcamValue":97},{"gcamCode":"c2.194","gcamValue":5},{"gcamCode":"c2.195","gcamValue":145},{"gcamCode":"c2.196","gcamValue":50},{"gcamCode":"c2.197","gcamValue":54},{"gcamCode":"c2.198","gcamValue":169},{"gcamCode":"c2.199","gcamValue":34},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":14},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":56},{"gcamCode":"c2.204","gcamValue":156},{"gcamCode":"c2.205","gcamValue":12},{"gcamCode":"c2.206","gcamValue":25},{"gcamCode":"c2.207","gcamValue":10},{"gcamCode":"c2.208","gcamValue":6},{"gcamCode":"c2.209","gcamValue":25},{"gcamCode":"c2.21","gcamValue":4},{"gcamCode":"c2.210","gcamValue":136},{"gcamCode":"c2.211","gcamValue":11},{"gcamCode":"c2.212","gcamValue":4},{"gcamCode":"c2.213","gcamValue":18},{"gcamCode":"c2.214","gcamValue":75},{"gcamCode":"c2.215","gcamValue":7},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":12},{"gcamCode":"c2.218","gcamValue":8},{"gcamCode":"c2.219","gcamValue":3},{"gcamCode":"c2.220","gcamValue":30},{"gcamCode":"c2.221","gcamValue":24},{"gcamCode":"c2.222","gcamValue":5},{"gcamCode":"c2.223","gcamValue":32},{"gcamCode":"c2.224","gcamValue":3},{"gcamCode":"c2.225","gcamValue":33},{"gcamCode":"c2.226","gcamValue":40},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":4},{"gcamCode":"c2.23","gcamValue":70},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":95},{"gcamCode":"c2.26","gcamValue":51},{"gcamCode":"c2.27","gcamValue":51},{"gcamCode":"c2.28","gcamValue":12},{"gcamCode":"c2.30","gcamValue":57},{"gcamCode":"c2.31","gcamValue":80},{"gcamCode":"c2.32","gcamValue":7},{"gcamCode":"c2.33","gcamValue":22},{"gcamCode":"c2.34","gcamValue":61},{"gcamCode":"c2.35","gcamValue":21},{"gcamCode":"c2.36","gcamValue":12},{"gcamCode":"c2.37","gcamValue":16},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":217},{"gcamCode":"c2.4","gcamValue":8},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.41","gcamValue":2},{"gcamCode":"c2.42","gcamValue":10},{"gcamCode":"c2.44","gcamValue":130},{"gcamCode":"c2.45","gcamValue":131},{"gcamCode":"c2.46","gcamValue":116},{"gcamCode":"c2.47","gcamValue":18},{"gcamCode":"c2.48","gcamValue":49},{"gcamCode":"c2.49","gcamValue":3},{"gcamCode":"c2.5","gcamValue":8},{"gcamCode":"c2.50","gcamValue":25},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":171},{"gcamCode":"c2.53","gcamValue":18},{"gcamCode":"c2.54","gcamValue":201},{"gcamCode":"c2.55","gcamValue":7},{"gcamCode":"c2.56","gcamValue":6},{"gcamCode":"c2.57","gcamValue":28},{"gcamCode":"c2.58","gcamValue":65},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":17},{"gcamCode":"c2.60","gcamValue":7},{"gcamCode":"c2.61","gcamValue":8},{"gcamCode":"c2.62","gcamValue":72},{"gcamCode":"c2.64","gcamValue":36},{"gcamCode":"c2.65","gcamValue":26},{"gcamCode":"c2.66","gcamValue":6},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":11},{"gcamCode":"c2.69","gcamValue":2},{"gcamCode":"c2.70","gcamValue":8},{"gcamCode":"c2.71","gcamValue":6},{"gcamCode":"c2.72","gcamValue":9},{"gcamCode":"c2.73","gcamValue":22},{"gcamCode":"c2.74","gcamValue":6},{"gcamCode":"c2.75","gcamValue":234},{"gcamCode":"c2.76","gcamValue":1166},{"gcamCode":"c2.77","gcamValue":186},{"gcamCode":"c2.78","gcamValue":196},{"gcamCode":"c2.79","gcamValue":20},{"gcamCode":"c2.80","gcamValue":204},{"gcamCode":"c2.81","gcamValue":14},{"gcamCode":"c2.82","gcamValue":38},{"gcamCode":"c2.83","gcamValue":11},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":40},{"gcamCode":"c2.87","gcamValue":10},{"gcamCode":"c2.88","gcamValue":31},{"gcamCode":"c2.89","gcamValue":53},{"gcamCode":"c2.9","gcamValue":19},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":31},{"gcamCode":"c2.95","gcamValue":198},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":34},{"gcamCode":"c2.98","gcamValue":54},{"gcamCode":"c2.99","gcamValue":8},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.5","gcamValue":41},{"gcamCode":"c25.7","gcamValue":13},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":33},{"gcamCode":"c3.2","gcamValue":166},{"gcamCode":"c35.1","gcamValue":53},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":7},{"gcamCode":"c35.13","gcamValue":3},{"gcamCode":"c35.14","gcamValue":29},{"gcamCode":"c35.15","gcamValue":55},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":9},{"gcamCode":"c35.20","gcamValue":43},{"gcamCode":"c35.21","gcamValue":3},{"gcamCode":"c35.22","gcamValue":4},{"gcamCode":"c35.25","gcamValue":31},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.27","gcamValue":1},{"gcamCode":"c35.3","gcamValue":4},{"gcamCode":"c35.31","gcamValue":133},{"gcamCode":"c35.32","gcamValue":88},{"gcamCode":"c35.33","gcamValue":83},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":32},{"gcamCode":"c35.7","gcamValue":22},{"gcamCode":"c39.1","gcamValue":6},{"gcamCode":"c39.10","gcamValue":3},{"gcamCode":"c39.12","gcamValue":3},{"gcamCode":"c39.13","gcamValue":7},{"gcamCode":"c39.14","gcamValue":8},{"gcamCode":"c39.17","gcamValue":22},{"gcamCode":"c39.18","gcamValue":12},{"gcamCode":"c39.19","gcamValue":6},{"gcamCode":"c39.2","gcamValue":33},{"gcamCode":"c39.20","gcamValue":4},{"gcamCode":"c39.21","gcamValue":2},{"gcamCode":"c39.23","gcamValue":1},{"gcamCode":"c39.24","gcamValue":2},{"gcamCode":"c39.25","gcamValue":4},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.28","gcamValue":5},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":95},{"gcamCode":"c39.30","gcamValue":5},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":4},{"gcamCode":"c39.36","gcamValue":24},{"gcamCode":"c39.37","gcamValue":95},{"gcamCode":"c39.38","gcamValue":5},{"gcamCode":"c39.39","gcamValue":34},{"gcamCode":"c39.4","gcamValue":95},{"gcamCode":"c39.40","gcamValue":8},{"gcamCode":"c39.41","gcamValue":26},{"gcamCode":"c39.5","gcamValue":52},{"gcamCode":"c39.6","gcamValue":4},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":4},{"gcamCode":"c4.15","gcamValue":5},{"gcamCode":"c4.16","gcamValue":4},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":2},{"gcamCode":"c4.23","gcamValue":59},{"gcamCode":"c4.28","gcamValue":2},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.6","gcamValue":2},{"gcamCode":"c4.8","gcamValue":36},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c40.5","gcamValue":5},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":2},{"gcamCode":"c41.1","gcamValue":44},{"gcamCode":"c5.10","gcamValue":132},{"gcamCode":"c5.11","gcamValue":38},{"gcamCode":"c5.12","gcamValue":289},{"gcamCode":"c5.13","gcamValue":13},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":12},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":27},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.20","gcamValue":38},{"gcamCode":"c5.21","gcamValue":45},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":28},{"gcamCode":"c5.24","gcamValue":11},{"gcamCode":"c5.25","gcamValue":9},{"gcamCode":"c5.26","gcamValue":18},{"gcamCode":"c5.27","gcamValue":13},{"gcamCode":"c5.28","gcamValue":26},{"gcamCode":"c5.29","gcamValue":17},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":121},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.33","gcamValue":3},{"gcamCode":"c5.34","gcamValue":13},{"gcamCode":"c5.35","gcamValue":74},{"gcamCode":"c5.36","gcamValue":94},{"gcamCode":"c5.37","gcamValue":25},{"gcamCode":"c5.38","gcamValue":4},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":37},{"gcamCode":"c5.40","gcamValue":122},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":29},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":298},{"gcamCode":"c5.47","gcamValue":27},{"gcamCode":"c5.48","gcamValue":14},{"gcamCode":"c5.49","gcamValue":103},{"gcamCode":"c5.5","gcamValue":9},{"gcamCode":"c5.50","gcamValue":132},{"gcamCode":"c5.51","gcamValue":83},{"gcamCode":"c5.52","gcamValue":149},{"gcamCode":"c5.53","gcamValue":150},{"gcamCode":"c5.54","gcamValue":45},{"gcamCode":"c5.55","gcamValue":17},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.57","gcamValue":4},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":83},{"gcamCode":"c5.60","gcamValue":25},{"gcamCode":"c5.61","gcamValue":70},{"gcamCode":"c5.62","gcamValue":653},{"gcamCode":"c5.7","gcamValue":72},{"gcamCode":"c5.8","gcamValue":219},{"gcamCode":"c5.9","gcamValue":111},{"gcamCode":"c6.1","gcamValue":13},{"gcamCode":"c6.2","gcamValue":16},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":24},{"gcamCode":"c6.5","gcamValue":39},{"gcamCode":"c6.6","gcamValue":7},{"gcamCode":"c7.1","gcamValue":40},{"gcamCode":"c7.2","gcamValue":108},{"gcamCode":"c8.1","gcamValue":4},{"gcamCode":"c8.10","gcamValue":5},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":3},{"gcamCode":"c8.13","gcamValue":7},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":3},{"gcamCode":"c8.17","gcamValue":8},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":9},{"gcamCode":"c8.20","gcamValue":13},{"gcamCode":"c8.22","gcamValue":6},{"gcamCode":"c8.23","gcamValue":54},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":3},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.36","gcamValue":47},{"gcamCode":"c8.37","gcamValue":38},{"gcamCode":"c8.38","gcamValue":66},{"gcamCode":"c8.39","gcamValue":9},{"gcamCode":"c8.4","gcamValue":59},{"gcamCode":"c8.40","gcamValue":7},{"gcamCode":"c8.41","gcamValue":6},{"gcamCode":"c8.42","gcamValue":64},{"gcamCode":"c8.43","gcamValue":47},{"gcamCode":"c8.5","gcamValue":7},{"gcamCode":"c8.6","gcamValue":8},{"gcamCode":"c9.1","gcamValue":67},{"gcamCode":"c9.10","gcamValue":17},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":6},{"gcamCode":"c9.1005","gcamValue":2},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":6},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1013","gcamValue":5},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":4},{"gcamCode":"c9.1018","gcamValue":7},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":14},{"gcamCode":"c9.1025","gcamValue":3},{"gcamCode":"c9.1027","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":12},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":8},{"gcamCode":"c9.1039","gcamValue":3},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":5},{"gcamCode":"c9.1041","gcamValue":13},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.107","gcamValue":10},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":7},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.111","gcamValue":19},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.113","gcamValue":17},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":7},{"gcamCode":"c9.117","gcamValue":4},{"gcamCode":"c9.118","gcamValue":9},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.12","gcamValue":3},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":8},{"gcamCode":"c9.123","gcamValue":11},{"gcamCode":"c9.124","gcamValue":6},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":73},{"gcamCode":"c9.129","gcamValue":10},{"gcamCode":"c9.130","gcamValue":15},{"gcamCode":"c9.131","gcamValue":7},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.133","gcamValue":3},{"gcamCode":"c9.134","gcamValue":10},{"gcamCode":"c9.135","gcamValue":4},{"gcamCode":"c9.137","gcamValue":5},{"gcamCode":"c9.138","gcamValue":9},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":19},{"gcamCode":"c9.142","gcamValue":5},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":24},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":9},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.150","gcamValue":3},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.154","gcamValue":3},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":12},{"gcamCode":"c9.158","gcamValue":23},{"gcamCode":"c9.159","gcamValue":5},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":17},{"gcamCode":"c9.161","gcamValue":6},{"gcamCode":"c9.162","gcamValue":32},{"gcamCode":"c9.164","gcamValue":10},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":10},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":12},{"gcamCode":"c9.169","gcamValue":7},{"gcamCode":"c9.170","gcamValue":2},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.173","gcamValue":6},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":7},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":16},{"gcamCode":"c9.178","gcamValue":6},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.180","gcamValue":6},{"gcamCode":"c9.182","gcamValue":13},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":37},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":18},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.190","gcamValue":14},{"gcamCode":"c9.191","gcamValue":2},{"gcamCode":"c9.192","gcamValue":7},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":10},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":19},{"gcamCode":"c9.2","gcamValue":4},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":12},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":8},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":14},{"gcamCode":"c9.21","gcamValue":3},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":4},{"gcamCode":"c9.215","gcamValue":8},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.218","gcamValue":2},{"gcamCode":"c9.219","gcamValue":6},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":12},{"gcamCode":"c9.223","gcamValue":3},{"gcamCode":"c9.224","gcamValue":26},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":4},{"gcamCode":"c9.232","gcamValue":4},{"gcamCode":"c9.233","gcamValue":6},{"gcamCode":"c9.235","gcamValue":10},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.240","gcamValue":2},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.244","gcamValue":3},{"gcamCode":"c9.245","gcamValue":5},{"gcamCode":"c9.246","gcamValue":3},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.248","gcamValue":2},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.25","gcamValue":4},{"gcamCode":"c9.250","gcamValue":4},{"gcamCode":"c9.251","gcamValue":2},{"gcamCode":"c9.252","gcamValue":6},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":3},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":8},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":5},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":8},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":4},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.284","gcamValue":11},{"gcamCode":"c9.285","gcamValue":3},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.287","gcamValue":6},{"gcamCode":"c9.288","gcamValue":13},{"gcamCode":"c9.289","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":11},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":57},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":8},{"gcamCode":"c9.303","gcamValue":8},{"gcamCode":"c9.304","gcamValue":5},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":3},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":14},{"gcamCode":"c9.309","gcamValue":2},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":2},{"gcamCode":"c9.312","gcamValue":3},{"gcamCode":"c9.315","gcamValue":2},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.319","gcamValue":6},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.321","gcamValue":2},{"gcamCode":"c9.324","gcamValue":3},{"gcamCode":"c9.328","gcamValue":3},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":21},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":2},{"gcamCode":"c9.333","gcamValue":3},{"gcamCode":"c9.335","gcamValue":8},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":9},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":15},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":12},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":2},{"gcamCode":"c9.367","gcamValue":1},{"gcamCode":"c9.37","gcamValue":3},{"gcamCode":"c9.370","gcamValue":3},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":8},{"gcamCode":"c9.375","gcamValue":2},{"gcamCode":"c9.377","gcamValue":3},{"gcamCode":"c9.378","gcamValue":40},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":6},{"gcamCode":"c9.383","gcamValue":26},{"gcamCode":"c9.384","gcamValue":7},{"gcamCode":"c9.385","gcamValue":2},{"gcamCode":"c9.386","gcamValue":3},{"gcamCode":"c9.387","gcamValue":2},{"gcamCode":"c9.389","gcamValue":3},{"gcamCode":"c9.39","gcamValue":29},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":4},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.4","gcamValue":6},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.405","gcamValue":6},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.41","gcamValue":5},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.417","gcamValue":1},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.426","gcamValue":2},{"gcamCode":"c9.427","gcamValue":2},{"gcamCode":"c9.428","gcamValue":3},{"gcamCode":"c9.430","gcamValue":14},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.434","gcamValue":2},{"gcamCode":"c9.437","gcamValue":7},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.44","gcamValue":16},{"gcamCode":"c9.440","gcamValue":13},{"gcamCode":"c9.443","gcamValue":2},{"gcamCode":"c9.445","gcamValue":2},{"gcamCode":"c9.446","gcamValue":3},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.448","gcamValue":2},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":10},{"gcamCode":"c9.46","gcamValue":7},{"gcamCode":"c9.461","gcamValue":3},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":4},{"gcamCode":"c9.464","gcamValue":3},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":6},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":8},{"gcamCode":"c9.47","gcamValue":6},{"gcamCode":"c9.470","gcamValue":11},{"gcamCode":"c9.471","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":4},{"gcamCode":"c9.476","gcamValue":17},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":2},{"gcamCode":"c9.479","gcamValue":32},{"gcamCode":"c9.48","gcamValue":18},{"gcamCode":"c9.480","gcamValue":19},{"gcamCode":"c9.482","gcamValue":6},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":7},{"gcamCode":"c9.487","gcamValue":8},{"gcamCode":"c9.488","gcamValue":5},{"gcamCode":"c9.489","gcamValue":19},{"gcamCode":"c9.49","gcamValue":28},{"gcamCode":"c9.491","gcamValue":6},{"gcamCode":"c9.493","gcamValue":4},{"gcamCode":"c9.494","gcamValue":6},{"gcamCode":"c9.496","gcamValue":7},{"gcamCode":"c9.498","gcamValue":36},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":9},{"gcamCode":"c9.500","gcamValue":6},{"gcamCode":"c9.501","gcamValue":7},{"gcamCode":"c9.502","gcamValue":8},{"gcamCode":"c9.503","gcamValue":7},{"gcamCode":"c9.504","gcamValue":5},{"gcamCode":"c9.507","gcamValue":16},{"gcamCode":"c9.509","gcamValue":2},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":23},{"gcamCode":"c9.513","gcamValue":63},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.518","gcamValue":4},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.520","gcamValue":3},{"gcamCode":"c9.521","gcamValue":11},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":4},{"gcamCode":"c9.525","gcamValue":4},{"gcamCode":"c9.528","gcamValue":19},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":9},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":2},{"gcamCode":"c9.534","gcamValue":12},{"gcamCode":"c9.537","gcamValue":16},{"gcamCode":"c9.538","gcamValue":1},{"gcamCode":"c9.539","gcamValue":5},{"gcamCode":"c9.54","gcamValue":16},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":3},{"gcamCode":"c9.545","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.548","gcamValue":1},{"gcamCode":"c9.549","gcamValue":21},{"gcamCode":"c9.55","gcamValue":11},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":13},{"gcamCode":"c9.554","gcamValue":4},{"gcamCode":"c9.556","gcamValue":9},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":3},{"gcamCode":"c9.560","gcamValue":12},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":20},{"gcamCode":"c9.564","gcamValue":38},{"gcamCode":"c9.565","gcamValue":6},{"gcamCode":"c9.566","gcamValue":20},{"gcamCode":"c9.567","gcamValue":45},{"gcamCode":"c9.568","gcamValue":3},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.57","gcamValue":5},{"gcamCode":"c9.570","gcamValue":8},{"gcamCode":"c9.571","gcamValue":5},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.575","gcamValue":8},{"gcamCode":"c9.576","gcamValue":20},{"gcamCode":"c9.579","gcamValue":64},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.581","gcamValue":11},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":3},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":21},{"gcamCode":"c9.586","gcamValue":5},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":4},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.590","gcamValue":2},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":5},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":4},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":5},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":15},{"gcamCode":"c9.62","gcamValue":6},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":3},{"gcamCode":"c9.624","gcamValue":12},{"gcamCode":"c9.625","gcamValue":16},{"gcamCode":"c9.626","gcamValue":6},{"gcamCode":"c9.627","gcamValue":14},{"gcamCode":"c9.629","gcamValue":18},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":14},{"gcamCode":"c9.635","gcamValue":15},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":9},{"gcamCode":"c9.640","gcamValue":32},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":45},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":4},{"gcamCode":"c9.648","gcamValue":37},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":7},{"gcamCode":"c9.653","gcamValue":81},{"gcamCode":"c9.654","gcamValue":7},{"gcamCode":"c9.655","gcamValue":10},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.657","gcamValue":2},{"gcamCode":"c9.658","gcamValue":7},{"gcamCode":"c9.659","gcamValue":8},{"gcamCode":"c9.66","gcamValue":8},{"gcamCode":"c9.660","gcamValue":22},{"gcamCode":"c9.661","gcamValue":8},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":7},{"gcamCode":"c9.665","gcamValue":3},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":5},{"gcamCode":"c9.668","gcamValue":9},{"gcamCode":"c9.669","gcamValue":22},{"gcamCode":"c9.67","gcamValue":7},{"gcamCode":"c9.670","gcamValue":18},{"gcamCode":"c9.671","gcamValue":5},{"gcamCode":"c9.672","gcamValue":11},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":15},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":9},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":8},{"gcamCode":"c9.682","gcamValue":6},{"gcamCode":"c9.683","gcamValue":8},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.686","gcamValue":5},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.688","gcamValue":6},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":10},{"gcamCode":"c9.692","gcamValue":11},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.695","gcamValue":3},{"gcamCode":"c9.696","gcamValue":4},{"gcamCode":"c9.698","gcamValue":11},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":9},{"gcamCode":"c9.70","gcamValue":17},{"gcamCode":"c9.700","gcamValue":2},{"gcamCode":"c9.701","gcamValue":59},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":39},{"gcamCode":"c9.705","gcamValue":7},{"gcamCode":"c9.708","gcamValue":10},{"gcamCode":"c9.71","gcamValue":8},{"gcamCode":"c9.710","gcamValue":16},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":6},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.718","gcamValue":10},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.72","gcamValue":4},{"gcamCode":"c9.720","gcamValue":7},{"gcamCode":"c9.721","gcamValue":5},{"gcamCode":"c9.722","gcamValue":16},{"gcamCode":"c9.723","gcamValue":11},{"gcamCode":"c9.724","gcamValue":60},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":95},{"gcamCode":"c9.727","gcamValue":6},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":13},{"gcamCode":"c9.730","gcamValue":57},{"gcamCode":"c9.731","gcamValue":5},{"gcamCode":"c9.732","gcamValue":4},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":4},{"gcamCode":"c9.735","gcamValue":18},{"gcamCode":"c9.736","gcamValue":18},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":11},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":30},{"gcamCode":"c9.741","gcamValue":15},{"gcamCode":"c9.742","gcamValue":30},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":55},{"gcamCode":"c9.75","gcamValue":5},{"gcamCode":"c9.750","gcamValue":5},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":2},{"gcamCode":"c9.754","gcamValue":16},{"gcamCode":"c9.755","gcamValue":9},{"gcamCode":"c9.756","gcamValue":6},{"gcamCode":"c9.757","gcamValue":7},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":8},{"gcamCode":"c9.76","gcamValue":21},{"gcamCode":"c9.760","gcamValue":6},{"gcamCode":"c9.761","gcamValue":11},{"gcamCode":"c9.762","gcamValue":56},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":3},{"gcamCode":"c9.766","gcamValue":39},{"gcamCode":"c9.767","gcamValue":84},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.773","gcamValue":3},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":15},{"gcamCode":"c9.776","gcamValue":18},{"gcamCode":"c9.777","gcamValue":6},{"gcamCode":"c9.778","gcamValue":7},{"gcamCode":"c9.779","gcamValue":7},{"gcamCode":"c9.78","gcamValue":5},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":4},{"gcamCode":"c9.783","gcamValue":2},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":12},{"gcamCode":"c9.789","gcamValue":5},{"gcamCode":"c9.79","gcamValue":6},{"gcamCode":"c9.790","gcamValue":18},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":16},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.797","gcamValue":2},{"gcamCode":"c9.798","gcamValue":7},{"gcamCode":"c9.8","gcamValue":18},{"gcamCode":"c9.80","gcamValue":8},{"gcamCode":"c9.800","gcamValue":5},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":18},{"gcamCode":"c9.803","gcamValue":3},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.805","gcamValue":2},{"gcamCode":"c9.806","gcamValue":11},{"gcamCode":"c9.808","gcamValue":16},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":17},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.815","gcamValue":2},{"gcamCode":"c9.816","gcamValue":32},{"gcamCode":"c9.817","gcamValue":14},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":6},{"gcamCode":"c9.820","gcamValue":4},{"gcamCode":"c9.821","gcamValue":7},{"gcamCode":"c9.822","gcamValue":4},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":4},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":34},{"gcamCode":"c9.830","gcamValue":4},{"gcamCode":"c9.831","gcamValue":9},{"gcamCode":"c9.832","gcamValue":2},{"gcamCode":"c9.833","gcamValue":4},{"gcamCode":"c9.834","gcamValue":21},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":5},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":3},{"gcamCode":"c9.842","gcamValue":2},{"gcamCode":"c9.843","gcamValue":6},{"gcamCode":"c9.844","gcamValue":10},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":2},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":7},{"gcamCode":"c9.86","gcamValue":18},{"gcamCode":"c9.860","gcamValue":36},{"gcamCode":"c9.861","gcamValue":7},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":11},{"gcamCode":"c9.864","gcamValue":58},{"gcamCode":"c9.865","gcamValue":8},{"gcamCode":"c9.866","gcamValue":13},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":56},{"gcamCode":"c9.87","gcamValue":7},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.875","gcamValue":5},{"gcamCode":"c9.877","gcamValue":23},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":3},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":14},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.885","gcamValue":2},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.888","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":6},{"gcamCode":"c9.893","gcamValue":3},{"gcamCode":"c9.895","gcamValue":1},{"gcamCode":"c9.896","gcamValue":13},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":16},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":16},{"gcamCode":"c9.900","gcamValue":6},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":5},{"gcamCode":"c9.903","gcamValue":21},{"gcamCode":"c9.904","gcamValue":3},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":21},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":7},{"gcamCode":"c9.916","gcamValue":7},{"gcamCode":"c9.917","gcamValue":6},{"gcamCode":"c9.918","gcamValue":5},{"gcamCode":"c9.919","gcamValue":3},{"gcamCode":"c9.920","gcamValue":19},{"gcamCode":"c9.921","gcamValue":12},{"gcamCode":"c9.923","gcamValue":7},{"gcamCode":"c9.924","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":17},{"gcamCode":"c9.928","gcamValue":8},{"gcamCode":"c9.93","gcamValue":4},{"gcamCode":"c9.930","gcamValue":18},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":11},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":51},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":5},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":12},{"gcamCode":"c9.943","gcamValue":2},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":3},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.955","gcamValue":15},{"gcamCode":"c9.959","gcamValue":1},{"gcamCode":"c9.96","gcamValue":28},{"gcamCode":"c9.962","gcamValue":10},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":7},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":14},{"gcamCode":"c9.967","gcamValue":2},{"gcamCode":"c9.969","gcamValue":9},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.976","gcamValue":4},{"gcamCode":"c9.978","gcamValue":34},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":15},{"gcamCode":"c9.981","gcamValue":4},{"gcamCode":"c9.983","gcamValue":6},{"gcamCode":"c9.984","gcamValue":9},{"gcamCode":"c9.985","gcamValue":10},{"gcamCode":"c9.986","gcamValue":6},{"gcamCode":"c9.987","gcamValue":2},{"gcamCode":"c9.988","gcamValue":6},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.991","gcamValue":4},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"c9.999","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.288582575782918},{"gcamCode":"v10.2","gcamValue":0.26438022516699},{"gcamCode":"v11.1","gcamValue":0.132462627595917},{"gcamCode":"v19.1","gcamValue":6.15229166666667},{"gcamCode":"v19.2","gcamValue":5.23541666666667},{"gcamCode":"v19.3","gcamValue":5.50635416666666},{"gcamCode":"v19.4","gcamValue":6.05692708333333},{"gcamCode":"v19.5","gcamValue":5.16192708333333},{"gcamCode":"v19.6","gcamValue":5.56895833333333},{"gcamCode":"v19.7","gcamValue":6.24192708333333},{"gcamCode":"v19.8","gcamValue":5.32208333333334},{"gcamCode":"v19.9","gcamValue":5.43359375},{"gcamCode":"v20.1","gcamValue":0.572},{"gcamCode":"v20.10","gcamValue":-0.656},{"gcamCode":"v20.11","gcamValue":0.62827027027027},{"gcamCode":"v20.12","gcamValue":-0.589142857142857},{"gcamCode":"v20.13","gcamValue":0.43225641025641},{"gcamCode":"v20.14","gcamValue":-0.473384615384615},{"gcamCode":"v20.15","gcamValue":0.374695067264574},{"gcamCode":"v20.16","gcamValue":-0.376260869565217},{"gcamCode":"v20.3","gcamValue":0.579571428571429},{"gcamCode":"v20.4","gcamValue":-0.312},{"gcamCode":"v20.5","gcamValue":0.749642857142857},{"gcamCode":"v20.6","gcamValue":-0.656},{"gcamCode":"v20.7","gcamValue":0.749666666666667},{"gcamCode":"v20.8","gcamValue":-0.656},{"gcamCode":"v20.9","gcamValue":0.678888888888889},{"gcamCode":"v21.1","gcamValue":5.63623216601813},{"gcamCode":"v26.1","gcamValue":1.53636363636364}][""][""][""][][{"name":"Bee City United States","charOffset":23},{"name":"South Carolina","charOffset":72},{"name":"Bee City Greenwood","charOffset":206},{"name":"Self Regional Healthcare","charOffset":448},{"name":"Self Regional","charOffset":523},{"name":"Lander University","charOffset":545},{"name":"Certified Nurse Leaders","charOffset":578},{"name":"Staff Excellence Awards","charOffset":736},{"name":"Kurstin LaCoste","charOffset":1193},{"name":"Human Resources","charOffset":1214},{"name":"Senior Farmer Market Nutrition Program","charOffset":1408},{"name":"South Carolina","charOffset":1565},{"name":"School District","charOffset":2027},{"name":"Superintendent Finalists","charOffset":2093},{"name":"Genesis Education Center","charOffset":2176},{"name":"Board Room","charOffset":2196},{"name":"Piedmont Technical College","charOffset":2667},{"name":"Greenwood Alumnae Chapter","charOffset":2894},{"name":"Delta Sigma Theta Sorority","charOffset":2924},{"name":"May Week Celebration","charOffset":3327},{"name":"Trinity United Methodist Church","charOffset":3378},{"name":"Finis Horne Arena","charOffset":3514},{"name":"Lander University","charOffset":3599},{"name":"Piedmont Technical College","charOffset":4056},{"name":"Spring Commencement","charOffset":4077},{"name":"T'Laysha Creswell","charOffset":4106},{"name":"McCormick High School","charOffset":4165},{"name":"Middle College","charOffset":4181},{"name":"Cooling Founder","charOffset":4382},{"name":"Technician Chip Rush","charOffset":4407},{"name":"Lead Maintenance Technician Dylan Antone","charOffset":4452},{"name":"Abbeville Promise","charOffset":4506},{"name":"Jeff Wilson","charOffset":4527},{"name":"Lander University","charOffset":4621},{"name":"Undergraduate Research","charOffset":4749},{"name":"Kennesaw State University","charOffset":4900},{"name":"Amber Christine Lee","charOffset":5117},{"name":"Autumn Wofford","charOffset":5153},{"name":"Skyler Aldrich","charOffset":5193},{"name":"Greenwood County Courthouse","charOffset":5473},{"name":"Circuit Solicitor David","charOffset":5508},{"name":"Lanham Street","charOffset":5717},{"name":"Self Regional Healthcare","charOffset":5899},{"name":"Humane Society","charOffset":5991},{"name":"Technical College","charOffset":6355},{"name":"Scholarship Luncheon","charOffset":6400},{"name":"Lonza Endowed Scholarship","charOffset":6531},{"name":"Bianca Earl","charOffset":6547},{"name":"Sarah Foster","charOffset":6578},{"name":"Ware Shoals","charOffset":6593},{"name":"Richard Gregory","charOffset":6614},{"name":"Rock Hill","charOffset":6627},{"name":"Andrea Pozo","charOffset":6690},{"name":"Warner Lambert Company","charOffset":6735},{"name":"Technical College","charOffset":6921},{"name":"Scholarship Luncheon","charOffset":6966},{"name":"Sterilite Corporation Endowed Scholarship","charOffset":7113},{"name":"Marquel Evans","charOffset":7131},{"name":"Michelle Freeman","charOffset":7164},{"name":"Hailey Fuller","charOffset":7196},{"name":"Ninety Six","charOffset":7210},{"name":"Zelea James","charOffset":7231},{"name":"Piedmont Technical","charOffset":7384},{"name":"Technical College","charOffset":7626},{"name":"Scholarship Luncheon","charOffset":7671},{"name":"Carl Brock Vocational Rehabilitation Scholarship","charOffset":7824},{"name":"Ashlee Riley","charOffset":7840},{"name":"Carl Brock","charOffset":7999},{"name":"South Carolina Manufacturing","charOffset":8152},{"name":"Human Services","charOffset":8254},{"name":"Arts Center","charOffset":8450},{"name":"South Carolina National Guard","charOffset":8913},{"name":"Veterans Day","charOffset":9014},{"name":"Photography Exhibition","charOffset":9128},{"name":"Exhibition Chair Kendall","charOffset":9504},{"name":"Greenwood County Courthouse","charOffset":10146},{"name":"Circuit Solicitor David","charOffset":10181},{"name":"Yvonne Hudgens","charOffset":10267},{"name":"Campus Police","charOffset":10297},{"name":"Security Terry Ledford","charOffset":10324},{"name":"Piedmont Technical College","charOffset":10378},{"name":"Ray Brooks","charOffset":10477},{"name":"City Police","charOffset":10641},{"name":"Greenwood County Sheriff","charOffset":10677},{"name":"Kirksey Drive","charOffset":10712},{"name":"Academic Affairs","charOffset":11057},{"name":"Legion Hall","charOffset":11162},{"name":"Greenwood Promise","charOffset":11625},{"name":"Fuji Film Manufacturing United States","charOffset":11741},{"name":"Fuji Film Manufacturing United States","charOffset":11849},{"name":"Greenwood Promise","charOffset":11906},{"name":"Technical College","charOffset":12155},{"name":"Scholarship Luncheon","charOffset":12200},{"name":"Charles Baumeister Memorial Endowed Scholarship","charOffset":12356},{"name":"Dorothy Holmes","charOffset":12375},{"name":"Linh Nguyen","charOffset":12416},{"name":"Donor Representative Sally","charOffset":12497},{"name":"Industrial Divisions","charOffset":12681},{"name":"Technical College","charOffset":12944},{"name":"Ray Brooks","charOffset":12977},{"name":"Presidential Medallion","charOffset":13064},{"name":"Girl Power","charOffset":13474},{"name":"State Museum","charOffset":13538},{"name":"State House","charOffset":13895},{"name":"South Carolina","charOffset":13979},{"name":"Greenwood Capital","charOffset":14077},{"name":"Greenwood Miracle League","charOffset":14171},{"name":"Burton Center","charOffset":14240},{"name":"Technical College","charOffset":14417},{"name":"Scholarship Luncheon","charOffset":14462},{"name":"Greenwood Corvette Club Automotive Scholarship","charOffset":14613},{"name":"Daniel Johnson","charOffset":14631},{"name":"Greenwood Corvette Club Automotive Scholarship","charOffset":14697},{"name":"Automotive Technology","charOffset":14761},{"name":"Donor Representative Doug Timmerman","charOffset":14869},{"name":"Daniel Johnson","charOffset":14889},{"name":"Donor Representative Mac","charOffset":14923}][{"amount":10,"amountType":"graduate nurses employed by","charOffset":323},{"amount":200,"amountType":"Lander University employees were","charOffset":520},{"amount":25,"amountType":"dollars ","charOffset":1513},{"amount":5,"amountType":"checks of $5","charOffset":1528},{"amount":5,"amountType":"dollars ","charOffset":1538},{"amount":50,"amountType":"will host public forums","charOffset":1665},{"amount":400,"amountType":"Glenwood St","charOffset":1804},{"amount":7,"amountType":"supporting counties were honored","charOffset":2235},{"amount":547,"amountType":"Maxwell Avenue at 12","charOffset":2722},{"amount":500,"amountType":"people packed Finis Horne","charOffset":2780},{"amount":343,"amountType":"graduates receive degrees at","charOffset":2828},{"amount":5,"amountType":"dollars ","charOffset":3571},{"amount":5,"amountType":"am where they located","charOffset":4562},{"amount":7,"amountType":"am on race day","charOffset":4928},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":5121},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":5584},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":6173},{"amount":2,"amountType":"categories","charOffset":7647},{"amount":20,"amountType":"dollars for submission of up","charOffset":7971},{"amount":4,"amountType":"prints","charOffset":7991},{"amount":30,"amountType":"pm today after receiving","charOffset":8627},{"amount":806,"amountType":"Calhoun Avenue near Uptown","charOffset":8970},{"amount":100,"amountType":"dollars ","charOffset":9582},{"amount":20,"amountType":"dollars ","charOffset":9617},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":9835},{"amount":8,"amountType":"college associates","charOffset":10448},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":11674}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://r20.rs6.net/tn.jsp?f=001NNdHQ6RXozJpIfCcSXDetNSdJ1xF9IeLmU5rOyUOYOe3bSDHs8WU3rXSRfYTZmIT6x45U0wFHrnc-L_Dq5pgJMtadLEgtDEOGW5AYUjlXhPpgOQPm5r4Wlof4N4mHZrJgpCqNgoiaFY=;http://www.facebook.com/RunToTheRescue5K</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBlexch.comhttps://lexch.com/classifieds/other/ads/first-state-insurance-beef-section/pdfdisplayad_19191375-a81e-5cc4-8cd3-141b396b1530.html[][]["WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","WB_1462_WATER_SANITATION_AND_HYGIENE","WB_635_PUBLIC_HEALTH","WB_621_HEALTH_NUTRITION_AND_POPULATION","DISCRIMINATION","DISCRIMINATION_RACE","DISCRIMINATION_RACE_RACISM","UNGP_FREEDOM_FROM_DISCRIMINATION"][{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":13},{"theme":"WB_1462_WATER_SANITATION_AND_HYGIENE","charOffset":13},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":13},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":13},{"theme":"DISCRIMINATION","charOffset":277},{"theme":"DISCRIMINATION_RACE_RACISM","charOffset":277},{"theme":"UNGP_FREEDOM_FROM_DISCRIMINATION","charOffset":277}][][][""][][""][]{"tone":-8.163265,"positiveScore":4.0816326,"negativeScore":12.244898,"polarity":16.32653,"activityReferenceDensity":32.65306,"selfGroupReferenceDensity":3.0612245,"wordCount":84}[][{"gcamCode":"wc","gcamValue":84},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":13},{"gcamCode":"c12.10","gcamValue":9},{"gcamCode":"c12.12","gcamValue":6},{"gcamCode":"c12.13","gcamValue":2},{"gcamCode":"c12.14","gcamValue":2},{"gcamCode":"c12.3","gcamValue":7},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":7},{"gcamCode":"c12.7","gcamValue":12},{"gcamCode":"c12.8","gcamValue":4},{"gcamCode":"c12.9","gcamValue":9},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c14.1","gcamValue":9},{"gcamCode":"c14.10","gcamValue":5},{"gcamCode":"c14.11","gcamValue":17},{"gcamCode":"c14.2","gcamValue":6},{"gcamCode":"c14.3","gcamValue":10},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":18},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.137","gcamValue":2},{"gcamCode":"c15.139","gcamValue":1},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.173","gcamValue":3},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.177","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.179","gcamValue":1},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.223","gcamValue":3},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.279","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.81","gcamValue":2},{"gcamCode":"c15.84","gcamValue":2},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c16.100","gcamValue":1},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":4},{"gcamCode":"c16.109","gcamValue":9},{"gcamCode":"c16.110","gcamValue":18},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":7},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":7},{"gcamCode":"c16.12","gcamValue":14},{"gcamCode":"c16.120","gcamValue":5},{"gcamCode":"c16.121","gcamValue":5},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.125","gcamValue":11},{"gcamCode":"c16.126","gcamValue":11},{"gcamCode":"c16.127","gcamValue":12},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":10},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":15},{"gcamCode":"c16.138","gcamValue":6},{"gcamCode":"c16.139","gcamValue":4},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.145","gcamValue":10},{"gcamCode":"c16.146","gcamValue":11},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":10},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":3},{"gcamCode":"c16.159","gcamValue":8},{"gcamCode":"c16.161","gcamValue":12},{"gcamCode":"c16.162","gcamValue":5},{"gcamCode":"c16.163","gcamValue":6},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":8},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":11},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.3","gcamValue":5},{"gcamCode":"c16.31","gcamValue":7},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":8},{"gcamCode":"c16.35","gcamValue":7},{"gcamCode":"c16.37","gcamValue":14},{"gcamCode":"c16.38","gcamValue":5},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":9},{"gcamCode":"c16.41","gcamValue":4},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":4},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":14},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":58},{"gcamCode":"c16.58","gcamValue":8},{"gcamCode":"c16.6","gcamValue":13},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":4},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.69","gcamValue":4},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":4},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":5},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.84","gcamValue":8},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":11},{"gcamCode":"c16.88","gcamValue":15},{"gcamCode":"c16.89","gcamValue":6},{"gcamCode":"c16.90","gcamValue":2},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":9},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":11},{"gcamCode":"c16.96","gcamValue":3},{"gcamCode":"c16.98","gcamValue":12},{"gcamCode":"c17.1","gcamValue":28},{"gcamCode":"c17.10","gcamValue":17},{"gcamCode":"c17.11","gcamValue":25},{"gcamCode":"c17.12","gcamValue":4},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.15","gcamValue":4},{"gcamCode":"c17.16","gcamValue":4},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":5},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":6},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":9},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":9},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":14},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":11},{"gcamCode":"c17.37","gcamValue":3},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":6},{"gcamCode":"c17.4","gcamValue":25},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":10},{"gcamCode":"c17.42","gcamValue":15},{"gcamCode":"c17.43","gcamValue":14},{"gcamCode":"c17.5","gcamValue":26},{"gcamCode":"c17.7","gcamValue":13},{"gcamCode":"c17.8","gcamValue":8},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.152","gcamValue":1},{"gcamCode":"c2.1","gcamValue":3},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":21},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.114","gcamValue":10},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":9},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":31},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.121","gcamValue":12},{"gcamCode":"c2.122","gcamValue":5},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":4},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":11},{"gcamCode":"c2.128","gcamValue":1},{"gcamCode":"c2.129","gcamValue":2},{"gcamCode":"c2.131","gcamValue":3},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.14","gcamValue":17},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":5},{"gcamCode":"c2.143","gcamValue":10},{"gcamCode":"c2.144","gcamValue":5},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":11},{"gcamCode":"c2.148","gcamValue":13},{"gcamCode":"c2.15","gcamValue":8},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":5},{"gcamCode":"c2.155","gcamValue":15},{"gcamCode":"c2.156","gcamValue":6},{"gcamCode":"c2.157","gcamValue":14},{"gcamCode":"c2.158","gcamValue":13},{"gcamCode":"c2.160","gcamValue":7},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.169","gcamValue":4},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":7},{"gcamCode":"c2.179","gcamValue":5},{"gcamCode":"c2.18","gcamValue":4},{"gcamCode":"c2.180","gcamValue":4},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":36},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":8},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":5},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.196","gcamValue":5},{"gcamCode":"c2.198","gcamValue":8},{"gcamCode":"c2.199","gcamValue":7},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":4},{"gcamCode":"c2.204","gcamValue":4},{"gcamCode":"c2.205","gcamValue":6},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":5},{"gcamCode":"c2.210","gcamValue":12},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":4},{"gcamCode":"c2.214","gcamValue":7},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":4},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":12},{"gcamCode":"c2.26","gcamValue":1},{"gcamCode":"c2.27","gcamValue":1},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":13},{"gcamCode":"c2.31","gcamValue":6},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":12},{"gcamCode":"c2.35","gcamValue":7},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":13},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":3},{"gcamCode":"c2.46","gcamValue":10},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":5},{"gcamCode":"c2.52","gcamValue":15},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":4},{"gcamCode":"c2.64","gcamValue":8},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":14},{"gcamCode":"c2.76","gcamValue":65},{"gcamCode":"c2.77","gcamValue":8},{"gcamCode":"c2.78","gcamValue":14},{"gcamCode":"c2.79","gcamValue":7},{"gcamCode":"c2.80","gcamValue":23},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":8},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":8},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":12},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":2},{"gcamCode":"c25.10","gcamValue":1},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":12},{"gcamCode":"c3.2","gcamValue":11},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":6},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.31","gcamValue":3},{"gcamCode":"c35.32","gcamValue":10},{"gcamCode":"c35.33","gcamValue":2},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.3","gcamValue":1},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":1},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":4},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":2},{"gcamCode":"c5.12","gcamValue":5},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":3},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":3},{"gcamCode":"c5.30","gcamValue":14},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":8},{"gcamCode":"c5.35","gcamValue":7},{"gcamCode":"c5.36","gcamValue":14},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":17},{"gcamCode":"c5.43","gcamValue":4},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.46","gcamValue":11},{"gcamCode":"c5.47","gcamValue":1},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":14},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":14},{"gcamCode":"c5.51","gcamValue":8},{"gcamCode":"c5.52","gcamValue":18},{"gcamCode":"c5.53","gcamValue":4},{"gcamCode":"c5.54","gcamValue":5},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":3},{"gcamCode":"c5.6","gcamValue":4},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":9},{"gcamCode":"c5.62","gcamValue":37},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":2},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":12},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c7.1","gcamValue":11},{"gcamCode":"c7.2","gcamValue":9},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.23","gcamValue":2},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":4},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.4","gcamValue":4},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c9.1","gcamValue":4},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":3},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.143","gcamValue":3},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.184","gcamValue":2},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.264","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.273","gcamValue":1},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":3},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.521","gcamValue":2},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.551","gcamValue":3},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.563","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.620","gcamValue":3},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.709","gcamValue":2},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.726","gcamValue":8},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.734","gcamValue":4},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":4},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":2},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":4},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.905","gcamValue":2},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.947","gcamValue":1},{"gcamCode":"c9.948","gcamValue":2},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.23919930875576},{"gcamCode":"v10.2","gcamValue":0.280003217503217},{"gcamCode":"v11.1","gcamValue":0.0797617575757576},{"gcamCode":"v19.1","gcamValue":5.53846153846154},{"gcamCode":"v19.2","gcamValue":4.94692307692308},{"gcamCode":"v19.3","gcamValue":5.27615384615385},{"gcamCode":"v19.4","gcamValue":5.61461538461539},{"gcamCode":"v19.5","gcamValue":4.69461538461538},{"gcamCode":"v19.6","gcamValue":5.30307692307692},{"gcamCode":"v19.7","gcamValue":5.58538461538462},{"gcamCode":"v19.8","gcamValue":5.17538461538462},{"gcamCode":"v19.9","gcamValue":5.37076923076923},{"gcamCode":"v20.1","gcamValue":0.469},{"gcamCode":"v20.10","gcamValue":-0.781},{"gcamCode":"v20.11","gcamValue":0.552333333333333},{"gcamCode":"v20.12","gcamValue":-0.687333333333333},{"gcamCode":"v20.13","gcamValue":0.438},{"gcamCode":"v20.14","gcamValue":-0.60925},{"gcamCode":"v20.15","gcamValue":0.403222222222222},{"gcamCode":"v20.16","gcamValue":-0.60925},{"gcamCode":"v20.3","gcamValue":0.469},{"gcamCode":"v20.5","gcamValue":0.469},{"gcamCode":"v20.6","gcamValue":-1},{"gcamCode":"v20.7","gcamValue":0.469},{"gcamCode":"v20.8","gcamValue":-1},{"gcamCode":"v20.9","gcamValue":0.5785},{"gcamCode":"v21.1","gcamValue":5.26845070422535},{"gcamCode":"v26.1","gcamValue":-0.529411764705882}]https://bloximages.chicago2.vip.townnews.com/lexch.com/content/tncms/assets/v3/classifieds/1/91/19191375-a81e-5cc4-8cd3-141b396b1530/5cdf0bc6bfe11.preview.jpg[""][""]["https://youtube.com/channel/UCIbZepIxY0tM3J8-nZVS_3g"][][][]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBinsing.comhttps://www.insing.com/movies/the-gangsterthe-copthe-devil-2019/id-46f10000/[][]["ORGANIZED_CRIME","WB_2433_CONFLICT_AND_VIOLENCE","WB_2452_GANGS","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","WB_2445_NON_STATE_SECURITY_ACTORS","TAX_FNCACT","TAX_FNCACT_BOSS","TAX_FNCACT_KILLER","CRISISLEX_CRISISLEXREC","TAX_FNCACT_DETECTIVE","SOC_GENERALCRIME","EPU_CATS_MIGRATION_FEAR_FEAR","WB_2453_ORGANIZED_CRIME"][{"theme":"WB_2453_ORGANIZED_CRIME","charOffset":309},{"theme":"TAX_FNCACT_DETECTIVE","charOffset":216},{"theme":"TAX_FNCACT_DETECTIVE","charOffset":283},{"theme":"TAX_FNCACT_BOSS","charOffset":11},{"theme":"ORGANIZED_CRIME","charOffset":6},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":6},{"theme":"WB_2452_GANGS","charOffset":6},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":6},{"theme":"WB_2445_NON_STATE_SECURITY_ACTORS","charOffset":6},{"theme":"SOC_GENERALCRIME","charOffset":309},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":309},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":126},{"theme":"TAX_FNCACT_KILLER","charOffset":76},{"theme":"TAX_FNCACT_KILLER","charOffset":259}][][]["jang dong soo","kang kyung"][{"person":"Jang Dong Soo","charOffset":42}][""][]{"tone":-8.333333,"positiveScore":0,"negativeScore":8.333333,"polarity":8.333333,"activityReferenceDensity":23.333334,"selfGroupReferenceDensity":0,"wordCount":57}[][{"gcamCode":"wc","gcamValue":57},{"gcamCode":"c12.1","gcamValue":2},{"gcamCode":"c12.10","gcamValue":7},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":1},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.7","gcamValue":7},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.11","gcamValue":4},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":3},{"gcamCode":"c14.5","gcamValue":6},{"gcamCode":"c15.139","gcamValue":1},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.186","gcamValue":1},{"gcamCode":"c15.189","gcamValue":1},{"gcamCode":"c15.190","gcamValue":1},{"gcamCode":"c15.191","gcamValue":1},{"gcamCode":"c15.192","gcamValue":1},{"gcamCode":"c15.193","gcamValue":1},{"gcamCode":"c15.195","gcamValue":1},{"gcamCode":"c15.2","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.74","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.109","gcamValue":3},{"gcamCode":"c16.110","gcamValue":11},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":1},{"gcamCode":"c16.12","gcamValue":5},{"gcamCode":"c16.120","gcamValue":1},{"gcamCode":"c16.121","gcamValue":6},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":4},{"gcamCode":"c16.126","gcamValue":3},{"gcamCode":"c16.127","gcamValue":4},{"gcamCode":"c16.129","gcamValue":4},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.134","gcamValue":3},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.140","gcamValue":3},{"gcamCode":"c16.145","gcamValue":6},{"gcamCode":"c16.146","gcamValue":7},{"gcamCode":"c16.153","gcamValue":3},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.159","gcamValue":1},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":1},{"gcamCode":"c16.162","gcamValue":2},{"gcamCode":"c16.163","gcamValue":2},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.2","gcamValue":7},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":8},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":6},{"gcamCode":"c16.33","gcamValue":1},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":1},{"gcamCode":"c16.37","gcamValue":5},{"gcamCode":"c16.38","gcamValue":3},{"gcamCode":"c16.4","gcamValue":2},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":8},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":2},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":26},{"gcamCode":"c16.58","gcamValue":4},{"gcamCode":"c16.6","gcamValue":7},{"gcamCode":"c16.65","gcamValue":2},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":2},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":12},{"gcamCode":"c16.88","gcamValue":2},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":1},{"gcamCode":"c16.92","gcamValue":4},{"gcamCode":"c16.94","gcamValue":1},{"gcamCode":"c16.95","gcamValue":8},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":5},{"gcamCode":"c17.1","gcamValue":12},{"gcamCode":"c17.10","gcamValue":4},{"gcamCode":"c17.11","gcamValue":9},{"gcamCode":"c17.13","gcamValue":2},{"gcamCode":"c17.15","gcamValue":2},{"gcamCode":"c17.16","gcamValue":1},{"gcamCode":"c17.19","gcamValue":9},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":1},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":2},{"gcamCode":"c17.27","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":5},{"gcamCode":"c17.32","gcamValue":2},{"gcamCode":"c17.33","gcamValue":2},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":4},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":1},{"gcamCode":"c17.4","gcamValue":6},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":2},{"gcamCode":"c17.42","gcamValue":3},{"gcamCode":"c17.43","gcamValue":4},{"gcamCode":"c17.5","gcamValue":7},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":5},{"gcamCode":"c17.8","gcamValue":2},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.193","gcamValue":5},{"gcamCode":"c18.269","gcamValue":1},{"gcamCode":"c18.84","gcamValue":2},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":1},{"gcamCode":"c2.104","gcamValue":3},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":7},{"gcamCode":"c2.116","gcamValue":6},{"gcamCode":"c2.119","gcamValue":13},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":1},{"gcamCode":"c2.127","gcamValue":1},{"gcamCode":"c2.129","gcamValue":2},{"gcamCode":"c2.132","gcamValue":3},{"gcamCode":"c2.14","gcamValue":9},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":7},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":10},{"gcamCode":"c2.148","gcamValue":3},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.155","gcamValue":1},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":1},{"gcamCode":"c2.158","gcamValue":3},{"gcamCode":"c2.160","gcamValue":2},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.177","gcamValue":6},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.181","gcamValue":1},{"gcamCode":"c2.183","gcamValue":1},{"gcamCode":"c2.185","gcamValue":15},{"gcamCode":"c2.187","gcamValue":2},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":1},{"gcamCode":"c2.195","gcamValue":8},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.198","gcamValue":1},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":9},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.23","gcamValue":2},{"gcamCode":"c2.25","gcamValue":1},{"gcamCode":"c2.26","gcamValue":2},{"gcamCode":"c2.27","gcamValue":2},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":1},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":3},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":7},{"gcamCode":"c2.44","gcamValue":1},{"gcamCode":"c2.45","gcamValue":3},{"gcamCode":"c2.46","gcamValue":5},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":1},{"gcamCode":"c2.54","gcamValue":2},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":11},{"gcamCode":"c2.76","gcamValue":33},{"gcamCode":"c2.77","gcamValue":7},{"gcamCode":"c2.78","gcamValue":7},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":12},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.95","gcamValue":4},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c3.1","gcamValue":6},{"gcamCode":"c3.2","gcamValue":1},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.26","gcamValue":2},{"gcamCode":"c35.27","gcamValue":1},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.32","gcamValue":1},{"gcamCode":"c35.33","gcamValue":8},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.34","gcamValue":2},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c41.1","gcamValue":3},{"gcamCode":"c5.10","gcamValue":1},{"gcamCode":"c5.12","gcamValue":2},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":4},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.34","gcamValue":4},{"gcamCode":"c5.36","gcamValue":4},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.40","gcamValue":4},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":10},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":7},{"gcamCode":"c5.50","gcamValue":6},{"gcamCode":"c5.51","gcamValue":6},{"gcamCode":"c5.52","gcamValue":8},{"gcamCode":"c5.53","gcamValue":5},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.56","gcamValue":2},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":3},{"gcamCode":"c5.62","gcamValue":24},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":1},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":6},{"gcamCode":"c7.2","gcamValue":1},{"gcamCode":"c8.2","gcamValue":4},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.128","gcamValue":2},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.172","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.3","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.384","gcamValue":2},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.653","gcamValue":1},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":2},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.784","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.882","gcamValue":2},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.952","gcamValue":2},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.964","gcamValue":3},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.218098958333333},{"gcamCode":"v10.2","gcamValue":0.219444444444444},{"gcamCode":"v11.1","gcamValue":-0.0850361805555556},{"gcamCode":"v19.1","gcamValue":3.0275},{"gcamCode":"v19.2","gcamValue":6.33},{"gcamCode":"v19.3","gcamValue":4.19875},{"gcamCode":"v19.4","gcamValue":3.47375},{"gcamCode":"v19.5","gcamValue":5.8675},{"gcamCode":"v19.6","gcamValue":4.58125},{"gcamCode":"v19.7","gcamValue":2.705},{"gcamCode":"v19.8","gcamValue":6.66625},{"gcamCode":"v19.9","gcamValue":3.8575},{"gcamCode":"v20.10","gcamValue":-0.65625},{"gcamCode":"v20.11","gcamValue":0.875},{"gcamCode":"v20.12","gcamValue":-0.65625},{"gcamCode":"v20.13","gcamValue":0.562666666666667},{"gcamCode":"v20.14","gcamValue":-0.5874},{"gcamCode":"v20.15","gcamValue":0.5},{"gcamCode":"v20.16","gcamValue":-0.491},{"gcamCode":"v20.4","gcamValue":-0.5625},{"gcamCode":"v20.5","gcamValue":0.875},{"gcamCode":"v20.6","gcamValue":-0.5625},{"gcamCode":"v20.7","gcamValue":0.875},{"gcamCode":"v20.8","gcamValue":-0.65625},{"gcamCode":"v20.9","gcamValue":0.875},{"gcamCode":"v21.1","gcamValue":4.84363636363636},{"gcamCode":"v26.1","gcamValue":-2.88}]https://i.insing.com/cms/6b/66/d7/77/176285/gangstercopdevil.jpg[""][""]["https://youtube.com/embed/hQGN58VSKM4"][][{"name":"Jang Dong Soo","charOffset":43},{"name":"Detective Jung Tae Seok","charOffset":240}][]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBsmh.com.auhttps://www.smh.com.au/national/western-australia/men-break-door-down-turn-gun-on-woman-while-ransacking-baldivis-home-20190523-p51qms.html[][]["TAX_FNCACT","TAX_FNCACT_WOMAN","TAX_WEAPONS","TAX_WEAPONS_MACHETES","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_BAT","TAX_WEAPONS_GUN"][{"theme":"TAX_WEAPONS_MACHETES","charOffset":190},{"theme":"TAX_FNCACT_WOMAN","charOffset":7},{"theme":"TAX_WORLDMAMMALS_BAT","charOffset":207},{"theme":"TAX_WEAPONS_GUN","charOffset":493}][{"geoType":"WORLDCITY","geoName":"Perth, Western Australia, Australia","countryCode":"AS","adm1Code":"AS08","adm2Code":"","geoPoint":{"latitude":-31.9333,"longitude":115.833},"featureId":"-1594675"}][{"location":{"geoType":"WORLDCITY","geoName":"Perth, Western Australia, Australia","countryCode":"AS","adm1Code":"AS08","adm2Code":"5533","geoPoint":{"latitude":-31.9333,"longitude":115.833},"featureId":"-1594675"},"charOffset":69}][""][][""][]{"tone":-9.259259,"positiveScore":0,"negativeScore":9.259259,"polarity":9.259259,"activityReferenceDensity":26.851852,"selfGroupReferenceDensity":0,"wordCount":100}[][{"gcamCode":"wc","gcamValue":100},{"gcamCode":"c12.1","gcamValue":3},{"gcamCode":"c12.10","gcamValue":10},{"gcamCode":"c12.12","gcamValue":8},{"gcamCode":"c12.13","gcamValue":2},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":9},{"gcamCode":"c12.8","gcamValue":2},{"gcamCode":"c12.9","gcamValue":5},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":11},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":10},{"gcamCode":"c14.2","gcamValue":7},{"gcamCode":"c14.3","gcamValue":5},{"gcamCode":"c14.5","gcamValue":12},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.112","gcamValue":2},{"gcamCode":"c15.114","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.9","gcamValue":2},{"gcamCode":"c16.100","gcamValue":3},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":2},{"gcamCode":"c16.109","gcamValue":4},{"gcamCode":"c16.110","gcamValue":12},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.114","gcamValue":3},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":7},{"gcamCode":"c16.12","gcamValue":14},{"gcamCode":"c16.120","gcamValue":11},{"gcamCode":"c16.121","gcamValue":7},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":10},{"gcamCode":"c16.126","gcamValue":6},{"gcamCode":"c16.127","gcamValue":10},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":12},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":2},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":10},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.14","gcamValue":3},{"gcamCode":"c16.140","gcamValue":5},{"gcamCode":"c16.145","gcamValue":6},{"gcamCode":"c16.146","gcamValue":11},{"gcamCode":"c16.153","gcamValue":1},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.159","gcamValue":5},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":13},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":12},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":2},{"gcamCode":"c16.2","gcamValue":8},{"gcamCode":"c16.22","gcamValue":4},{"gcamCode":"c16.26","gcamValue":11},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.31","gcamValue":16},{"gcamCode":"c16.33","gcamValue":5},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":6},{"gcamCode":"c16.38","gcamValue":1},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":2},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":12},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":3},{"gcamCode":"c16.51","gcamValue":4},{"gcamCode":"c16.52","gcamValue":6},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":47},{"gcamCode":"c16.58","gcamValue":12},{"gcamCode":"c16.6","gcamValue":12},{"gcamCode":"c16.62","gcamValue":2},{"gcamCode":"c16.63","gcamValue":3},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":4},{"gcamCode":"c16.66","gcamValue":7},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":8},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":2},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":7},{"gcamCode":"c16.87","gcamValue":8},{"gcamCode":"c16.88","gcamValue":9},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":8},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":10},{"gcamCode":"c16.95","gcamValue":13},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":9},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":28},{"gcamCode":"c17.10","gcamValue":9},{"gcamCode":"c17.11","gcamValue":8},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.13","gcamValue":2},{"gcamCode":"c17.15","gcamValue":11},{"gcamCode":"c17.16","gcamValue":9},{"gcamCode":"c17.18","gcamValue":4},{"gcamCode":"c17.19","gcamValue":4},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.24","gcamValue":12},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":14},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":3},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":2},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.39","gcamValue":2},{"gcamCode":"c17.4","gcamValue":22},{"gcamCode":"c17.41","gcamValue":1},{"gcamCode":"c17.42","gcamValue":5},{"gcamCode":"c17.43","gcamValue":9},{"gcamCode":"c17.5","gcamValue":24},{"gcamCode":"c17.6","gcamValue":3},{"gcamCode":"c17.7","gcamValue":26},{"gcamCode":"c17.8","gcamValue":12},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.235","gcamValue":2},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c2.1","gcamValue":2},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":16},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.114","gcamValue":6},{"gcamCode":"c2.116","gcamValue":5},{"gcamCode":"c2.119","gcamValue":26},{"gcamCode":"c2.12","gcamValue":3},{"gcamCode":"c2.121","gcamValue":9},{"gcamCode":"c2.122","gcamValue":11},{"gcamCode":"c2.126","gcamValue":5},{"gcamCode":"c2.127","gcamValue":13},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":5},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":6},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.143","gcamValue":11},{"gcamCode":"c2.147","gcamValue":23},{"gcamCode":"c2.148","gcamValue":12},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":6},{"gcamCode":"c2.150","gcamValue":2},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":4},{"gcamCode":"c2.155","gcamValue":7},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":6},{"gcamCode":"c2.158","gcamValue":6},{"gcamCode":"c2.159","gcamValue":3},{"gcamCode":"c2.160","gcamValue":4},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":6},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":2},{"gcamCode":"c2.183","gcamValue":2},{"gcamCode":"c2.185","gcamValue":18},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":2},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.193","gcamValue":14},{"gcamCode":"c2.194","gcamValue":4},{"gcamCode":"c2.195","gcamValue":8},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":11},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":12},{"gcamCode":"c2.204","gcamValue":4},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":3},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":3},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.220","gcamValue":8},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":5},{"gcamCode":"c2.25","gcamValue":3},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":3},{"gcamCode":"c2.34","gcamValue":10},{"gcamCode":"c2.35","gcamValue":11},{"gcamCode":"c2.36","gcamValue":3},{"gcamCode":"c2.37","gcamValue":11},{"gcamCode":"c2.39","gcamValue":21},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":7},{"gcamCode":"c2.46","gcamValue":10},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":5},{"gcamCode":"c2.54","gcamValue":7},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":4},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.69","gcamValue":10},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.73","gcamValue":9},{"gcamCode":"c2.75","gcamValue":11},{"gcamCode":"c2.76","gcamValue":75},{"gcamCode":"c2.77","gcamValue":10},{"gcamCode":"c2.78","gcamValue":10},{"gcamCode":"c2.79","gcamValue":3},{"gcamCode":"c2.80","gcamValue":9},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":6},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.1","gcamValue":9},{"gcamCode":"c3.2","gcamValue":5},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.24","gcamValue":3},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.30","gcamValue":3},{"gcamCode":"c35.33","gcamValue":8},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.3","gcamValue":3},{"gcamCode":"c39.37","gcamValue":1},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.15","gcamValue":3},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c41.1","gcamValue":5},{"gcamCode":"c5.10","gcamValue":15},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":3},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.23","gcamValue":5},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.30","gcamValue":9},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":4},{"gcamCode":"c5.36","gcamValue":4},{"gcamCode":"c5.37","gcamValue":3},{"gcamCode":"c5.40","gcamValue":17},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":3},{"gcamCode":"c5.46","gcamValue":22},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":12},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":7},{"gcamCode":"c5.51","gcamValue":11},{"gcamCode":"c5.52","gcamValue":16},{"gcamCode":"c5.53","gcamValue":11},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":9},{"gcamCode":"c5.6","gcamValue":4},{"gcamCode":"c5.60","gcamValue":11},{"gcamCode":"c5.61","gcamValue":12},{"gcamCode":"c5.62","gcamValue":49},{"gcamCode":"c5.9","gcamValue":3},{"gcamCode":"c6.4","gcamValue":5},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":6},{"gcamCode":"c7.2","gcamValue":1},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":6},{"gcamCode":"c8.24","gcamValue":1},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":2},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c9.1","gcamValue":4},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.128","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.148","gcamValue":3},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.200","gcamValue":5},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.224","gcamValue":4},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.247","gcamValue":3},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":3},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.325","gcamValue":2},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.384","gcamValue":2},{"gcamCode":"c9.385","gcamValue":10},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":2},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":2},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":3},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.579","gcamValue":2},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.604","gcamValue":2},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.653","gcamValue":2},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":3},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.726","gcamValue":2},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":3},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":3},{"gcamCode":"c9.755","gcamValue":3},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.767","gcamValue":7},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.796","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":3},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.998","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.195288461538462},{"gcamCode":"v10.2","gcamValue":0.268843052109181},{"gcamCode":"v11.1","gcamValue":-0.0192667021276596},{"gcamCode":"v19.1","gcamValue":6.17933333333333},{"gcamCode":"v19.2","gcamValue":5.00666666666667},{"gcamCode":"v19.3","gcamValue":5.60266666666667},{"gcamCode":"v19.4","gcamValue":6.25266666666667},{"gcamCode":"v19.5","gcamValue":4.96066666666667},{"gcamCode":"v19.6","gcamValue":5.87133333333333},{"gcamCode":"v19.7","gcamValue":6.12866666666667},{"gcamCode":"v19.8","gcamValue":5.092},{"gcamCode":"v19.9","gcamValue":5.33933333333333},{"gcamCode":"v20.10","gcamValue":-0.555666666666667},{"gcamCode":"v20.12","gcamValue":-0.555666666666667},{"gcamCode":"v20.13","gcamValue":0.333},{"gcamCode":"v20.14","gcamValue":-0.425571428571429},{"gcamCode":"v20.15","gcamValue":0.333},{"gcamCode":"v20.16","gcamValue":-0.386555555555556},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.4","gcamValue":-0.521},{"gcamCode":"v20.6","gcamValue":-0.521},{"gcamCode":"v20.8","gcamValue":-0.521},{"gcamCode":"v21.1","gcamValue":5.32360465116279},{"gcamCode":"v26.1","gcamValue":-1.46666666666667}]https://static.ffx.io/images/$zoom_0.6895,$multiply_1,$ratio_1.776846,$width_1059,$x_47,$y_0/t_crop_custom/w_800/q_86,f_auto/fc4e63847c505871a7552cf64e189d75af13985b[""][""][""][][{"name":"Ravensfield Road","charOffset":270}][]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523103400</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://amp.smh.com.au/national/western-australia/men-break-door-down-turn-gun-on-woman-while-ransacking-baldivis-home-20190523-p51qms.html</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBinquirer.nethttps://m.inquirer.net/newsinfo/1122651[][]["TAX_WORLDFISH","TAX_WORLDFISH_FISH","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_PALAWAN","TAX_FNCACT","TAX_FNCACT_GUARD","SOC_USSECURITYAGENCIES","ENV_FISHERY","UNGP_FORESTS_RIVERS_OCEANS","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","CRISISLEX_CRISISLEXREC","SECURITY_SERVICES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","WB_328_FINANCIAL_INTEGRITY","WB_1014_CRIMINAL_JUSTICE","WB_2082_LAW_ENFORCEMENT","SEIZE","MARITIME","TAX_FNCACT_MERCHANT","ENV_SPECIESENDANGERED","TAX_WORLDFISH_STINGRAYS","TAX_WORLDFISH_SHARKS","TAX_FNCACT_CREW_MEMBERS","GENERAL_HEALTH","MEDICAL","CRISISLEX_C03_WELLBEING_HEALTH","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_MEDICAL_CENTER","MEDIA_MSM","WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","MEDIA_SOCIAL","WB_652_ICT_APPLICATIONS","WB_662_SOCIAL_MEDIA","WB_658_ENTERPRISE_APPLICATIONS"][{"theme":"SEIZE","charOffset":460},{"theme":"SEIZE","charOffset":1156},{"theme":"TAX_FNCACT_MERCHANT","charOffset":624},{"theme":"ENV_SPECIESENDANGERED","charOffset":1113},{"theme":"SOC_USSECURITYAGENCIES","charOffset":143},{"theme":"SOC_USSECURITYAGENCIES","charOffset":353},{"theme":"SOC_USSECURITYAGENCIES","charOffset":1070},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":1749},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":1749},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":1749},{"theme":"GENERAL_HEALTH","charOffset":1468},{"theme":"GENERAL_HEALTH","charOffset":1504},{"theme":"MEDICAL","charOffset":1468},{"theme":"MEDICAL","charOffset":1504},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1468},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1504},{"theme":"MEDIA_MSM","charOffset":1691},{"theme":"SOC_POINTSOFINTEREST_MEDICAL_CENTER","charOffset":1475},{"theme":"TAX_FNCACT_GUARD","charOffset":143},{"theme":"TAX_FNCACT_GUARD","charOffset":353},{"theme":"TAX_FNCACT_GUARD","charOffset":1070},{"theme":"TAX_WORLDFISH_STINGRAYS","charOffset":1131},{"theme":"TAX_WORLDLANGUAGES_PALAWAN","charOffset":66},{"theme":"TAX_WORLDLANGUAGES_PALAWAN","charOffset":285},{"theme":"TAX_WORLDLANGUAGES_PALAWAN","charOffset":736},{"theme":"TAX_WORLDLANGUAGES_PALAWAN","charOffset":993},{"theme":"MARITIME","charOffset":609},{"theme":"MARITIME","charOffset":631},{"theme":"MARITIME","charOffset":845},{"theme":"MARITIME","charOffset":1388},{"theme":"TAX_WORLDFISH_FISH","charOffset":55},{"theme":"TAX_WORLDFISH_FISH","charOffset":258},{"theme":"TAX_WORLDFISH_FISH","charOffset":465},{"theme":"TAX_WORLDFISH_FISH","charOffset":494},{"theme":"TAX_WORLDFISH_FISH","charOffset":575},{"theme":"TAX_WORLDFISH_FISH","charOffset":826},{"theme":"TAX_WORLDFISH_FISH","charOffset":877},{"theme":"TAX_WORLDFISH_FISH","charOffset":982},{"theme":"TAX_WORLDFISH_FISH","charOffset":1079},{"theme":"TAX_WORLDFISH_FISH","charOffset":1168},{"theme":"TAX_WORLDFISH_FISH","charOffset":1200},{"theme":"TAX_WORLDFISH_FISH","charOffset":1270},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":449},{"theme":"ENV_FISHERY","charOffset":408},{"theme":"TAX_WORLDFISH_SHARKS","charOffset":1140},{"theme":"SECURITY_SERVICES","charOffset":449},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":449},{"theme":"WB_840_JUSTICE","charOffset":449},{"theme":"WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","charOffset":449},{"theme":"WB_328_FINANCIAL_INTEGRITY","charOffset":449},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":449},{"theme":"WB_2082_LAW_ENFORCEMENT","charOffset":449},{"theme":"LEGISLATION","charOffset":437},{"theme":"EPU_POLICY_LAW","charOffset":437},{"theme":"TAX_FNCACT_CREW_MEMBERS","charOffset":1368},{"theme":"MEDIA_SOCIAL","charOffset":1749},{"theme":"WB_652_ICT_APPLICATIONS","charOffset":1749},{"theme":"WB_662_SOCIAL_MEDIA","charOffset":1749},{"theme":"WB_658_ENTERPRISE_APPLICATIONS","charOffset":1749},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":428}][{"geoType":"WORLDCITY","geoName":"Manila, Manila, Philippines","countryCode":"RP","adm1Code":"RPD9","adm2Code":"","geoPoint":{"latitude":14.6042,"longitude":120.982},"featureId":"-2437894"},{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},{"geoType":"WORLDCITY","geoName":"Palawan, Dapitan, Philippines","countryCode":"RP","adm1Code":"RPC2","adm2Code":"","geoPoint":{"latitude":8.63333,"longitude":123.4},"featureId":"-2447135"},{"geoType":"WORLDCITY","geoName":"Linapacan, Palawan, Philippines","countryCode":"RP","adm1Code":"RP49","adm2Code":"","geoPoint":{"latitude":11.4924,"longitude":119.87},"featureId":"-2433265"},{"geoType":"WORLDCITY","geoName":"Andres Bonifacio, Nueva Ecija, Philippines","countryCode":"RP","adm1Code":"RP47","adm2Code":"","geoPoint":{"latitude":15.7097,"longitude":121.009},"featureId":"-2408485"}][{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":78},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":118},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":164},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":191},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":297},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":328},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":670},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":711},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":748},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":1005},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":1045},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":1437},{"location":{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"24213","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},"charOffset":1601},{"location":{"geoType":"WORLDCITY","geoName":"Manila, Manila, Philippines","countryCode":"RP","adm1Code":"RPD9","adm2Code":"24210","geoPoint":{"latitude":14.6042,"longitude":120.982},"featureId":"-2437894"},"charOffset":152},{"location":{"geoType":"WORLDCITY","geoName":"Manila, Manila, Philippines","countryCode":"RP","adm1Code":"RPD9","adm2Code":"24210","geoPoint":{"latitude":14.6042,"longitude":120.982},"featureId":"-2437894"},"charOffset":658},{"location":{"geoType":"WORLDCITY","geoName":"Andres Bonifacio, Nueva Ecija, Philippines","countryCode":"RP","adm1Code":"RP47","adm2Code":"24222","geoPoint":{"latitude":15.7097,"longitude":121.009},"featureId":"-2408485"},"charOffset":1425},{"location":{"geoType":"WORLDCITY","geoName":"Linapacan, Palawan, Philippines","countryCode":"RP","adm1Code":"RP49","adm2Code":"24233","geoPoint":{"latitude":11.4924,"longitude":119.87},"featureId":"-2433265"},"charOffset":699},{"location":{"geoType":"WORLDCITY","geoName":"Palawan, Dapitan, Philippines","countryCode":"RP","adm1Code":"RPC2","adm2Code":"24238","geoPoint":{"latitude":8.63333,"longitude":123.4},"featureId":"-2447135"},"charOffset":66},{"location":{"geoType":"WORLDCITY","geoName":"Palawan, Dapitan, Philippines","countryCode":"RP","adm1Code":"RPC2","adm2Code":"24238","geoPoint":{"latitude":8.63333,"longitude":123.4},"featureId":"-2447135"},"charOffset":285},{"location":{"geoType":"WORLDCITY","geoName":"Palawan, Dapitan, Philippines","countryCode":"RP","adm1Code":"RPC2","adm2Code":"24238","geoPoint":{"latitude":8.63333,"longitude":123.4},"featureId":"-2447135"},"charOffset":736},{"location":{"geoType":"WORLDCITY","geoName":"Palawan, Dapitan, Philippines","countryCode":"RP","adm1Code":"RPC2","adm2Code":"24238","geoPoint":{"latitude":8.63333,"longitude":123.4},"featureId":"-2447135"},"charOffset":993},{"location":{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},"charOffset":131},{"location":{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},"charOffset":341},{"location":{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},"charOffset":1058},{"location":{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},"charOffset":1614}]["eden estopace"][{"person":"Eden Estopace","charOffset":1540}]["bureau of fisheries","gat andres bonifacio memorial medical center"][{"organisation":"Bureau Of Fisheries","charOffset":408}]{"tone":-5.9760957,"positiveScore":0.3984064,"negativeScore":6.374502,"polarity":6.772908,"activityReferenceDensity":24.701195,"selfGroupReferenceDensity":0,"wordCount":248}[{"dateResolution":4,"month":5,"day":20,"year":0,"charOffset":442}][{"gcamCode":"wc","gcamValue":248},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":17},{"gcamCode":"c12.10","gcamValue":11},{"gcamCode":"c12.12","gcamValue":2},{"gcamCode":"c12.13","gcamValue":3},{"gcamCode":"c12.14","gcamValue":6},{"gcamCode":"c12.3","gcamValue":11},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":7},{"gcamCode":"c12.7","gcamValue":13},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":11},{"gcamCode":"c13.1","gcamValue":7},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.4","gcamValue":4},{"gcamCode":"c14.1","gcamValue":11},{"gcamCode":"c14.10","gcamValue":12},{"gcamCode":"c14.11","gcamValue":18},{"gcamCode":"c14.2","gcamValue":11},{"gcamCode":"c14.3","gcamValue":16},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":21},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.203","gcamValue":2},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.226","gcamValue":1},{"gcamCode":"c15.248","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.57","gcamValue":2},{"gcamCode":"c15.82","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":6},{"gcamCode":"c16.100","gcamValue":11},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.106","gcamValue":8},{"gcamCode":"c16.109","gcamValue":9},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":28},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":14},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":7},{"gcamCode":"c16.117","gcamValue":15},{"gcamCode":"c16.118","gcamValue":13},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":9},{"gcamCode":"c16.121","gcamValue":13},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":9},{"gcamCode":"c16.126","gcamValue":3},{"gcamCode":"c16.127","gcamValue":13},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":17},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":7},{"gcamCode":"c16.132","gcamValue":5},{"gcamCode":"c16.134","gcamValue":17},{"gcamCode":"c16.138","gcamValue":5},{"gcamCode":"c16.139","gcamValue":8},{"gcamCode":"c16.140","gcamValue":1},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.145","gcamValue":10},{"gcamCode":"c16.146","gcamValue":25},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.150","gcamValue":2},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.159","gcamValue":14},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":18},{"gcamCode":"c16.162","gcamValue":8},{"gcamCode":"c16.163","gcamValue":20},{"gcamCode":"c16.19","gcamValue":7},{"gcamCode":"c16.2","gcamValue":12},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.23","gcamValue":4},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":36},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":10},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":25},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":21},{"gcamCode":"c16.38","gcamValue":7},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":28},{"gcamCode":"c16.41","gcamValue":8},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":8},{"gcamCode":"c16.47","gcamValue":29},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.49","gcamValue":4},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":17},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":124},{"gcamCode":"c16.58","gcamValue":13},{"gcamCode":"c16.6","gcamValue":32},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.61","gcamValue":16},{"gcamCode":"c16.62","gcamValue":7},{"gcamCode":"c16.63","gcamValue":14},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":6},{"gcamCode":"c16.69","gcamValue":8},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":10},{"gcamCode":"c16.71","gcamValue":6},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.75","gcamValue":7},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.84","gcamValue":8},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":19},{"gcamCode":"c16.88","gcamValue":19},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":10},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":18},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":13},{"gcamCode":"c16.95","gcamValue":13},{"gcamCode":"c16.96","gcamValue":6},{"gcamCode":"c16.98","gcamValue":9},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":54},{"gcamCode":"c17.10","gcamValue":20},{"gcamCode":"c17.11","gcamValue":26},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.14","gcamValue":14},{"gcamCode":"c17.15","gcamValue":13},{"gcamCode":"c17.16","gcamValue":3},{"gcamCode":"c17.18","gcamValue":5},{"gcamCode":"c17.19","gcamValue":8},{"gcamCode":"c17.2","gcamValue":9},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":6},{"gcamCode":"c17.24","gcamValue":22},{"gcamCode":"c17.25","gcamValue":6},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":8},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":5},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":4},{"gcamCode":"c17.32","gcamValue":5},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":17},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":15},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":9},{"gcamCode":"c17.4","gcamValue":40},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":12},{"gcamCode":"c17.42","gcamValue":8},{"gcamCode":"c17.43","gcamValue":8},{"gcamCode":"c17.5","gcamValue":52},{"gcamCode":"c17.6","gcamValue":12},{"gcamCode":"c17.7","gcamValue":38},{"gcamCode":"c17.8","gcamValue":20},{"gcamCode":"c17.9","gcamValue":5},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.133","gcamValue":2},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.149","gcamValue":2},{"gcamCode":"c18.165","gcamValue":7},{"gcamCode":"c18.193","gcamValue":5},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.232","gcamValue":1},{"gcamCode":"c18.250","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.352","gcamValue":14},{"gcamCode":"c18.365","gcamValue":3},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c2.1","gcamValue":3},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":42},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.114","gcamValue":8},{"gcamCode":"c2.116","gcamValue":7},{"gcamCode":"c2.119","gcamValue":64},{"gcamCode":"c2.12","gcamValue":9},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":15},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":12},{"gcamCode":"c2.126","gcamValue":10},{"gcamCode":"c2.127","gcamValue":13},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":9},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":5},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.14","gcamValue":9},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.143","gcamValue":10},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":44},{"gcamCode":"c2.148","gcamValue":4},{"gcamCode":"c2.15","gcamValue":9},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":22},{"gcamCode":"c2.156","gcamValue":6},{"gcamCode":"c2.157","gcamValue":18},{"gcamCode":"c2.158","gcamValue":12},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":11},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":12},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":7},{"gcamCode":"c2.180","gcamValue":7},{"gcamCode":"c2.181","gcamValue":8},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":9},{"gcamCode":"c2.185","gcamValue":50},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":7},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":13},{"gcamCode":"c2.195","gcamValue":14},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":19},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":15},{"gcamCode":"c2.205","gcamValue":1},{"gcamCode":"c2.206","gcamValue":5},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":17},{"gcamCode":"c2.212","gcamValue":4},{"gcamCode":"c2.213","gcamValue":6},{"gcamCode":"c2.214","gcamValue":12},{"gcamCode":"c2.217","gcamValue":4},{"gcamCode":"c2.220","gcamValue":4},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":12},{"gcamCode":"c2.23","gcamValue":4},{"gcamCode":"c2.25","gcamValue":14},{"gcamCode":"c2.26","gcamValue":8},{"gcamCode":"c2.27","gcamValue":8},{"gcamCode":"c2.28","gcamValue":5},{"gcamCode":"c2.30","gcamValue":8},{"gcamCode":"c2.31","gcamValue":11},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":20},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":25},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.44","gcamValue":14},{"gcamCode":"c2.45","gcamValue":26},{"gcamCode":"c2.46","gcamValue":15},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":13},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":15},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":21},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":7},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.7","gcamValue":12},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.75","gcamValue":30},{"gcamCode":"c2.76","gcamValue":124},{"gcamCode":"c2.77","gcamValue":15},{"gcamCode":"c2.78","gcamValue":28},{"gcamCode":"c2.79","gcamValue":3},{"gcamCode":"c2.80","gcamValue":24},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":28},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":9},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.11","gcamValue":4},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":19},{"gcamCode":"c3.2","gcamValue":9},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":4},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":2},{"gcamCode":"c35.22","gcamValue":6},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.30","gcamValue":6},{"gcamCode":"c35.31","gcamValue":10},{"gcamCode":"c35.32","gcamValue":7},{"gcamCode":"c35.33","gcamValue":15},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":10},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":3},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":5},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c4.11","gcamValue":12},{"gcamCode":"c4.12","gcamValue":5},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":7},{"gcamCode":"c4.3","gcamValue":2},{"gcamCode":"c4.9","gcamValue":1},{"gcamCode":"c40.3","gcamValue":1},{"gcamCode":"c40.8","gcamValue":6},{"gcamCode":"c41.1","gcamValue":9},{"gcamCode":"c5.10","gcamValue":12},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":20},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.17","gcamValue":3},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.24","gcamValue":7},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":7},{"gcamCode":"c5.30","gcamValue":21},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.35","gcamValue":6},{"gcamCode":"c5.36","gcamValue":10},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":7},{"gcamCode":"c5.40","gcamValue":9},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":6},{"gcamCode":"c5.46","gcamValue":38},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":12},{"gcamCode":"c5.50","gcamValue":20},{"gcamCode":"c5.51","gcamValue":7},{"gcamCode":"c5.52","gcamValue":20},{"gcamCode":"c5.53","gcamValue":18},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.6","gcamValue":19},{"gcamCode":"c5.61","gcamValue":3},{"gcamCode":"c5.62","gcamValue":71},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":4},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.4","gcamValue":10},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":13},{"gcamCode":"c7.2","gcamValue":10},{"gcamCode":"c8.16","gcamValue":6},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.22","gcamValue":4},{"gcamCode":"c8.23","gcamValue":2},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":3},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":7},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":9},{"gcamCode":"c8.43","gcamValue":3},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":11},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1031","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":9},{"gcamCode":"c9.13","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":3},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":2},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.199","gcamValue":2},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":6},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.240","gcamValue":1},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.276","gcamValue":4},{"gcamCode":"c9.277","gcamValue":16},{"gcamCode":"c9.278","gcamValue":3},{"gcamCode":"c9.279","gcamValue":2},{"gcamCode":"c9.283","gcamValue":6},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.308","gcamValue":13},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":4},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.372","gcamValue":12},{"gcamCode":"c9.377","gcamValue":12},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.463","gcamValue":12},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.474","gcamValue":3},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":3},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.509","gcamValue":2},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.57","gcamValue":3},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":9},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.590","gcamValue":2},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.642","gcamValue":7},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.650","gcamValue":12},{"gcamCode":"c9.653","gcamValue":8},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":4},{"gcamCode":"c9.673","gcamValue":4},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.690","gcamValue":4},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":8},{"gcamCode":"c9.730","gcamValue":7},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.762","gcamValue":7},{"gcamCode":"c9.767","gcamValue":9},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.783","gcamValue":6},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":4},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.810","gcamValue":2},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.818","gcamValue":2},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.832","gcamValue":4},{"gcamCode":"c9.833","gcamValue":3},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.835","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.842","gcamValue":3},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.847","gcamValue":4},{"gcamCode":"c9.848","gcamValue":4},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.851","gcamValue":3},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"v10.1","gcamValue":0.278725282485876},{"gcamCode":"v10.2","gcamValue":0.263701923076923},{"gcamCode":"v11.1","gcamValue":0.115987698412698},{"gcamCode":"v19.1","gcamValue":5.92472222222222},{"gcamCode":"v19.2","gcamValue":4.52277777777778},{"gcamCode":"v19.3","gcamValue":5.55833333333333},{"gcamCode":"v19.4","gcamValue":6.03277777777778},{"gcamCode":"v19.5","gcamValue":4.56583333333333},{"gcamCode":"v19.6","gcamValue":5.71638888888889},{"gcamCode":"v19.7","gcamValue":5.81083333333333},{"gcamCode":"v19.8","gcamValue":4.48361111111111},{"gcamCode":"v19.9","gcamValue":5.38611111111111},{"gcamCode":"v20.1","gcamValue":0.307},{"gcamCode":"v20.10","gcamValue":-0.625},{"gcamCode":"v20.11","gcamValue":0.42975},{"gcamCode":"v20.12","gcamValue":-0.625},{"gcamCode":"v20.13","gcamValue":0.38125},{"gcamCode":"v20.14","gcamValue":-0.40225},{"gcamCode":"v20.15","gcamValue":0.32355},{"gcamCode":"v20.16","gcamValue":-0.343692307692308},{"gcamCode":"v20.3","gcamValue":0.42975},{"gcamCode":"v20.5","gcamValue":0.42975},{"gcamCode":"v20.7","gcamValue":0.42975},{"gcamCode":"v20.9","gcamValue":0.42975},{"gcamCode":"v21.1","gcamValue":5.4479375},{"gcamCode":"v26.1","gcamValue":1.07}]https://newsinfo.inquirer.net/wp-content/blogs.dir/10/files/2019/05/PCG3-620x413.jpeg["https://newsinfo.inquirer.net/wp-content/blogs.dir/10/files/2019/05/PCG2-620x413.jpeg"][""]["https://youtube.com/watch","https://youtube.com/embed","https://player.vimeo.com/video/$2?$4"][][{"name":"Philippine Coast","charOffset":100},{"name":"Philippine Coast Guard","charOffset":245},{"name":"Aquatic Resources","charOffset":321},{"name":"Law Enforcement","charOffset":345},{"name":"Merchant Vessel Alejandra","charOffset":541},{"name":"Philippine Coast","charOffset":853},{"name":"Gat Andres Bonifacio Memorial Medical Center","charOffset":1245},{"name":"Eden Estopace","charOffset":1315},{"name":"Philippine Daily Inquirer","charOffset":1383}][{"amount":24000000,"amountType":"worth of","charOffset":27},{"amount":79,"amountType":"of the 162 fish","charOffset":521},{"amount":162,"amountType":"fish tubs","charOffset":529},{"amount":24000000,"amountType":"worth of","charOffset":645},{"amount":10,"amountType":"crew members of the","charOffset":951},{"amount":5,"amountType":"gadgets","charOffset":1177},{"amount":4000000,"amountType":"share articles on social","charOffset":1221}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.inquirer.net/plus</PAGE_LINKS><PAGE_AUTHORS>Neil Arwin Mercado</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBottawasun.comhttps://ottawasun.com/opinion/letters/you-said-it-a-crime-is-a-crime[][]["SOC_GENERALCRIME","EPU_CATS_MIGRATION_FEAR_FEAR","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_OFFICIAL","UNREST_SELF_IDENTIFIED_HATE_CRIME","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","DISCRIMINATION","DISCRIMINATION_RACE","DISCRIMINATION_RACE_RACISM","UNGP_FREEDOM_FROM_DISCRIMINATION","RELIGION","TAX_FNCACT_CRIMINAL","GENERAL_HEALTH","MEDICAL","UNGP_HEALTHCARE","TAX_DISEASE","TAX_DISEASE_MEASLES","TAX_DISEASE_OUTBREAK","WB_635_PUBLIC_HEALTH","WB_2165_HEALTH_EMERGENCIES","WB_2166_HEALTH_EMERGENCY_PREPAREDNESS_AND_DISASTER_RESPONSE","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_2167_PANDEMICS","BORDER","IMMIGRATION","TAX_FNCACT_IMMIGRANTS","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_DOG","TAX_FNCACT_VETERINARIAN","HEALTH_VACCINATION","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","TAX_FNCACT_CHILDREN","TAX_WORLDMAMMALS_DOGS","CRISISLEX_T06_SUPPLIES","INFRASTRUCTURE_BAD_ROADS","CRISISLEX_C04_LOGISTICS_TRANSPORT","UNGP_TRANSPORTATION_ROADS","LEADER","TAX_FNCACT_MAYOR","TAX_FNCACT_POPE"][{"theme":"GENERAL_GOVERNMENT","charOffset":1582},{"theme":"GENERAL_GOVERNMENT","charOffset":1626},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1582},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1626},{"theme":"UNGP_HEALTHCARE","charOffset":869},{"theme":"UNGP_HEALTHCARE","charOffset":1829},{"theme":"HEALTH_VACCINATION","charOffset":1448},{"theme":"HEALTH_VACCINATION","charOffset":1478},{"theme":"IMMIGRATION","charOffset":1240},{"theme":"IMMIGRATION","charOffset":1535},{"theme":"IMMIGRATION","charOffset":1673},{"theme":"IMMIGRATION","charOffset":1948},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1240},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1535},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1673},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1948},{"theme":"DISCRIMINATION","charOffset":327},{"theme":"DISCRIMINATION_RACE_RACISM","charOffset":327},{"theme":"UNGP_FREEDOM_FROM_DISCRIMINATION","charOffset":327},{"theme":"INFRASTRUCTURE_BAD_ROADS","charOffset":1998},{"theme":"INFRASTRUCTURE_BAD_ROADS","charOffset":2194},{"theme":"INFRASTRUCTURE_BAD_ROADS","charOffset":2313},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":1998},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2194},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2313},{"theme":"UNGP_TRANSPORTATION_ROADS","charOffset":1998},{"theme":"UNGP_TRANSPORTATION_ROADS","charOffset":2194},{"theme":"UNGP_TRANSPORTATION_ROADS","charOffset":2313},{"theme":"BORDER","charOffset":979},{"theme":"TAX_DISEASE_MEASLES","charOffset":904},{"theme":"SOC_GENERALCRIME","charOffset":7},{"theme":"SOC_GENERALCRIME","charOffset":18},{"theme":"SOC_GENERALCRIME","charOffset":227},{"theme":"SOC_GENERALCRIME","charOffset":238},{"theme":"SOC_GENERALCRIME","charOffset":830},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":7},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":18},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":227},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":238},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":830},{"theme":"RELIGION","charOffset":354},{"theme":"GENERAL_HEALTH","charOffset":864},{"theme":"GENERAL_HEALTH","charOffset":1824},{"theme":"MEDICAL","charOffset":864},{"theme":"MEDICAL","charOffset":1824},{"theme":"TAX_DISEASE_OUTBREAK","charOffset":913},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":913},{"theme":"WB_2165_HEALTH_EMERGENCIES","charOffset":913},{"theme":"WB_2166_HEALTH_EMERGENCY_PREPAREDNESS_AND_DISASTER_RESPONSE","charOffset":913},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":913},{"theme":"WB_2167_PANDEMICS","charOffset":913},{"theme":"TAX_WORLDMAMMALS_DOGS","charOffset":1956},{"theme":"CRISISLEX_T06_SUPPLIES","charOffset":2032},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":462},{"theme":"TAX_FNCACT_POPE","charOffset":2864},{"theme":"UNREST_SELF_IDENTIFIED_HATE_CRIME","charOffset":202},{"theme":"SECURITY_SERVICES","charOffset":129},{"theme":"TAX_FNCACT_POLICE","charOffset":129},{"theme":"CRISISLEX_C07_SAFETY","charOffset":129},{"theme":"LEADER","charOffset":2568},{"theme":"TAX_FNCACT_MAYOR","charOffset":2568},{"theme":"LEGISLATION","charOffset":309},{"theme":"EPU_POLICY_LAW","charOffset":309},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":1344},{"theme":"TAX_FNCACT_CHILDREN","charOffset":1724},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":138},{"theme":"TAX_FNCACT_VETERINARIAN","charOffset":1395}][{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"WORLDCITY","geoName":"Montreal, Quebec, Canada","countryCode":"CA","adm1Code":"CA10","adm2Code":"","geoPoint":{"latitude":45.5,"longitude":-73.5833},"featureId":"-569541"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"}][{"location":{"geoType":"WORLDCITY","geoName":"Montreal, Quebec, Canada","countryCode":"CA","adm1Code":"CA10","adm2Code":"12713","geoPoint":{"latitude":45.5,"longitude":-73.5833},"featureId":"-569541"},"charOffset":1125},{"location":{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},"charOffset":998},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":151},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":733},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":1896},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":2248},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":3017},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":159},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":477},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":741},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":940},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":1114},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":1133},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":1904},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":2256},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3025},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":967}]["jim watson","dalton mcguinty","kathleen wynne"][{"person":"Jim Watson","charOffset":2579},{"person":"Dalton Mcguinty","charOffset":2350},{"person":"Kathleen Wynne","charOffset":2912}]["united states"][{"organisation":"United States","charOffset":967}]{"tone":-4.255319,"positiveScore":2.1276596,"negativeScore":6.382979,"polarity":8.510638,"activityReferenceDensity":24.371374,"selfGroupReferenceDensity":2.321083,"wordCount":466}[][{"gcamCode":"wc","gcamValue":466},{"gcamCode":"c1.4","gcamValue":2},{"gcamCode":"c12.1","gcamValue":48},{"gcamCode":"c12.10","gcamValue":60},{"gcamCode":"c12.11","gcamValue":2},{"gcamCode":"c12.12","gcamValue":24},{"gcamCode":"c12.13","gcamValue":26},{"gcamCode":"c12.14","gcamValue":13},{"gcamCode":"c12.2","gcamValue":1},{"gcamCode":"c12.3","gcamValue":20},{"gcamCode":"c12.4","gcamValue":11},{"gcamCode":"c12.5","gcamValue":20},{"gcamCode":"c12.6","gcamValue":2},{"gcamCode":"c12.7","gcamValue":42},{"gcamCode":"c12.8","gcamValue":35},{"gcamCode":"c12.9","gcamValue":29},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.12","gcamValue":5},{"gcamCode":"c13.3","gcamValue":2},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":31},{"gcamCode":"c14.10","gcamValue":22},{"gcamCode":"c14.11","gcamValue":44},{"gcamCode":"c14.2","gcamValue":31},{"gcamCode":"c14.3","gcamValue":31},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":56},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":6},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.110","gcamValue":5},{"gcamCode":"c15.116","gcamValue":2},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":2},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.132","gcamValue":3},{"gcamCode":"c15.135","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.139","gcamValue":4},{"gcamCode":"c15.144","gcamValue":1},{"gcamCode":"c15.150","gcamValue":3},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":5},{"gcamCode":"c15.176","gcamValue":6},{"gcamCode":"c15.177","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.179","gcamValue":1},{"gcamCode":"c15.181","gcamValue":4},{"gcamCode":"c15.182","gcamValue":3},{"gcamCode":"c15.186","gcamValue":3},{"gcamCode":"c15.189","gcamValue":3},{"gcamCode":"c15.190","gcamValue":3},{"gcamCode":"c15.191","gcamValue":3},{"gcamCode":"c15.192","gcamValue":3},{"gcamCode":"c15.193","gcamValue":3},{"gcamCode":"c15.195","gcamValue":3},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.2","gcamValue":3},{"gcamCode":"c15.211","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.226","gcamValue":3},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.236","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.242","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.279","gcamValue":1},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.59","gcamValue":1},{"gcamCode":"c15.60","gcamValue":2},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.74","gcamValue":3},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.83","gcamValue":3},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.93","gcamValue":3},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":15},{"gcamCode":"c16.101","gcamValue":7},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":24},{"gcamCode":"c16.109","gcamValue":31},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":73},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":40},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":14},{"gcamCode":"c16.117","gcamValue":18},{"gcamCode":"c16.118","gcamValue":35},{"gcamCode":"c16.12","gcamValue":52},{"gcamCode":"c16.120","gcamValue":20},{"gcamCode":"c16.121","gcamValue":36},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":36},{"gcamCode":"c16.126","gcamValue":23},{"gcamCode":"c16.127","gcamValue":49},{"gcamCode":"c16.128","gcamValue":10},{"gcamCode":"c16.129","gcamValue":73},{"gcamCode":"c16.13","gcamValue":3},{"gcamCode":"c16.130","gcamValue":8},{"gcamCode":"c16.131","gcamValue":23},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":50},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":24},{"gcamCode":"c16.140","gcamValue":17},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":35},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":18},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":6},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":44},{"gcamCode":"c16.16","gcamValue":6},{"gcamCode":"c16.161","gcamValue":48},{"gcamCode":"c16.162","gcamValue":22},{"gcamCode":"c16.163","gcamValue":33},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":7},{"gcamCode":"c16.2","gcamValue":31},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":5},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":58},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.29","gcamValue":2},{"gcamCode":"c16.3","gcamValue":7},{"gcamCode":"c16.31","gcamValue":31},{"gcamCode":"c16.32","gcamValue":5},{"gcamCode":"c16.33","gcamValue":44},{"gcamCode":"c16.35","gcamValue":26},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":48},{"gcamCode":"c16.38","gcamValue":14},{"gcamCode":"c16.4","gcamValue":40},{"gcamCode":"c16.41","gcamValue":24},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":25},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":66},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":24},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":5},{"gcamCode":"c16.56","gcamValue":11},{"gcamCode":"c16.57","gcamValue":263},{"gcamCode":"c16.58","gcamValue":37},{"gcamCode":"c16.6","gcamValue":56},{"gcamCode":"c16.60","gcamValue":6},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":24},{"gcamCode":"c16.63","gcamValue":7},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":10},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":19},{"gcamCode":"c16.69","gcamValue":25},{"gcamCode":"c16.7","gcamValue":10},{"gcamCode":"c16.70","gcamValue":31},{"gcamCode":"c16.71","gcamValue":10},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":24},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":12},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":2},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":18},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":45},{"gcamCode":"c16.88","gcamValue":71},{"gcamCode":"c16.89","gcamValue":12},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":12},{"gcamCode":"c16.91","gcamValue":17},{"gcamCode":"c16.92","gcamValue":39},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":53},{"gcamCode":"c16.95","gcamValue":22},{"gcamCode":"c16.96","gcamValue":9},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":46},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":116},{"gcamCode":"c17.10","gcamValue":54},{"gcamCode":"c17.11","gcamValue":62},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":24},{"gcamCode":"c17.16","gcamValue":24},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":12},{"gcamCode":"c17.19","gcamValue":23},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.21","gcamValue":5},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":4},{"gcamCode":"c17.24","gcamValue":53},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":60},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":6},{"gcamCode":"c17.31","gcamValue":29},{"gcamCode":"c17.32","gcamValue":18},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":10},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":26},{"gcamCode":"c17.37","gcamValue":11},{"gcamCode":"c17.38","gcamValue":12},{"gcamCode":"c17.39","gcamValue":15},{"gcamCode":"c17.4","gcamValue":105},{"gcamCode":"c17.40","gcamValue":12},{"gcamCode":"c17.41","gcamValue":22},{"gcamCode":"c17.42","gcamValue":35},{"gcamCode":"c17.43","gcamValue":31},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":91},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":58},{"gcamCode":"c17.8","gcamValue":63},{"gcamCode":"c17.9","gcamValue":6},{"gcamCode":"c18.101","gcamValue":4},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.149","gcamValue":2},{"gcamCode":"c18.152","gcamValue":1},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.181","gcamValue":2},{"gcamCode":"c18.185","gcamValue":2},{"gcamCode":"c18.191","gcamValue":2},{"gcamCode":"c18.193","gcamValue":12},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.269","gcamValue":5},{"gcamCode":"c18.34","gcamValue":4},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.345","gcamValue":2},{"gcamCode":"c18.35","gcamValue":4},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.81","gcamValue":1},{"gcamCode":"c18.92","gcamValue":1},{"gcamCode":"c2.1","gcamValue":8},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":18},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":72},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.107","gcamValue":4},{"gcamCode":"c2.108","gcamValue":5},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":6},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":37},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":25},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":135},{"gcamCode":"c2.12","gcamValue":28},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":37},{"gcamCode":"c2.122","gcamValue":18},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":8},{"gcamCode":"c2.125","gcamValue":20},{"gcamCode":"c2.126","gcamValue":26},{"gcamCode":"c2.127","gcamValue":50},{"gcamCode":"c2.128","gcamValue":17},{"gcamCode":"c2.129","gcamValue":27},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":3},{"gcamCode":"c2.132","gcamValue":6},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":4},{"gcamCode":"c2.14","gcamValue":31},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":9},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":30},{"gcamCode":"c2.144","gcamValue":15},{"gcamCode":"c2.145","gcamValue":8},{"gcamCode":"c2.146","gcamValue":7},{"gcamCode":"c2.147","gcamValue":67},{"gcamCode":"c2.148","gcamValue":51},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":27},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":9},{"gcamCode":"c2.155","gcamValue":55},{"gcamCode":"c2.156","gcamValue":23},{"gcamCode":"c2.157","gcamValue":52},{"gcamCode":"c2.158","gcamValue":44},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":34},{"gcamCode":"c2.161","gcamValue":4},{"gcamCode":"c2.162","gcamValue":12},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.165","gcamValue":4},{"gcamCode":"c2.166","gcamValue":21},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":7},{"gcamCode":"c2.17","gcamValue":12},{"gcamCode":"c2.170","gcamValue":9},{"gcamCode":"c2.172","gcamValue":5},{"gcamCode":"c2.173","gcamValue":13},{"gcamCode":"c2.174","gcamValue":4},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":34},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":23},{"gcamCode":"c2.180","gcamValue":23},{"gcamCode":"c2.181","gcamValue":27},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":121},{"gcamCode":"c2.186","gcamValue":8},{"gcamCode":"c2.187","gcamValue":42},{"gcamCode":"c2.188","gcamValue":3},{"gcamCode":"c2.189","gcamValue":3},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":29},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":49},{"gcamCode":"c2.196","gcamValue":8},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":47},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.200","gcamValue":6},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":23},{"gcamCode":"c2.204","gcamValue":41},{"gcamCode":"c2.205","gcamValue":9},{"gcamCode":"c2.206","gcamValue":11},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":24},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":69},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":13},{"gcamCode":"c2.214","gcamValue":13},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":6},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":14},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":32},{"gcamCode":"c2.26","gcamValue":21},{"gcamCode":"c2.27","gcamValue":21},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":17},{"gcamCode":"c2.31","gcamValue":27},{"gcamCode":"c2.32","gcamValue":8},{"gcamCode":"c2.33","gcamValue":6},{"gcamCode":"c2.34","gcamValue":26},{"gcamCode":"c2.35","gcamValue":17},{"gcamCode":"c2.36","gcamValue":10},{"gcamCode":"c2.37","gcamValue":12},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":80},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":20},{"gcamCode":"c2.46","gcamValue":56},{"gcamCode":"c2.47","gcamValue":13},{"gcamCode":"c2.48","gcamValue":10},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":7},{"gcamCode":"c2.52","gcamValue":40},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":46},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":11},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":25},{"gcamCode":"c2.64","gcamValue":10},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":13},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":85},{"gcamCode":"c2.76","gcamValue":324},{"gcamCode":"c2.77","gcamValue":40},{"gcamCode":"c2.78","gcamValue":82},{"gcamCode":"c2.79","gcamValue":14},{"gcamCode":"c2.80","gcamValue":69},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":25},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":24},{"gcamCode":"c2.87","gcamValue":5},{"gcamCode":"c2.88","gcamValue":13},{"gcamCode":"c2.89","gcamValue":17},{"gcamCode":"c2.9","gcamValue":5},{"gcamCode":"c2.90","gcamValue":8},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":6},{"gcamCode":"c2.95","gcamValue":85},{"gcamCode":"c2.96","gcamValue":6},{"gcamCode":"c2.97","gcamValue":13},{"gcamCode":"c2.98","gcamValue":26},{"gcamCode":"c2.99","gcamValue":9},{"gcamCode":"c25.11","gcamValue":3},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c25.6","gcamValue":4},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c25.9","gcamValue":3},{"gcamCode":"c3.1","gcamValue":34},{"gcamCode":"c3.2","gcamValue":27},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.13","gcamValue":2},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":6},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":13},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.31","gcamValue":18},{"gcamCode":"c35.32","gcamValue":12},{"gcamCode":"c35.33","gcamValue":19},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":3},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":4},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.27","gcamValue":1},{"gcamCode":"c39.3","gcamValue":11},{"gcamCode":"c39.35","gcamValue":1},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":9},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":12},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":7},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":23},{"gcamCode":"c4.24","gcamValue":3},{"gcamCode":"c4.28","gcamValue":3},{"gcamCode":"c4.3","gcamValue":2},{"gcamCode":"c4.7","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":3},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":30},{"gcamCode":"c5.11","gcamValue":13},{"gcamCode":"c5.12","gcamValue":60},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":7},{"gcamCode":"c5.18","gcamValue":4},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":11},{"gcamCode":"c5.23","gcamValue":7},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":16},{"gcamCode":"c5.27","gcamValue":18},{"gcamCode":"c5.28","gcamValue":4},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.3","gcamValue":4},{"gcamCode":"c5.30","gcamValue":59},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.33","gcamValue":3},{"gcamCode":"c5.34","gcamValue":15},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":25},{"gcamCode":"c5.37","gcamValue":3},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.40","gcamValue":40},{"gcamCode":"c5.41","gcamValue":1},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":21},{"gcamCode":"c5.44","gcamValue":6},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":61},{"gcamCode":"c5.47","gcamValue":19},{"gcamCode":"c5.48","gcamValue":8},{"gcamCode":"c5.49","gcamValue":64},{"gcamCode":"c5.50","gcamValue":56},{"gcamCode":"c5.51","gcamValue":55},{"gcamCode":"c5.52","gcamValue":79},{"gcamCode":"c5.53","gcamValue":44},{"gcamCode":"c5.54","gcamValue":20},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":9},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":9},{"gcamCode":"c5.59","gcamValue":4},{"gcamCode":"c5.6","gcamValue":26},{"gcamCode":"c5.60","gcamValue":26},{"gcamCode":"c5.61","gcamValue":46},{"gcamCode":"c5.62","gcamValue":238},{"gcamCode":"c5.7","gcamValue":6},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":15},{"gcamCode":"c6.1","gcamValue":15},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":25},{"gcamCode":"c6.5","gcamValue":7},{"gcamCode":"c6.6","gcamValue":6},{"gcamCode":"c7.1","gcamValue":41},{"gcamCode":"c7.2","gcamValue":25},{"gcamCode":"c8.1","gcamValue":3},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.12","gcamValue":4},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.17","gcamValue":3},{"gcamCode":"c8.2","gcamValue":6},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":12},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":5},{"gcamCode":"c8.37","gcamValue":8},{"gcamCode":"c8.38","gcamValue":8},{"gcamCode":"c8.39","gcamValue":6},{"gcamCode":"c8.4","gcamValue":23},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":9},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":25},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":3},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1019","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1022","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1033","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":4},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":3},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":6},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":5},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":4},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":31},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.132","gcamValue":2},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":2},{"gcamCode":"c9.14","gcamValue":4},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.146","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":11},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":4},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":9},{"gcamCode":"c9.189","gcamValue":2},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":5},{"gcamCode":"c9.237","gcamValue":4},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.243","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":3},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.270","gcamValue":5},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.28","gcamValue":5},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.293","gcamValue":4},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":25},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":4},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.326","gcamValue":2},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":14},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.335","gcamValue":2},{"gcamCode":"c9.34","gcamValue":11},{"gcamCode":"c9.340","gcamValue":5},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.377","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":3},{"gcamCode":"c9.384","gcamValue":9},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.39","gcamValue":8},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.405","gcamValue":3},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.417","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.420","gcamValue":4},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.446","gcamValue":4},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.460","gcamValue":4},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":5},{"gcamCode":"c9.513","gcamValue":7},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":5},{"gcamCode":"c9.522","gcamValue":9},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":7},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":5},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":4},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":5},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":24},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":4},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":4},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":4},{"gcamCode":"c9.629","gcamValue":9},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":6},{"gcamCode":"c9.635","gcamValue":3},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":6},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":6},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":27},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":6},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.683","gcamValue":5},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":6},{"gcamCode":"c9.695","gcamValue":4},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":7},{"gcamCode":"c9.701","gcamValue":10},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":7},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":5},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.725","gcamValue":3},{"gcamCode":"c9.726","gcamValue":24},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.742","gcamValue":4},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.757","gcamValue":5},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":24},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":10},{"gcamCode":"c9.767","gcamValue":33},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.772","gcamValue":2},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":6},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":3},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":3},{"gcamCode":"c9.790","gcamValue":4},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.802","gcamValue":4},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":11},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":4},{"gcamCode":"c9.864","gcamValue":27},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":24},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":3},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":7},{"gcamCode":"c9.905","gcamValue":3},{"gcamCode":"c9.906","gcamValue":2},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.911","gcamValue":6},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.927","gcamValue":2},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":6},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.936","gcamValue":3},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":5},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.969","gcamValue":6},{"gcamCode":"c9.972","gcamValue":7},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":5},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":8},{"gcamCode":"c9.982","gcamValue":1},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":3},{"gcamCode":"c9.985","gcamValue":9},{"gcamCode":"c9.986","gcamValue":13},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":5},{"gcamCode":"c9.989","gcamValue":2},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.291619769119769},{"gcamCode":"v10.2","gcamValue":0.277432735742518},{"gcamCode":"v11.1","gcamValue":0.0383875287356322},{"gcamCode":"v19.1","gcamValue":5.20216666666667},{"gcamCode":"v19.2","gcamValue":5.30433333333333},{"gcamCode":"v19.3","gcamValue":5.098},{"gcamCode":"v19.4","gcamValue":5.24216666666667},{"gcamCode":"v19.5","gcamValue":5.212},{"gcamCode":"v19.6","gcamValue":5.1735},{"gcamCode":"v19.7","gcamValue":5.2},{"gcamCode":"v19.8","gcamValue":5.396},{"gcamCode":"v19.9","gcamValue":5.02733333333333},{"gcamCode":"v20.1","gcamValue":0.498666666666667},{"gcamCode":"v20.10","gcamValue":-0.729166666666667},{"gcamCode":"v20.11","gcamValue":0.640769230769231},{"gcamCode":"v20.12","gcamValue":-0.671875},{"gcamCode":"v20.13","gcamValue":0.426553191489361},{"gcamCode":"v20.14","gcamValue":-0.489444444444444},{"gcamCode":"v20.15","gcamValue":0.387457627118644},{"gcamCode":"v20.16","gcamValue":-0.41408},{"gcamCode":"v20.2","gcamValue":-0.375},{"gcamCode":"v20.3","gcamValue":0.5615},{"gcamCode":"v20.4","gcamValue":-0.6875},{"gcamCode":"v20.5","gcamValue":0.731571428571429},{"gcamCode":"v20.6","gcamValue":-0.75},{"gcamCode":"v20.7","gcamValue":0.731571428571429},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.683},{"gcamCode":"v21.1","gcamValue":5.27328537170264},{"gcamCode":"v26.1","gcamValue":-0.592307692307692}]https://postmediaottawasun.files.wordpress.com/2019/03/77260946-2.jpg[""][""][""][][{"name":"Criminal Code","charOffset":468},{"name":"New York","charOffset":970},{"name":"Mayor Jim","charOffset":2526},{"name":"Kathleen Wynne","charOffset":2882}][]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://ottawasun.com/opinion/letters/you-said-it-a-crime-is-a-crime/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBinverness-courier.co.ukhttps://www.inverness-courier.co.uk/news/council-praises-trio-of-apprentices-178329/[][]["UNGP_FORESTS_RIVERS_OCEANS","WB_1467_EDUCATION_FOR_ALL","WB_2132_APPRENTICESHIP","WB_470_EDUCATION","WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","TAX_ETHNICITY","TAX_ETHNICITY_SCOTTISH","EPU_ECONOMY_HISTORIC"][{"theme":"TAX_ETHNICITY_SCOTTISH","charOffset":458},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":513},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":96},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":298},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":404},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":501},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":663},{"theme":"WB_2132_APPRENTICESHIP","charOffset":404},{"theme":"WB_2132_APPRENTICESHIP","charOffset":501},{"theme":"WB_2132_APPRENTICESHIP","charOffset":663},{"theme":"WB_470_EDUCATION","charOffset":404},{"theme":"WB_470_EDUCATION","charOffset":501},{"theme":"WB_470_EDUCATION","charOffset":663},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":404},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":501},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":663}][{"geoType":"WORLDCITY","geoName":"Inverness, Highland, United Kingdom","countryCode":"UK","adm1Code":"UKV3","adm2Code":"","geoPoint":{"latitude":57.4667,"longitude":-4.23333},"featureId":"-2599537"}][{"location":{"geoType":"WORLDCITY","geoName":"Inverness, Highland, United Kingdom","countryCode":"UK","adm1Code":"UKV3","adm2Code":"40172","geoPoint":{"latitude":57.4667,"longitude":-4.23333},"featureId":"-2599537"},"charOffset":197}]["rebecca winton","ross campbell","alistair mackinnon","bryony mcdiarmid"][{"person":"Rebecca Winton","charOffset":174},{"person":"Ross Campbell","charOffset":157},{"person":"Alistair Mackinnon","charOffset":267},{"person":"Bryony Mcdiarmid","charOffset":141}]["highland council"][{"organisation":"Highland Council","charOffset":76},{"organisation":"Highland Council","charOffset":641}]{"tone":6.756757,"positiveScore":6.756757,"negativeScore":0,"polarity":6.756757,"activityReferenceDensity":17.567568,"selfGroupReferenceDensity":0.6756757,"wordCount":136}[][{"gcamCode":"wc","gcamValue":136},{"gcamCode":"c1.1","gcamValue":1},{"gcamCode":"c12.1","gcamValue":5},{"gcamCode":"c12.10","gcamValue":9},{"gcamCode":"c12.12","gcamValue":2},{"gcamCode":"c12.13","gcamValue":3},{"gcamCode":"c12.14","gcamValue":4},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":2},{"gcamCode":"c12.8","gcamValue":3},{"gcamCode":"c12.9","gcamValue":8},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":13},{"gcamCode":"c14.2","gcamValue":5},{"gcamCode":"c14.3","gcamValue":8},{"gcamCode":"c14.4","gcamValue":3},{"gcamCode":"c14.5","gcamValue":13},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c16.100","gcamValue":4},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":4},{"gcamCode":"c16.109","gcamValue":9},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":20},{"gcamCode":"c16.114","gcamValue":7},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":11},{"gcamCode":"c16.12","gcamValue":10},{"gcamCode":"c16.120","gcamValue":6},{"gcamCode":"c16.121","gcamValue":11},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":8},{"gcamCode":"c16.127","gcamValue":7},{"gcamCode":"c16.129","gcamValue":16},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":6},{"gcamCode":"c16.134","gcamValue":13},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":5},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.145","gcamValue":11},{"gcamCode":"c16.146","gcamValue":9},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":4},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":20},{"gcamCode":"c16.16","gcamValue":4},{"gcamCode":"c16.161","gcamValue":9},{"gcamCode":"c16.162","gcamValue":4},{"gcamCode":"c16.163","gcamValue":7},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":12},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.26","gcamValue":17},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":10},{"gcamCode":"c16.33","gcamValue":10},{"gcamCode":"c16.35","gcamValue":8},{"gcamCode":"c16.37","gcamValue":10},{"gcamCode":"c16.38","gcamValue":4},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":4},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":23},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.51","gcamValue":4},{"gcamCode":"c16.52","gcamValue":10},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.56","gcamValue":4},{"gcamCode":"c16.57","gcamValue":68},{"gcamCode":"c16.58","gcamValue":7},{"gcamCode":"c16.6","gcamValue":13},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":4},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":7},{"gcamCode":"c16.69","gcamValue":4},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":6},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.75","gcamValue":4},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.84","gcamValue":13},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":5},{"gcamCode":"c16.88","gcamValue":12},{"gcamCode":"c16.89","gcamValue":5},{"gcamCode":"c16.90","gcamValue":2},{"gcamCode":"c16.91","gcamValue":3},{"gcamCode":"c16.92","gcamValue":9},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":5},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":33},{"gcamCode":"c17.10","gcamValue":16},{"gcamCode":"c17.11","gcamValue":15},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.14","gcamValue":1},{"gcamCode":"c17.15","gcamValue":13},{"gcamCode":"c17.16","gcamValue":5},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":7},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":9},{"gcamCode":"c17.27","gcamValue":12},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":7},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":6},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":7},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":6},{"gcamCode":"c17.37","gcamValue":6},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":4},{"gcamCode":"c17.4","gcamValue":28},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":8},{"gcamCode":"c17.5","gcamValue":26},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":13},{"gcamCode":"c17.8","gcamValue":12},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c2.1","gcamValue":9},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":5},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":21},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":1},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":34},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":7},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":3},{"gcamCode":"c2.126","gcamValue":5},{"gcamCode":"c2.127","gcamValue":16},{"gcamCode":"c2.128","gcamValue":2},{"gcamCode":"c2.129","gcamValue":12},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":5},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.14","gcamValue":10},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.143","gcamValue":9},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.147","gcamValue":24},{"gcamCode":"c2.148","gcamValue":12},{"gcamCode":"c2.15","gcamValue":3},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":7},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":14},{"gcamCode":"c2.156","gcamValue":9},{"gcamCode":"c2.157","gcamValue":12},{"gcamCode":"c2.158","gcamValue":9},{"gcamCode":"c2.160","gcamValue":5},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":5},{"gcamCode":"c2.179","gcamValue":9},{"gcamCode":"c2.18","gcamValue":4},{"gcamCode":"c2.180","gcamValue":4},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":21},{"gcamCode":"c2.187","gcamValue":6},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.195","gcamValue":20},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":12},{"gcamCode":"c2.199","gcamValue":3},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":8},{"gcamCode":"c2.204","gcamValue":15},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":11},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":11},{"gcamCode":"c2.25","gcamValue":7},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":4},{"gcamCode":"c2.31","gcamValue":4},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":5},{"gcamCode":"c2.35","gcamValue":3},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":3},{"gcamCode":"c2.39","gcamValue":13},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.44","gcamValue":8},{"gcamCode":"c2.45","gcamValue":11},{"gcamCode":"c2.46","gcamValue":8},{"gcamCode":"c2.48","gcamValue":3},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":6},{"gcamCode":"c2.54","gcamValue":9},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.62","gcamValue":4},{"gcamCode":"c2.64","gcamValue":3},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.73","gcamValue":2},{"gcamCode":"c2.74","gcamValue":2},{"gcamCode":"c2.75","gcamValue":18},{"gcamCode":"c2.76","gcamValue":79},{"gcamCode":"c2.77","gcamValue":15},{"gcamCode":"c2.78","gcamValue":18},{"gcamCode":"c2.80","gcamValue":13},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":7},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":7},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":19},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.2","gcamValue":12},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":11},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":9},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.14","gcamValue":4},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.19","gcamValue":3},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.25","gcamValue":2},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":14},{"gcamCode":"c39.37","gcamValue":10},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":11},{"gcamCode":"c39.40","gcamValue":4},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":6},{"gcamCode":"c4.16","gcamValue":2},{"gcamCode":"c4.23","gcamValue":4},{"gcamCode":"c4.8","gcamValue":4},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":6},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":24},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.35","gcamValue":6},{"gcamCode":"c5.36","gcamValue":6},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":11},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":23},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":9},{"gcamCode":"c5.50","gcamValue":12},{"gcamCode":"c5.51","gcamValue":6},{"gcamCode":"c5.52","gcamValue":12},{"gcamCode":"c5.53","gcamValue":4},{"gcamCode":"c5.54","gcamValue":7},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":4},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":11},{"gcamCode":"c5.62","gcamValue":48},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":25},{"gcamCode":"c5.9","gcamValue":15},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":8},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.37","gcamValue":2},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.4","gcamValue":4},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c9.1","gcamValue":6},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":4},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.134","gcamValue":2},{"gcamCode":"c9.135","gcamValue":2},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":2},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":3},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":4},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.33","gcamValue":5},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.337","gcamValue":2},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.375","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":2},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.579","gcamValue":4},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.613","gcamValue":3},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":3},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":4},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":6},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":3},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":6},{"gcamCode":"c9.722","gcamValue":4},{"gcamCode":"c9.724","gcamValue":5},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.730","gcamValue":4},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":3},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":4},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":6},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.935","gcamValue":3},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.257876016260163},{"gcamCode":"v10.2","gcamValue":0.23934595959596},{"gcamCode":"v11.1","gcamValue":0.137660765027322},{"gcamCode":"v19.1","gcamValue":5.91444444444444},{"gcamCode":"v19.2","gcamValue":4.94777777777778},{"gcamCode":"v19.3","gcamValue":5.48222222222222},{"gcamCode":"v19.4","gcamValue":5.77555555555556},{"gcamCode":"v19.5","gcamValue":4.99555555555556},{"gcamCode":"v19.6","gcamValue":5.56555555555555},{"gcamCode":"v19.7","gcamValue":6.04444444444444},{"gcamCode":"v19.8","gcamValue":4.94111111111111},{"gcamCode":"v19.9","gcamValue":5.40333333333333},{"gcamCode":"v20.1","gcamValue":0.471},{"gcamCode":"v20.11","gcamValue":0.62},{"gcamCode":"v20.13","gcamValue":0.418384615384615},{"gcamCode":"v20.15","gcamValue":0.395933333333333},{"gcamCode":"v20.3","gcamValue":0.615},{"gcamCode":"v20.5","gcamValue":0.615},{"gcamCode":"v20.7","gcamValue":0.66},{"gcamCode":"v20.9","gcamValue":0.66},{"gcamCode":"v21.1","gcamValue":5.61352941176471},{"gcamCode":"v26.1","gcamValue":1.8}]https://www.inverness-courier.co.uk/_media/img/4NIL28OWETSU426HU9K0.jpg[""][""][""][][{"name":"Highland Council","charOffset":80},{"name":"Bryony McDiarmid","charOffset":146},{"name":"Ross Campbell","charOffset":165},{"name":"Rebecca Winton","charOffset":185},{"name":"Alistair Mackinnon","charOffset":263},{"name":"Scottish Vocational Qualifications","charOffset":495},{"name":"Highland Council","charOffset":662}][{"amount":3,"amountType":"apprentices were presented with","charOffset":5},{"amount":3,"amountType":"young people who started","charOffset":299},{"amount":120,"amountType":"new apprenticeships starting since","charOffset":622},{"amount":150,"amountType":"by the end of","charOffset":688}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEBavclub.comhttps://film.avclub.com/kaitlyn-dever-and-beanie-feldstein-on-becoming-real-lif-1834900941[{"countType":"PROTEST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},{"countType":"MOVEMENT_GENERAL","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},{"countType":"TAX_FNCACT_ACTIVIST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}}][{"count":{"countType":"PROTEST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},"charOffset":11290},{"count":{"countType":"MOVEMENT_GENERAL","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},"charOffset":11290},{"count":{"countType":"TAX_FNCACT_ACTIVIST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},"charOffset":11290}]["EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","SOC_POINTSOFINTEREST_HIGH_SCHOOL","TAX_FNCACT","TAX_FNCACT_MAN","WB_1675_GRADUATION","WB_855_LABOR_MARKETS","WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_FNCACT_TEACHER","AFFECT","SOC_POINTSOFINTEREST_COLLEGE","CRISISLEX_T11_UPDATESSYMPATHY","USPEC_POLITICS_GENERAL1","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_MANDARIN","TAX_FNCACT_WOMAN","TAX_FNCACT_DIRECTORS","TAX_FNCACT_WOMEN","TAX_FNCACT_LADY","TAX_FNCACT_ACTOR","PROTEST","MOVEMENT_GENERAL","TAX_FNCACT_ACTIVIST","KILL"][{"theme":"TAX_FNCACT_WOMAN","charOffset":9064},{"theme":"TAX_FNCACT_WOMAN","charOffset":9455},{"theme":"TAX_FNCACT_WOMAN","charOffset":11237},{"theme":"TAX_FNCACT_WOMAN","charOffset":11329},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2538},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2612},{"theme":"EDUCATION","charOffset":289},{"theme":"EDUCATION","charOffset":876},{"theme":"EDUCATION","charOffset":1053},{"theme":"EDUCATION","charOffset":1258},{"theme":"EDUCATION","charOffset":1356},{"theme":"EDUCATION","charOffset":1537},{"theme":"EDUCATION","charOffset":1788},{"theme":"EDUCATION","charOffset":1915},{"theme":"EDUCATION","charOffset":1969},{"theme":"EDUCATION","charOffset":2019},{"theme":"EDUCATION","charOffset":2163},{"theme":"EDUCATION","charOffset":2371},{"theme":"EDUCATION","charOffset":2438},{"theme":"EDUCATION","charOffset":6618},{"theme":"EDUCATION","charOffset":7077},{"theme":"EDUCATION","charOffset":7757},{"theme":"EDUCATION","charOffset":9842},{"theme":"EDUCATION","charOffset":9876},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":289},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":876},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1053},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1258},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1356},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1537},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1788},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1915},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1969},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2019},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2163},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2371},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2438},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":6618},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7077},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7757},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":9842},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":9876},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":289},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":876},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1053},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1258},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1356},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1537},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1788},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1915},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1969},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2019},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2163},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2371},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2438},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":6618},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7077},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7757},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":9842},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":9876},{"theme":"TAX_FNCACT_ACTOR","charOffset":11265},{"theme":"TAX_FNCACT_TEACHER","charOffset":1389},{"theme":"TAX_FNCACT_LADY","charOffset":10581},{"theme":"TAX_FNCACT_LADY","charOffset":10750},{"theme":"PROTEST","charOffset":11302},{"theme":"MOVEMENT_GENERAL","charOffset":11302},{"theme":"TAX_FNCACT_ACTIVIST","charOffset":11302},{"theme":"TAX_FNCACT_DIRECTORS","charOffset":9937},{"theme":"TAX_FNCACT_DIRECTORS","charOffset":10966},{"theme":"TAX_FNCACT_DIRECTORS","charOffset":11031},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":2579},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3334},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3968},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":4506},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":5996},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":6423},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":6839},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":7028},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":7478},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":7549},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":8176},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":8746},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":9257},{"theme":"TAX_FNCACT_WOMEN","charOffset":10526},{"theme":"KILL","charOffset":11364},{"theme":"WB_1675_GRADUATION","charOffset":1155},{"theme":"WB_855_LABOR_MARKETS","charOffset":1155},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":1155},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":1155},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":289},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":876},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1053},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1258},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1356},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1537},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1915},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1969},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":2163},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":2371},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":6618},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":7077},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":7757},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":9842},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":9876},{"theme":"AFFECT","charOffset":2286},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":2714},{"theme":"TAX_FNCACT_MAN","charOffset":950},{"theme":"TAX_FNCACT_MAN","charOffset":9054},{"theme":"TAX_WORLDLANGUAGES_MANDARIN","charOffset":5692}][{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}][{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":470}]["olivia wilde","kathryn bigelow","kaitlyn dever","katie silberman","lynn shelton","bffs amy"][{"person":"Olivia Wilde","charOffset":12},{"person":"Kathryn Bigelow","charOffset":11581},{"person":"Kathryn Bigelow","charOffset":11671},{"person":"Kaitlyn Dever","charOffset":195},{"person":"Kaitlyn Dever","charOffset":992},{"person":"Katie Silberman","charOffset":3036},{"person":"Katie Silberman","charOffset":3321},{"person":"Katie Silberman","charOffset":5441},{"person":"Lynn Shelton","charOffset":11383},{"person":"Bffs Amy","charOffset":298}]["a v club","breakfast club"][{"organisation":"Breakfast Club","charOffset":7983}]{"tone":2.910959,"positiveScore":3.8955479,"negativeScore":0.98458904,"polarity":4.880137,"activityReferenceDensity":22.55993,"selfGroupReferenceDensity":3.296233,"wordCount":1995}[{"dateResolution":4,"month":5,"day":24,"year":0,"charOffset":12117}][{"gcamCode":"wc","gcamValue":1995},{"gcamCode":"c1.1","gcamValue":5},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":2},{"gcamCode":"c12.1","gcamValue":207},{"gcamCode":"c12.10","gcamValue":254},{"gcamCode":"c12.12","gcamValue":40},{"gcamCode":"c12.13","gcamValue":142},{"gcamCode":"c12.14","gcamValue":76},{"gcamCode":"c12.3","gcamValue":37},{"gcamCode":"c12.4","gcamValue":65},{"gcamCode":"c12.5","gcamValue":118},{"gcamCode":"c12.7","gcamValue":71},{"gcamCode":"c12.8","gcamValue":185},{"gcamCode":"c12.9","gcamValue":167},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.14","gcamValue":4},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":192},{"gcamCode":"c14.10","gcamValue":101},{"gcamCode":"c14.11","gcamValue":280},{"gcamCode":"c14.2","gcamValue":130},{"gcamCode":"c14.3","gcamValue":185},{"gcamCode":"c14.4","gcamValue":47},{"gcamCode":"c14.5","gcamValue":268},{"gcamCode":"c14.6","gcamValue":30},{"gcamCode":"c14.7","gcamValue":36},{"gcamCode":"c14.8","gcamValue":5},{"gcamCode":"c14.9","gcamValue":47},{"gcamCode":"c15.10","gcamValue":23},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.103","gcamValue":11},{"gcamCode":"c15.105","gcamValue":7},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.110","gcamValue":20},{"gcamCode":"c15.112","gcamValue":8},{"gcamCode":"c15.115","gcamValue":7},{"gcamCode":"c15.116","gcamValue":24},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":14},{"gcamCode":"c15.122","gcamValue":2},{"gcamCode":"c15.123","gcamValue":2},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.13","gcamValue":8},{"gcamCode":"c15.131","gcamValue":5},{"gcamCode":"c15.132","gcamValue":6},{"gcamCode":"c15.137","gcamValue":6},{"gcamCode":"c15.139","gcamValue":5},{"gcamCode":"c15.147","gcamValue":7},{"gcamCode":"c15.15","gcamValue":9},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.152","gcamValue":5},{"gcamCode":"c15.154","gcamValue":3},{"gcamCode":"c15.159","gcamValue":5},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":2},{"gcamCode":"c15.167","gcamValue":10},{"gcamCode":"c15.168","gcamValue":10},{"gcamCode":"c15.170","gcamValue":2},{"gcamCode":"c15.171","gcamValue":8},{"gcamCode":"c15.172","gcamValue":4},{"gcamCode":"c15.173","gcamValue":25},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":28},{"gcamCode":"c15.177","gcamValue":5},{"gcamCode":"c15.178","gcamValue":7},{"gcamCode":"c15.179","gcamValue":5},{"gcamCode":"c15.18","gcamValue":8},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.197","gcamValue":3},{"gcamCode":"c15.201","gcamValue":9},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.206","gcamValue":2},{"gcamCode":"c15.209","gcamValue":4},{"gcamCode":"c15.212","gcamValue":12},{"gcamCode":"c15.215","gcamValue":13},{"gcamCode":"c15.217","gcamValue":2},{"gcamCode":"c15.218","gcamValue":6},{"gcamCode":"c15.22","gcamValue":2},{"gcamCode":"c15.221","gcamValue":10},{"gcamCode":"c15.222","gcamValue":10},{"gcamCode":"c15.227","gcamValue":6},{"gcamCode":"c15.233","gcamValue":4},{"gcamCode":"c15.24","gcamValue":5},{"gcamCode":"c15.241","gcamValue":5},{"gcamCode":"c15.251","gcamValue":10},{"gcamCode":"c15.252","gcamValue":7},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.255","gcamValue":7},{"gcamCode":"c15.256","gcamValue":10},{"gcamCode":"c15.257","gcamValue":11},{"gcamCode":"c15.26","gcamValue":13},{"gcamCode":"c15.260","gcamValue":5},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.267","gcamValue":2},{"gcamCode":"c15.27","gcamValue":5},{"gcamCode":"c15.270","gcamValue":10},{"gcamCode":"c15.279","gcamValue":5},{"gcamCode":"c15.29","gcamValue":10},{"gcamCode":"c15.3","gcamValue":13},{"gcamCode":"c15.31","gcamValue":7},{"gcamCode":"c15.34","gcamValue":4},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":8},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":5},{"gcamCode":"c15.42","gcamValue":10},{"gcamCode":"c15.43","gcamValue":22},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.50","gcamValue":6},{"gcamCode":"c15.51","gcamValue":5},{"gcamCode":"c15.53","gcamValue":11},{"gcamCode":"c15.58","gcamValue":3},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":2},{"gcamCode":"c15.69","gcamValue":6},{"gcamCode":"c15.72","gcamValue":5},{"gcamCode":"c15.76","gcamValue":6},{"gcamCode":"c15.83","gcamValue":18},{"gcamCode":"c15.84","gcamValue":2},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.9","gcamValue":5},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.92","gcamValue":3},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c15.94","gcamValue":5},{"gcamCode":"c15.97","gcamValue":17},{"gcamCode":"c15.99","gcamValue":3},{"gcamCode":"c16.1","gcamValue":33},{"gcamCode":"c16.100","gcamValue":22},{"gcamCode":"c16.101","gcamValue":23},{"gcamCode":"c16.102","gcamValue":5},{"gcamCode":"c16.103","gcamValue":7},{"gcamCode":"c16.105","gcamValue":26},{"gcamCode":"c16.106","gcamValue":102},{"gcamCode":"c16.108","gcamValue":21},{"gcamCode":"c16.109","gcamValue":195},{"gcamCode":"c16.11","gcamValue":7},{"gcamCode":"c16.110","gcamValue":292},{"gcamCode":"c16.111","gcamValue":10},{"gcamCode":"c16.113","gcamValue":22},{"gcamCode":"c16.114","gcamValue":158},{"gcamCode":"c16.115","gcamValue":53},{"gcamCode":"c16.116","gcamValue":38},{"gcamCode":"c16.117","gcamValue":85},{"gcamCode":"c16.118","gcamValue":129},{"gcamCode":"c16.12","gcamValue":316},{"gcamCode":"c16.120","gcamValue":83},{"gcamCode":"c16.121","gcamValue":102},{"gcamCode":"c16.122","gcamValue":10},{"gcamCode":"c16.123","gcamValue":7},{"gcamCode":"c16.124","gcamValue":25},{"gcamCode":"c16.125","gcamValue":197},{"gcamCode":"c16.126","gcamValue":177},{"gcamCode":"c16.127","gcamValue":185},{"gcamCode":"c16.128","gcamValue":30},{"gcamCode":"c16.129","gcamValue":288},{"gcamCode":"c16.13","gcamValue":12},{"gcamCode":"c16.130","gcamValue":58},{"gcamCode":"c16.131","gcamValue":127},{"gcamCode":"c16.133","gcamValue":4},{"gcamCode":"c16.134","gcamValue":224},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":4},{"gcamCode":"c16.137","gcamValue":2},{"gcamCode":"c16.138","gcamValue":116},{"gcamCode":"c16.139","gcamValue":101},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":96},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":6},{"gcamCode":"c16.145","gcamValue":157},{"gcamCode":"c16.146","gcamValue":115},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":5},{"gcamCode":"c16.151","gcamValue":5},{"gcamCode":"c16.152","gcamValue":3},{"gcamCode":"c16.153","gcamValue":96},{"gcamCode":"c16.155","gcamValue":13},{"gcamCode":"c16.156","gcamValue":9},{"gcamCode":"c16.157","gcamValue":47},{"gcamCode":"c16.158","gcamValue":6},{"gcamCode":"c16.159","gcamValue":189},{"gcamCode":"c16.16","gcamValue":28},{"gcamCode":"c16.161","gcamValue":210},{"gcamCode":"c16.162","gcamValue":118},{"gcamCode":"c16.163","gcamValue":145},{"gcamCode":"c16.164","gcamValue":57},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.17","gcamValue":4},{"gcamCode":"c16.18","gcamValue":12},{"gcamCode":"c16.19","gcamValue":34},{"gcamCode":"c16.2","gcamValue":61},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":14},{"gcamCode":"c16.22","gcamValue":41},{"gcamCode":"c16.23","gcamValue":9},{"gcamCode":"c16.24","gcamValue":18},{"gcamCode":"c16.26","gcamValue":288},{"gcamCode":"c16.27","gcamValue":11},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":6},{"gcamCode":"c16.3","gcamValue":19},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":130},{"gcamCode":"c16.32","gcamValue":16},{"gcamCode":"c16.33","gcamValue":161},{"gcamCode":"c16.34","gcamValue":7},{"gcamCode":"c16.35","gcamValue":158},{"gcamCode":"c16.36","gcamValue":4},{"gcamCode":"c16.37","gcamValue":178},{"gcamCode":"c16.38","gcamValue":59},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":158},{"gcamCode":"c16.41","gcamValue":110},{"gcamCode":"c16.42","gcamValue":3},{"gcamCode":"c16.43","gcamValue":7},{"gcamCode":"c16.45","gcamValue":103},{"gcamCode":"c16.46","gcamValue":23},{"gcamCode":"c16.47","gcamValue":279},{"gcamCode":"c16.48","gcamValue":5},{"gcamCode":"c16.49","gcamValue":9},{"gcamCode":"c16.5","gcamValue":10},{"gcamCode":"c16.50","gcamValue":16},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":89},{"gcamCode":"c16.53","gcamValue":17},{"gcamCode":"c16.55","gcamValue":6},{"gcamCode":"c16.56","gcamValue":35},{"gcamCode":"c16.57","gcamValue":1068},{"gcamCode":"c16.58","gcamValue":171},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":238},{"gcamCode":"c16.60","gcamValue":13},{"gcamCode":"c16.61","gcamValue":7},{"gcamCode":"c16.62","gcamValue":101},{"gcamCode":"c16.63","gcamValue":35},{"gcamCode":"c16.64","gcamValue":25},{"gcamCode":"c16.65","gcamValue":49},{"gcamCode":"c16.66","gcamValue":31},{"gcamCode":"c16.68","gcamValue":110},{"gcamCode":"c16.69","gcamValue":98},{"gcamCode":"c16.7","gcamValue":32},{"gcamCode":"c16.70","gcamValue":86},{"gcamCode":"c16.71","gcamValue":26},{"gcamCode":"c16.72","gcamValue":10},{"gcamCode":"c16.73","gcamValue":15},{"gcamCode":"c16.74","gcamValue":27},{"gcamCode":"c16.75","gcamValue":101},{"gcamCode":"c16.76","gcamValue":15},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":48},{"gcamCode":"c16.79","gcamValue":5},{"gcamCode":"c16.8","gcamValue":9},{"gcamCode":"c16.80","gcamValue":11},{"gcamCode":"c16.81","gcamValue":12},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":4},{"gcamCode":"c16.84","gcamValue":111},{"gcamCode":"c16.85","gcamValue":6},{"gcamCode":"c16.86","gcamValue":12},{"gcamCode":"c16.87","gcamValue":102},{"gcamCode":"c16.88","gcamValue":377},{"gcamCode":"c16.89","gcamValue":118},{"gcamCode":"c16.90","gcamValue":65},{"gcamCode":"c16.91","gcamValue":94},{"gcamCode":"c16.92","gcamValue":132},{"gcamCode":"c16.93","gcamValue":28},{"gcamCode":"c16.94","gcamValue":180},{"gcamCode":"c16.95","gcamValue":105},{"gcamCode":"c16.96","gcamValue":51},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":258},{"gcamCode":"c16.99","gcamValue":14},{"gcamCode":"c17.1","gcamValue":530},{"gcamCode":"c17.10","gcamValue":310},{"gcamCode":"c17.11","gcamValue":326},{"gcamCode":"c17.12","gcamValue":83},{"gcamCode":"c17.13","gcamValue":57},{"gcamCode":"c17.14","gcamValue":14},{"gcamCode":"c17.15","gcamValue":125},{"gcamCode":"c17.16","gcamValue":76},{"gcamCode":"c17.17","gcamValue":6},{"gcamCode":"c17.18","gcamValue":30},{"gcamCode":"c17.19","gcamValue":108},{"gcamCode":"c17.2","gcamValue":5},{"gcamCode":"c17.20","gcamValue":13},{"gcamCode":"c17.21","gcamValue":8},{"gcamCode":"c17.22","gcamValue":41},{"gcamCode":"c17.23","gcamValue":12},{"gcamCode":"c17.24","gcamValue":212},{"gcamCode":"c17.25","gcamValue":23},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":264},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":92},{"gcamCode":"c17.3","gcamValue":5},{"gcamCode":"c17.30","gcamValue":46},{"gcamCode":"c17.31","gcamValue":139},{"gcamCode":"c17.32","gcamValue":126},{"gcamCode":"c17.33","gcamValue":88},{"gcamCode":"c17.34","gcamValue":53},{"gcamCode":"c17.35","gcamValue":52},{"gcamCode":"c17.36","gcamValue":102},{"gcamCode":"c17.37","gcamValue":98},{"gcamCode":"c17.38","gcamValue":63},{"gcamCode":"c17.39","gcamValue":89},{"gcamCode":"c17.4","gcamValue":550},{"gcamCode":"c17.40","gcamValue":58},{"gcamCode":"c17.41","gcamValue":67},{"gcamCode":"c17.42","gcamValue":131},{"gcamCode":"c17.43","gcamValue":104},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":382},{"gcamCode":"c17.6","gcamValue":22},{"gcamCode":"c17.7","gcamValue":321},{"gcamCode":"c17.8","gcamValue":252},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.113","gcamValue":1},{"gcamCode":"c18.147","gcamValue":38},{"gcamCode":"c18.180","gcamValue":19},{"gcamCode":"c18.193","gcamValue":14},{"gcamCode":"c18.298","gcamValue":35},{"gcamCode":"c18.3","gcamValue":1},{"gcamCode":"c18.342","gcamValue":40},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":61},{"gcamCode":"c2.10","gcamValue":36},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":53},{"gcamCode":"c2.102","gcamValue":56},{"gcamCode":"c2.103","gcamValue":14},{"gcamCode":"c2.104","gcamValue":374},{"gcamCode":"c2.106","gcamValue":3},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":15},{"gcamCode":"c2.109","gcamValue":8},{"gcamCode":"c2.11","gcamValue":42},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":10},{"gcamCode":"c2.112","gcamValue":19},{"gcamCode":"c2.113","gcamValue":19},{"gcamCode":"c2.114","gcamValue":92},{"gcamCode":"c2.115","gcamValue":22},{"gcamCode":"c2.116","gcamValue":76},{"gcamCode":"c2.117","gcamValue":3},{"gcamCode":"c2.118","gcamValue":3},{"gcamCode":"c2.119","gcamValue":502},{"gcamCode":"c2.12","gcamValue":144},{"gcamCode":"c2.120","gcamValue":8},{"gcamCode":"c2.121","gcamValue":181},{"gcamCode":"c2.122","gcamValue":86},{"gcamCode":"c2.123","gcamValue":6},{"gcamCode":"c2.124","gcamValue":26},{"gcamCode":"c2.125","gcamValue":214},{"gcamCode":"c2.126","gcamValue":135},{"gcamCode":"c2.127","gcamValue":268},{"gcamCode":"c2.128","gcamValue":90},{"gcamCode":"c2.129","gcamValue":14},{"gcamCode":"c2.13","gcamValue":2},{"gcamCode":"c2.130","gcamValue":28},{"gcamCode":"c2.131","gcamValue":28},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":18},{"gcamCode":"c2.136","gcamValue":9},{"gcamCode":"c2.139","gcamValue":19},{"gcamCode":"c2.14","gcamValue":189},{"gcamCode":"c2.140","gcamValue":5},{"gcamCode":"c2.141","gcamValue":21},{"gcamCode":"c2.142","gcamValue":9},{"gcamCode":"c2.143","gcamValue":76},{"gcamCode":"c2.144","gcamValue":73},{"gcamCode":"c2.145","gcamValue":31},{"gcamCode":"c2.146","gcamValue":42},{"gcamCode":"c2.147","gcamValue":310},{"gcamCode":"c2.148","gcamValue":423},{"gcamCode":"c2.149","gcamValue":9},{"gcamCode":"c2.15","gcamValue":108},{"gcamCode":"c2.150","gcamValue":13},{"gcamCode":"c2.151","gcamValue":18},{"gcamCode":"c2.152","gcamValue":9},{"gcamCode":"c2.153","gcamValue":130},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":252},{"gcamCode":"c2.156","gcamValue":75},{"gcamCode":"c2.157","gcamValue":237},{"gcamCode":"c2.158","gcamValue":217},{"gcamCode":"c2.159","gcamValue":38},{"gcamCode":"c2.160","gcamValue":191},{"gcamCode":"c2.162","gcamValue":40},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.166","gcamValue":44},{"gcamCode":"c2.167","gcamValue":8},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":29},{"gcamCode":"c2.17","gcamValue":29},{"gcamCode":"c2.170","gcamValue":38},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":58},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":14},{"gcamCode":"c2.177","gcamValue":134},{"gcamCode":"c2.178","gcamValue":12},{"gcamCode":"c2.179","gcamValue":142},{"gcamCode":"c2.18","gcamValue":96},{"gcamCode":"c2.180","gcamValue":102},{"gcamCode":"c2.181","gcamValue":111},{"gcamCode":"c2.183","gcamValue":115},{"gcamCode":"c2.185","gcamValue":526},{"gcamCode":"c2.186","gcamValue":61},{"gcamCode":"c2.187","gcamValue":201},{"gcamCode":"c2.188","gcamValue":81},{"gcamCode":"c2.189","gcamValue":81},{"gcamCode":"c2.19","gcamValue":15},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":60},{"gcamCode":"c2.192","gcamValue":75},{"gcamCode":"c2.193","gcamValue":152},{"gcamCode":"c2.194","gcamValue":5},{"gcamCode":"c2.195","gcamValue":218},{"gcamCode":"c2.196","gcamValue":19},{"gcamCode":"c2.197","gcamValue":23},{"gcamCode":"c2.198","gcamValue":219},{"gcamCode":"c2.199","gcamValue":35},{"gcamCode":"c2.2","gcamValue":20},{"gcamCode":"c2.20","gcamValue":4},{"gcamCode":"c2.200","gcamValue":23},{"gcamCode":"c2.201","gcamValue":11},{"gcamCode":"c2.202","gcamValue":3},{"gcamCode":"c2.203","gcamValue":175},{"gcamCode":"c2.204","gcamValue":208},{"gcamCode":"c2.205","gcamValue":37},{"gcamCode":"c2.206","gcamValue":42},{"gcamCode":"c2.207","gcamValue":23},{"gcamCode":"c2.209","gcamValue":87},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":263},{"gcamCode":"c2.211","gcamValue":17},{"gcamCode":"c2.212","gcamValue":2},{"gcamCode":"c2.213","gcamValue":37},{"gcamCode":"c2.214","gcamValue":111},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.218","gcamValue":12},{"gcamCode":"c2.220","gcamValue":31},{"gcamCode":"c2.221","gcamValue":32},{"gcamCode":"c2.223","gcamValue":32},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":37},{"gcamCode":"c2.226","gcamValue":96},{"gcamCode":"c2.227","gcamValue":48},{"gcamCode":"c2.228","gcamValue":36},{"gcamCode":"c2.23","gcamValue":27},{"gcamCode":"c2.25","gcamValue":164},{"gcamCode":"c2.26","gcamValue":187},{"gcamCode":"c2.27","gcamValue":187},{"gcamCode":"c2.28","gcamValue":61},{"gcamCode":"c2.3","gcamValue":8},{"gcamCode":"c2.30","gcamValue":72},{"gcamCode":"c2.31","gcamValue":126},{"gcamCode":"c2.32","gcamValue":36},{"gcamCode":"c2.33","gcamValue":25},{"gcamCode":"c2.34","gcamValue":129},{"gcamCode":"c2.35","gcamValue":200},{"gcamCode":"c2.36","gcamValue":158},{"gcamCode":"c2.37","gcamValue":168},{"gcamCode":"c2.38","gcamValue":19},{"gcamCode":"c2.39","gcamValue":348},{"gcamCode":"c2.4","gcamValue":17},{"gcamCode":"c2.40","gcamValue":28},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":100},{"gcamCode":"c2.45","gcamValue":41},{"gcamCode":"c2.46","gcamValue":274},{"gcamCode":"c2.47","gcamValue":34},{"gcamCode":"c2.48","gcamValue":46},{"gcamCode":"c2.49","gcamValue":4},{"gcamCode":"c2.5","gcamValue":4},{"gcamCode":"c2.50","gcamValue":67},{"gcamCode":"c2.52","gcamValue":212},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":227},{"gcamCode":"c2.55","gcamValue":36},{"gcamCode":"c2.56","gcamValue":22},{"gcamCode":"c2.57","gcamValue":58},{"gcamCode":"c2.58","gcamValue":33},{"gcamCode":"c2.59","gcamValue":11},{"gcamCode":"c2.6","gcamValue":37},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":18},{"gcamCode":"c2.62","gcamValue":131},{"gcamCode":"c2.64","gcamValue":43},{"gcamCode":"c2.65","gcamValue":18},{"gcamCode":"c2.66","gcamValue":12},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.69","gcamValue":32},{"gcamCode":"c2.7","gcamValue":2},{"gcamCode":"c2.70","gcamValue":11},{"gcamCode":"c2.71","gcamValue":17},{"gcamCode":"c2.72","gcamValue":3},{"gcamCode":"c2.73","gcamValue":44},{"gcamCode":"c2.74","gcamValue":4},{"gcamCode":"c2.75","gcamValue":402},{"gcamCode":"c2.76","gcamValue":1531},{"gcamCode":"c2.77","gcamValue":150},{"gcamCode":"c2.78","gcamValue":466},{"gcamCode":"c2.79","gcamValue":49},{"gcamCode":"c2.80","gcamValue":302},{"gcamCode":"c2.81","gcamValue":43},{"gcamCode":"c2.82","gcamValue":174},{"gcamCode":"c2.83","gcamValue":36},{"gcamCode":"c2.84","gcamValue":34},{"gcamCode":"c2.86","gcamValue":163},{"gcamCode":"c2.87","gcamValue":16},{"gcamCode":"c2.88","gcamValue":24},{"gcamCode":"c2.89","gcamValue":75},{"gcamCode":"c2.9","gcamValue":15},{"gcamCode":"c2.90","gcamValue":82},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":83},{"gcamCode":"c2.94","gcamValue":3},{"gcamCode":"c2.95","gcamValue":462},{"gcamCode":"c2.96","gcamValue":15},{"gcamCode":"c2.97","gcamValue":22},{"gcamCode":"c2.98","gcamValue":118},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.11","gcamValue":9},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":5},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":54},{"gcamCode":"c3.2","gcamValue":121},{"gcamCode":"c3.4","gcamValue":1},{"gcamCode":"c35.1","gcamValue":11},{"gcamCode":"c35.12","gcamValue":9},{"gcamCode":"c35.13","gcamValue":10},{"gcamCode":"c35.14","gcamValue":17},{"gcamCode":"c35.15","gcamValue":18},{"gcamCode":"c35.16","gcamValue":1},{"gcamCode":"c35.17","gcamValue":3},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.19","gcamValue":2},{"gcamCode":"c35.2","gcamValue":10},{"gcamCode":"c35.20","gcamValue":24},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.3","gcamValue":3},{"gcamCode":"c35.31","gcamValue":71},{"gcamCode":"c35.32","gcamValue":55},{"gcamCode":"c35.33","gcamValue":27},{"gcamCode":"c35.4","gcamValue":5},{"gcamCode":"c35.5","gcamValue":22},{"gcamCode":"c35.6","gcamValue":5},{"gcamCode":"c35.7","gcamValue":6},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":6},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.15","gcamValue":2},{"gcamCode":"c39.17","gcamValue":3},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":57},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.24","gcamValue":1},{"gcamCode":"c39.25","gcamValue":3},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.3","gcamValue":113},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":2},{"gcamCode":"c39.36","gcamValue":24},{"gcamCode":"c39.37","gcamValue":30},{"gcamCode":"c39.38","gcamValue":3},{"gcamCode":"c39.39","gcamValue":16},{"gcamCode":"c39.4","gcamValue":77},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":14},{"gcamCode":"c39.6","gcamValue":9},{"gcamCode":"c39.7","gcamValue":8},{"gcamCode":"c39.8","gcamValue":3},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":125},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":21},{"gcamCode":"c40.1","gcamValue":2},{"gcamCode":"c40.4","gcamValue":18},{"gcamCode":"c40.5","gcamValue":22},{"gcamCode":"c40.6","gcamValue":4},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c41.1","gcamValue":33},{"gcamCode":"c5.1","gcamValue":2},{"gcamCode":"c5.10","gcamValue":130},{"gcamCode":"c5.11","gcamValue":32},{"gcamCode":"c5.12","gcamValue":270},{"gcamCode":"c5.13","gcamValue":2},{"gcamCode":"c5.14","gcamValue":15},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":24},{"gcamCode":"c5.18","gcamValue":15},{"gcamCode":"c5.19","gcamValue":10},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":10},{"gcamCode":"c5.21","gcamValue":42},{"gcamCode":"c5.22","gcamValue":50},{"gcamCode":"c5.23","gcamValue":70},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":36},{"gcamCode":"c5.26","gcamValue":49},{"gcamCode":"c5.27","gcamValue":34},{"gcamCode":"c5.28","gcamValue":32},{"gcamCode":"c5.29","gcamValue":61},{"gcamCode":"c5.30","gcamValue":328},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":15},{"gcamCode":"c5.35","gcamValue":105},{"gcamCode":"c5.36","gcamValue":117},{"gcamCode":"c5.37","gcamValue":33},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":210},{"gcamCode":"c5.41","gcamValue":2},{"gcamCode":"c5.42","gcamValue":6},{"gcamCode":"c5.43","gcamValue":90},{"gcamCode":"c5.44","gcamValue":34},{"gcamCode":"c5.45","gcamValue":81},{"gcamCode":"c5.46","gcamValue":260},{"gcamCode":"c5.47","gcamValue":151},{"gcamCode":"c5.48","gcamValue":9},{"gcamCode":"c5.49","gcamValue":331},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":324},{"gcamCode":"c5.51","gcamValue":235},{"gcamCode":"c5.52","gcamValue":416},{"gcamCode":"c5.53","gcamValue":136},{"gcamCode":"c5.54","gcamValue":180},{"gcamCode":"c5.55","gcamValue":23},{"gcamCode":"c5.56","gcamValue":22},{"gcamCode":"c5.57","gcamValue":42},{"gcamCode":"c5.58","gcamValue":30},{"gcamCode":"c5.59","gcamValue":87},{"gcamCode":"c5.6","gcamValue":153},{"gcamCode":"c5.60","gcamValue":204},{"gcamCode":"c5.61","gcamValue":384},{"gcamCode":"c5.62","gcamValue":1223},{"gcamCode":"c5.7","gcamValue":38},{"gcamCode":"c5.8","gcamValue":61},{"gcamCode":"c5.9","gcamValue":107},{"gcamCode":"c6.1","gcamValue":3},{"gcamCode":"c6.2","gcamValue":34},{"gcamCode":"c6.3","gcamValue":10},{"gcamCode":"c6.4","gcamValue":20},{"gcamCode":"c6.5","gcamValue":46},{"gcamCode":"c6.6","gcamValue":11},{"gcamCode":"c7.1","gcamValue":61},{"gcamCode":"c7.2","gcamValue":131},{"gcamCode":"c8.1","gcamValue":26},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":3},{"gcamCode":"c8.17","gcamValue":19},{"gcamCode":"c8.2","gcamValue":9},{"gcamCode":"c8.20","gcamValue":5},{"gcamCode":"c8.21","gcamValue":3},{"gcamCode":"c8.22","gcamValue":5},{"gcamCode":"c8.23","gcamValue":30},{"gcamCode":"c8.24","gcamValue":3},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":4},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":8},{"gcamCode":"c8.3","gcamValue":2},{"gcamCode":"c8.30","gcamValue":4},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":38},{"gcamCode":"c8.37","gcamValue":81},{"gcamCode":"c8.38","gcamValue":26},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":100},{"gcamCode":"c8.40","gcamValue":9},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":28},{"gcamCode":"c8.43","gcamValue":74},{"gcamCode":"c8.5","gcamValue":9},{"gcamCode":"c8.6","gcamValue":8},{"gcamCode":"c8.9","gcamValue":2},{"gcamCode":"c9.1","gcamValue":105},{"gcamCode":"c9.10","gcamValue":24},{"gcamCode":"c9.1000","gcamValue":17},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":33},{"gcamCode":"c9.1021","gcamValue":18},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":13},{"gcamCode":"c9.1030","gcamValue":13},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":5},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":12},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":22},{"gcamCode":"c9.109","gcamValue":8},{"gcamCode":"c9.11","gcamValue":9},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":33},{"gcamCode":"c9.112","gcamValue":5},{"gcamCode":"c9.113","gcamValue":8},{"gcamCode":"c9.115","gcamValue":5},{"gcamCode":"c9.116","gcamValue":7},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":16},{"gcamCode":"c9.119","gcamValue":11},{"gcamCode":"c9.12","gcamValue":10},{"gcamCode":"c9.122","gcamValue":10},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":8},{"gcamCode":"c9.125","gcamValue":22},{"gcamCode":"c9.126","gcamValue":4},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":134},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.13","gcamValue":3},{"gcamCode":"c9.130","gcamValue":12},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.133","gcamValue":5},{"gcamCode":"c9.134","gcamValue":15},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":8},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":15},{"gcamCode":"c9.141","gcamValue":16},{"gcamCode":"c9.142","gcamValue":10},{"gcamCode":"c9.143","gcamValue":17},{"gcamCode":"c9.144","gcamValue":3},{"gcamCode":"c9.145","gcamValue":11},{"gcamCode":"c9.147","gcamValue":3},{"gcamCode":"c9.148","gcamValue":5},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":38},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":8},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":7},{"gcamCode":"c9.158","gcamValue":118},{"gcamCode":"c9.159","gcamValue":6},{"gcamCode":"c9.16","gcamValue":7},{"gcamCode":"c9.160","gcamValue":15},{"gcamCode":"c9.161","gcamValue":8},{"gcamCode":"c9.162","gcamValue":25},{"gcamCode":"c9.163","gcamValue":4},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":21},{"gcamCode":"c9.167","gcamValue":11},{"gcamCode":"c9.168","gcamValue":24},{"gcamCode":"c9.169","gcamValue":22},{"gcamCode":"c9.170","gcamValue":6},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":6},{"gcamCode":"c9.175","gcamValue":7},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":39},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.179","gcamValue":3},{"gcamCode":"c9.18","gcamValue":23},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.181","gcamValue":6},{"gcamCode":"c9.182","gcamValue":13},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":21},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":24},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":4},{"gcamCode":"c9.192","gcamValue":11},{"gcamCode":"c9.193","gcamValue":6},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":28},{"gcamCode":"c9.196","gcamValue":26},{"gcamCode":"c9.197","gcamValue":12},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.2","gcamValue":11},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":15},{"gcamCode":"c9.201","gcamValue":17},{"gcamCode":"c9.202","gcamValue":3},{"gcamCode":"c9.203","gcamValue":6},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":8},{"gcamCode":"c9.206","gcamValue":19},{"gcamCode":"c9.207","gcamValue":7},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":8},{"gcamCode":"c9.210","gcamValue":3},{"gcamCode":"c9.212","gcamValue":25},{"gcamCode":"c9.213","gcamValue":19},{"gcamCode":"c9.214","gcamValue":13},{"gcamCode":"c9.215","gcamValue":25},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":18},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.221","gcamValue":2},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.223","gcamValue":5},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.227","gcamValue":4},{"gcamCode":"c9.229","gcamValue":6},{"gcamCode":"c9.23","gcamValue":21},{"gcamCode":"c9.230","gcamValue":6},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.232","gcamValue":3},{"gcamCode":"c9.233","gcamValue":5},{"gcamCode":"c9.234","gcamValue":3},{"gcamCode":"c9.235","gcamValue":42},{"gcamCode":"c9.237","gcamValue":18},{"gcamCode":"c9.238","gcamValue":2},{"gcamCode":"c9.24","gcamValue":5},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.25","gcamValue":8},{"gcamCode":"c9.250","gcamValue":5},{"gcamCode":"c9.252","gcamValue":4},{"gcamCode":"c9.253","gcamValue":7},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":3},{"gcamCode":"c9.258","gcamValue":15},{"gcamCode":"c9.259","gcamValue":13},{"gcamCode":"c9.26","gcamValue":2},{"gcamCode":"c9.260","gcamValue":3},{"gcamCode":"c9.261","gcamValue":3},{"gcamCode":"c9.262","gcamValue":13},{"gcamCode":"c9.263","gcamValue":6},{"gcamCode":"c9.265","gcamValue":8},{"gcamCode":"c9.266","gcamValue":4},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.27","gcamValue":9},{"gcamCode":"c9.270","gcamValue":26},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":15},{"gcamCode":"c9.275","gcamValue":5},{"gcamCode":"c9.276","gcamValue":8},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.279","gcamValue":4},{"gcamCode":"c9.28","gcamValue":16},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":7},{"gcamCode":"c9.283","gcamValue":4},{"gcamCode":"c9.284","gcamValue":5},{"gcamCode":"c9.285","gcamValue":13},{"gcamCode":"c9.286","gcamValue":5},{"gcamCode":"c9.288","gcamValue":6},{"gcamCode":"c9.289","gcamValue":16},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":6},{"gcamCode":"c9.291","gcamValue":11},{"gcamCode":"c9.292","gcamValue":3},{"gcamCode":"c9.293","gcamValue":13},{"gcamCode":"c9.294","gcamValue":6},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":109},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":15},{"gcamCode":"c9.303","gcamValue":3},{"gcamCode":"c9.304","gcamValue":12},{"gcamCode":"c9.305","gcamValue":13},{"gcamCode":"c9.307","gcamValue":7},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.309","gcamValue":2},{"gcamCode":"c9.31","gcamValue":4},{"gcamCode":"c9.310","gcamValue":2},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":6},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":8},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.319","gcamValue":2},{"gcamCode":"c9.32","gcamValue":7},{"gcamCode":"c9.321","gcamValue":3},{"gcamCode":"c9.322","gcamValue":6},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.324","gcamValue":4},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":8},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":75},{"gcamCode":"c9.330","gcamValue":5},{"gcamCode":"c9.331","gcamValue":7},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":4},{"gcamCode":"c9.334","gcamValue":4},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":53},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.342","gcamValue":1},{"gcamCode":"c9.343","gcamValue":1},{"gcamCode":"c9.344","gcamValue":1},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.346","gcamValue":3},{"gcamCode":"c9.348","gcamValue":1},{"gcamCode":"c9.35","gcamValue":47},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":4},{"gcamCode":"c9.358","gcamValue":5},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":10},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.370","gcamValue":8},{"gcamCode":"c9.371","gcamValue":15},{"gcamCode":"c9.372","gcamValue":6},{"gcamCode":"c9.373","gcamValue":13},{"gcamCode":"c9.377","gcamValue":2},{"gcamCode":"c9.378","gcamValue":13},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":21},{"gcamCode":"c9.384","gcamValue":3},{"gcamCode":"c9.385","gcamValue":31},{"gcamCode":"c9.386","gcamValue":12},{"gcamCode":"c9.387","gcamValue":5},{"gcamCode":"c9.388","gcamValue":4},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":34},{"gcamCode":"c9.390","gcamValue":6},{"gcamCode":"c9.391","gcamValue":5},{"gcamCode":"c9.394","gcamValue":5},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":6},{"gcamCode":"c9.397","gcamValue":2},{"gcamCode":"c9.398","gcamValue":3},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.4","gcamValue":9},{"gcamCode":"c9.40","gcamValue":9},{"gcamCode":"c9.405","gcamValue":17},{"gcamCode":"c9.409","gcamValue":17},{"gcamCode":"c9.410","gcamValue":1},{"gcamCode":"c9.412","gcamValue":2},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":16},{"gcamCode":"c9.419","gcamValue":4},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.420","gcamValue":23},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":16},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":7},{"gcamCode":"c9.432","gcamValue":6},{"gcamCode":"c9.433","gcamValue":3},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":5},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":15},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.443","gcamValue":17},{"gcamCode":"c9.445","gcamValue":17},{"gcamCode":"c9.446","gcamValue":21},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.458","gcamValue":6},{"gcamCode":"c9.459","gcamValue":10},{"gcamCode":"c9.46","gcamValue":24},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":3},{"gcamCode":"c9.463","gcamValue":3},{"gcamCode":"c9.464","gcamValue":4},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":11},{"gcamCode":"c9.467","gcamValue":11},{"gcamCode":"c9.468","gcamValue":26},{"gcamCode":"c9.469","gcamValue":2},{"gcamCode":"c9.47","gcamValue":9},{"gcamCode":"c9.470","gcamValue":21},{"gcamCode":"c9.471","gcamValue":3},{"gcamCode":"c9.472","gcamValue":21},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":13},{"gcamCode":"c9.476","gcamValue":31},{"gcamCode":"c9.477","gcamValue":7},{"gcamCode":"c9.478","gcamValue":12},{"gcamCode":"c9.479","gcamValue":20},{"gcamCode":"c9.48","gcamValue":18},{"gcamCode":"c9.480","gcamValue":29},{"gcamCode":"c9.481","gcamValue":8},{"gcamCode":"c9.482","gcamValue":6},{"gcamCode":"c9.485","gcamValue":9},{"gcamCode":"c9.488","gcamValue":8},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":4},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":3},{"gcamCode":"c9.493","gcamValue":4},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":4},{"gcamCode":"c9.496","gcamValue":10},{"gcamCode":"c9.497","gcamValue":2},{"gcamCode":"c9.498","gcamValue":24},{"gcamCode":"c9.499","gcamValue":4},{"gcamCode":"c9.5","gcamValue":11},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":11},{"gcamCode":"c9.502","gcamValue":11},{"gcamCode":"c9.503","gcamValue":3},{"gcamCode":"c9.504","gcamValue":8},{"gcamCode":"c9.507","gcamValue":54},{"gcamCode":"c9.508","gcamValue":4},{"gcamCode":"c9.509","gcamValue":3},{"gcamCode":"c9.511","gcamValue":68},{"gcamCode":"c9.513","gcamValue":72},{"gcamCode":"c9.514","gcamValue":4},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":46},{"gcamCode":"c9.518","gcamValue":9},{"gcamCode":"c9.519","gcamValue":6},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":51},{"gcamCode":"c9.522","gcamValue":48},{"gcamCode":"c9.523","gcamValue":16},{"gcamCode":"c9.524","gcamValue":4},{"gcamCode":"c9.525","gcamValue":2},{"gcamCode":"c9.526","gcamValue":4},{"gcamCode":"c9.527","gcamValue":2},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":14},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.532","gcamValue":1},{"gcamCode":"c9.533","gcamValue":4},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.537","gcamValue":30},{"gcamCode":"c9.539","gcamValue":37},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":6},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":9},{"gcamCode":"c9.543","gcamValue":4},{"gcamCode":"c9.546","gcamValue":5},{"gcamCode":"c9.549","gcamValue":10},{"gcamCode":"c9.55","gcamValue":31},{"gcamCode":"c9.550","gcamValue":10},{"gcamCode":"c9.551","gcamValue":12},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":20},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":5},{"gcamCode":"c9.56","gcamValue":12},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":12},{"gcamCode":"c9.562","gcamValue":28},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.565","gcamValue":21},{"gcamCode":"c9.566","gcamValue":24},{"gcamCode":"c9.567","gcamValue":38},{"gcamCode":"c9.568","gcamValue":26},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":17},{"gcamCode":"c9.571","gcamValue":6},{"gcamCode":"c9.573","gcamValue":2},{"gcamCode":"c9.574","gcamValue":5},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":5},{"gcamCode":"c9.579","gcamValue":124},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":29},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":8},{"gcamCode":"c9.588","gcamValue":14},{"gcamCode":"c9.589","gcamValue":3},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.595","gcamValue":3},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":2},{"gcamCode":"c9.598","gcamValue":7},{"gcamCode":"c9.600","gcamValue":5},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":22},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.604","gcamValue":3},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.606","gcamValue":2},{"gcamCode":"c9.607","gcamValue":8},{"gcamCode":"c9.609","gcamValue":2},{"gcamCode":"c9.61","gcamValue":6},{"gcamCode":"c9.610","gcamValue":3},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":5},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":5},{"gcamCode":"c9.618","gcamValue":12},{"gcamCode":"c9.619","gcamValue":17},{"gcamCode":"c9.62","gcamValue":9},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":40},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":15},{"gcamCode":"c9.629","gcamValue":8},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":4},{"gcamCode":"c9.631","gcamValue":2},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.634","gcamValue":2},{"gcamCode":"c9.635","gcamValue":14},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.639","gcamValue":3},{"gcamCode":"c9.64","gcamValue":6},{"gcamCode":"c9.640","gcamValue":39},{"gcamCode":"c9.642","gcamValue":29},{"gcamCode":"c9.644","gcamValue":2},{"gcamCode":"c9.646","gcamValue":9},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":35},{"gcamCode":"c9.649","gcamValue":11},{"gcamCode":"c9.650","gcamValue":8},{"gcamCode":"c9.653","gcamValue":111},{"gcamCode":"c9.654","gcamValue":18},{"gcamCode":"c9.655","gcamValue":19},{"gcamCode":"c9.656","gcamValue":3},{"gcamCode":"c9.658","gcamValue":14},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":8},{"gcamCode":"c9.660","gcamValue":25},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":4},{"gcamCode":"c9.664","gcamValue":13},{"gcamCode":"c9.665","gcamValue":5},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":20},{"gcamCode":"c9.668","gcamValue":12},{"gcamCode":"c9.669","gcamValue":15},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":37},{"gcamCode":"c9.671","gcamValue":17},{"gcamCode":"c9.672","gcamValue":8},{"gcamCode":"c9.673","gcamValue":18},{"gcamCode":"c9.674","gcamValue":4},{"gcamCode":"c9.675","gcamValue":3},{"gcamCode":"c9.676","gcamValue":48},{"gcamCode":"c9.677","gcamValue":11},{"gcamCode":"c9.678","gcamValue":8},{"gcamCode":"c9.679","gcamValue":11},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":19},{"gcamCode":"c9.682","gcamValue":5},{"gcamCode":"c9.683","gcamValue":13},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":5},{"gcamCode":"c9.686","gcamValue":10},{"gcamCode":"c9.687","gcamValue":48},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.692","gcamValue":15},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.695","gcamValue":1},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.698","gcamValue":15},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":16},{"gcamCode":"c9.70","gcamValue":19},{"gcamCode":"c9.701","gcamValue":54},{"gcamCode":"c9.702","gcamValue":6},{"gcamCode":"c9.703","gcamValue":4},{"gcamCode":"c9.704","gcamValue":15},{"gcamCode":"c9.705","gcamValue":12},{"gcamCode":"c9.708","gcamValue":33},{"gcamCode":"c9.71","gcamValue":12},{"gcamCode":"c9.710","gcamValue":21},{"gcamCode":"c9.713","gcamValue":8},{"gcamCode":"c9.714","gcamValue":10},{"gcamCode":"c9.716","gcamValue":6},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.718","gcamValue":3},{"gcamCode":"c9.719","gcamValue":8},{"gcamCode":"c9.72","gcamValue":5},{"gcamCode":"c9.720","gcamValue":16},{"gcamCode":"c9.721","gcamValue":4},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":10},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":138},{"gcamCode":"c9.727","gcamValue":8},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":7},{"gcamCode":"c9.730","gcamValue":106},{"gcamCode":"c9.731","gcamValue":7},{"gcamCode":"c9.732","gcamValue":9},{"gcamCode":"c9.733","gcamValue":4},{"gcamCode":"c9.734","gcamValue":9},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":18},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.74","gcamValue":13},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":15},{"gcamCode":"c9.742","gcamValue":7},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":12},{"gcamCode":"c9.745","gcamValue":9},{"gcamCode":"c9.746","gcamValue":32},{"gcamCode":"c9.748","gcamValue":35},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":16},{"gcamCode":"c9.751","gcamValue":4},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":9},{"gcamCode":"c9.755","gcamValue":6},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":29},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":6},{"gcamCode":"c9.76","gcamValue":43},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":99},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.765","gcamValue":4},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":136},{"gcamCode":"c9.768","gcamValue":5},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.770","gcamValue":11},{"gcamCode":"c9.771","gcamValue":8},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":8},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":6},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":3},{"gcamCode":"c9.780","gcamValue":4},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.782","gcamValue":6},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":17},{"gcamCode":"c9.790","gcamValue":3},{"gcamCode":"c9.793","gcamValue":5},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.8","gcamValue":6},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":16},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":14},{"gcamCode":"c9.809","gcamValue":3},{"gcamCode":"c9.812","gcamValue":22},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":4},{"gcamCode":"c9.818","gcamValue":7},{"gcamCode":"c9.819","gcamValue":2},{"gcamCode":"c9.82","gcamValue":20},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":10},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.828","gcamValue":2},{"gcamCode":"c9.83","gcamValue":97},{"gcamCode":"c9.830","gcamValue":6},{"gcamCode":"c9.831","gcamValue":5},{"gcamCode":"c9.833","gcamValue":4},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.837","gcamValue":6},{"gcamCode":"c9.838","gcamValue":9},{"gcamCode":"c9.839","gcamValue":2},{"gcamCode":"c9.84","gcamValue":3},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.846","gcamValue":12},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":4},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":16},{"gcamCode":"c9.851","gcamValue":3},{"gcamCode":"c9.853","gcamValue":11},{"gcamCode":"c9.856","gcamValue":4},{"gcamCode":"c9.857","gcamValue":15},{"gcamCode":"c9.858","gcamValue":26},{"gcamCode":"c9.86","gcamValue":20},{"gcamCode":"c9.860","gcamValue":22},{"gcamCode":"c9.861","gcamValue":34},{"gcamCode":"c9.862","gcamValue":33},{"gcamCode":"c9.863","gcamValue":15},{"gcamCode":"c9.864","gcamValue":118},{"gcamCode":"c9.865","gcamValue":13},{"gcamCode":"c9.866","gcamValue":20},{"gcamCode":"c9.867","gcamValue":6},{"gcamCode":"c9.868","gcamValue":99},{"gcamCode":"c9.87","gcamValue":15},{"gcamCode":"c9.873","gcamValue":17},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":15},{"gcamCode":"c9.878","gcamValue":4},{"gcamCode":"c9.879","gcamValue":15},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.882","gcamValue":31},{"gcamCode":"c9.883","gcamValue":10},{"gcamCode":"c9.884","gcamValue":12},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.889","gcamValue":3},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":15},{"gcamCode":"c9.891","gcamValue":9},{"gcamCode":"c9.893","gcamValue":8},{"gcamCode":"c9.894","gcamValue":1},{"gcamCode":"c9.895","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":11},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":22},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":7},{"gcamCode":"c9.900","gcamValue":15},{"gcamCode":"c9.901","gcamValue":5},{"gcamCode":"c9.902","gcamValue":7},{"gcamCode":"c9.903","gcamValue":55},{"gcamCode":"c9.904","gcamValue":4},{"gcamCode":"c9.906","gcamValue":2},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":76},{"gcamCode":"c9.909","gcamValue":4},{"gcamCode":"c9.911","gcamValue":27},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.913","gcamValue":22},{"gcamCode":"c9.914","gcamValue":7},{"gcamCode":"c9.915","gcamValue":19},{"gcamCode":"c9.916","gcamValue":17},{"gcamCode":"c9.917","gcamValue":2},{"gcamCode":"c9.918","gcamValue":21},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":24},{"gcamCode":"c9.921","gcamValue":3},{"gcamCode":"c9.923","gcamValue":27},{"gcamCode":"c9.924","gcamValue":5},{"gcamCode":"c9.926","gcamValue":33},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.93","gcamValue":6},{"gcamCode":"c9.930","gcamValue":10},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":11},{"gcamCode":"c9.933","gcamValue":18},{"gcamCode":"c9.935","gcamValue":66},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.937","gcamValue":7},{"gcamCode":"c9.938","gcamValue":12},{"gcamCode":"c9.939","gcamValue":5},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.941","gcamValue":5},{"gcamCode":"c9.942","gcamValue":8},{"gcamCode":"c9.945","gcamValue":28},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.953","gcamValue":6},{"gcamCode":"c9.955","gcamValue":15},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":18},{"gcamCode":"c9.962","gcamValue":18},{"gcamCode":"c9.963","gcamValue":3},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.965","gcamValue":10},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.969","gcamValue":8},{"gcamCode":"c9.97","gcamValue":3},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":86},{"gcamCode":"c9.973","gcamValue":6},{"gcamCode":"c9.974","gcamValue":18},{"gcamCode":"c9.975","gcamValue":3},{"gcamCode":"c9.976","gcamValue":3},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":17},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":51},{"gcamCode":"c9.981","gcamValue":6},{"gcamCode":"c9.983","gcamValue":21},{"gcamCode":"c9.984","gcamValue":18},{"gcamCode":"c9.985","gcamValue":44},{"gcamCode":"c9.986","gcamValue":27},{"gcamCode":"c9.987","gcamValue":14},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":5},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.996","gcamValue":1},{"gcamCode":"c9.997","gcamValue":4},{"gcamCode":"c9.998","gcamValue":4},{"gcamCode":"v10.1","gcamValue":0.300254109801489},{"gcamCode":"v10.2","gcamValue":0.234159377659024},{"gcamCode":"v11.1","gcamValue":0.125861279443254},{"gcamCode":"v19.1","gcamValue":6.472688172043},{"gcamCode":"v19.2","gcamValue":5.32967741935484},{"gcamCode":"v19.3","gcamValue":5.59193548387097},{"gcamCode":"v19.4","gcamValue":6.29910394265233},{"gcamCode":"v19.5","gcamValue":5.21146953405018},{"gcamCode":"v19.6","gcamValue":5.56430107526881},{"gcamCode":"v19.7","gcamValue":6.64200716845878},{"gcamCode":"v19.8","gcamValue":5.46448028673835},{"gcamCode":"v19.9","gcamValue":5.61605734767025},{"gcamCode":"v20.1","gcamValue":0.58825},{"gcamCode":"v20.10","gcamValue":-0.4939},{"gcamCode":"v20.11","gcamValue":0.622217948717949},{"gcamCode":"v20.12","gcamValue":-0.495307692307692},{"gcamCode":"v20.13","gcamValue":0.451669902912622},{"gcamCode":"v20.14","gcamValue":-0.358448275862069},{"gcamCode":"v20.15","gcamValue":0.396119133574007},{"gcamCode":"v20.16","gcamValue":-0.305925925925926},{"gcamCode":"v20.2","gcamValue":-0.28675},{"gcamCode":"v20.3","gcamValue":0.606972972972973},{"gcamCode":"v20.4","gcamValue":-0.28675},{"gcamCode":"v20.5","gcamValue":0.672},{"gcamCode":"v20.6","gcamValue":-0.28675},{"gcamCode":"v20.7","gcamValue":0.673625},{"gcamCode":"v20.8","gcamValue":-0.28675},{"gcamCode":"v20.9","gcamValue":0.65627868852459},{"gcamCode":"v21.1","gcamValue":5.56461959496442},{"gcamCode":"v26.1","gcamValue":1.42}]https://i.kinja-img.com/gawker-media/image/upload/s--hHjEm-Vo--/c_fill,fl_progressive,g_center,h_900,q_80,w_1600/psibe8iijy5cyfmv76ue.jpg[""][""]["https://youtube.com/user/theavclub"][][{"name":"Olivia Wilde","charOffset":13},{"name":"Kaitlyn Dever","charOffset":212},{"name":"Beanie Feldstein","charOffset":233},{"name":"Magnificent Mile","charOffset":525},{"name":"Last Man Standing","charOffset":1003},{"name":"Katie Silberman","charOffset":3241},{"name":"Katie Silberman","charOffset":5818},{"name":"Liz Lemon","charOffset":7764},{"name":"Breakfast Club","charOffset":8529},{"name":"Fast Times At Ridgemont","charOffset":8582},{"name":"Lady Bird","charOffset":11302},{"name":"Lady Bird","charOffset":11476},{"name":"Kathryn Bigelow","charOffset":12466}][{"amount":13,"amountType":"when I started doing","charOffset":822},{"amount":2,"amountType":"girls who do a","charOffset":3972},{"amount":2,"amountType":"girls going on a","charOffset":4208},{"amount":2,"amountType":"such funny moments","charOffset":4791},{"amount":2,"amountType":"central characters","charOffset":5905},{"amount":30,"amountType":"Rock","charOffset":5950},{"amount":2,"amountType":"girls","charOffset":7455},{"amount":2,"amountType":"girls","charOffset":9137}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://tv.avclub.com/30-rock-reunion-1798205434</PAGE_LINKS><PAGE_AUTHORS>Katie Rife</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523110000</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://film.avclub.com/kaitlyn-dever-and-beanie-feldstein-on-becoming-real-lif-1834900941/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBktar.comhttps://ktar.com/story/2584983/churroholic-opens-2nd-arizona-location-in-tempe-marketplace/[][]["MEDIA_SOCIAL","NATURAL_DISASTER","NATURAL_DISASTER_ICE"][{"theme":"MEDIA_SOCIAL","charOffset":9},{"theme":"NATURAL_DISASTER_ICE","charOffset":295}][{"geoType":"USCITY","geoName":"Phoenix, Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"","geoPoint":{"latitude":33.4484,"longitude":-112.074},"featureId":"44784"},{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"}][{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":594},{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":553},{"location":{"geoType":"USCITY","geoName":"Phoenix, Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"AZ013","geoPoint":{"latitude":33.4484,"longitude":-112.074},"featureId":"44784"},"charOffset":25}][""][][""][]{"tone":1.0416666,"positiveScore":1.0416666,"negativeScore":0,"polarity":1.0416666,"activityReferenceDensity":22.916666,"selfGroupReferenceDensity":0,"wordCount":85}[][{"gcamCode":"wc","gcamValue":85},{"gcamCode":"c12.1","gcamValue":1},{"gcamCode":"c12.10","gcamValue":3},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":9},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":4},{"gcamCode":"c14.4","gcamValue":2},{"gcamCode":"c14.5","gcamValue":6},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.104","gcamValue":1},{"gcamCode":"c16.106","gcamValue":2},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.110","gcamValue":12},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":4},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":1},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":8},{"gcamCode":"c16.12","gcamValue":5},{"gcamCode":"c16.120","gcamValue":5},{"gcamCode":"c16.121","gcamValue":6},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":5},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":4},{"gcamCode":"c16.129","gcamValue":8},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":2},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":9},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.145","gcamValue":10},{"gcamCode":"c16.146","gcamValue":5},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":9},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":15},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":5},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.26","gcamValue":13},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":11},{"gcamCode":"c16.33","gcamValue":9},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":3},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":10},{"gcamCode":"c16.38","gcamValue":5},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":11},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":8},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":42},{"gcamCode":"c16.58","gcamValue":8},{"gcamCode":"c16.6","gcamValue":11},{"gcamCode":"c16.62","gcamValue":2},{"gcamCode":"c16.63","gcamValue":6},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":12},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":9},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":6},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":6},{"gcamCode":"c16.88","gcamValue":12},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":4},{"gcamCode":"c16.91","gcamValue":3},{"gcamCode":"c16.92","gcamValue":5},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":11},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c17.1","gcamValue":24},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":12},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":7},{"gcamCode":"c17.16","gcamValue":5},{"gcamCode":"c17.18","gcamValue":4},{"gcamCode":"c17.19","gcamValue":3},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":2},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":8},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":8},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":4},{"gcamCode":"c17.32","gcamValue":2},{"gcamCode":"c17.33","gcamValue":7},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":9},{"gcamCode":"c17.37","gcamValue":5},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":7},{"gcamCode":"c17.4","gcamValue":17},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":2},{"gcamCode":"c17.5","gcamValue":21},{"gcamCode":"c17.7","gcamValue":21},{"gcamCode":"c17.8","gcamValue":10},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.156","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":12},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.114","gcamValue":4},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.119","gcamValue":29},{"gcamCode":"c2.12","gcamValue":2},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":8},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":9},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":5},{"gcamCode":"c2.130","gcamValue":4},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.14","gcamValue":13},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":3},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":10},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.15","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":2},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":2},{"gcamCode":"c2.158","gcamValue":3},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":3},{"gcamCode":"c2.178","gcamValue":4},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":2},{"gcamCode":"c2.183","gcamValue":2},{"gcamCode":"c2.185","gcamValue":17},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":3},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.193","gcamValue":12},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.197","gcamValue":4},{"gcamCode":"c2.198","gcamValue":13},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.203","gcamValue":2},{"gcamCode":"c2.204","gcamValue":7},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.210","gcamValue":5},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.214","gcamValue":1},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":2},{"gcamCode":"c2.25","gcamValue":4},{"gcamCode":"c2.26","gcamValue":2},{"gcamCode":"c2.27","gcamValue":2},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":3},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":7},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.39","gcamValue":10},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":6},{"gcamCode":"c2.46","gcamValue":6},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":2},{"gcamCode":"c2.54","gcamValue":4},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.63","gcamValue":2},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.72","gcamValue":5},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":6},{"gcamCode":"c2.76","gcamValue":51},{"gcamCode":"c2.77","gcamValue":5},{"gcamCode":"c2.78","gcamValue":10},{"gcamCode":"c2.79","gcamValue":2},{"gcamCode":"c2.80","gcamValue":8},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.82","gcamValue":3},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":17},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.31","gcamValue":3},{"gcamCode":"c35.33","gcamValue":2},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":4},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":14},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":22},{"gcamCode":"c5.13","gcamValue":7},{"gcamCode":"c5.17","gcamValue":7},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.30","gcamValue":4},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":1},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":10},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.49","gcamValue":5},{"gcamCode":"c5.50","gcamValue":6},{"gcamCode":"c5.51","gcamValue":4},{"gcamCode":"c5.52","gcamValue":7},{"gcamCode":"c5.53","gcamValue":6},{"gcamCode":"c5.54","gcamValue":2},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":7},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":3},{"gcamCode":"c5.62","gcamValue":28},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.20","gcamValue":8},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c9.1","gcamValue":2},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.246","gcamValue":3},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":6},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.34","gcamValue":3},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.362","gcamValue":1},{"gcamCode":"c9.366","gcamValue":1},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.411","gcamValue":2},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":3},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":5},{"gcamCode":"c9.657","gcamValue":1},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.726","gcamValue":2},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":5},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":2},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.856","gcamValue":3},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.222222222222222},{"gcamCode":"v10.2","gcamValue":0.277232142857143},{"gcamCode":"v11.1","gcamValue":0.14333},{"gcamCode":"v19.1","gcamValue":5.95181818181818},{"gcamCode":"v19.2","gcamValue":4.76},{"gcamCode":"v19.3","gcamValue":5.51545454545454},{"gcamCode":"v19.4","gcamValue":5.85363636363636},{"gcamCode":"v19.5","gcamValue":4.80818181818182},{"gcamCode":"v19.6","gcamValue":5.38727272727273},{"gcamCode":"v19.7","gcamValue":6.03909090909091},{"gcamCode":"v19.8","gcamValue":4.73090909090909},{"gcamCode":"v19.9","gcamValue":5.65636363636364},{"gcamCode":"v20.13","gcamValue":0.375},{"gcamCode":"v20.15","gcamValue":0.3},{"gcamCode":"v21.1","gcamValue":5.76246153846154},{"gcamCode":"v26.1","gcamValue":1.8}]https://ktar.com/wp-content/uploads/2019/05/churroholic-sandwiches.jpg[""]["https://instagram.com/p/BxfQgzvh0C7"][""][][{"name":"Facebook Photo","charOffset":18},{"name":"Tempe Marketplace","charOffset":193},{"name":"Rio Salado Parkway","charOffset":226},{"name":"Northern Avenue","charOffset":419},{"name":"Bell Road","charOffset":507}][]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>KTAR.com</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190522235500</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://ktar.com/story/2584983/churroholic-opens-2nd-arizona-location-in-tempe-marketplace/amp/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBabcfoxmontana.comhttps://www.abcfoxmontana.com/community/st-neighborworks-great-falls-high-school-house/article_bfbf057a-7d43-11e9-b7a2-f7d35c133a45.html[][]["EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","SOC_POINTSOFINTEREST_HIGH_SCHOOL","TAX_FNCACT","TAX_FNCACT_STUDENTS","WB_2670_JOBS","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","WB_470_EDUCATION","TAX_FNCACT_STUDENT","UNGP_FORESTS_RIVERS_OCEANS","UNGP_EDUCATION","TAX_FNCACT_GRADER"][{"theme":"UNGP_EDUCATION","charOffset":936},{"theme":"WB_470_EDUCATION","charOffset":524},{"theme":"WB_470_EDUCATION","charOffset":1386},{"theme":"EDUCATION","charOffset":105},{"theme":"EDUCATION","charOffset":294},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":105},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":294},{"theme":"WB_2670_JOBS","charOffset":502},{"theme":"WB_2670_JOBS","charOffset":876},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":502},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":876},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":502},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":876},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":502},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":876},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":502},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":876},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":784},{"theme":"TAX_FNCACT_STUDENTS","charOffset":138},{"theme":"TAX_FNCACT_STUDENTS","charOffset":419},{"theme":"TAX_FNCACT_STUDENTS","charOffset":555},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1249},{"theme":"TAX_FNCACT_GRADER","charOffset":1059},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":105},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":294},{"theme":"TAX_FNCACT_STUDENT","charOffset":669}][][]["william harr"][{"person":"William Harr","charOffset":1044}]["neighborworks great falls high school house","technical education program"][{"organisation":"Neighborworks Great Falls High School House","charOffset":111},{"organisation":"Neighborworks Great Falls High School House","charOffset":300},{"organisation":"Technical Education Program","charOffset":532}]{"tone":2.0833333,"positiveScore":3.125,"negativeScore":1.0416666,"polarity":4.1666665,"activityReferenceDensity":23.958334,"selfGroupReferenceDensity":2.7777777,"wordCount":254}[{"dateResolution":4,"month":5,"day":23,"year":0,"charOffset":27},{"dateResolution":1,"month":0,"day":0,"year":1998,"charOffset":1199}][{"gcamCode":"wc","gcamValue":254},{"gcamCode":"c12.1","gcamValue":29},{"gcamCode":"c12.10","gcamValue":26},{"gcamCode":"c12.12","gcamValue":6},{"gcamCode":"c12.13","gcamValue":9},{"gcamCode":"c12.14","gcamValue":14},{"gcamCode":"c12.3","gcamValue":6},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":19},{"gcamCode":"c12.7","gcamValue":11},{"gcamCode":"c12.8","gcamValue":17},{"gcamCode":"c12.9","gcamValue":29},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c14.1","gcamValue":35},{"gcamCode":"c14.10","gcamValue":16},{"gcamCode":"c14.11","gcamValue":34},{"gcamCode":"c14.2","gcamValue":16},{"gcamCode":"c14.3","gcamValue":13},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":45},{"gcamCode":"c14.6","gcamValue":4},{"gcamCode":"c14.7","gcamValue":6},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":7},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":5},{"gcamCode":"c15.104","gcamValue":1},{"gcamCode":"c15.105","gcamValue":2},{"gcamCode":"c15.110","gcamValue":6},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.20","gcamValue":3},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.92","gcamValue":5},{"gcamCode":"c15.97","gcamValue":3},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.105","gcamValue":12},{"gcamCode":"c16.106","gcamValue":10},{"gcamCode":"c16.109","gcamValue":26},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":54},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":15},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":5},{"gcamCode":"c16.117","gcamValue":7},{"gcamCode":"c16.118","gcamValue":19},{"gcamCode":"c16.12","gcamValue":39},{"gcamCode":"c16.120","gcamValue":23},{"gcamCode":"c16.121","gcamValue":26},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.124","gcamValue":7},{"gcamCode":"c16.125","gcamValue":21},{"gcamCode":"c16.126","gcamValue":18},{"gcamCode":"c16.127","gcamValue":29},{"gcamCode":"c16.128","gcamValue":4},{"gcamCode":"c16.129","gcamValue":40},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":11},{"gcamCode":"c16.131","gcamValue":10},{"gcamCode":"c16.134","gcamValue":36},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":22},{"gcamCode":"c16.139","gcamValue":10},{"gcamCode":"c16.14","gcamValue":8},{"gcamCode":"c16.140","gcamValue":10},{"gcamCode":"c16.141","gcamValue":3},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.145","gcamValue":21},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.157","gcamValue":16},{"gcamCode":"c16.159","gcamValue":20},{"gcamCode":"c16.16","gcamValue":12},{"gcamCode":"c16.161","gcamValue":41},{"gcamCode":"c16.162","gcamValue":28},{"gcamCode":"c16.163","gcamValue":40},{"gcamCode":"c16.164","gcamValue":5},{"gcamCode":"c16.165","gcamValue":6},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":8},{"gcamCode":"c16.2","gcamValue":25},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":26},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":16},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":32},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":21},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":20},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":27},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.4","gcamValue":25},{"gcamCode":"c16.41","gcamValue":9},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":10},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":49},{"gcamCode":"c16.48","gcamValue":9},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":9},{"gcamCode":"c16.52","gcamValue":23},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.56","gcamValue":11},{"gcamCode":"c16.57","gcamValue":137},{"gcamCode":"c16.58","gcamValue":29},{"gcamCode":"c16.6","gcamValue":34},{"gcamCode":"c16.60","gcamValue":7},{"gcamCode":"c16.62","gcamValue":9},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":6},{"gcamCode":"c16.68","gcamValue":17},{"gcamCode":"c16.69","gcamValue":10},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":22},{"gcamCode":"c16.71","gcamValue":7},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":9},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":23},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":21},{"gcamCode":"c16.88","gcamValue":34},{"gcamCode":"c16.89","gcamValue":9},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":14},{"gcamCode":"c16.91","gcamValue":21},{"gcamCode":"c16.92","gcamValue":18},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":34},{"gcamCode":"c16.95","gcamValue":19},{"gcamCode":"c16.96","gcamValue":10},{"gcamCode":"c16.98","gcamValue":23},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":76},{"gcamCode":"c17.10","gcamValue":30},{"gcamCode":"c17.11","gcamValue":31},{"gcamCode":"c17.12","gcamValue":9},{"gcamCode":"c17.13","gcamValue":7},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":21},{"gcamCode":"c17.16","gcamValue":29},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":9},{"gcamCode":"c17.19","gcamValue":13},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.21","gcamValue":5},{"gcamCode":"c17.22","gcamValue":8},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":23},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":32},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":11},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":19},{"gcamCode":"c17.32","gcamValue":18},{"gcamCode":"c17.33","gcamValue":16},{"gcamCode":"c17.34","gcamValue":9},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":22},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":6},{"gcamCode":"c17.39","gcamValue":22},{"gcamCode":"c17.4","gcamValue":68},{"gcamCode":"c17.40","gcamValue":8},{"gcamCode":"c17.41","gcamValue":10},{"gcamCode":"c17.42","gcamValue":31},{"gcamCode":"c17.43","gcamValue":24},{"gcamCode":"c17.5","gcamValue":71},{"gcamCode":"c17.7","gcamValue":49},{"gcamCode":"c17.8","gcamValue":33},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c18.147","gcamValue":6},{"gcamCode":"c18.193","gcamValue":6},{"gcamCode":"c18.298","gcamValue":4},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c2.1","gcamValue":10},{"gcamCode":"c2.10","gcamValue":6},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":18},{"gcamCode":"c2.104","gcamValue":47},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":9},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":6},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":78},{"gcamCode":"c2.12","gcamValue":18},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":13},{"gcamCode":"c2.122","gcamValue":4},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":21},{"gcamCode":"c2.126","gcamValue":10},{"gcamCode":"c2.127","gcamValue":48},{"gcamCode":"c2.128","gcamValue":19},{"gcamCode":"c2.129","gcamValue":15},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":8},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":3},{"gcamCode":"c2.138","gcamValue":3},{"gcamCode":"c2.139","gcamValue":4},{"gcamCode":"c2.14","gcamValue":33},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":22},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":37},{"gcamCode":"c2.148","gcamValue":29},{"gcamCode":"c2.15","gcamValue":23},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":10},{"gcamCode":"c2.155","gcamValue":33},{"gcamCode":"c2.156","gcamValue":26},{"gcamCode":"c2.157","gcamValue":30},{"gcamCode":"c2.158","gcamValue":22},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":20},{"gcamCode":"c2.162","gcamValue":6},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.167","gcamValue":2},{"gcamCode":"c2.169","gcamValue":7},{"gcamCode":"c2.170","gcamValue":8},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":5},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":11},{"gcamCode":"c2.178","gcamValue":3},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":9},{"gcamCode":"c2.180","gcamValue":9},{"gcamCode":"c2.181","gcamValue":13},{"gcamCode":"c2.183","gcamValue":13},{"gcamCode":"c2.185","gcamValue":71},{"gcamCode":"c2.186","gcamValue":11},{"gcamCode":"c2.187","gcamValue":12},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":12},{"gcamCode":"c2.192","gcamValue":7},{"gcamCode":"c2.193","gcamValue":23},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":37},{"gcamCode":"c2.196","gcamValue":7},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":34},{"gcamCode":"c2.199","gcamValue":12},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":5},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":14},{"gcamCode":"c2.204","gcamValue":30},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":23},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":5},{"gcamCode":"c2.214","gcamValue":19},{"gcamCode":"c2.217","gcamValue":7},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":8},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":18},{"gcamCode":"c2.227","gcamValue":6},{"gcamCode":"c2.228","gcamValue":6},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":17},{"gcamCode":"c2.26","gcamValue":12},{"gcamCode":"c2.27","gcamValue":12},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.30","gcamValue":14},{"gcamCode":"c2.31","gcamValue":9},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":4},{"gcamCode":"c2.34","gcamValue":30},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":9},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":42},{"gcamCode":"c2.40","gcamValue":4},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":13},{"gcamCode":"c2.45","gcamValue":18},{"gcamCode":"c2.46","gcamValue":28},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":5},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":10},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":24},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":29},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":10},{"gcamCode":"c2.58","gcamValue":9},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":9},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":4},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":4},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":2},{"gcamCode":"c2.75","gcamValue":55},{"gcamCode":"c2.76","gcamValue":180},{"gcamCode":"c2.77","gcamValue":20},{"gcamCode":"c2.78","gcamValue":55},{"gcamCode":"c2.79","gcamValue":4},{"gcamCode":"c2.80","gcamValue":43},{"gcamCode":"c2.81","gcamValue":7},{"gcamCode":"c2.82","gcamValue":14},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":14},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":7},{"gcamCode":"c2.89","gcamValue":24},{"gcamCode":"c2.90","gcamValue":10},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":55},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":4},{"gcamCode":"c2.98","gcamValue":19},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c3.1","gcamValue":9},{"gcamCode":"c3.2","gcamValue":22},{"gcamCode":"c35.1","gcamValue":11},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.31","gcamValue":28},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":2},{"gcamCode":"c35.5","gcamValue":8},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":3},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":9},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":17},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":10},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":14},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.15","gcamValue":8},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.23","gcamValue":9},{"gcamCode":"c4.6","gcamValue":2},{"gcamCode":"c4.8","gcamValue":4},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.4","gcamValue":3},{"gcamCode":"c40.6","gcamValue":3},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c41.1","gcamValue":12},{"gcamCode":"c5.10","gcamValue":22},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":52},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":8},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":8},{"gcamCode":"c5.27","gcamValue":5},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":29},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":12},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":19},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":13},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":7},{"gcamCode":"c5.46","gcamValue":33},{"gcamCode":"c5.47","gcamValue":10},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":27},{"gcamCode":"c5.5","gcamValue":9},{"gcamCode":"c5.50","gcamValue":32},{"gcamCode":"c5.51","gcamValue":13},{"gcamCode":"c5.52","gcamValue":35},{"gcamCode":"c5.53","gcamValue":28},{"gcamCode":"c5.54","gcamValue":13},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.57","gcamValue":5},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":12},{"gcamCode":"c5.60","gcamValue":12},{"gcamCode":"c5.61","gcamValue":25},{"gcamCode":"c5.62","gcamValue":128},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":24},{"gcamCode":"c5.9","gcamValue":20},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":5},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c6.5","gcamValue":9},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":10},{"gcamCode":"c7.2","gcamValue":20},{"gcamCode":"c8.14","gcamValue":3},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":10},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":4},{"gcamCode":"c8.37","gcamValue":11},{"gcamCode":"c8.38","gcamValue":15},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":9},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":9},{"gcamCode":"c8.5","gcamValue":4},{"gcamCode":"c8.6","gcamValue":2},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":10},{"gcamCode":"c9.10","gcamValue":4},{"gcamCode":"c9.1000","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":5},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":12},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.158","gcamValue":4},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":7},{"gcamCode":"c9.169","gcamValue":3},{"gcamCode":"c9.173","gcamValue":11},{"gcamCode":"c9.174","gcamValue":4},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":3},{"gcamCode":"c9.192","gcamValue":5},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.198","gcamValue":15},{"gcamCode":"c9.199","gcamValue":2},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":3},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.215","gcamValue":7},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.219","gcamValue":4},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.233","gcamValue":13},{"gcamCode":"c9.235","gcamValue":12},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.240","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.248","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.256","gcamValue":2},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.28","gcamValue":6},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":10},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.304","gcamValue":3},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.312","gcamValue":3},{"gcamCode":"c9.314","gcamValue":2},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":13},{"gcamCode":"c9.34","gcamValue":9},{"gcamCode":"c9.35","gcamValue":11},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.36","gcamValue":5},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.38","gcamValue":3},{"gcamCode":"c9.39","gcamValue":6},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.405","gcamValue":3},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.416","gcamValue":3},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.427","gcamValue":3},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":4},{"gcamCode":"c9.446","gcamValue":3},{"gcamCode":"c9.449","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.459","gcamValue":4},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.476","gcamValue":5},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":5},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":10},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":5},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":2},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":3},{"gcamCode":"c9.534","gcamValue":2},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":3},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":3},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.562","gcamValue":6},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":6},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.579","gcamValue":10},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.581","gcamValue":2},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.624","gcamValue":8},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":5},{"gcamCode":"c9.642","gcamValue":6},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":16},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":5},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.667","gcamValue":3},{"gcamCode":"c9.668","gcamValue":5},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.670","gcamValue":7},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.681","gcamValue":5},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":7},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":13},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":4},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":5},{"gcamCode":"c9.724","gcamValue":7},{"gcamCode":"c9.726","gcamValue":15},{"gcamCode":"c9.73","gcamValue":7},{"gcamCode":"c9.730","gcamValue":9},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":4},{"gcamCode":"c9.739","gcamValue":3},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":4},{"gcamCode":"c9.748","gcamValue":6},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":8},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":9},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":11},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.805","gcamValue":1},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.812","gcamValue":5},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.850","gcamValue":3},{"gcamCode":"c9.851","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":6},{"gcamCode":"c9.862","gcamValue":4},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":11},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":9},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.898","gcamValue":3},{"gcamCode":"c9.899","gcamValue":4},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.903","gcamValue":7},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":8},{"gcamCode":"c9.911","gcamValue":10},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":3},{"gcamCode":"c9.916","gcamValue":3},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":6},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":4},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.962","gcamValue":4},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":7},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":4},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.260863095238095},{"gcamCode":"v10.2","gcamValue":0.256055988053271},{"gcamCode":"v11.1","gcamValue":0.103275300546448},{"gcamCode":"v19.1","gcamValue":6.178125},{"gcamCode":"v19.2","gcamValue":5.0290625},{"gcamCode":"v19.3","gcamValue":5.5359375},{"gcamCode":"v19.4","gcamValue":6.0565625},{"gcamCode":"v19.5","gcamValue":4.8390625},{"gcamCode":"v19.6","gcamValue":5.604375},{"gcamCode":"v19.7","gcamValue":6.29875},{"gcamCode":"v19.8","gcamValue":5.239375},{"gcamCode":"v19.9","gcamValue":5.4753125},{"gcamCode":"v20.1","gcamValue":0.6296},{"gcamCode":"v20.11","gcamValue":0.610428571428571},{"gcamCode":"v20.13","gcamValue":0.451833333333333},{"gcamCode":"v20.14","gcamValue":-0.275},{"gcamCode":"v20.15","gcamValue":0.401375},{"gcamCode":"v20.16","gcamValue":-0.266666666666667},{"gcamCode":"v20.3","gcamValue":0.6546},{"gcamCode":"v20.5","gcamValue":0.6546},{"gcamCode":"v20.7","gcamValue":0.6546},{"gcamCode":"v20.9","gcamValue":0.6546},{"gcamCode":"v21.1","gcamValue":5.55429824561404},{"gcamCode":"v26.1","gcamValue":1.20588235294118}]https://bloximages.newyork1.vip.townnews.com/abcfoxmontana.com/content/tncms/assets/v3/editorial/7/4d/74dccf70-7d47-11e9-8e52-2f3450e4341c/5ce679357db2f.image.jpg?crop=1662%2C1247%2C0%2C0[""][""][""][][{"name":"NeighborWorks Great Falls High School House","charOffset":114},{"name":"NeighborWorks Great Falls High School House","charOffset":308},{"name":"Technical Education","charOffset":540}][]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Katie Tercek KFBB Reporter;Katie Tercek</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523101500</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBgwdtoday.comhttp://gwdtoday.com/main.asp?SectionID=2&SubSectionID=131&TM=28816.37[][]["TAX_FNCACT","TAX_FNCACT_NURSES","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","TAX_FNCACT_NURSE","TAX_FNCACT_LEADERS","LEADER","WB_1606_SCHOLARSHIPS","WB_1608_CASH_TRANSFERS","WB_1466_SOCIAL_ASSISTANCE","WB_1603_FEE_WAIVERS","WB_697_SOCIAL_PROTECTION_AND_LABOR"][{"theme":"LEADER","charOffset":1676},{"theme":"LEADER","charOffset":6361},{"theme":"LEADER","charOffset":8328},{"theme":"LEADER","charOffset":8576},{"theme":"TAX_FNCACT_NURSES","charOffset":18},{"theme":"TAX_FNCACT_LEADERS","charOffset":182},{"theme":"TAX_FNCACT_LEADERS","charOffset":8640},{"theme":"TAX_FNCACT_LEADERS","charOffset":13332},{"theme":"TAX_FNCACT_NURSE","charOffset":174},{"theme":"EDUCATION","charOffset":149},{"theme":"EDUCATION","charOffset":292},{"theme":"EDUCATION","charOffset":1056},{"theme":"EDUCATION","charOffset":2410},{"theme":"EDUCATION","charOffset":2827},{"theme":"EDUCATION","charOffset":5902},{"theme":"EDUCATION","charOffset":6791},{"theme":"EDUCATION","charOffset":10227},{"theme":"EDUCATION","charOffset":13427},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":149},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":292},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":1056},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":2410},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":2827},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":5902},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":6791},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":10227},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":13427},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":3745},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":3867},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4004},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4262},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4296},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4438},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4591},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4787},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4992},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5154},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5313},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5429},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5692},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6659},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7848},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":8010},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":8173},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":8501},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":9636},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":9799},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":9873},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":12293},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":12430},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":3745},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":3867},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4004},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4262},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4296},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4438},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4591},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4787},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4992},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5154},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5313},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5429},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5692},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6659},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7848},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":8010},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":8173},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":8501},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":9636},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":9799},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":9873},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":12293},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":12430},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":3745},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":3867},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4004},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4262},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4296},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4438},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4591},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4787},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4992},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5154},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5313},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5429},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5692},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6659},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7848},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":8010},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":8173},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":8501},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":9636},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":9799},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":9873},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":12293},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":12430},{"theme":"WB_1603_FEE_WAIVERS","charOffset":3745},{"theme":"WB_1603_FEE_WAIVERS","charOffset":3867},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4004},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4262},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4296},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4438},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4591},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4787},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4992},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5154},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5313},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5429},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5692},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6659},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7848},{"theme":"WB_1603_FEE_WAIVERS","charOffset":8010},{"theme":"WB_1603_FEE_WAIVERS","charOffset":8173},{"theme":"WB_1603_FEE_WAIVERS","charOffset":8501},{"theme":"WB_1603_FEE_WAIVERS","charOffset":9636},{"theme":"WB_1603_FEE_WAIVERS","charOffset":9799},{"theme":"WB_1603_FEE_WAIVERS","charOffset":9873},{"theme":"WB_1603_FEE_WAIVERS","charOffset":12293},{"theme":"WB_1603_FEE_WAIVERS","charOffset":12430},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3745},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3867},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4004},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4262},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4296},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4438},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4591},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4787},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4992},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5154},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5313},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5429},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5692},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6659},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7848},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":8010},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":8173},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":8501},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":9636},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":9799},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":9873},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":12293},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":12430}][{"geoType":"USSTATE","geoName":"Montana, United States","countryCode":"US","adm1Code":"USMT","adm2Code":"","geoPoint":{"latitude":46.9048,"longitude":-110.326},"featureId":"MT"},{"geoType":"USCITY","geoName":"Erskine College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3304,"longitude":-82.3907},"featureId":"1247684"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Ninety Six High School, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1648,"longitude":-82.0204},"featureId":"1234185"},{"geoType":"USCITY","geoName":"Ninety Six, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1751,"longitude":-82.024},"featureId":"1249874"},{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},{"geoType":"COUNTRY","geoName":"Jordan","countryCode":"JO","adm1Code":"JO","adm2Code":"","geoPoint":{"latitude":31,"longitude":36},"featureId":"JO"},{"geoType":"USCITY","geoName":"Greenville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8526,"longitude":-82.394},"featureId":"1245842"},{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},{"geoType":"USCITY","geoName":"Honea Path, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.4465,"longitude":-82.3915},"featureId":"1246035"},{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},{"geoType":"USCITY","geoName":"Cheraw, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.6977,"longitude":-79.8834},"featureId":"1247267"},{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"}][{"location":{"geoType":"USSTATE","geoName":"Montana, United States","countryCode":"US","adm1Code":"USMT","adm2Code":"","geoPoint":{"latitude":46.9048,"longitude":-110.326},"featureId":"MT"},"charOffset":7247},{"location":{"geoType":"COUNTRY","geoName":"Jordan","countryCode":"JO","adm1Code":"JO","adm2Code":"","geoPoint":{"latitude":31,"longitude":36},"featureId":"JO"},"charOffset":7226},{"location":{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"},"charOffset":11310},{"location":{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"},"charOffset":11572},{"location":{"geoType":"USCITY","geoName":"Cheraw, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC025","geoPoint":{"latitude":34.6977,"longitude":-79.8834},"featureId":"1247267"},"charOffset":989},{"location":{"geoType":"USCITY","geoName":"Honea Path, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC007","geoPoint":{"latitude":34.4465,"longitude":-82.3915},"featureId":"1246035"},"charOffset":584},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":655},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":879},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":5824},{"location":{"geoType":"USCITY","geoName":"Greenville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.8526,"longitude":-82.394},"featureId":"1245842"},"charOffset":774},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":532},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":4063},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":4721},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":5622},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":5980},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":9128},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":9519},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":2533},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":3236},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":3820},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":4391},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":4877},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":5107},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":6269},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":7801},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":8547},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":9589},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":12246},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":13241},{"location":{"geoType":"USCITY","geoName":"Erskine College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.3304,"longitude":-82.3907},"featureId":"1247684"},"charOffset":10985},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":9947},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3598},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6578},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6841},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13055},{"location":{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},"charOffset":455},{"location":{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},"charOffset":4177},{"location":{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC077","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},"charOffset":1895}]["van taylor","haley giles","ashlee riley","emily brantley","michelle freeman","aubrey holland","tlaysha creswell","savannah malphrus","amanda cleveland","sally baumeister","macie smiley","kurstin lacoste","daniel grubbs","elena worthing","richard gregory","marquel evans","catherine smithdeal","sarah foster","dorothy holmes","danielle greer","zoey montgomery","reagan davis","john g panagiotou","carl brock","zelea james","taylor freeman","linh nguyen","terry ledford","anna smith","ray brooks","bianca earl","yvonne hudgens","andrew brunson","andrea pozo","whitney moore","kasey wood","taylor simmons"][{"person":"Van Taylor","charOffset":10155},{"person":"Haley Giles","charOffset":805},{"person":"Ashlee Riley","charOffset":5329},{"person":"Emily Brantley","charOffset":640},{"person":"Michelle Freeman","charOffset":4639},{"person":"Aubrey Holland","charOffset":7354},{"person":"Tlaysha Creswell","charOffset":3299},{"person":"Savannah Malphrus","charOffset":944},{"person":"Amanda Cleveland","charOffset":568},{"person":"Sally Baumeister","charOffset":8148},{"person":"Macie Smiley","charOffset":716},{"person":"Kurstin Lacoste","charOffset":1557},{"person":"Daniel Grubbs","charOffset":12525},{"person":"Elena Worthing","charOffset":9834},{"person":"Elena Worthing","charOffset":10121},{"person":"Richard Gregory","charOffset":4096},{"person":"Marquel Evans","charOffset":4609},{"person":"Catherine Smithdeal","charOffset":12453},{"person":"Sarah Foster","charOffset":4048},{"person":"Dorothy Holmes","charOffset":8029},{"person":"Danielle Greer","charOffset":752},{"person":"Zoey Montgomery","charOffset":7372},{"person":"Reagan Davis","charOffset":2325},{"person":"Carl Brock","charOffset":5275},{"person":"Carl Brock","charOffset":5482},{"person":"Zelea James","charOffset":4706},{"person":"Taylor Freeman","charOffset":977},{"person":"Linh Nguyen","charOffset":8062},{"person":"Terry Ledford","charOffset":6215},{"person":"Anna Smith","charOffset":437},{"person":"Ray Brooks","charOffset":6372},{"person":"Ray Brooks","charOffset":8591},{"person":"Bianca Earl","charOffset":4020},{"person":"Yvonne Hudgens","charOffset":6162},{"person":"Andrew Brunson","charOffset":11214},{"person":"Andrea Pozo","charOffset":4161},{"person":"Whitney Moore","charOffset":9817},{"person":"Whitney Moore","charOffset":10191},{"person":"Kasey Wood","charOffset":515},{"person":"Taylor Simmons","charOffset":487}]["warner lambert company","anna clark early childhood center","masonic lodge","carolina national guard","honor roll at ninety six high school","genesis education center","commerce community scholarship","american legion","johnnie tolbert brewer middle school","margaret nettles early childhood center","greenwood school district","sterilite corporation endowed scholarship","anderson university","educational affairs","piedmont technical college spring commencement","six lion club","piedmont technical college","greenwood chamber","employee of the year program","lander human resources department","recognition program","john louden g frank russell technology center","lander university","young","lander university college of behavioral","mccormick high school middle college","campus police","amy fennell brewer middle school","meredith schwendemann emerald high school","sterilite corporation","american cancer society","chip whitt g frank russell technology center","human services","rhonda donaldson emerald high school","softball national championship","six high school","bettye smoot district office","biola university","erskine college"][{"organisation":"Warner Lambert Company","charOffset":4222},{"organisation":"Anna Clark Early Childhood Center","charOffset":12800},{"organisation":"Masonic Lodge","charOffset":6912},{"organisation":"Carolina National Guard","charOffset":5995},{"organisation":"Genesis Education Center","charOffset":1854},{"organisation":"Commerce Community Scholarship","charOffset":9799},{"organisation":"American Legion","charOffset":3605},{"organisation":"American Legion","charOffset":6585},{"organisation":"American Legion","charOffset":6848},{"organisation":"Johnnie Tolbert Brewer Middle School","charOffset":11960},{"organisation":"Margaret Nettles Early Childhood Center","charOffset":12033},{"organisation":"Greenwood School District","charOffset":1729},{"organisation":"Sterilite Corporation Endowed Scholarship","charOffset":4591},{"organisation":"Anderson University","charOffset":6791},{"organisation":"Educational Affairs","charOffset":8352},{"organisation":"Piedmont Technical College","charOffset":2533},{"organisation":"Piedmont Technical College","charOffset":3236},{"organisation":"Piedmont Technical College","charOffset":3820},{"organisation":"Piedmont Technical College","charOffset":4391},{"organisation":"Piedmont Technical College","charOffset":4877},{"organisation":"Piedmont Technical College","charOffset":5107},{"organisation":"Piedmont Technical College","charOffset":6269},{"organisation":"Piedmont Technical College","charOffset":7801},{"organisation":"Piedmont Technical College","charOffset":8547},{"organisation":"Piedmont Technical College","charOffset":9589},{"organisation":"Piedmont Technical College","charOffset":12246},{"organisation":"Piedmont Technical College","charOffset":13241},{"organisation":"Greenwood Chamber","charOffset":9765},{"organisation":"Employee Of The Year Program","charOffset":11640},{"organisation":"Lander Human Resources Department","charOffset":10728},{"organisation":"Recognition Program","charOffset":13392},{"organisation":"Lander University","charOffset":149},{"organisation":"Lander University","charOffset":292},{"organisation":"Lander University","charOffset":1056},{"organisation":"Lander University","charOffset":2827},{"organisation":"Lander University","charOffset":5902},{"organisation":"Lander University","charOffset":10227},{"organisation":"Lander University","charOffset":13427},{"organisation":"Young","charOffset":3034},{"organisation":"Young","charOffset":3172},{"organisation":"Young","charOffset":3392},{"organisation":"Young","charOffset":3680},{"organisation":"Young","charOffset":6534},{"organisation":"Young","charOffset":6603},{"organisation":"Young","charOffset":6736},{"organisation":"Young","charOffset":6810},{"organisation":"Lander University College Of Behavioral","charOffset":13449},{"organisation":"Mccormick High School Middle College","charOffset":3370},{"organisation":"Campus Police","charOffset":6190},{"organisation":"Amy Fennell Brewer Middle School","charOffset":12764},{"organisation":"Meredith Schwendemann Emerald High School","charOffset":12844},{"organisation":"Sterilite Corporation","charOffset":4571},{"organisation":"Sterilite Corporation","charOffset":4761},{"organisation":"American Cancer Society","charOffset":13070},{"organisation":"Human Services","charOffset":5734},{"organisation":"Rhonda Donaldson Emerald High School","charOffset":12072},{"organisation":"Softball National Championship","charOffset":2486},{"organisation":"Bettye Smoot District Office","charOffset":11991},{"organisation":"Biola University","charOffset":2410},{"organisation":"Erskine College","charOffset":10985}]{"tone":3.8015764,"positiveScore":4.4042654,"negativeScore":0.6026889,"polarity":5.006954,"activityReferenceDensity":19.239685,"selfGroupReferenceDensity":0.09272137,"wordCount":1876}[{"dateResolution":4,"month":5,"day":14,"year":0,"charOffset":284},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":978},{"dateResolution":1,"month":0,"day":0,"year":2001,"charOffset":1060},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":1737},{"dateResolution":4,"month":5,"day":22,"year":0,"charOffset":1761},{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":2892},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":4203},{"dateResolution":1,"month":0,"day":0,"year":2010,"charOffset":4698},{"dateResolution":1,"month":0,"day":0,"year":2000,"charOffset":5333},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":8164},{"dateResolution":1,"month":0,"day":0,"year":1991,"charOffset":8759},{"dateResolution":1,"month":0,"day":0,"year":2013,"charOffset":10351},{"dateResolution":4,"month":5,"day":4,"year":0,"charOffset":11047}][{"gcamCode":"wc","gcamValue":1876},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.2","gcamValue":2},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":91},{"gcamCode":"c12.10","gcamValue":116},{"gcamCode":"c12.12","gcamValue":20},{"gcamCode":"c12.13","gcamValue":36},{"gcamCode":"c12.14","gcamValue":67},{"gcamCode":"c12.3","gcamValue":15},{"gcamCode":"c12.4","gcamValue":9},{"gcamCode":"c12.5","gcamValue":74},{"gcamCode":"c12.7","gcamValue":32},{"gcamCode":"c12.8","gcamValue":40},{"gcamCode":"c12.9","gcamValue":120},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.6","gcamValue":2},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":102},{"gcamCode":"c14.10","gcamValue":54},{"gcamCode":"c14.11","gcamValue":155},{"gcamCode":"c14.2","gcamValue":79},{"gcamCode":"c14.3","gcamValue":107},{"gcamCode":"c14.4","gcamValue":9},{"gcamCode":"c14.5","gcamValue":172},{"gcamCode":"c14.6","gcamValue":12},{"gcamCode":"c14.7","gcamValue":16},{"gcamCode":"c14.9","gcamValue":11},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.110","gcamValue":14},{"gcamCode":"c15.112","gcamValue":5},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.15","gcamValue":2},{"gcamCode":"c15.154","gcamValue":3},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.181","gcamValue":2},{"gcamCode":"c15.182","gcamValue":2},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":2},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":3},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.265","gcamValue":1},{"gcamCode":"c15.272","gcamValue":1},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.35","gcamValue":2},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.52","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.97","gcamValue":9},{"gcamCode":"c15.99","gcamValue":2},{"gcamCode":"c16.1","gcamValue":14},{"gcamCode":"c16.100","gcamValue":46},{"gcamCode":"c16.101","gcamValue":20},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":6},{"gcamCode":"c16.105","gcamValue":20},{"gcamCode":"c16.106","gcamValue":62},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":172},{"gcamCode":"c16.11","gcamValue":19},{"gcamCode":"c16.110","gcamValue":263},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":9},{"gcamCode":"c16.114","gcamValue":127},{"gcamCode":"c16.115","gcamValue":12},{"gcamCode":"c16.116","gcamValue":42},{"gcamCode":"c16.117","gcamValue":46},{"gcamCode":"c16.118","gcamValue":102},{"gcamCode":"c16.12","gcamValue":146},{"gcamCode":"c16.120","gcamValue":96},{"gcamCode":"c16.121","gcamValue":147},{"gcamCode":"c16.122","gcamValue":11},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":15},{"gcamCode":"c16.125","gcamValue":102},{"gcamCode":"c16.126","gcamValue":130},{"gcamCode":"c16.127","gcamValue":113},{"gcamCode":"c16.128","gcamValue":13},{"gcamCode":"c16.129","gcamValue":208},{"gcamCode":"c16.13","gcamValue":7},{"gcamCode":"c16.130","gcamValue":33},{"gcamCode":"c16.131","gcamValue":56},{"gcamCode":"c16.132","gcamValue":5},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":211},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.136","gcamValue":7},{"gcamCode":"c16.138","gcamValue":175},{"gcamCode":"c16.139","gcamValue":56},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":89},{"gcamCode":"c16.141","gcamValue":4},{"gcamCode":"c16.142","gcamValue":5},{"gcamCode":"c16.143","gcamValue":8},{"gcamCode":"c16.145","gcamValue":201},{"gcamCode":"c16.146","gcamValue":160},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.15","gcamValue":19},{"gcamCode":"c16.150","gcamValue":7},{"gcamCode":"c16.151","gcamValue":3},{"gcamCode":"c16.152","gcamValue":18},{"gcamCode":"c16.153","gcamValue":64},{"gcamCode":"c16.155","gcamValue":8},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":36},{"gcamCode":"c16.158","gcamValue":12},{"gcamCode":"c16.159","gcamValue":148},{"gcamCode":"c16.16","gcamValue":28},{"gcamCode":"c16.161","gcamValue":126},{"gcamCode":"c16.162","gcamValue":144},{"gcamCode":"c16.163","gcamValue":142},{"gcamCode":"c16.164","gcamValue":106},{"gcamCode":"c16.165","gcamValue":12},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":12},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":43},{"gcamCode":"c16.2","gcamValue":166},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":53},{"gcamCode":"c16.23","gcamValue":28},{"gcamCode":"c16.24","gcamValue":15},{"gcamCode":"c16.26","gcamValue":205},{"gcamCode":"c16.27","gcamValue":14},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":29},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":129},{"gcamCode":"c16.32","gcamValue":10},{"gcamCode":"c16.33","gcamValue":133},{"gcamCode":"c16.34","gcamValue":5},{"gcamCode":"c16.35","gcamValue":77},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":168},{"gcamCode":"c16.38","gcamValue":40},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":118},{"gcamCode":"c16.41","gcamValue":52},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":3},{"gcamCode":"c16.45","gcamValue":66},{"gcamCode":"c16.46","gcamValue":11},{"gcamCode":"c16.47","gcamValue":273},{"gcamCode":"c16.48","gcamValue":13},{"gcamCode":"c16.49","gcamValue":9},{"gcamCode":"c16.5","gcamValue":10},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":28},{"gcamCode":"c16.52","gcamValue":127},{"gcamCode":"c16.53","gcamValue":18},{"gcamCode":"c16.54","gcamValue":5},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":41},{"gcamCode":"c16.57","gcamValue":956},{"gcamCode":"c16.58","gcamValue":100},{"gcamCode":"c16.6","gcamValue":207},{"gcamCode":"c16.60","gcamValue":22},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":61},{"gcamCode":"c16.63","gcamValue":27},{"gcamCode":"c16.64","gcamValue":27},{"gcamCode":"c16.65","gcamValue":37},{"gcamCode":"c16.66","gcamValue":35},{"gcamCode":"c16.68","gcamValue":99},{"gcamCode":"c16.69","gcamValue":53},{"gcamCode":"c16.7","gcamValue":34},{"gcamCode":"c16.70","gcamValue":125},{"gcamCode":"c16.71","gcamValue":24},{"gcamCode":"c16.72","gcamValue":16},{"gcamCode":"c16.73","gcamValue":8},{"gcamCode":"c16.74","gcamValue":9},{"gcamCode":"c16.75","gcamValue":57},{"gcamCode":"c16.76","gcamValue":8},{"gcamCode":"c16.77","gcamValue":6},{"gcamCode":"c16.78","gcamValue":40},{"gcamCode":"c16.79","gcamValue":17},{"gcamCode":"c16.8","gcamValue":2},{"gcamCode":"c16.80","gcamValue":5},{"gcamCode":"c16.81","gcamValue":16},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":91},{"gcamCode":"c16.85","gcamValue":7},{"gcamCode":"c16.86","gcamValue":12},{"gcamCode":"c16.87","gcamValue":180},{"gcamCode":"c16.88","gcamValue":183},{"gcamCode":"c16.89","gcamValue":48},{"gcamCode":"c16.9","gcamValue":6},{"gcamCode":"c16.90","gcamValue":40},{"gcamCode":"c16.91","gcamValue":57},{"gcamCode":"c16.92","gcamValue":103},{"gcamCode":"c16.93","gcamValue":20},{"gcamCode":"c16.94","gcamValue":128},{"gcamCode":"c16.95","gcamValue":151},{"gcamCode":"c16.96","gcamValue":50},{"gcamCode":"c16.97","gcamValue":10},{"gcamCode":"c16.98","gcamValue":116},{"gcamCode":"c16.99","gcamValue":7},{"gcamCode":"c17.1","gcamValue":468},{"gcamCode":"c17.10","gcamValue":230},{"gcamCode":"c17.11","gcamValue":201},{"gcamCode":"c17.12","gcamValue":49},{"gcamCode":"c17.13","gcamValue":12},{"gcamCode":"c17.14","gcamValue":35},{"gcamCode":"c17.15","gcamValue":208},{"gcamCode":"c17.16","gcamValue":90},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":50},{"gcamCode":"c17.19","gcamValue":120},{"gcamCode":"c17.2","gcamValue":53},{"gcamCode":"c17.20","gcamValue":13},{"gcamCode":"c17.21","gcamValue":7},{"gcamCode":"c17.22","gcamValue":63},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":125},{"gcamCode":"c17.25","gcamValue":25},{"gcamCode":"c17.26","gcamValue":7},{"gcamCode":"c17.27","gcamValue":155},{"gcamCode":"c17.28","gcamValue":19},{"gcamCode":"c17.29","gcamValue":77},{"gcamCode":"c17.3","gcamValue":16},{"gcamCode":"c17.30","gcamValue":27},{"gcamCode":"c17.31","gcamValue":68},{"gcamCode":"c17.32","gcamValue":70},{"gcamCode":"c17.33","gcamValue":101},{"gcamCode":"c17.34","gcamValue":33},{"gcamCode":"c17.35","gcamValue":42},{"gcamCode":"c17.36","gcamValue":71},{"gcamCode":"c17.37","gcamValue":47},{"gcamCode":"c17.38","gcamValue":14},{"gcamCode":"c17.39","gcamValue":71},{"gcamCode":"c17.4","gcamValue":331},{"gcamCode":"c17.40","gcamValue":47},{"gcamCode":"c17.41","gcamValue":62},{"gcamCode":"c17.42","gcamValue":122},{"gcamCode":"c17.43","gcamValue":89},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":389},{"gcamCode":"c17.6","gcamValue":21},{"gcamCode":"c17.7","gcamValue":269},{"gcamCode":"c17.8","gcamValue":167},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":4},{"gcamCode":"c18.147","gcamValue":66},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.165","gcamValue":1},{"gcamCode":"c18.179","gcamValue":6},{"gcamCode":"c18.180","gcamValue":8},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.186","gcamValue":1},{"gcamCode":"c18.193","gcamValue":66},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.298","gcamValue":66},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":22},{"gcamCode":"c18.345","gcamValue":7},{"gcamCode":"c18.35","gcamValue":2},{"gcamCode":"c18.352","gcamValue":2},{"gcamCode":"c18.365","gcamValue":1},{"gcamCode":"c18.71","gcamValue":2},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c18.77","gcamValue":2},{"gcamCode":"c18.82","gcamValue":4},{"gcamCode":"c2.1","gcamValue":82},{"gcamCode":"c2.100","gcamValue":10},{"gcamCode":"c2.101","gcamValue":19},{"gcamCode":"c2.102","gcamValue":36},{"gcamCode":"c2.103","gcamValue":12},{"gcamCode":"c2.104","gcamValue":231},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":6},{"gcamCode":"c2.11","gcamValue":42},{"gcamCode":"c2.110","gcamValue":20},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":14},{"gcamCode":"c2.113","gcamValue":18},{"gcamCode":"c2.114","gcamValue":40},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":27},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":9},{"gcamCode":"c2.119","gcamValue":546},{"gcamCode":"c2.12","gcamValue":176},{"gcamCode":"c2.120","gcamValue":6},{"gcamCode":"c2.121","gcamValue":97},{"gcamCode":"c2.122","gcamValue":41},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":57},{"gcamCode":"c2.126","gcamValue":79},{"gcamCode":"c2.127","gcamValue":161},{"gcamCode":"c2.128","gcamValue":106},{"gcamCode":"c2.129","gcamValue":104},{"gcamCode":"c2.13","gcamValue":2},{"gcamCode":"c2.130","gcamValue":25},{"gcamCode":"c2.131","gcamValue":16},{"gcamCode":"c2.132","gcamValue":23},{"gcamCode":"c2.133","gcamValue":17},{"gcamCode":"c2.134","gcamValue":5},{"gcamCode":"c2.135","gcamValue":6},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":4},{"gcamCode":"c2.139","gcamValue":14},{"gcamCode":"c2.14","gcamValue":138},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":24},{"gcamCode":"c2.142","gcamValue":16},{"gcamCode":"c2.143","gcamValue":113},{"gcamCode":"c2.144","gcamValue":18},{"gcamCode":"c2.145","gcamValue":8},{"gcamCode":"c2.146","gcamValue":10},{"gcamCode":"c2.147","gcamValue":279},{"gcamCode":"c2.148","gcamValue":103},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":60},{"gcamCode":"c2.150","gcamValue":21},{"gcamCode":"c2.151","gcamValue":6},{"gcamCode":"c2.152","gcamValue":6},{"gcamCode":"c2.153","gcamValue":37},{"gcamCode":"c2.154","gcamValue":40},{"gcamCode":"c2.155","gcamValue":198},{"gcamCode":"c2.156","gcamValue":93},{"gcamCode":"c2.157","gcamValue":170},{"gcamCode":"c2.158","gcamValue":122},{"gcamCode":"c2.159","gcamValue":10},{"gcamCode":"c2.16","gcamValue":1},{"gcamCode":"c2.160","gcamValue":59},{"gcamCode":"c2.162","gcamValue":27},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.165","gcamValue":10},{"gcamCode":"c2.166","gcamValue":39},{"gcamCode":"c2.167","gcamValue":8},{"gcamCode":"c2.168","gcamValue":2},{"gcamCode":"c2.169","gcamValue":19},{"gcamCode":"c2.17","gcamValue":6},{"gcamCode":"c2.170","gcamValue":24},{"gcamCode":"c2.172","gcamValue":9},{"gcamCode":"c2.173","gcamValue":26},{"gcamCode":"c2.174","gcamValue":14},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":13},{"gcamCode":"c2.177","gcamValue":121},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":54},{"gcamCode":"c2.18","gcamValue":52},{"gcamCode":"c2.180","gcamValue":55},{"gcamCode":"c2.181","gcamValue":67},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":73},{"gcamCode":"c2.185","gcamValue":320},{"gcamCode":"c2.186","gcamValue":17},{"gcamCode":"c2.187","gcamValue":76},{"gcamCode":"c2.188","gcamValue":2},{"gcamCode":"c2.189","gcamValue":2},{"gcamCode":"c2.19","gcamValue":14},{"gcamCode":"c2.191","gcamValue":78},{"gcamCode":"c2.192","gcamValue":28},{"gcamCode":"c2.193","gcamValue":101},{"gcamCode":"c2.194","gcamValue":7},{"gcamCode":"c2.195","gcamValue":167},{"gcamCode":"c2.196","gcamValue":51},{"gcamCode":"c2.197","gcamValue":39},{"gcamCode":"c2.198","gcamValue":150},{"gcamCode":"c2.199","gcamValue":28},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.20","gcamValue":5},{"gcamCode":"c2.200","gcamValue":16},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":68},{"gcamCode":"c2.204","gcamValue":142},{"gcamCode":"c2.205","gcamValue":16},{"gcamCode":"c2.206","gcamValue":24},{"gcamCode":"c2.207","gcamValue":7},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":19},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":127},{"gcamCode":"c2.211","gcamValue":5},{"gcamCode":"c2.212","gcamValue":2},{"gcamCode":"c2.213","gcamValue":17},{"gcamCode":"c2.214","gcamValue":77},{"gcamCode":"c2.215","gcamValue":7},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.218","gcamValue":7},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":27},{"gcamCode":"c2.221","gcamValue":24},{"gcamCode":"c2.222","gcamValue":3},{"gcamCode":"c2.223","gcamValue":28},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":40},{"gcamCode":"c2.226","gcamValue":50},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.23","gcamValue":63},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":93},{"gcamCode":"c2.26","gcamValue":58},{"gcamCode":"c2.27","gcamValue":58},{"gcamCode":"c2.28","gcamValue":17},{"gcamCode":"c2.30","gcamValue":66},{"gcamCode":"c2.31","gcamValue":64},{"gcamCode":"c2.32","gcamValue":8},{"gcamCode":"c2.33","gcamValue":18},{"gcamCode":"c2.34","gcamValue":62},{"gcamCode":"c2.35","gcamValue":37},{"gcamCode":"c2.36","gcamValue":27},{"gcamCode":"c2.37","gcamValue":33},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":199},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":12},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.43","gcamValue":2},{"gcamCode":"c2.44","gcamValue":144},{"gcamCode":"c2.45","gcamValue":139},{"gcamCode":"c2.46","gcamValue":123},{"gcamCode":"c2.47","gcamValue":10},{"gcamCode":"c2.48","gcamValue":41},{"gcamCode":"c2.5","gcamValue":8},{"gcamCode":"c2.50","gcamValue":39},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":200},{"gcamCode":"c2.53","gcamValue":21},{"gcamCode":"c2.54","gcamValue":229},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":7},{"gcamCode":"c2.57","gcamValue":25},{"gcamCode":"c2.58","gcamValue":59},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":15},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":9},{"gcamCode":"c2.62","gcamValue":67},{"gcamCode":"c2.64","gcamValue":45},{"gcamCode":"c2.65","gcamValue":22},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":4},{"gcamCode":"c2.68","gcamValue":5},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":4},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.72","gcamValue":10},{"gcamCode":"c2.73","gcamValue":22},{"gcamCode":"c2.74","gcamValue":7},{"gcamCode":"c2.75","gcamValue":239},{"gcamCode":"c2.76","gcamValue":1143},{"gcamCode":"c2.77","gcamValue":177},{"gcamCode":"c2.78","gcamValue":211},{"gcamCode":"c2.79","gcamValue":17},{"gcamCode":"c2.80","gcamValue":200},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":41},{"gcamCode":"c2.83","gcamValue":20},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":40},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":30},{"gcamCode":"c2.89","gcamValue":48},{"gcamCode":"c2.9","gcamValue":16},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.91","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":29},{"gcamCode":"c2.95","gcamValue":193},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":17},{"gcamCode":"c2.98","gcamValue":64},{"gcamCode":"c2.99","gcamValue":13},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.11","gcamValue":4},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.5","gcamValue":50},{"gcamCode":"c25.7","gcamValue":10},{"gcamCode":"c3.1","gcamValue":23},{"gcamCode":"c3.2","gcamValue":178},{"gcamCode":"c35.1","gcamValue":57},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":23},{"gcamCode":"c35.15","gcamValue":37},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":6},{"gcamCode":"c35.20","gcamValue":43},{"gcamCode":"c35.22","gcamValue":3},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":40},{"gcamCode":"c35.26","gcamValue":5},{"gcamCode":"c35.27","gcamValue":3},{"gcamCode":"c35.3","gcamValue":3},{"gcamCode":"c35.31","gcamValue":126},{"gcamCode":"c35.32","gcamValue":63},{"gcamCode":"c35.33","gcamValue":95},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":26},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.7","gcamValue":22},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":8},{"gcamCode":"c39.12","gcamValue":4},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.17","gcamValue":10},{"gcamCode":"c39.18","gcamValue":13},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":33},{"gcamCode":"c39.20","gcamValue":3},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.23","gcamValue":2},{"gcamCode":"c39.24","gcamValue":1},{"gcamCode":"c39.25","gcamValue":11},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.28","gcamValue":7},{"gcamCode":"c39.3","gcamValue":87},{"gcamCode":"c39.30","gcamValue":2},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.36","gcamValue":19},{"gcamCode":"c39.37","gcamValue":75},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":32},{"gcamCode":"c39.4","gcamValue":75},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":10},{"gcamCode":"c39.5","gcamValue":39},{"gcamCode":"c39.7","gcamValue":3},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.15","gcamValue":3},{"gcamCode":"c4.16","gcamValue":3},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.22","gcamValue":2},{"gcamCode":"c4.23","gcamValue":52},{"gcamCode":"c4.28","gcamValue":2},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.5","gcamValue":1},{"gcamCode":"c4.6","gcamValue":4},{"gcamCode":"c4.8","gcamValue":51},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.4","gcamValue":9},{"gcamCode":"c40.5","gcamValue":7},{"gcamCode":"c40.7","gcamValue":4},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":41},{"gcamCode":"c5.10","gcamValue":113},{"gcamCode":"c5.11","gcamValue":40},{"gcamCode":"c5.12","gcamValue":256},{"gcamCode":"c5.13","gcamValue":12},{"gcamCode":"c5.15","gcamValue":14},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":27},{"gcamCode":"c5.18","gcamValue":6},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.20","gcamValue":22},{"gcamCode":"c5.21","gcamValue":32},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":20},{"gcamCode":"c5.24","gcamValue":16},{"gcamCode":"c5.25","gcamValue":9},{"gcamCode":"c5.26","gcamValue":14},{"gcamCode":"c5.27","gcamValue":11},{"gcamCode":"c5.28","gcamValue":27},{"gcamCode":"c5.29","gcamValue":18},{"gcamCode":"c5.3","gcamValue":16},{"gcamCode":"c5.30","gcamValue":115},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":73},{"gcamCode":"c5.36","gcamValue":79},{"gcamCode":"c5.37","gcamValue":26},{"gcamCode":"c5.38","gcamValue":3},{"gcamCode":"c5.39","gcamValue":2},{"gcamCode":"c5.4","gcamValue":29},{"gcamCode":"c5.40","gcamValue":122},{"gcamCode":"c5.42","gcamValue":6},{"gcamCode":"c5.43","gcamValue":34},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":19},{"gcamCode":"c5.46","gcamValue":277},{"gcamCode":"c5.47","gcamValue":22},{"gcamCode":"c5.48","gcamValue":5},{"gcamCode":"c5.49","gcamValue":115},{"gcamCode":"c5.5","gcamValue":10},{"gcamCode":"c5.50","gcamValue":137},{"gcamCode":"c5.51","gcamValue":78},{"gcamCode":"c5.52","gcamValue":148},{"gcamCode":"c5.53","gcamValue":128},{"gcamCode":"c5.54","gcamValue":54},{"gcamCode":"c5.55","gcamValue":24},{"gcamCode":"c5.56","gcamValue":8},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":69},{"gcamCode":"c5.60","gcamValue":35},{"gcamCode":"c5.61","gcamValue":89},{"gcamCode":"c5.62","gcamValue":629},{"gcamCode":"c5.7","gcamValue":88},{"gcamCode":"c5.8","gcamValue":243},{"gcamCode":"c5.9","gcamValue":95},{"gcamCode":"c6.1","gcamValue":8},{"gcamCode":"c6.2","gcamValue":17},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":10},{"gcamCode":"c6.5","gcamValue":54},{"gcamCode":"c6.6","gcamValue":2},{"gcamCode":"c7.1","gcamValue":32},{"gcamCode":"c7.2","gcamValue":110},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.10","gcamValue":3},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":3},{"gcamCode":"c8.13","gcamValue":4},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":5},{"gcamCode":"c8.17","gcamValue":18},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":4},{"gcamCode":"c8.20","gcamValue":13},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":45},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":3},{"gcamCode":"c8.30","gcamValue":3},{"gcamCode":"c8.32","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":29},{"gcamCode":"c8.37","gcamValue":45},{"gcamCode":"c8.38","gcamValue":71},{"gcamCode":"c8.39","gcamValue":17},{"gcamCode":"c8.4","gcamValue":54},{"gcamCode":"c8.40","gcamValue":12},{"gcamCode":"c8.41","gcamValue":7},{"gcamCode":"c8.42","gcamValue":46},{"gcamCode":"c8.43","gcamValue":47},{"gcamCode":"c8.5","gcamValue":7},{"gcamCode":"c8.6","gcamValue":4},{"gcamCode":"c9.1","gcamValue":57},{"gcamCode":"c9.10","gcamValue":10},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":13},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":6},{"gcamCode":"c9.1008","gcamValue":3},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":4},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":8},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1024","gcamValue":13},{"gcamCode":"c9.1025","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":5},{"gcamCode":"c9.1033","gcamValue":3},{"gcamCode":"c9.1034","gcamValue":4},{"gcamCode":"c9.1035","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1039","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":10},{"gcamCode":"c9.1042","gcamValue":1},{"gcamCode":"c9.107","gcamValue":10},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":6},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.111","gcamValue":25},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.113","gcamValue":18},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":5},{"gcamCode":"c9.118","gcamValue":7},{"gcamCode":"c9.119","gcamValue":8},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":7},{"gcamCode":"c9.123","gcamValue":5},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":6},{"gcamCode":"c9.126","gcamValue":3},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":71},{"gcamCode":"c9.129","gcamValue":11},{"gcamCode":"c9.130","gcamValue":19},{"gcamCode":"c9.131","gcamValue":5},{"gcamCode":"c9.133","gcamValue":10},{"gcamCode":"c9.134","gcamValue":11},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":7},{"gcamCode":"c9.138","gcamValue":6},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":11},{"gcamCode":"c9.142","gcamValue":3},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":19},{"gcamCode":"c9.148","gcamValue":9},{"gcamCode":"c9.149","gcamValue":5},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.154","gcamValue":4},{"gcamCode":"c9.157","gcamValue":15},{"gcamCode":"c9.158","gcamValue":14},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":19},{"gcamCode":"c9.161","gcamValue":6},{"gcamCode":"c9.162","gcamValue":28},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":4},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":12},{"gcamCode":"c9.167","gcamValue":8},{"gcamCode":"c9.168","gcamValue":11},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.173","gcamValue":4},{"gcamCode":"c9.174","gcamValue":4},{"gcamCode":"c9.175","gcamValue":5},{"gcamCode":"c9.177","gcamValue":15},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":5},{"gcamCode":"c9.180","gcamValue":4},{"gcamCode":"c9.182","gcamValue":19},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":29},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.188","gcamValue":17},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":13},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":4},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.195","gcamValue":12},{"gcamCode":"c9.196","gcamValue":4},{"gcamCode":"c9.197","gcamValue":8},{"gcamCode":"c9.198","gcamValue":15},{"gcamCode":"c9.2","gcamValue":5},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":21},{"gcamCode":"c9.201","gcamValue":8},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":12},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":14},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.213","gcamValue":3},{"gcamCode":"c9.214","gcamValue":5},{"gcamCode":"c9.215","gcamValue":16},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.218","gcamValue":3},{"gcamCode":"c9.219","gcamValue":14},{"gcamCode":"c9.220","gcamValue":17},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":30},{"gcamCode":"c9.227","gcamValue":4},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.230","gcamValue":4},{"gcamCode":"c9.231","gcamValue":6},{"gcamCode":"c9.232","gcamValue":9},{"gcamCode":"c9.233","gcamValue":8},{"gcamCode":"c9.235","gcamValue":14},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.244","gcamValue":3},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.248","gcamValue":3},{"gcamCode":"c9.249","gcamValue":4},{"gcamCode":"c9.25","gcamValue":5},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.252","gcamValue":4},{"gcamCode":"c9.253","gcamValue":3},{"gcamCode":"c9.256","gcamValue":2},{"gcamCode":"c9.258","gcamValue":3},{"gcamCode":"c9.259","gcamValue":2},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.260","gcamValue":5},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":9},{"gcamCode":"c9.276","gcamValue":9},{"gcamCode":"c9.277","gcamValue":4},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.28","gcamValue":4},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.281","gcamValue":7},{"gcamCode":"c9.282","gcamValue":5},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.284","gcamValue":9},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.287","gcamValue":4},{"gcamCode":"c9.288","gcamValue":11},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":7},{"gcamCode":"c9.291","gcamValue":10},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":52},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.300","gcamValue":2},{"gcamCode":"c9.302","gcamValue":8},{"gcamCode":"c9.303","gcamValue":5},{"gcamCode":"c9.304","gcamValue":5},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":3},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":13},{"gcamCode":"c9.31","gcamValue":3},{"gcamCode":"c9.312","gcamValue":4},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":2},{"gcamCode":"c9.316","gcamValue":4},{"gcamCode":"c9.317","gcamValue":2},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.319","gcamValue":5},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":4},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.324","gcamValue":3},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":30},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":4},{"gcamCode":"c9.333","gcamValue":5},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":12},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":9},{"gcamCode":"c9.35","gcamValue":26},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.354","gcamValue":3},{"gcamCode":"c9.358","gcamValue":7},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.37","gcamValue":4},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.375","gcamValue":6},{"gcamCode":"c9.378","gcamValue":20},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":27},{"gcamCode":"c9.384","gcamValue":11},{"gcamCode":"c9.385","gcamValue":4},{"gcamCode":"c9.386","gcamValue":4},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.388","gcamValue":2},{"gcamCode":"c9.389","gcamValue":8},{"gcamCode":"c9.39","gcamValue":22},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.405","gcamValue":11},{"gcamCode":"c9.409","gcamValue":3},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.412","gcamValue":2},{"gcamCode":"c9.416","gcamValue":9},{"gcamCode":"c9.417","gcamValue":1},{"gcamCode":"c9.42","gcamValue":5},{"gcamCode":"c9.420","gcamValue":11},{"gcamCode":"c9.422","gcamValue":3},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.427","gcamValue":9},{"gcamCode":"c9.428","gcamValue":6},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":15},{"gcamCode":"c9.432","gcamValue":5},{"gcamCode":"c9.434","gcamValue":2},{"gcamCode":"c9.435","gcamValue":4},{"gcamCode":"c9.437","gcamValue":4},{"gcamCode":"c9.44","gcamValue":9},{"gcamCode":"c9.440","gcamValue":5},{"gcamCode":"c9.446","gcamValue":11},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":3},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.453","gcamValue":2},{"gcamCode":"c9.458","gcamValue":7},{"gcamCode":"c9.459","gcamValue":14},{"gcamCode":"c9.46","gcamValue":9},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":3},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":5},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.470","gcamValue":13},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":20},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":27},{"gcamCode":"c9.48","gcamValue":17},{"gcamCode":"c9.480","gcamValue":22},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.485","gcamValue":8},{"gcamCode":"c9.487","gcamValue":11},{"gcamCode":"c9.488","gcamValue":5},{"gcamCode":"c9.489","gcamValue":20},{"gcamCode":"c9.49","gcamValue":41},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.493","gcamValue":3},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":29},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":8},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.501","gcamValue":10},{"gcamCode":"c9.502","gcamValue":4},{"gcamCode":"c9.503","gcamValue":8},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":26},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":23},{"gcamCode":"c9.513","gcamValue":88},{"gcamCode":"c9.515","gcamValue":3},{"gcamCode":"c9.517","gcamValue":8},{"gcamCode":"c9.518","gcamValue":5},{"gcamCode":"c9.519","gcamValue":5},{"gcamCode":"c9.520","gcamValue":2},{"gcamCode":"c9.521","gcamValue":8},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":4},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.525","gcamValue":2},{"gcamCode":"c9.528","gcamValue":18},{"gcamCode":"c9.53","gcamValue":7},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":4},{"gcamCode":"c9.534","gcamValue":4},{"gcamCode":"c9.537","gcamValue":13},{"gcamCode":"c9.538","gcamValue":1},{"gcamCode":"c9.539","gcamValue":4},{"gcamCode":"c9.54","gcamValue":9},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.548","gcamValue":1},{"gcamCode":"c9.549","gcamValue":10},{"gcamCode":"c9.55","gcamValue":12},{"gcamCode":"c9.551","gcamValue":11},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":6},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":12},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":32},{"gcamCode":"c9.564","gcamValue":34},{"gcamCode":"c9.565","gcamValue":21},{"gcamCode":"c9.566","gcamValue":26},{"gcamCode":"c9.567","gcamValue":68},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":8},{"gcamCode":"c9.571","gcamValue":6},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":11},{"gcamCode":"c9.576","gcamValue":19},{"gcamCode":"c9.579","gcamValue":59},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":17},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":23},{"gcamCode":"c9.586","gcamValue":6},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":6},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.602","gcamValue":9},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":3},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":18},{"gcamCode":"c9.62","gcamValue":8},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":12},{"gcamCode":"c9.625","gcamValue":11},{"gcamCode":"c9.626","gcamValue":3},{"gcamCode":"c9.627","gcamValue":8},{"gcamCode":"c9.629","gcamValue":12},{"gcamCode":"c9.630","gcamValue":6},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":8},{"gcamCode":"c9.635","gcamValue":12},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":8},{"gcamCode":"c9.640","gcamValue":37},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":33},{"gcamCode":"c9.646","gcamValue":6},{"gcamCode":"c9.648","gcamValue":28},{"gcamCode":"c9.649","gcamValue":4},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.653","gcamValue":72},{"gcamCode":"c9.654","gcamValue":8},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.656","gcamValue":3},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":7},{"gcamCode":"c9.660","gcamValue":16},{"gcamCode":"c9.661","gcamValue":13},{"gcamCode":"c9.663","gcamValue":2},{"gcamCode":"c9.664","gcamValue":8},{"gcamCode":"c9.665","gcamValue":7},{"gcamCode":"c9.667","gcamValue":6},{"gcamCode":"c9.668","gcamValue":10},{"gcamCode":"c9.669","gcamValue":14},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":17},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":9},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":23},{"gcamCode":"c9.677","gcamValue":5},{"gcamCode":"c9.678","gcamValue":3},{"gcamCode":"c9.679","gcamValue":12},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":10},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":14},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.688","gcamValue":3},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":13},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":10},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.694","gcamValue":8},{"gcamCode":"c9.695","gcamValue":4},{"gcamCode":"c9.696","gcamValue":5},{"gcamCode":"c9.698","gcamValue":14},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":11},{"gcamCode":"c9.70","gcamValue":22},{"gcamCode":"c9.701","gcamValue":66},{"gcamCode":"c9.704","gcamValue":29},{"gcamCode":"c9.705","gcamValue":6},{"gcamCode":"c9.708","gcamValue":9},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":8},{"gcamCode":"c9.710","gcamValue":17},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":4},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":9},{"gcamCode":"c9.718","gcamValue":5},{"gcamCode":"c9.719","gcamValue":5},{"gcamCode":"c9.72","gcamValue":9},{"gcamCode":"c9.720","gcamValue":7},{"gcamCode":"c9.721","gcamValue":8},{"gcamCode":"c9.722","gcamValue":18},{"gcamCode":"c9.723","gcamValue":7},{"gcamCode":"c9.724","gcamValue":63},{"gcamCode":"c9.726","gcamValue":88},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.729","gcamValue":1},{"gcamCode":"c9.73","gcamValue":14},{"gcamCode":"c9.730","gcamValue":54},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":6},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":21},{"gcamCode":"c9.736","gcamValue":9},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.739","gcamValue":6},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":31},{"gcamCode":"c9.741","gcamValue":12},{"gcamCode":"c9.742","gcamValue":37},{"gcamCode":"c9.744","gcamValue":5},{"gcamCode":"c9.745","gcamValue":16},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":41},{"gcamCode":"c9.75","gcamValue":4},{"gcamCode":"c9.750","gcamValue":6},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":15},{"gcamCode":"c9.755","gcamValue":7},{"gcamCode":"c9.756","gcamValue":8},{"gcamCode":"c9.757","gcamValue":6},{"gcamCode":"c9.759","gcamValue":5},{"gcamCode":"c9.76","gcamValue":27},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.761","gcamValue":10},{"gcamCode":"c9.762","gcamValue":53},{"gcamCode":"c9.765","gcamValue":8},{"gcamCode":"c9.766","gcamValue":33},{"gcamCode":"c9.767","gcamValue":80},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.770","gcamValue":4},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.775","gcamValue":16},{"gcamCode":"c9.776","gcamValue":19},{"gcamCode":"c9.777","gcamValue":8},{"gcamCode":"c9.778","gcamValue":4},{"gcamCode":"c9.779","gcamValue":7},{"gcamCode":"c9.78","gcamValue":6},{"gcamCode":"c9.781","gcamValue":4},{"gcamCode":"c9.782","gcamValue":6},{"gcamCode":"c9.783","gcamValue":3},{"gcamCode":"c9.784","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.788","gcamValue":19},{"gcamCode":"c9.789","gcamValue":10},{"gcamCode":"c9.79","gcamValue":8},{"gcamCode":"c9.790","gcamValue":12},{"gcamCode":"c9.791","gcamValue":2},{"gcamCode":"c9.792","gcamValue":4},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.8","gcamValue":11},{"gcamCode":"c9.80","gcamValue":6},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":6},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":11},{"gcamCode":"c9.808","gcamValue":19},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":32},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":15},{"gcamCode":"c9.817","gcamValue":10},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":11},{"gcamCode":"c9.821","gcamValue":4},{"gcamCode":"c9.822","gcamValue":3},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":29},{"gcamCode":"c9.830","gcamValue":5},{"gcamCode":"c9.831","gcamValue":5},{"gcamCode":"c9.832","gcamValue":2},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.837","gcamValue":5},{"gcamCode":"c9.838","gcamValue":4},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":2},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":6},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":5},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":9},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.855","gcamValue":2},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":9},{"gcamCode":"c9.86","gcamValue":20},{"gcamCode":"c9.860","gcamValue":28},{"gcamCode":"c9.861","gcamValue":15},{"gcamCode":"c9.862","gcamValue":9},{"gcamCode":"c9.863","gcamValue":15},{"gcamCode":"c9.864","gcamValue":57},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":10},{"gcamCode":"c9.867","gcamValue":5},{"gcamCode":"c9.868","gcamValue":52},{"gcamCode":"c9.87","gcamValue":4},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":4},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":13},{"gcamCode":"c9.878","gcamValue":3},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.881","gcamValue":1},{"gcamCode":"c9.882","gcamValue":14},{"gcamCode":"c9.883","gcamValue":5},{"gcamCode":"c9.884","gcamValue":5},{"gcamCode":"c9.885","gcamValue":3},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.893","gcamValue":2},{"gcamCode":"c9.896","gcamValue":13},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.899","gcamValue":20},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":24},{"gcamCode":"c9.900","gcamValue":4},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":27},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":38},{"gcamCode":"c9.912","gcamValue":4},{"gcamCode":"c9.913","gcamValue":14},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.915","gcamValue":20},{"gcamCode":"c9.916","gcamValue":13},{"gcamCode":"c9.917","gcamValue":3},{"gcamCode":"c9.918","gcamValue":11},{"gcamCode":"c9.919","gcamValue":2},{"gcamCode":"c9.920","gcamValue":20},{"gcamCode":"c9.921","gcamValue":8},{"gcamCode":"c9.923","gcamValue":12},{"gcamCode":"c9.924","gcamValue":2},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":10},{"gcamCode":"c9.928","gcamValue":4},{"gcamCode":"c9.930","gcamValue":10},{"gcamCode":"c9.932","gcamValue":13},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":37},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":5},{"gcamCode":"c9.941","gcamValue":3},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.943","gcamValue":2},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":3},{"gcamCode":"c9.951","gcamValue":1},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.955","gcamValue":9},{"gcamCode":"c9.956","gcamValue":3},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":20},{"gcamCode":"c9.962","gcamValue":14},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":8},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":9},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.969","gcamValue":17},{"gcamCode":"c9.97","gcamValue":4},{"gcamCode":"c9.972","gcamValue":14},{"gcamCode":"c9.973","gcamValue":5},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":32},{"gcamCode":"c9.98","gcamValue":4},{"gcamCode":"c9.980","gcamValue":23},{"gcamCode":"c9.981","gcamValue":4},{"gcamCode":"c9.983","gcamValue":11},{"gcamCode":"c9.984","gcamValue":8},{"gcamCode":"c9.985","gcamValue":12},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":4},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.991","gcamValue":3},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.999","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.295676766976841},{"gcamCode":"v10.2","gcamValue":0.260309976402936},{"gcamCode":"v11.1","gcamValue":0.135223593355001},{"gcamCode":"v19.1","gcamValue":6.24091370558375},{"gcamCode":"v19.2","gcamValue":5.26365482233502},{"gcamCode":"v19.3","gcamValue":5.65370558375635},{"gcamCode":"v19.4","gcamValue":6.14842639593908},{"gcamCode":"v19.5","gcamValue":5.188730964467},{"gcamCode":"v19.6","gcamValue":5.72243654822335},{"gcamCode":"v19.7","gcamValue":6.33467005076142},{"gcamCode":"v19.8","gcamValue":5.3666497461929},{"gcamCode":"v19.9","gcamValue":5.57796954314721},{"gcamCode":"v20.1","gcamValue":0.584875},{"gcamCode":"v20.10","gcamValue":-0.6875},{"gcamCode":"v20.11","gcamValue":0.622808510638298},{"gcamCode":"v20.12","gcamValue":-0.59375},{"gcamCode":"v20.13","gcamValue":0.438872832369942},{"gcamCode":"v20.14","gcamValue":-0.410933333333333},{"gcamCode":"v20.15","gcamValue":0.385495762711865},{"gcamCode":"v20.16","gcamValue":-0.377052631578947},{"gcamCode":"v20.3","gcamValue":0.644888888888889},{"gcamCode":"v20.4","gcamValue":-0.375},{"gcamCode":"v20.5","gcamValue":0.771588235294118},{"gcamCode":"v20.6","gcamValue":-0.6875},{"gcamCode":"v20.7","gcamValue":0.770388888888889},{"gcamCode":"v20.8","gcamValue":-0.6875},{"gcamCode":"v20.9","gcamValue":0.692967741935484},{"gcamCode":"v21.1","gcamValue":5.68157825802223},{"gcamCode":"v26.1","gcamValue":1.68409090909091}][""][""][""][][{"name":"Self Regional Healthcare","charOffset":57},{"name":"Self Regional","charOffset":132},{"name":"Lander University","charOffset":154},{"name":"Certified Nurse Leaders","charOffset":187},{"name":"Elementary Education","charOffset":427},{"name":"Anna Smith","charOffset":482},{"name":"Taylor Simmons","charOffset":521},{"name":"Kasey Wood","charOffset":553},{"name":"Ware Shoals","charOffset":573},{"name":"Amanda Cleveland","charOffset":597},{"name":"Emily Brantley","charOffset":663},{"name":"Kristin Bridges","charOffset":700},{"name":"Macie Smiley","charOffset":732},{"name":"Danielle Greer","charOffset":775},{"name":"Haley Giles","charOffset":823},{"name":"Anne Marie New","charOffset":900},{"name":"Kensley Ward","charOffset":934},{"name":"Savannah Malphrus","charOffset":973},{"name":"Taylor Freeman","charOffset":1012},{"name":"Staff Excellence Awards","charOffset":1176},{"name":"Kurstin LaCoste","charOffset":1633},{"name":"Human Resources","charOffset":1654},{"name":"School District","charOffset":1831},{"name":"Superintendent Finalists","charOffset":1897},{"name":"Genesis Education Center","charOffset":1980},{"name":"Board Room","charOffset":2000},{"name":"Biola University","charOffset":2591},{"name":"Piedmont Technical College","charOffset":2726},{"name":"Finis Horne Arena","charOffset":2974},{"name":"Lander University","charOffset":3059},{"name":"Piedmont Technical College","charOffset":3516},{"name":"Spring Commencement","charOffset":3537},{"name":"T'Laysha Creswell","charOffset":3566},{"name":"McCormick High School","charOffset":3625},{"name":"Middle College","charOffset":3641},{"name":"Six High School","charOffset":3832},{"name":"American Legion Auxiliary Palmetto Girls State","charOffset":3911},{"name":"Technical College","charOffset":4119},{"name":"Scholarship Luncheon","charOffset":4164},{"name":"Lonza Endowed Scholarship","charOffset":4295},{"name":"Bianca Earl","charOffset":4311},{"name":"Sarah Foster","charOffset":4342},{"name":"Ware Shoals","charOffset":4357},{"name":"Richard Gregory","charOffset":4378},{"name":"Rock Hill","charOffset":4391},{"name":"Andrea Pozo","charOffset":4454},{"name":"Warner Lambert Company","charOffset":4499},{"name":"Technical College","charOffset":4685},{"name":"Scholarship Luncheon","charOffset":4730},{"name":"Sterilite Corporation Endowed Scholarship","charOffset":4877},{"name":"Marquel Evans","charOffset":4895},{"name":"Michelle Freeman","charOffset":4928},{"name":"Hailey Fuller","charOffset":4960},{"name":"Ninety Six","charOffset":4974},{"name":"Zelea James","charOffset":4995},{"name":"Piedmont Technical","charOffset":5148},{"name":"Technical College","charOffset":5390},{"name":"Scholarship Luncheon","charOffset":5435},{"name":"Carl Brock Vocational Rehabilitation Scholarship","charOffset":5588},{"name":"Ashlee Riley","charOffset":5604},{"name":"Carl Brock","charOffset":5763},{"name":"South Carolina Manufacturing","charOffset":5916},{"name":"Human Services","charOffset":6018},{"name":"South Carolina National Guard","charOffset":6286},{"name":"Veterans Day","charOffset":6387},{"name":"Yvonne Hudgens","charOffset":6465},{"name":"Campus Police","charOffset":6495},{"name":"Security Terry Ledford","charOffset":6522},{"name":"Piedmont Technical College","charOffset":6576},{"name":"Ray Brooks","charOffset":6675},{"name":"American Legion Boys","charOffset":6912},{"name":"American Legion Post","charOffset":7212},{"name":"Ninety Six Lion","charOffset":7241},{"name":"Masonic Lodge","charOffset":7269},{"name":"Orthodox Christian","charOffset":7376},{"name":"Erskine Theological Seminary","charOffset":7442},{"name":"Greenwood High Softball","charOffset":7721},{"name":"Base Percentage","charOffset":8040},{"name":"Technical College","charOffset":8291},{"name":"Scholarship Luncheon","charOffset":8336},{"name":"Charles Baumeister Memorial Endowed Scholarship","charOffset":8492},{"name":"Dorothy Holmes","charOffset":8511},{"name":"Linh Nguyen","charOffset":8552},{"name":"Donor Representative Sally","charOffset":8633},{"name":"Industrial Divisions","charOffset":8817},{"name":"Technical College","charOffset":9080},{"name":"Ray Brooks","charOffset":9113},{"name":"Presidential Medallion","charOffset":9200},{"name":"Girl Power","charOffset":9610},{"name":"State Museum","charOffset":9674},{"name":"State House","charOffset":10031},{"name":"South Carolina","charOffset":10115},{"name":"Technical College","charOffset":10207},{"name":"Scholarship Luncheon","charOffset":10252},{"name":"Greenwood Chamber","charOffset":10375},{"name":"Commerce Community Scholarship","charOffset":10409},{"name":"Whitney Moore","charOffset":10427},{"name":"Elena Worthing","charOffset":10446},{"name":"Greenwood County","charOffset":10561},{"name":"Elena Worthing","charOffset":10728},{"name":"Donor Representative Van","charOffset":10757},{"name":"London Goode Thomas","charOffset":10908},{"name":"Interim Director","charOffset":11134},{"name":"Human Resource","charOffset":11152},{"name":"Human Resources","charOffset":11386},{"name":"Theological Seminary","charOffset":11711},{"name":"Erskine Seminary","charOffset":11881},{"name":"Andrew Brunson","charOffset":11909},{"name":"Associate Reformed Presbyterian","charOffset":12103},{"name":"Support Employee","charOffset":12348},{"name":"Year Program","charOffset":12368},{"name":"Brewer Middle","charOffset":12691},{"name":"Early Childhood","charOffset":12766},{"name":"Emerald High","charOffset":12806},{"name":"Russell Technology","charOffset":12857},{"name":"Technical College","charOffset":13002},{"name":"Scholarship Luncheon","charOffset":13047},{"name":"Catherine Smithdeal","charOffset":13205},{"name":"Donor Representative Daniel","charOffset":13276},{"name":"Brewer Middle","charOffset":13546},{"name":"Early Childhood","charOffset":13583},{"name":"Emerald High","charOffset":13628},{"name":"Russell Technology","charOffset":13678},{"name":"Six High School","charOffset":13775},{"name":"American Cancer","charOffset":13848},{"name":"Ninety Six High School","charOffset":13890},{"name":"Technical College","charOffset":14019},{"name":"Annual Student Awards","charOffset":14152},{"name":"Social Sciences","charOffset":14268},{"name":"Honor Roll","charOffset":14587},{"name":"Ninety Six High","charOffset":14606}][{"amount":10,"amountType":"graduate nurses employed by","charOffset":3},{"amount":200,"amountType":"Lander University employees were","charOffset":800},{"amount":50,"amountType":"will host public forums","charOffset":1416},{"amount":400,"amountType":"Glenwood St","charOffset":1555},{"amount":7,"amountType":"supporting counties were honored","charOffset":2186},{"amount":500,"amountType":"people packed Finis Horne","charOffset":2276},{"amount":343,"amountType":"graduates receive degrees at","charOffset":2324},{"amount":90,"amountType":"Six High School students","charOffset":2967},{"amount":6,"amountType":"High School students selected","charOffset":2970},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":3287},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":3750},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":4339},{"amount":90,"amountType":"Six Lion Club","charOffset":5783},{"amount":6,"amountType":"Lion Club","charOffset":5786},{"amount":47,"amountType":"of Ninety Six","charOffset":5814},{"amount":2,"amountType":"seventh graders have recently","charOffset":6238},{"amount":455,"amountType":"On Base Percentage","charOffset":6393},{"amount":28,"amountType":"bases while only getting","charOffset":6521},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":6672},{"amount":8,"amountType":"college associates","charOffset":7285},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":8225},{"amount":2,"amountType":"comments","charOffset":9306},{"amount":50,"amountType":"many exceptional support employees","charOffset":9961},{"amount":20,"amountType":"support employees have been","charOffset":10037},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":10504},{"amount":8,"amountType":"Nursing Scholarship is Catherine","charOffset":10564},{"amount":16,"amountType":"teachers #xA0","charOffset":10748},{"amount":90,"amountType":"Six High School is","charOffset":11041},{"amount":6,"amountType":"High School is a","charOffset":11044},{"amount":90,"amountType":"Six High School they","charOffset":11132},{"amount":6,"amountType":"High School they raised","charOffset":11135},{"amount":2,"amountType":"dollars ","charOffset":11157},{"amount":40,"amountType":"conscientious student leaders at","charOffset":11293},{"amount":90,"amountType":"Six High School","charOffset":11704},{"amount":6,"amountType":"High School","charOffset":11707}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://r20.rs6.net/tn.jsp?f=001NNdHQ6RXozJpIfCcSXDetNSdJ1xF9IeLmU5rOyUOYOe3bSDHs8WU3rXSRfYTZmIT6x45U0wFHrnc-L_Dq5pgJMtadLEgtDEOGW5AYUjlXhPpgOQPm5r4Wlof4N4mHZrJgpCqNgoiaFY=</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBkgmo.comhttp://www.kgmo.com/news/zakk-wyldes-black-sabbath-tribute-band-to-re-record-entire-first-album/[][]["TAX_FNCACT","TAX_FNCACT_GUITARIST","TAX_ETHNICITY","TAX_ETHNICITY_BLACK","TAX_DISEASE","TAX_DISEASE_VERTIGO"][{"theme":"TAX_DISEASE_VERTIGO","charOffset":254},{"theme":"TAX_DISEASE_VERTIGO","charOffset":377},{"theme":"TAX_DISEASE_VERTIGO","charOffset":657},{"theme":"TAX_FNCACT_GUITARIST","charOffset":23},{"theme":"TAX_ETHNICITY_BLACK","charOffset":46},{"theme":"TAX_ETHNICITY_BLACK","charOffset":417}][{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}][{"location":{"geoType":"COUNTRY","geoName":"British","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":280}]["ozzy osbourne","zakk wylde"][{"person":"Ozzy Osbourne","charOffset":13},{"person":"Zakk Wylde","charOffset":34}][""][]{"tone":2.3255813,"positiveScore":2.3255813,"negativeScore":0,"polarity":2.3255813,"activityReferenceDensity":23.72093,"selfGroupReferenceDensity":0.4651163,"wordCount":192}[{"dateResolution":1,"month":0,"day":0,"year":1970,"charOffset":161},{"dateResolution":1,"month":0,"day":0,"year":1970,"charOffset":479}][{"gcamCode":"wc","gcamValue":192},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":20},{"gcamCode":"c12.10","gcamValue":16},{"gcamCode":"c12.12","gcamValue":6},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":6},{"gcamCode":"c12.3","gcamValue":10},{"gcamCode":"c12.4","gcamValue":4},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":16},{"gcamCode":"c12.8","gcamValue":8},{"gcamCode":"c12.9","gcamValue":18},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c14.1","gcamValue":21},{"gcamCode":"c14.10","gcamValue":11},{"gcamCode":"c14.11","gcamValue":26},{"gcamCode":"c14.2","gcamValue":13},{"gcamCode":"c14.3","gcamValue":21},{"gcamCode":"c14.5","gcamValue":21},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.15","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.226","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c16.100","gcamValue":3},{"gcamCode":"c16.101","gcamValue":6},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.110","gcamValue":22},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":12},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":5},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":16},{"gcamCode":"c16.12","gcamValue":20},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":4},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":16},{"gcamCode":"c16.126","gcamValue":10},{"gcamCode":"c16.127","gcamValue":28},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":22},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":12},{"gcamCode":"c16.134","gcamValue":21},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.145","gcamValue":14},{"gcamCode":"c16.146","gcamValue":11},{"gcamCode":"c16.153","gcamValue":21},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.159","gcamValue":12},{"gcamCode":"c16.16","gcamValue":4},{"gcamCode":"c16.161","gcamValue":12},{"gcamCode":"c16.162","gcamValue":5},{"gcamCode":"c16.163","gcamValue":9},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":6},{"gcamCode":"c16.20","gcamValue":3},{"gcamCode":"c16.21","gcamValue":4},{"gcamCode":"c16.22","gcamValue":4},{"gcamCode":"c16.26","gcamValue":21},{"gcamCode":"c16.3","gcamValue":7},{"gcamCode":"c16.31","gcamValue":7},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":16},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":11},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":18},{"gcamCode":"c16.38","gcamValue":12},{"gcamCode":"c16.4","gcamValue":12},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.45","gcamValue":8},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":24},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":95},{"gcamCode":"c16.58","gcamValue":15},{"gcamCode":"c16.6","gcamValue":16},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":4},{"gcamCode":"c16.68","gcamValue":8},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":6},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.81","gcamValue":3},{"gcamCode":"c16.84","gcamValue":11},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":24},{"gcamCode":"c16.88","gcamValue":19},{"gcamCode":"c16.89","gcamValue":6},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":16},{"gcamCode":"c16.94","gcamValue":12},{"gcamCode":"c16.95","gcamValue":7},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":28},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":60},{"gcamCode":"c17.10","gcamValue":19},{"gcamCode":"c17.11","gcamValue":46},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":10},{"gcamCode":"c17.16","gcamValue":2},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":6},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.23","gcamValue":4},{"gcamCode":"c17.24","gcamValue":21},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.27","gcamValue":20},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":14},{"gcamCode":"c17.32","gcamValue":15},{"gcamCode":"c17.33","gcamValue":20},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":13},{"gcamCode":"c17.37","gcamValue":10},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":46},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":11},{"gcamCode":"c17.43","gcamValue":5},{"gcamCode":"c17.5","gcamValue":38},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":31},{"gcamCode":"c17.8","gcamValue":34},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c2.1","gcamValue":7},{"gcamCode":"c2.101","gcamValue":7},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":34},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":9},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":7},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.119","gcamValue":53},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":22},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":6},{"gcamCode":"c2.126","gcamValue":9},{"gcamCode":"c2.127","gcamValue":16},{"gcamCode":"c2.128","gcamValue":2},{"gcamCode":"c2.129","gcamValue":4},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.14","gcamValue":10},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":10},{"gcamCode":"c2.144","gcamValue":5},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":26},{"gcamCode":"c2.148","gcamValue":8},{"gcamCode":"c2.15","gcamValue":15},{"gcamCode":"c2.152","gcamValue":8},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.155","gcamValue":23},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":18},{"gcamCode":"c2.158","gcamValue":16},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":7},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.167","gcamValue":2},{"gcamCode":"c2.169","gcamValue":4},{"gcamCode":"c2.17","gcamValue":6},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.171","gcamValue":2},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.174","gcamValue":3},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":7},{"gcamCode":"c2.179","gcamValue":3},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":41},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":7},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":17},{"gcamCode":"c2.195","gcamValue":7},{"gcamCode":"c2.196","gcamValue":11},{"gcamCode":"c2.197","gcamValue":4},{"gcamCode":"c2.198","gcamValue":19},{"gcamCode":"c2.199","gcamValue":3},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.203","gcamValue":5},{"gcamCode":"c2.204","gcamValue":15},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":4},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":17},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":4},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.24","gcamValue":2},{"gcamCode":"c2.25","gcamValue":21},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":10},{"gcamCode":"c2.31","gcamValue":22},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":8},{"gcamCode":"c2.34","gcamValue":1},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":38},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":6},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":2},{"gcamCode":"c2.46","gcamValue":8},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":4},{"gcamCode":"c2.52","gcamValue":11},{"gcamCode":"c2.54","gcamValue":12},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.58","gcamValue":1},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.62","gcamValue":8},{"gcamCode":"c2.64","gcamValue":9},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.68","gcamValue":6},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":24},{"gcamCode":"c2.76","gcamValue":127},{"gcamCode":"c2.77","gcamValue":10},{"gcamCode":"c2.78","gcamValue":18},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":34},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":5},{"gcamCode":"c2.88","gcamValue":7},{"gcamCode":"c2.89","gcamValue":8},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":27},{"gcamCode":"c2.97","gcamValue":7},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c2.99","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":8},{"gcamCode":"c3.2","gcamValue":16},{"gcamCode":"c35.1","gcamValue":5},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":8},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":11},{"gcamCode":"c35.32","gcamValue":10},{"gcamCode":"c35.33","gcamValue":4},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.17","gcamValue":7},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":8},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":12},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":9},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c40.5","gcamValue":2},{"gcamCode":"c41.1","gcamValue":3},{"gcamCode":"c5.10","gcamValue":16},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":27},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":3},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.3","gcamValue":10},{"gcamCode":"c5.30","gcamValue":14},{"gcamCode":"c5.35","gcamValue":5},{"gcamCode":"c5.36","gcamValue":11},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":15},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":7},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.46","gcamValue":25},{"gcamCode":"c5.47","gcamValue":4},{"gcamCode":"c5.48","gcamValue":6},{"gcamCode":"c5.49","gcamValue":7},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":10},{"gcamCode":"c5.51","gcamValue":12},{"gcamCode":"c5.52","gcamValue":16},{"gcamCode":"c5.53","gcamValue":27},{"gcamCode":"c5.54","gcamValue":5},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":15},{"gcamCode":"c5.60","gcamValue":3},{"gcamCode":"c5.61","gcamValue":8},{"gcamCode":"c5.62","gcamValue":83},{"gcamCode":"c5.7","gcamValue":5},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":9},{"gcamCode":"c6.1","gcamValue":6},{"gcamCode":"c6.2","gcamValue":7},{"gcamCode":"c6.4","gcamValue":6},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":13},{"gcamCode":"c7.2","gcamValue":15},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.24","gcamValue":3},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":13},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.40","gcamValue":3},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":3},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":6},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":2},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":3},{"gcamCode":"c9.1030","gcamValue":7},{"gcamCode":"c9.1034","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":7},{"gcamCode":"c9.1042","gcamValue":2},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.12","gcamValue":4},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":4},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.158","gcamValue":3},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":2},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.20","gcamValue":4},{"gcamCode":"c9.200","gcamValue":3},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.21","gcamValue":2},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":3},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.23","gcamValue":5},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.240","gcamValue":2},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":2},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.322","gcamValue":3},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.434","gcamValue":2},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":6},{"gcamCode":"c9.443","gcamValue":1},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.449","gcamValue":2},{"gcamCode":"c9.45","gcamValue":4},{"gcamCode":"c9.450","gcamValue":2},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.478","gcamValue":2},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.497","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.511","gcamValue":12},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.517","gcamValue":5},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.526","gcamValue":3},{"gcamCode":"c9.528","gcamValue":3},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.551","gcamValue":3},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":6},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":5},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.587","gcamValue":2},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.595","gcamValue":2},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.615","gcamValue":2},{"gcamCode":"c9.618","gcamValue":5},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.621","gcamValue":5},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.629","gcamValue":6},{"gcamCode":"c9.632","gcamValue":6},{"gcamCode":"c9.635","gcamValue":6},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.643","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.653","gcamValue":7},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.703","gcamValue":3},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.715","gcamValue":7},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.731","gcamValue":4},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":3},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.76","gcamValue":4},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":6},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.773","gcamValue":2},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.790","gcamValue":8},{"gcamCode":"c9.792","gcamValue":6},{"gcamCode":"c9.799","gcamValue":2},{"gcamCode":"c9.802","gcamValue":10},{"gcamCode":"c9.803","gcamValue":3},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":8},{"gcamCode":"c9.822","gcamValue":2},{"gcamCode":"c9.83","gcamValue":5},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.841","gcamValue":2},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.854","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.859","gcamValue":1},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.869","gcamValue":2},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.895","gcamValue":2},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.906","gcamValue":2},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.943","gcamValue":3},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":4},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.958","gcamValue":2},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.968","gcamValue":3},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.262533602150538},{"gcamCode":"v10.2","gcamValue":0.285458333333333},{"gcamCode":"v11.1","gcamValue":0.0971578277153558},{"gcamCode":"v19.1","gcamValue":6.1235294117647},{"gcamCode":"v19.2","gcamValue":5.17941176470588},{"gcamCode":"v19.3","gcamValue":5.33941176470588},{"gcamCode":"v19.4","gcamValue":6.13294117647059},{"gcamCode":"v19.5","gcamValue":5.10176470588235},{"gcamCode":"v19.6","gcamValue":5.51882352941176},{"gcamCode":"v19.7","gcamValue":6.12058823529412},{"gcamCode":"v19.8","gcamValue":5.27882352941176},{"gcamCode":"v19.9","gcamValue":5.10117647058823},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-0.357},{"gcamCode":"v20.11","gcamValue":0.5965},{"gcamCode":"v20.12","gcamValue":-0.357},{"gcamCode":"v20.13","gcamValue":0.459888888888889},{"gcamCode":"v20.14","gcamValue":-0.395666666666667},{"gcamCode":"v20.15","gcamValue":0.355142857142857},{"gcamCode":"v20.16","gcamValue":-0.35925},{"gcamCode":"v20.2","gcamValue":-0.357},{"gcamCode":"v20.3","gcamValue":0.656},{"gcamCode":"v20.4","gcamValue":-0.357},{"gcamCode":"v20.5","gcamValue":0.656},{"gcamCode":"v20.6","gcamValue":-0.357},{"gcamCode":"v20.7","gcamValue":0.656},{"gcamCode":"v20.8","gcamValue":-0.357},{"gcamCode":"v20.9","gcamValue":0.607},{"gcamCode":"v21.1","gcamValue":5.56798701298701},{"gcamCode":"v26.1","gcamValue":1.12222222222222}][""][""][""][{"charLength":343,"verb":"","quote":"Our aim is to faithfully rerecord the album in the spirit of the original recordings : live in a fully analog studio , direct to two inch tape , in a single 24-hour period. A film crew will document the process , culminating in a single album and DVD release limited to just 500 copies and delivered to purchasers on February 13 , 2020 .","charOffset":1081}][{"name":"Ozzy Osbourne","charOffset":14},{"name":"Zakk Wylde","charOffset":35},{"name":"Black Sabbath","charOffset":57},{"name":"Zakk Sabbath","charOffset":95},{"name":"Zakk Sabbath","charOffset":380},{"name":"Black Sabbath","charOffset":463},{"name":"Zakk Sabbath","charOffset":609}][{"amount":2,"amountType":"inch tape","charOffset":697},{"amount":500,"amountType":"copies","charOffset":815},{"amount":500,"amountType":"copies","charOffset":950}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBwfuv.orghttp://www.wfuv.org/content/summer-feastival-2019[][]["WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","WB_1777_FORESTS","WB_590_ECOSYSTEMS","UNGP_FORESTS_RIVERS_OCEANS"][{"theme":"WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","charOffset":52},{"theme":"WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","charOffset":128},{"theme":"WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","charOffset":690},{"theme":"WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","charOffset":977},{"theme":"WB_1777_FORESTS","charOffset":52},{"theme":"WB_1777_FORESTS","charOffset":128},{"theme":"WB_1777_FORESTS","charOffset":690},{"theme":"WB_1777_FORESTS","charOffset":977},{"theme":"WB_590_ECOSYSTEMS","charOffset":52},{"theme":"WB_590_ECOSYSTEMS","charOffset":128},{"theme":"WB_590_ECOSYSTEMS","charOffset":690},{"theme":"WB_590_ECOSYSTEMS","charOffset":977},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":52},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":128},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":690},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":977}][][]["david byrne","gus philippas","andrew bird"][{"person":"David Byrne","charOffset":32},{"person":"David Byrne","charOffset":108},{"person":"David Byrne","charOffset":680},{"person":"Gus Philippas","charOffset":89},{"person":"Gus Philippas","charOffset":165},{"person":"Andrew Bird","charOffset":481}][""][]{"tone":1.3824885,"positiveScore":1.3824885,"negativeScore":0,"polarity":1.3824885,"activityReferenceDensity":20.276497,"selfGroupReferenceDensity":2.3041475,"wordCount":188}[{"dateResolution":4,"month":5,"day":27,"year":0,"charOffset":422}][{"gcamCode":"wc","gcamValue":188},{"gcamCode":"c1.1","gcamValue":1},{"gcamCode":"c12.1","gcamValue":5},{"gcamCode":"c12.10","gcamValue":25},{"gcamCode":"c12.12","gcamValue":3},{"gcamCode":"c12.13","gcamValue":7},{"gcamCode":"c12.14","gcamValue":18},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.5","gcamValue":4},{"gcamCode":"c12.7","gcamValue":5},{"gcamCode":"c12.8","gcamValue":7},{"gcamCode":"c12.9","gcamValue":22},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c14.1","gcamValue":5},{"gcamCode":"c14.10","gcamValue":2},{"gcamCode":"c14.11","gcamValue":13},{"gcamCode":"c14.2","gcamValue":10},{"gcamCode":"c14.3","gcamValue":14},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":13},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":7},{"gcamCode":"c16.109","gcamValue":12},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":26},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":8},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":11},{"gcamCode":"c16.117","gcamValue":5},{"gcamCode":"c16.118","gcamValue":15},{"gcamCode":"c16.12","gcamValue":24},{"gcamCode":"c16.120","gcamValue":12},{"gcamCode":"c16.121","gcamValue":13},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":8},{"gcamCode":"c16.126","gcamValue":15},{"gcamCode":"c16.127","gcamValue":24},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":23},{"gcamCode":"c16.130","gcamValue":12},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.132","gcamValue":2},{"gcamCode":"c16.134","gcamValue":15},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":6},{"gcamCode":"c16.140","gcamValue":3},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":16},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.148","gcamValue":1},{"gcamCode":"c16.149","gcamValue":4},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":14},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":13},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":31},{"gcamCode":"c16.16","gcamValue":12},{"gcamCode":"c16.161","gcamValue":23},{"gcamCode":"c16.162","gcamValue":14},{"gcamCode":"c16.163","gcamValue":13},{"gcamCode":"c16.164","gcamValue":2},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":9},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":25},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":22},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":17},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":11},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":17},{"gcamCode":"c16.41","gcamValue":7},{"gcamCode":"c16.45","gcamValue":6},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":20},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":96},{"gcamCode":"c16.58","gcamValue":9},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":26},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":13},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":16},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":8},{"gcamCode":"c16.70","gcamValue":22},{"gcamCode":"c16.71","gcamValue":6},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":11},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":9},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":15},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":15},{"gcamCode":"c16.88","gcamValue":26},{"gcamCode":"c16.89","gcamValue":7},{"gcamCode":"c16.9","gcamValue":6},{"gcamCode":"c16.90","gcamValue":9},{"gcamCode":"c16.91","gcamValue":13},{"gcamCode":"c16.92","gcamValue":14},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":21},{"gcamCode":"c16.95","gcamValue":19},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":16},{"gcamCode":"c17.1","gcamValue":42},{"gcamCode":"c17.10","gcamValue":24},{"gcamCode":"c17.11","gcamValue":29},{"gcamCode":"c17.12","gcamValue":6},{"gcamCode":"c17.14","gcamValue":9},{"gcamCode":"c17.15","gcamValue":16},{"gcamCode":"c17.16","gcamValue":8},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":10},{"gcamCode":"c17.2","gcamValue":6},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":7},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":11},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":25},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":17},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":14},{"gcamCode":"c17.32","gcamValue":16},{"gcamCode":"c17.33","gcamValue":9},{"gcamCode":"c17.34","gcamValue":9},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":13},{"gcamCode":"c17.37","gcamValue":7},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":11},{"gcamCode":"c17.4","gcamValue":45},{"gcamCode":"c17.40","gcamValue":8},{"gcamCode":"c17.41","gcamValue":8},{"gcamCode":"c17.42","gcamValue":8},{"gcamCode":"c17.43","gcamValue":21},{"gcamCode":"c17.5","gcamValue":35},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":24},{"gcamCode":"c17.8","gcamValue":17},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c2.1","gcamValue":17},{"gcamCode":"c2.10","gcamValue":2},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.104","gcamValue":27},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":8},{"gcamCode":"c2.114","gcamValue":7},{"gcamCode":"c2.116","gcamValue":6},{"gcamCode":"c2.119","gcamValue":62},{"gcamCode":"c2.12","gcamValue":6},{"gcamCode":"c2.121","gcamValue":11},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":16},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":17},{"gcamCode":"c2.128","gcamValue":11},{"gcamCode":"c2.129","gcamValue":2},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":13},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":4},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":32},{"gcamCode":"c2.148","gcamValue":11},{"gcamCode":"c2.15","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.155","gcamValue":27},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":23},{"gcamCode":"c2.158","gcamValue":12},{"gcamCode":"c2.159","gcamValue":5},{"gcamCode":"c2.160","gcamValue":7},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.167","gcamValue":6},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":9},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":5},{"gcamCode":"c2.179","gcamValue":3},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":10},{"gcamCode":"c2.181","gcamValue":6},{"gcamCode":"c2.183","gcamValue":11},{"gcamCode":"c2.185","gcamValue":35},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":12},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":26},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":15},{"gcamCode":"c2.198","gcamValue":27},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":24},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.21","gcamValue":7},{"gcamCode":"c2.210","gcamValue":12},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":4},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":8},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.222","gcamValue":2},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":2},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":14},{"gcamCode":"c2.26","gcamValue":6},{"gcamCode":"c2.27","gcamValue":6},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.30","gcamValue":10},{"gcamCode":"c2.31","gcamValue":8},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":10},{"gcamCode":"c2.34","gcamValue":6},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":22},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":6},{"gcamCode":"c2.45","gcamValue":15},{"gcamCode":"c2.46","gcamValue":14},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":5},{"gcamCode":"c2.52","gcamValue":8},{"gcamCode":"c2.54","gcamValue":12},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":4},{"gcamCode":"c2.58","gcamValue":9},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":15},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.73","gcamValue":2},{"gcamCode":"c2.75","gcamValue":24},{"gcamCode":"c2.76","gcamValue":128},{"gcamCode":"c2.77","gcamValue":8},{"gcamCode":"c2.78","gcamValue":23},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":28},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":6},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":30},{"gcamCode":"c2.96","gcamValue":5},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":6},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":3},{"gcamCode":"c3.2","gcamValue":9},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.31","gcamValue":10},{"gcamCode":"c35.32","gcamValue":3},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.21","gcamValue":6},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.28","gcamValue":4},{"gcamCode":"c39.3","gcamValue":19},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":15},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":5},{"gcamCode":"c39.4","gcamValue":18},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":13},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":9},{"gcamCode":"c4.5","gcamValue":4},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.5","gcamValue":4},{"gcamCode":"c41.1","gcamValue":6},{"gcamCode":"c5.10","gcamValue":12},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":42},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.16","gcamValue":6},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.19","gcamValue":6},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":7},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":9},{"gcamCode":"c5.35","gcamValue":6},{"gcamCode":"c5.36","gcamValue":7},{"gcamCode":"c5.40","gcamValue":7},{"gcamCode":"c5.43","gcamValue":3},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":32},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":14},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":23},{"gcamCode":"c5.51","gcamValue":7},{"gcamCode":"c5.52","gcamValue":26},{"gcamCode":"c5.53","gcamValue":14},{"gcamCode":"c5.54","gcamValue":4},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.6","gcamValue":13},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":8},{"gcamCode":"c5.62","gcamValue":70},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":26},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":2},{"gcamCode":"c7.2","gcamValue":13},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.17","gcamValue":7},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.25","gcamValue":6},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":6},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c8.6","gcamValue":3},{"gcamCode":"c9.1","gcamValue":13},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":6},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":7},{"gcamCode":"c9.117","gcamValue":7},{"gcamCode":"c9.118","gcamValue":8},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":5},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":6},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":3},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.148","gcamValue":6},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":4},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":8},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":2},{"gcamCode":"c9.224","gcamValue":7},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.256","gcamValue":2},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.279","gcamValue":2},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.33","gcamValue":5},{"gcamCode":"c9.331","gcamValue":2},{"gcamCode":"c9.34","gcamValue":2},{"gcamCode":"c9.344","gcamValue":1},{"gcamCode":"c9.35","gcamValue":6},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":6},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.377","gcamValue":1},{"gcamCode":"c9.378","gcamValue":5},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.394","gcamValue":12},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.432","gcamValue":4},{"gcamCode":"c9.433","gcamValue":5},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.451","gcamValue":6},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":4},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.528","gcamValue":5},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.549","gcamValue":4},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":7},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":7},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.622","gcamValue":4},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":11},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":8},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":8},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.736","gcamValue":4},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":6},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":2},{"gcamCode":"c9.757","gcamValue":3},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":7},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":6},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":3},{"gcamCode":"c9.881","gcamValue":1},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":7},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.921","gcamValue":4},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":5},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.288822115384615},{"gcamCode":"v10.2","gcamValue":0.19608435624659},{"gcamCode":"v11.1","gcamValue":0.237788920454545},{"gcamCode":"v19.1","gcamValue":6.70666666666667},{"gcamCode":"v19.2","gcamValue":5.14714285714286},{"gcamCode":"v19.3","gcamValue":5.69285714285714},{"gcamCode":"v19.4","gcamValue":6.61952380952381},{"gcamCode":"v19.5","gcamValue":5.04380952380952},{"gcamCode":"v19.6","gcamValue":5.60571428571429},{"gcamCode":"v19.7","gcamValue":6.75238095238095},{"gcamCode":"v19.8","gcamValue":5.25619047619048},{"gcamCode":"v19.9","gcamValue":5.7152380952381},{"gcamCode":"v20.1","gcamValue":0.500666666666667},{"gcamCode":"v20.11","gcamValue":0.614333333333333},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.440928571428571},{"gcamCode":"v20.14","gcamValue":-0.4375},{"gcamCode":"v20.15","gcamValue":0.3715},{"gcamCode":"v20.16","gcamValue":-0.4375},{"gcamCode":"v20.3","gcamValue":0.607666666666667},{"gcamCode":"v20.5","gcamValue":0.659},{"gcamCode":"v20.7","gcamValue":0.659},{"gcamCode":"v20.9","gcamValue":0.614333333333333},{"gcamCode":"v21.1","gcamValue":5.7975641025641},{"gcamCode":"v26.1","gcamValue":1.78888888888889}][""][""]["https://youtube.com/user/WFUVRADIO"][][{"name":"Summer Feastival","charOffset":17},{"name":"Forest Hills Stadium","charOffset":69},{"name":"Forest Hills Stadium","charOffset":149},{"name":"Thanksgiving Feastival","charOffset":235},{"name":"Summer Feastival","charOffset":288},{"name":"Andrew Bird","charOffset":516},{"name":"City Winery","charOffset":560},{"name":"David Byrne","charOffset":726},{"name":"Forest Hills Stadium","charOffset":750},{"name":"Forest Hills Stadium","charOffset":1045},{"name":"Solid Sound","charOffset":1061},{"name":"Summer Feastival","charOffset":1193}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.wfuv.org/content/wfuv-feastival-2018</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBcricbuzz.comhttps://www.cricbuzz.com/cricket-news/108109/nottinghamshire-sign-ashwin-as-replacement-for-james-pattinson[][][""][][{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"WORLDCITY","geoName":"Essex, Queensland, Australia","countryCode":"AS","adm1Code":"AS04","adm2Code":"","geoPoint":{"latitude":-25.85,"longitude":145.15},"featureId":"-1572465"}][{"location":{"geoType":"COUNTRY","geoName":"Australian","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},"charOffset":475},{"location":{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},"charOffset":543},{"location":{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},"charOffset":1901},{"location":{"geoType":"WORLDCITY","geoName":"Essex, Queensland, Australia","countryCode":"AS","adm1Code":"AS04","adm2Code":"5230","geoPoint":{"latitude":-25.85,"longitude":145.15},"featureId":"-1572465"},"charOffset":1890}]["mick newell","ravichandran ashwin","james pattinson","ajinkya rahane"][{"person":"Mick Newell","charOffset":1450},{"person":"Ravichandran Ashwin","charOffset":318},{"person":"James Pattinson","charOffset":86},{"person":"James Pattinson","charOffset":503},{"person":"Ajinkya Rahane","charOffset":2041}][""][]{"tone":2.1164021,"positiveScore":2.6455026,"negativeScore":0.52910054,"polarity":3.1746032,"activityReferenceDensity":23.544973,"selfGroupReferenceDensity":2.1164021,"wordCount":345}[][{"gcamCode":"wc","gcamValue":345},{"gcamCode":"c12.1","gcamValue":24},{"gcamCode":"c12.10","gcamValue":29},{"gcamCode":"c12.12","gcamValue":6},{"gcamCode":"c12.13","gcamValue":11},{"gcamCode":"c12.14","gcamValue":12},{"gcamCode":"c12.3","gcamValue":10},{"gcamCode":"c12.4","gcamValue":5},{"gcamCode":"c12.5","gcamValue":17},{"gcamCode":"c12.7","gcamValue":16},{"gcamCode":"c12.8","gcamValue":16},{"gcamCode":"c12.9","gcamValue":27},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c14.1","gcamValue":29},{"gcamCode":"c14.10","gcamValue":12},{"gcamCode":"c14.11","gcamValue":42},{"gcamCode":"c14.2","gcamValue":19},{"gcamCode":"c14.3","gcamValue":31},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":32},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":7},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":5},{"gcamCode":"c15.10","gcamValue":4},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.104","gcamValue":1},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.119","gcamValue":2},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.181","gcamValue":2},{"gcamCode":"c15.182","gcamValue":2},{"gcamCode":"c15.20","gcamValue":3},{"gcamCode":"c15.203","gcamValue":2},{"gcamCode":"c15.207","gcamValue":2},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.225","gcamValue":2},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.35","gcamValue":2},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.75","gcamValue":2},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.89","gcamValue":2},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":6},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":11},{"gcamCode":"c16.109","gcamValue":11},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":50},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":14},{"gcamCode":"c16.116","gcamValue":7},{"gcamCode":"c16.117","gcamValue":7},{"gcamCode":"c16.118","gcamValue":20},{"gcamCode":"c16.12","gcamValue":33},{"gcamCode":"c16.120","gcamValue":38},{"gcamCode":"c16.121","gcamValue":19},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.123","gcamValue":2},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":25},{"gcamCode":"c16.126","gcamValue":22},{"gcamCode":"c16.127","gcamValue":23},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":26},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":9},{"gcamCode":"c16.131","gcamValue":11},{"gcamCode":"c16.134","gcamValue":30},{"gcamCode":"c16.138","gcamValue":9},{"gcamCode":"c16.139","gcamValue":9},{"gcamCode":"c16.14","gcamValue":3},{"gcamCode":"c16.140","gcamValue":9},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":20},{"gcamCode":"c16.146","gcamValue":42},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.153","gcamValue":11},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":25},{"gcamCode":"c16.16","gcamValue":4},{"gcamCode":"c16.161","gcamValue":20},{"gcamCode":"c16.162","gcamValue":8},{"gcamCode":"c16.163","gcamValue":24},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":8},{"gcamCode":"c16.2","gcamValue":22},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":17},{"gcamCode":"c16.23","gcamValue":11},{"gcamCode":"c16.24","gcamValue":6},{"gcamCode":"c16.26","gcamValue":39},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.29","gcamValue":9},{"gcamCode":"c16.3","gcamValue":11},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":24},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":15},{"gcamCode":"c16.35","gcamValue":17},{"gcamCode":"c16.37","gcamValue":26},{"gcamCode":"c16.38","gcamValue":6},{"gcamCode":"c16.39","gcamValue":10},{"gcamCode":"c16.4","gcamValue":24},{"gcamCode":"c16.41","gcamValue":10},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":10},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":34},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":4},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":16},{"gcamCode":"c16.53","gcamValue":8},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":161},{"gcamCode":"c16.58","gcamValue":18},{"gcamCode":"c16.6","gcamValue":33},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.61","gcamValue":7},{"gcamCode":"c16.62","gcamValue":9},{"gcamCode":"c16.63","gcamValue":10},{"gcamCode":"c16.64","gcamValue":14},{"gcamCode":"c16.65","gcamValue":11},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":15},{"gcamCode":"c16.69","gcamValue":9},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":22},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":4},{"gcamCode":"c16.75","gcamValue":9},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":7},{"gcamCode":"c16.79","gcamValue":7},{"gcamCode":"c16.81","gcamValue":3},{"gcamCode":"c16.82","gcamValue":5},{"gcamCode":"c16.84","gcamValue":10},{"gcamCode":"c16.87","gcamValue":25},{"gcamCode":"c16.88","gcamValue":36},{"gcamCode":"c16.89","gcamValue":10},{"gcamCode":"c16.9","gcamValue":2},{"gcamCode":"c16.90","gcamValue":8},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":25},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":30},{"gcamCode":"c16.95","gcamValue":19},{"gcamCode":"c16.96","gcamValue":5},{"gcamCode":"c16.98","gcamValue":23},{"gcamCode":"c17.1","gcamValue":84},{"gcamCode":"c17.10","gcamValue":36},{"gcamCode":"c17.11","gcamValue":45},{"gcamCode":"c17.12","gcamValue":15},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":7},{"gcamCode":"c17.15","gcamValue":11},{"gcamCode":"c17.16","gcamValue":18},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":22},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":32},{"gcamCode":"c17.25","gcamValue":10},{"gcamCode":"c17.27","gcamValue":32},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":14},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":6},{"gcamCode":"c17.31","gcamValue":26},{"gcamCode":"c17.32","gcamValue":15},{"gcamCode":"c17.33","gcamValue":14},{"gcamCode":"c17.34","gcamValue":16},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":12},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":4},{"gcamCode":"c17.39","gcamValue":10},{"gcamCode":"c17.4","gcamValue":75},{"gcamCode":"c17.40","gcamValue":9},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":20},{"gcamCode":"c17.43","gcamValue":16},{"gcamCode":"c17.5","gcamValue":69},{"gcamCode":"c17.6","gcamValue":9},{"gcamCode":"c17.7","gcamValue":47},{"gcamCode":"c17.8","gcamValue":26},{"gcamCode":"c17.9","gcamValue":11},{"gcamCode":"c18.165","gcamValue":1},{"gcamCode":"c18.180","gcamValue":3},{"gcamCode":"c18.193","gcamValue":4},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.345","gcamValue":2},{"gcamCode":"c2.1","gcamValue":9},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":10},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":49},{"gcamCode":"c2.106","gcamValue":6},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.109","gcamValue":5},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":8},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":18},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":12},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":83},{"gcamCode":"c2.12","gcamValue":9},{"gcamCode":"c2.120","gcamValue":4},{"gcamCode":"c2.121","gcamValue":22},{"gcamCode":"c2.122","gcamValue":11},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":5},{"gcamCode":"c2.125","gcamValue":28},{"gcamCode":"c2.126","gcamValue":13},{"gcamCode":"c2.127","gcamValue":35},{"gcamCode":"c2.128","gcamValue":15},{"gcamCode":"c2.129","gcamValue":19},{"gcamCode":"c2.13","gcamValue":2},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.131","gcamValue":8},{"gcamCode":"c2.133","gcamValue":9},{"gcamCode":"c2.135","gcamValue":7},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":20},{"gcamCode":"c2.141","gcamValue":10},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":29},{"gcamCode":"c2.144","gcamValue":6},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.146","gcamValue":5},{"gcamCode":"c2.147","gcamValue":66},{"gcamCode":"c2.148","gcamValue":34},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":20},{"gcamCode":"c2.150","gcamValue":2},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":7},{"gcamCode":"c2.153","gcamValue":8},{"gcamCode":"c2.154","gcamValue":10},{"gcamCode":"c2.155","gcamValue":33},{"gcamCode":"c2.156","gcamValue":10},{"gcamCode":"c2.157","gcamValue":27},{"gcamCode":"c2.158","gcamValue":25},{"gcamCode":"c2.159","gcamValue":5},{"gcamCode":"c2.160","gcamValue":16},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.167","gcamValue":2},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":7},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.171","gcamValue":2},{"gcamCode":"c2.172","gcamValue":9},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":5},{"gcamCode":"c2.177","gcamValue":11},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":9},{"gcamCode":"c2.18","gcamValue":9},{"gcamCode":"c2.180","gcamValue":9},{"gcamCode":"c2.181","gcamValue":11},{"gcamCode":"c2.183","gcamValue":11},{"gcamCode":"c2.185","gcamValue":74},{"gcamCode":"c2.186","gcamValue":7},{"gcamCode":"c2.187","gcamValue":16},{"gcamCode":"c2.188","gcamValue":3},{"gcamCode":"c2.189","gcamValue":3},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":2},{"gcamCode":"c2.192","gcamValue":6},{"gcamCode":"c2.193","gcamValue":19},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":25},{"gcamCode":"c2.196","gcamValue":8},{"gcamCode":"c2.197","gcamValue":7},{"gcamCode":"c2.198","gcamValue":28},{"gcamCode":"c2.199","gcamValue":8},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.203","gcamValue":17},{"gcamCode":"c2.204","gcamValue":29},{"gcamCode":"c2.205","gcamValue":6},{"gcamCode":"c2.206","gcamValue":5},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.209","gcamValue":7},{"gcamCode":"c2.210","gcamValue":36},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":8},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":5},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":13},{"gcamCode":"c2.26","gcamValue":15},{"gcamCode":"c2.27","gcamValue":15},{"gcamCode":"c2.28","gcamValue":6},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":15},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":8},{"gcamCode":"c2.34","gcamValue":17},{"gcamCode":"c2.35","gcamValue":15},{"gcamCode":"c2.36","gcamValue":13},{"gcamCode":"c2.37","gcamValue":15},{"gcamCode":"c2.39","gcamValue":47},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.42","gcamValue":8},{"gcamCode":"c2.44","gcamValue":11},{"gcamCode":"c2.45","gcamValue":10},{"gcamCode":"c2.46","gcamValue":21},{"gcamCode":"c2.47","gcamValue":10},{"gcamCode":"c2.48","gcamValue":6},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":16},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":6},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":14},{"gcamCode":"c2.64","gcamValue":4},{"gcamCode":"c2.68","gcamValue":7},{"gcamCode":"c2.7","gcamValue":2},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.73","gcamValue":6},{"gcamCode":"c2.75","gcamValue":48},{"gcamCode":"c2.76","gcamValue":214},{"gcamCode":"c2.77","gcamValue":14},{"gcamCode":"c2.78","gcamValue":39},{"gcamCode":"c2.79","gcamValue":6},{"gcamCode":"c2.80","gcamValue":48},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.82","gcamValue":11},{"gcamCode":"c2.83","gcamValue":4},{"gcamCode":"c2.84","gcamValue":5},{"gcamCode":"c2.86","gcamValue":9},{"gcamCode":"c2.88","gcamValue":10},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.90","gcamValue":5},{"gcamCode":"c2.93","gcamValue":10},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":53},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":16},{"gcamCode":"c2.99","gcamValue":9},{"gcamCode":"c25.11","gcamValue":3},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":10},{"gcamCode":"c3.2","gcamValue":28},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":15},{"gcamCode":"c35.31","gcamValue":14},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":15},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c39.11","gcamValue":2},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.16","gcamValue":1},{"gcamCode":"c39.17","gcamValue":7},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":17},{"gcamCode":"c39.34","gcamValue":4},{"gcamCode":"c39.36","gcamValue":9},{"gcamCode":"c39.37","gcamValue":19},{"gcamCode":"c39.38","gcamValue":4},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":18},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":7},{"gcamCode":"c39.6","gcamValue":5},{"gcamCode":"c39.7","gcamValue":3},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":9},{"gcamCode":"c40.6","gcamValue":2},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c41.1","gcamValue":13},{"gcamCode":"c5.10","gcamValue":25},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":50},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":12},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":3},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":31},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.35","gcamValue":13},{"gcamCode":"c5.36","gcamValue":20},{"gcamCode":"c5.40","gcamValue":32},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":9},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":6},{"gcamCode":"c5.46","gcamValue":63},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":6},{"gcamCode":"c5.49","gcamValue":42},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":38},{"gcamCode":"c5.51","gcamValue":31},{"gcamCode":"c5.52","gcamValue":55},{"gcamCode":"c5.53","gcamValue":27},{"gcamCode":"c5.54","gcamValue":11},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":9},{"gcamCode":"c5.58","gcamValue":8},{"gcamCode":"c5.59","gcamValue":4},{"gcamCode":"c5.6","gcamValue":13},{"gcamCode":"c5.60","gcamValue":22},{"gcamCode":"c5.61","gcamValue":33},{"gcamCode":"c5.62","gcamValue":167},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":5},{"gcamCode":"c5.9","gcamValue":24},{"gcamCode":"c6.1","gcamValue":6},{"gcamCode":"c6.2","gcamValue":8},{"gcamCode":"c6.4","gcamValue":15},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c7.1","gcamValue":13},{"gcamCode":"c7.2","gcamValue":27},{"gcamCode":"c8.1","gcamValue":3},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":10},{"gcamCode":"c8.36","gcamValue":4},{"gcamCode":"c8.37","gcamValue":7},{"gcamCode":"c8.38","gcamValue":3},{"gcamCode":"c8.4","gcamValue":12},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":10},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":2},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c9.1","gcamValue":11},{"gcamCode":"c9.10","gcamValue":8},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1002","gcamValue":2},{"gcamCode":"c9.1003","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":7},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":4},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.12","gcamValue":3},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.128","gcamValue":14},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.13","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":2},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.140","gcamValue":3},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.143","gcamValue":3},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.154","gcamValue":2},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":7},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":2},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":7},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":4},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.228","gcamValue":1},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.247","gcamValue":4},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":5},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.285","gcamValue":3},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.289","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":9},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.31","gcamValue":2},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.373","gcamValue":4},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.384","gcamValue":9},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":9},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.405","gcamValue":4},{"gcamCode":"c9.408","gcamValue":4},{"gcamCode":"c9.409","gcamValue":4},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.430","gcamValue":4},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.44","gcamValue":11},{"gcamCode":"c9.440","gcamValue":6},{"gcamCode":"c9.454","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":4},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":4},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":6},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":5},{"gcamCode":"c9.483","gcamValue":3},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.487","gcamValue":1},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.493","gcamValue":2},{"gcamCode":"c9.494","gcamValue":4},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":7},{"gcamCode":"c9.499","gcamValue":2},{"gcamCode":"c9.5","gcamValue":4},{"gcamCode":"c9.50","gcamValue":1},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":13},{"gcamCode":"c9.513","gcamValue":4},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":4},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.535","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":10},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":5},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.564","gcamValue":6},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":7},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":13},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.585","gcamValue":4},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":5},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.615","gcamValue":2},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":6},{"gcamCode":"c9.627","gcamValue":9},{"gcamCode":"c9.628","gcamValue":2},{"gcamCode":"c9.629","gcamValue":6},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":6},{"gcamCode":"c9.635","gcamValue":8},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.640","gcamValue":7},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":7},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":10},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":6},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":7},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":3},{"gcamCode":"c9.679","gcamValue":7},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.688","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.698","gcamValue":6},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":15},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.72","gcamValue":2},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.726","gcamValue":15},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":10},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":11},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.738","gcamValue":1},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":15},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":3},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.762","gcamValue":10},{"gcamCode":"c9.766","gcamValue":9},{"gcamCode":"c9.767","gcamValue":21},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.792","gcamValue":6},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":8},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.816","gcamValue":7},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.83","gcamValue":4},{"gcamCode":"c9.830","gcamValue":3},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":7},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":14},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.868","gcamValue":11},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.877","gcamValue":11},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.880","gcamValue":2},{"gcamCode":"c9.882","gcamValue":7},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":9},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.910","gcamValue":2},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.926","gcamValue":7},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":3},{"gcamCode":"c9.955","gcamValue":6},{"gcamCode":"c9.96","gcamValue":6},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.972","gcamValue":7},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.98","gcamValue":4},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.985","gcamValue":7},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.993","gcamValue":2},{"gcamCode":"c9.996","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.26769801980198},{"gcamCode":"v10.2","gcamValue":0.241564905719183},{"gcamCode":"v11.1","gcamValue":0.0736571428571429},{"gcamCode":"v19.1","gcamValue":6.180625},{"gcamCode":"v19.2","gcamValue":5.10625},{"gcamCode":"v19.3","gcamValue":5.365},{"gcamCode":"v19.4","gcamValue":6.055},{"gcamCode":"v19.5","gcamValue":5.081875},{"gcamCode":"v19.6","gcamValue":5.29875},{"gcamCode":"v19.7","gcamValue":6.299375},{"gcamCode":"v19.8","gcamValue":5.18375},{"gcamCode":"v19.9","gcamValue":5.419375},{"gcamCode":"v20.1","gcamValue":0.532},{"gcamCode":"v20.11","gcamValue":0.613666666666667},{"gcamCode":"v20.13","gcamValue":0.4314},{"gcamCode":"v20.14","gcamValue":-0.437},{"gcamCode":"v20.15","gcamValue":0.397081081081081},{"gcamCode":"v20.16","gcamValue":-0.2874},{"gcamCode":"v20.3","gcamValue":0.6462},{"gcamCode":"v20.5","gcamValue":0.6462},{"gcamCode":"v20.7","gcamValue":0.6635},{"gcamCode":"v20.9","gcamValue":0.646142857142857},{"gcamCode":"v21.1","gcamValue":5.50094405594406},{"gcamCode":"v26.1","gcamValue":1.21666666666667}]https://www.cricbuzz.com/a/img/v1/600x400/i1/c170054/ashwin-will-feature-in-six-of.jpg[""][""]["https://youtube.com/channel/UCSRQXk5yErn4e14vN76upOw"][][{"name":"James Pattinson","charOffset":65},{"name":"Cricbuzz Staff","charOffset":87},{"name":"James Pattinson","charOffset":519},{"name":"Trent Bridge","charOffset":875},{"name":"County Championship","charOffset":930},{"name":"Mick Newell","charOffset":1523},{"name":"Ajinkya Rahane","charOffset":2133}][{"amount":6,"amountType":"of the seven remaining","charOffset":143},{"amount":7,"amountType":"remaining games for the","charOffset":153},{"amount":6,"amountType":"of the seven remaining","charOffset":207},{"amount":7,"amountType":"remaining games for the","charOffset":217},{"amount":6,"amountType":"out of their final","charOffset":511},{"amount":20,"amountType":"wickets at an average","charOffset":977},{"amount":214,"amountType":"runs at an average","charOffset":1050}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.cricbuzz.com/cricket-news/author/cricbuzz-staff/1</PAGE_LINKS><PAGE_ALTURL_AMP>//m.cricbuzz.com/amp/cricket-news/108109/nottinghamshire-sign-ashwin-as-replacement-for-james-pattinson</PAGE_ALTURL_AMP><PAGE_ALTURL_MOBILE>//m.cricbuzz.com/cricket-news/108109/nottinghamshire-sign-ashwin-as-replacement-for-james-pattinson</PAGE_ALTURL_MOBILE>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBanimalforum.comhttp://www.animalforum.com/list.php/author/14529-dicapslo?s=2692723e5b688bd68431264d3c6f1006[][][""][][][][""][]["welcome to animal forum"][{"organisation":"Welcome To Animal Forum","charOffset":23}]{"tone":5.263158,"positiveScore":5.263158,"negativeScore":0,"polarity":5.263158,"activityReferenceDensity":33.333332,"selfGroupReferenceDensity":3.508772,"wordCount":49}[][{"gcamCode":"wc","gcamValue":49},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":4},{"gcamCode":"c12.5","gcamValue":4},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":6},{"gcamCode":"c14.1","gcamValue":6},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":4},{"gcamCode":"c14.2","gcamValue":5},{"gcamCode":"c14.3","gcamValue":2},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":5},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":2},{"gcamCode":"c16.109","gcamValue":3},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":12},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":2},{"gcamCode":"c16.116","gcamValue":1},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":3},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":4},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.125","gcamValue":2},{"gcamCode":"c16.126","gcamValue":5},{"gcamCode":"c16.127","gcamValue":5},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":5},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":4},{"gcamCode":"c16.134","gcamValue":5},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.140","gcamValue":2},{"gcamCode":"c16.145","gcamValue":3},{"gcamCode":"c16.146","gcamValue":9},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.153","gcamValue":5},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.161","gcamValue":8},{"gcamCode":"c16.162","gcamValue":2},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.164","gcamValue":2},{"gcamCode":"c16.2","gcamValue":6},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":12},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.31","gcamValue":6},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":3},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":4},{"gcamCode":"c16.37","gcamValue":8},{"gcamCode":"c16.38","gcamValue":6},{"gcamCode":"c16.4","gcamValue":7},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.47","gcamValue":13},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.52","gcamValue":4},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":28},{"gcamCode":"c16.58","gcamValue":3},{"gcamCode":"c16.6","gcamValue":11},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":3},{"gcamCode":"c16.65","gcamValue":2},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.70","gcamValue":2},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.84","gcamValue":6},{"gcamCode":"c16.87","gcamValue":7},{"gcamCode":"c16.88","gcamValue":7},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":6},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":2},{"gcamCode":"c16.96","gcamValue":3},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c17.1","gcamValue":14},{"gcamCode":"c17.10","gcamValue":4},{"gcamCode":"c17.11","gcamValue":14},{"gcamCode":"c17.12","gcamValue":1},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.15","gcamValue":5},{"gcamCode":"c17.16","gcamValue":2},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":3},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.24","gcamValue":6},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":7},{"gcamCode":"c17.29","gcamValue":2},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":6},{"gcamCode":"c17.32","gcamValue":7},{"gcamCode":"c17.33","gcamValue":11},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.37","gcamValue":5},{"gcamCode":"c17.39","gcamValue":5},{"gcamCode":"c17.4","gcamValue":8},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":6},{"gcamCode":"c17.42","gcamValue":10},{"gcamCode":"c17.43","gcamValue":8},{"gcamCode":"c17.5","gcamValue":11},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":13},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c2.1","gcamValue":1},{"gcamCode":"c2.10","gcamValue":3},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.104","gcamValue":5},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.119","gcamValue":19},{"gcamCode":"c2.12","gcamValue":2},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":9},{"gcamCode":"c2.125","gcamValue":4},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.128","gcamValue":1},{"gcamCode":"c2.129","gcamValue":3},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.143","gcamValue":4},{"gcamCode":"c2.147","gcamValue":10},{"gcamCode":"c2.148","gcamValue":5},{"gcamCode":"c2.15","gcamValue":4},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":5},{"gcamCode":"c2.156","gcamValue":2},{"gcamCode":"c2.157","gcamValue":5},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":2},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":3},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":2},{"gcamCode":"c2.183","gcamValue":2},{"gcamCode":"c2.185","gcamValue":20},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":5},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":5},{"gcamCode":"c2.195","gcamValue":4},{"gcamCode":"c2.197","gcamValue":1},{"gcamCode":"c2.198","gcamValue":8},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":4},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.210","gcamValue":10},{"gcamCode":"c2.214","gcamValue":3},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.228","gcamValue":3},{"gcamCode":"c2.23","gcamValue":1},{"gcamCode":"c2.25","gcamValue":5},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":3},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.34","gcamValue":1},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":7},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":5},{"gcamCode":"c2.46","gcamValue":4},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.52","gcamValue":5},{"gcamCode":"c2.54","gcamValue":5},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.7","gcamValue":3},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":9},{"gcamCode":"c2.76","gcamValue":38},{"gcamCode":"c2.77","gcamValue":4},{"gcamCode":"c2.78","gcamValue":13},{"gcamCode":"c2.80","gcamValue":14},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":9},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":1},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.13","gcamValue":2},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.31","gcamValue":1},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":2},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":2},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":3},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":8},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":2},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.35","gcamValue":4},{"gcamCode":"c5.36","gcamValue":4},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":7},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":10},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":4},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":3},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":5},{"gcamCode":"c5.53","gcamValue":4},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.57","gcamValue":3},{"gcamCode":"c5.6","gcamValue":2},{"gcamCode":"c5.60","gcamValue":3},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":26},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":2},{"gcamCode":"c5.9","gcamValue":3},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.37","gcamValue":2},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c9.1","gcamValue":2},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.11","gcamValue":2},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.208","gcamValue":2},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.229","gcamValue":3},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.377","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.428","gcamValue":2},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.578","gcamValue":2},{"gcamCode":"c9.579","gcamValue":2},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.746","gcamValue":2},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.239508928571429},{"gcamCode":"v10.2","gcamValue":0.220238095238095},{"gcamCode":"v11.1","gcamValue":0.177821845238095},{"gcamCode":"v19.1","gcamValue":6.41666666666667},{"gcamCode":"v19.2","gcamValue":5.27333333333333},{"gcamCode":"v19.3","gcamValue":6.04833333333333},{"gcamCode":"v19.4","gcamValue":6.08666666666667},{"gcamCode":"v19.5","gcamValue":5.36},{"gcamCode":"v19.6","gcamValue":5.92666666666667},{"gcamCode":"v19.7","gcamValue":6.78},{"gcamCode":"v19.8","gcamValue":5.2},{"gcamCode":"v19.9","gcamValue":6.19666666666667},{"gcamCode":"v20.11","gcamValue":0.8125},{"gcamCode":"v20.13","gcamValue":0.427166666666667},{"gcamCode":"v20.15","gcamValue":0.340333333333333},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v20.5","gcamValue":0.875},{"gcamCode":"v20.7","gcamValue":0.8125},{"gcamCode":"v20.9","gcamValue":0.8125},{"gcamCode":"v21.1","gcamValue":5.74170212765957},{"gcamCode":"v26.1","gcamValue":2.4875}]https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash3/c10.10.160.160/164418_143855522442517_660289714_a.png[""][""][""][][][]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.animalforum.com/list.php/author/faq.php??s=cbef11cf4ee0e4607d8ae81995af0df5;http://www.animalforum.com/list.php/author/register.php??s=cbef11cf4ee0e4607d8ae81995af0df5</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBiheart.comhttps://961srs.iheart.com/featured/suzanne-and-greg-in-the-morning/content/2019-05-23-what-teachers-really-want-for-end-of-year-gifts/[][]["EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT","TAX_FNCACT_STUDENTS","TAX_FNCACT_TEACHER","TAX_FNCACT_PRINCIPAL","TAX_FNCACT_STUDENT"][{"theme":"TAX_FNCACT_PRINCIPAL","charOffset":1193},{"theme":"TAX_FNCACT_STUDENTS","charOffset":224},{"theme":"TAX_FNCACT_STUDENT","charOffset":1390},{"theme":"TAX_FNCACT_STUDENT","charOffset":1583},{"theme":"EDUCATION","charOffset":21},{"theme":"EDUCATION","charOffset":364},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":21},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":364},{"theme":"TAX_FNCACT_TEACHER","charOffset":951}][][][""][]["starbucks"][{"organisation":"Starbucks","charOffset":595},{"organisation":"Starbucks","charOffset":1436}]{"tone":7.7419353,"positiveScore":8.387096,"negativeScore":0.6451613,"polarity":9.032258,"activityReferenceDensity":26.451612,"selfGroupReferenceDensity":1.6129032,"wordCount":277}[][{"gcamCode":"wc","gcamValue":277},{"gcamCode":"c1.1","gcamValue":1},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":39},{"gcamCode":"c12.10","gcamValue":25},{"gcamCode":"c12.12","gcamValue":4},{"gcamCode":"c12.13","gcamValue":13},{"gcamCode":"c12.14","gcamValue":11},{"gcamCode":"c12.3","gcamValue":9},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":26},{"gcamCode":"c12.7","gcamValue":13},{"gcamCode":"c12.8","gcamValue":21},{"gcamCode":"c12.9","gcamValue":34},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":28},{"gcamCode":"c14.10","gcamValue":15},{"gcamCode":"c14.11","gcamValue":31},{"gcamCode":"c14.2","gcamValue":19},{"gcamCode":"c14.3","gcamValue":26},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":46},{"gcamCode":"c14.6","gcamValue":4},{"gcamCode":"c14.7","gcamValue":9},{"gcamCode":"c14.8","gcamValue":3},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":2},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.116","gcamValue":3},{"gcamCode":"c15.120","gcamValue":2},{"gcamCode":"c15.122","gcamValue":1},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.139","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.173","gcamValue":3},{"gcamCode":"c15.176","gcamValue":4},{"gcamCode":"c15.177","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.179","gcamValue":1},{"gcamCode":"c15.18","gcamValue":3},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":2},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.226","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.256","gcamValue":2},{"gcamCode":"c15.26","gcamValue":2},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.279","gcamValue":1},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.43","gcamValue":3},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.92","gcamValue":2},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":6},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.106","gcamValue":14},{"gcamCode":"c16.109","gcamValue":29},{"gcamCode":"c16.110","gcamValue":54},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":22},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":5},{"gcamCode":"c16.117","gcamValue":17},{"gcamCode":"c16.118","gcamValue":14},{"gcamCode":"c16.12","gcamValue":43},{"gcamCode":"c16.120","gcamValue":21},{"gcamCode":"c16.121","gcamValue":11},{"gcamCode":"c16.122","gcamValue":13},{"gcamCode":"c16.123","gcamValue":2},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":27},{"gcamCode":"c16.126","gcamValue":20},{"gcamCode":"c16.127","gcamValue":29},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":40},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":13},{"gcamCode":"c16.134","gcamValue":36},{"gcamCode":"c16.138","gcamValue":25},{"gcamCode":"c16.139","gcamValue":13},{"gcamCode":"c16.140","gcamValue":12},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":17},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.147","gcamValue":3},{"gcamCode":"c16.150","gcamValue":2},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":20},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.157","gcamValue":9},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":37},{"gcamCode":"c16.16","gcamValue":9},{"gcamCode":"c16.161","gcamValue":24},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":22},{"gcamCode":"c16.164","gcamValue":10},{"gcamCode":"c16.18","gcamValue":8},{"gcamCode":"c16.19","gcamValue":6},{"gcamCode":"c16.2","gcamValue":17},{"gcamCode":"c16.21","gcamValue":7},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":8},{"gcamCode":"c16.26","gcamValue":40},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":5},{"gcamCode":"c16.31","gcamValue":22},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":22},{"gcamCode":"c16.35","gcamValue":21},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":29},{"gcamCode":"c16.38","gcamValue":5},{"gcamCode":"c16.4","gcamValue":25},{"gcamCode":"c16.41","gcamValue":14},{"gcamCode":"c16.45","gcamValue":17},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":62},{"gcamCode":"c16.5","gcamValue":4},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":12},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":173},{"gcamCode":"c16.58","gcamValue":18},{"gcamCode":"c16.6","gcamValue":39},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.62","gcamValue":14},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":5},{"gcamCode":"c16.65","gcamValue":8},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":19},{"gcamCode":"c16.69","gcamValue":13},{"gcamCode":"c16.7","gcamValue":4},{"gcamCode":"c16.70","gcamValue":5},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":14},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":8},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.84","gcamValue":17},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":21},{"gcamCode":"c16.88","gcamValue":54},{"gcamCode":"c16.89","gcamValue":13},{"gcamCode":"c16.90","gcamValue":13},{"gcamCode":"c16.91","gcamValue":13},{"gcamCode":"c16.92","gcamValue":23},{"gcamCode":"c16.94","gcamValue":36},{"gcamCode":"c16.95","gcamValue":18},{"gcamCode":"c16.96","gcamValue":12},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":30},{"gcamCode":"c17.1","gcamValue":75},{"gcamCode":"c17.10","gcamValue":44},{"gcamCode":"c17.11","gcamValue":55},{"gcamCode":"c17.12","gcamValue":7},{"gcamCode":"c17.13","gcamValue":10},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":10},{"gcamCode":"c17.16","gcamValue":11},{"gcamCode":"c17.18","gcamValue":3},{"gcamCode":"c17.19","gcamValue":26},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":18},{"gcamCode":"c17.24","gcamValue":22},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":26},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":20},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":16},{"gcamCode":"c17.32","gcamValue":22},{"gcamCode":"c17.33","gcamValue":19},{"gcamCode":"c17.34","gcamValue":16},{"gcamCode":"c17.35","gcamValue":15},{"gcamCode":"c17.36","gcamValue":17},{"gcamCode":"c17.37","gcamValue":16},{"gcamCode":"c17.38","gcamValue":10},{"gcamCode":"c17.39","gcamValue":15},{"gcamCode":"c17.4","gcamValue":72},{"gcamCode":"c17.40","gcamValue":10},{"gcamCode":"c17.41","gcamValue":22},{"gcamCode":"c17.42","gcamValue":20},{"gcamCode":"c17.43","gcamValue":16},{"gcamCode":"c17.5","gcamValue":59},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":44},{"gcamCode":"c17.8","gcamValue":32},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.147","gcamValue":7},{"gcamCode":"c18.193","gcamValue":5},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c2.1","gcamValue":17},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":9},{"gcamCode":"c2.102","gcamValue":8},{"gcamCode":"c2.103","gcamValue":8},{"gcamCode":"c2.104","gcamValue":60},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.11","gcamValue":10},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.113","gcamValue":6},{"gcamCode":"c2.114","gcamValue":19},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":19},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":87},{"gcamCode":"c2.12","gcamValue":22},{"gcamCode":"c2.121","gcamValue":41},{"gcamCode":"c2.122","gcamValue":11},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":33},{"gcamCode":"c2.126","gcamValue":14},{"gcamCode":"c2.127","gcamValue":43},{"gcamCode":"c2.128","gcamValue":13},{"gcamCode":"c2.129","gcamValue":4},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":7},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.135","gcamValue":8},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":33},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":5},{"gcamCode":"c2.143","gcamValue":18},{"gcamCode":"c2.144","gcamValue":13},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.146","gcamValue":12},{"gcamCode":"c2.147","gcamValue":35},{"gcamCode":"c2.148","gcamValue":57},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":23},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.153","gcamValue":14},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":47},{"gcamCode":"c2.156","gcamValue":16},{"gcamCode":"c2.157","gcamValue":43},{"gcamCode":"c2.158","gcamValue":37},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":21},{"gcamCode":"c2.162","gcamValue":4},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.167","gcamValue":2},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":10},{"gcamCode":"c2.17","gcamValue":4},{"gcamCode":"c2.170","gcamValue":13},{"gcamCode":"c2.173","gcamValue":10},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":23},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":16},{"gcamCode":"c2.18","gcamValue":13},{"gcamCode":"c2.180","gcamValue":13},{"gcamCode":"c2.181","gcamValue":20},{"gcamCode":"c2.183","gcamValue":20},{"gcamCode":"c2.185","gcamValue":78},{"gcamCode":"c2.186","gcamValue":12},{"gcamCode":"c2.187","gcamValue":30},{"gcamCode":"c2.188","gcamValue":16},{"gcamCode":"c2.189","gcamValue":16},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":12},{"gcamCode":"c2.192","gcamValue":10},{"gcamCode":"c2.193","gcamValue":12},{"gcamCode":"c2.195","gcamValue":39},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":7},{"gcamCode":"c2.198","gcamValue":32},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.203","gcamValue":21},{"gcamCode":"c2.204","gcamValue":27},{"gcamCode":"c2.205","gcamValue":17},{"gcamCode":"c2.206","gcamValue":7},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.209","gcamValue":9},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":33},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":26},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":6},{"gcamCode":"c2.221","gcamValue":20},{"gcamCode":"c2.223","gcamValue":20},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":14},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":1},{"gcamCode":"c2.25","gcamValue":27},{"gcamCode":"c2.26","gcamValue":19},{"gcamCode":"c2.27","gcamValue":19},{"gcamCode":"c2.28","gcamValue":6},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":14},{"gcamCode":"c2.31","gcamValue":23},{"gcamCode":"c2.32","gcamValue":5},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":19},{"gcamCode":"c2.35","gcamValue":16},{"gcamCode":"c2.36","gcamValue":11},{"gcamCode":"c2.37","gcamValue":15},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":52},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.44","gcamValue":15},{"gcamCode":"c2.45","gcamValue":20},{"gcamCode":"c2.46","gcamValue":40},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":11},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":5},{"gcamCode":"c2.52","gcamValue":30},{"gcamCode":"c2.53","gcamValue":3},{"gcamCode":"c2.54","gcamValue":33},{"gcamCode":"c2.55","gcamValue":5},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.57","gcamValue":15},{"gcamCode":"c2.58","gcamValue":14},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":15},{"gcamCode":"c2.64","gcamValue":8},{"gcamCode":"c2.65","gcamValue":7},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":5},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":12},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":52},{"gcamCode":"c2.76","gcamValue":215},{"gcamCode":"c2.77","gcamValue":23},{"gcamCode":"c2.78","gcamValue":70},{"gcamCode":"c2.79","gcamValue":15},{"gcamCode":"c2.80","gcamValue":39},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.82","gcamValue":27},{"gcamCode":"c2.83","gcamValue":7},{"gcamCode":"c2.84","gcamValue":9},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":20},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":11},{"gcamCode":"c2.90","gcamValue":12},{"gcamCode":"c2.91","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":9},{"gcamCode":"c2.95","gcamValue":58},{"gcamCode":"c2.98","gcamValue":16},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c3.1","gcamValue":11},{"gcamCode":"c3.2","gcamValue":34},{"gcamCode":"c35.1","gcamValue":8},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.13","gcamValue":4},{"gcamCode":"c35.15","gcamValue":9},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":20},{"gcamCode":"c35.32","gcamValue":14},{"gcamCode":"c35.33","gcamValue":5},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c35.6","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":2},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.15","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.2","gcamValue":10},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.3","gcamValue":15},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":13},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.23","gcamValue":13},{"gcamCode":"c4.8","gcamValue":4},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":8},{"gcamCode":"c5.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":9},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":31},{"gcamCode":"c5.13","gcamValue":2},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":6},{"gcamCode":"c5.26","gcamValue":11},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":10},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":45},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":22},{"gcamCode":"c5.36","gcamValue":27},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.39","gcamValue":3},{"gcamCode":"c5.4","gcamValue":4},{"gcamCode":"c5.40","gcamValue":28},{"gcamCode":"c5.43","gcamValue":12},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":30},{"gcamCode":"c5.47","gcamValue":10},{"gcamCode":"c5.48","gcamValue":4},{"gcamCode":"c5.49","gcamValue":44},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":47},{"gcamCode":"c5.51","gcamValue":29},{"gcamCode":"c5.52","gcamValue":59},{"gcamCode":"c5.53","gcamValue":19},{"gcamCode":"c5.54","gcamValue":26},{"gcamCode":"c5.55","gcamValue":7},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":16},{"gcamCode":"c5.6","gcamValue":23},{"gcamCode":"c5.60","gcamValue":26},{"gcamCode":"c5.61","gcamValue":52},{"gcamCode":"c5.62","gcamValue":149},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":16},{"gcamCode":"c5.9","gcamValue":19},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":8},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":12},{"gcamCode":"c7.2","gcamValue":30},{"gcamCode":"c8.1","gcamValue":7},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.24","gcamValue":1},{"gcamCode":"c8.25","gcamValue":3},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":16},{"gcamCode":"c8.38","gcamValue":11},{"gcamCode":"c8.4","gcamValue":13},{"gcamCode":"c8.42","gcamValue":15},{"gcamCode":"c8.43","gcamValue":15},{"gcamCode":"c8.5","gcamValue":4},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c9.1","gcamValue":18},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":9},{"gcamCode":"c9.113","gcamValue":5},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":16},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":4},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":6},{"gcamCode":"c9.145","gcamValue":7},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.158","gcamValue":12},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":4},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":10},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.175","gcamValue":3},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.205","gcamValue":4},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":6},{"gcamCode":"c9.212","gcamValue":3},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.259","gcamValue":2},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.262","gcamValue":8},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":9},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.28","gcamValue":3},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":2},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":15},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.31","gcamValue":2},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.319","gcamValue":2},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.327","gcamValue":3},{"gcamCode":"c9.33","gcamValue":9},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":8},{"gcamCode":"c9.35","gcamValue":7},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":2},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":6},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.409","gcamValue":3},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.468","gcamValue":5},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.474","gcamValue":6},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":7},{"gcamCode":"c9.485","gcamValue":2},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":5},{"gcamCode":"c9.498","gcamValue":2},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":7},{"gcamCode":"c9.511","gcamValue":10},{"gcamCode":"c9.513","gcamValue":23},{"gcamCode":"c9.517","gcamValue":4},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.521","gcamValue":5},{"gcamCode":"c9.522","gcamValue":7},{"gcamCode":"c9.523","gcamValue":4},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.533","gcamValue":2},{"gcamCode":"c9.537","gcamValue":5},{"gcamCode":"c9.539","gcamValue":3},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":4},{"gcamCode":"c9.546","gcamValue":6},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.561","gcamValue":3},{"gcamCode":"c9.562","gcamValue":3},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":3},{"gcamCode":"c9.566","gcamValue":5},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.568","gcamValue":3},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":10},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":6},{"gcamCode":"c9.576","gcamValue":7},{"gcamCode":"c9.579","gcamValue":16},{"gcamCode":"c9.581","gcamValue":4},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.588","gcamValue":6},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":4},{"gcamCode":"c9.617","gcamValue":6},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.621","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":7},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.646","gcamValue":8},{"gcamCode":"c9.648","gcamValue":10},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":14},{"gcamCode":"c9.654","gcamValue":12},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":5},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":6},{"gcamCode":"c9.663","gcamValue":5},{"gcamCode":"c9.664","gcamValue":10},{"gcamCode":"c9.665","gcamValue":4},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":9},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":8},{"gcamCode":"c9.671","gcamValue":9},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":9},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":4},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":13},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.700","gcamValue":2},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.72","gcamValue":2},{"gcamCode":"c9.720","gcamValue":3},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":25},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":15},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.744","gcamValue":8},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":6},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":14},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.767","gcamValue":20},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":8},{"gcamCode":"c9.795","gcamValue":2},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.805","gcamValue":1},{"gcamCode":"c9.806","gcamValue":10},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":12},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":8},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.819","gcamValue":2},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.83","gcamValue":12},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":6},{"gcamCode":"c9.837","gcamValue":6},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.847","gcamValue":4},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":3},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":18},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":14},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.882","gcamValue":4},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.888","gcamValue":2},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.908","gcamValue":10},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.911","gcamValue":6},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":5},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":8},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.937","gcamValue":3},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.945","gcamValue":6},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":13},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":5},{"gcamCode":"c9.985","gcamValue":4},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.987","gcamValue":3},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.278735632183908},{"gcamCode":"v10.2","gcamValue":0.208198883161512},{"gcamCode":"v11.1","gcamValue":0.129780787671233},{"gcamCode":"v19.1","gcamValue":6.57595238095238},{"gcamCode":"v19.2","gcamValue":5.21761904761905},{"gcamCode":"v19.3","gcamValue":5.72380952380952},{"gcamCode":"v19.4","gcamValue":6.37214285714286},{"gcamCode":"v19.5","gcamValue":5.07238095238095},{"gcamCode":"v19.6","gcamValue":5.72595238095238},{"gcamCode":"v19.7","gcamValue":6.71952380952381},{"gcamCode":"v19.8","gcamValue":5.34142857142857},{"gcamCode":"v19.9","gcamValue":5.70761904761905},{"gcamCode":"v20.1","gcamValue":0.49925},{"gcamCode":"v20.11","gcamValue":0.646333333333333},{"gcamCode":"v20.13","gcamValue":0.449354838709677},{"gcamCode":"v20.14","gcamValue":-0.327666666666667},{"gcamCode":"v20.15","gcamValue":0.408461538461539},{"gcamCode":"v20.16","gcamValue":-0.279125},{"gcamCode":"v20.3","gcamValue":0.5795},{"gcamCode":"v20.5","gcamValue":0.698833333333333},{"gcamCode":"v20.7","gcamValue":0.706142857142857},{"gcamCode":"v20.9","gcamValue":0.6756},{"gcamCode":"v21.1","gcamValue":5.74689393939394},{"gcamCode":"v26.1","gcamValue":1.85}]https://i.iheart.com/v3/re/new_assets/5cb5a47e92db394051477db0[""][""][""][{"charLength":242,"verb":"","quote":"My favorites are handwritten notes of thanks from the kids or parents. I keep them under my desk calendar to read on the tough days. It also awesome when the parent sends me a POSITIVE email and copies my principal on it! That means so much!","charOffset":1283}][{"name":"Huffington Post","charOffset":294}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://Teacherspayteachers.com/</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190523102800</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBhillsdale.nethttps://www.hillsdale.net/news/20190522/late-runs-cost-jonesville-in-doubleheader-sweep-by-hudson[][][""][][][]["emily gier","melissa jones","kenzie wyatt","lexi hill","flesia borck","anna stein","bryanna borck","haley jones","ellie ackerson","erika grondin","cristen morrison","mackenzie baker","trysten angel"][{"person":"Emily Gier","charOffset":2184},{"person":"Melissa Jones","charOffset":1640},{"person":"Kenzie Wyatt","charOffset":674},{"person":"Lexi Hill","charOffset":989},{"person":"Flesia Borck","charOffset":1282},{"person":"Anna Stein","charOffset":1782},{"person":"Bryanna Borck","charOffset":1834},{"person":"Haley Jones","charOffset":1818},{"person":"Ellie Ackerson","charOffset":1163},{"person":"Erika Grondin","charOffset":1200},{"person":"Cristen Morrison","charOffset":840},{"person":"Mackenzie Baker","charOffset":659},{"person":"Trysten Angel","charOffset":1851}]["morrison","hanover-horton high school"][{"organisation":"Morrison","charOffset":840},{"organisation":"Morrison","charOffset":1001},{"organisation":"Hanover-Horton High School","charOffset":2753}]{"tone":-0.6861063,"positiveScore":1.0291595,"negativeScore":1.7152659,"polarity":2.7444253,"activityReferenceDensity":19.382504,"selfGroupReferenceDensity":0,"wordCount":520}[][{"gcamCode":"wc","gcamValue":520},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":15},{"gcamCode":"c12.10","gcamValue":44},{"gcamCode":"c12.12","gcamValue":27},{"gcamCode":"c12.13","gcamValue":3},{"gcamCode":"c12.14","gcamValue":14},{"gcamCode":"c12.3","gcamValue":7},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":12},{"gcamCode":"c12.7","gcamValue":30},{"gcamCode":"c12.8","gcamValue":4},{"gcamCode":"c12.9","gcamValue":25},{"gcamCode":"c13.11","gcamValue":2},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.6","gcamValue":4},{"gcamCode":"c14.1","gcamValue":12},{"gcamCode":"c14.10","gcamValue":5},{"gcamCode":"c14.11","gcamValue":49},{"gcamCode":"c14.2","gcamValue":30},{"gcamCode":"c14.3","gcamValue":18},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":33},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":6},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.134","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":2},{"gcamCode":"c15.172","gcamValue":2},{"gcamCode":"c15.224","gcamValue":1},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":3},{"gcamCode":"c16.100","gcamValue":13},{"gcamCode":"c16.101","gcamValue":8},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":4},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":39},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":7},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":13},{"gcamCode":"c16.117","gcamValue":8},{"gcamCode":"c16.118","gcamValue":19},{"gcamCode":"c16.119","gcamValue":3},{"gcamCode":"c16.12","gcamValue":35},{"gcamCode":"c16.120","gcamValue":89},{"gcamCode":"c16.121","gcamValue":34},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":36},{"gcamCode":"c16.126","gcamValue":8},{"gcamCode":"c16.127","gcamValue":22},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":44},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":6},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":15},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.137","gcamValue":3},{"gcamCode":"c16.138","gcamValue":8},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.143","gcamValue":8},{"gcamCode":"c16.145","gcamValue":33},{"gcamCode":"c16.146","gcamValue":100},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":11},{"gcamCode":"c16.155","gcamValue":7},{"gcamCode":"c16.156","gcamValue":15},{"gcamCode":"c16.157","gcamValue":10},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":22},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":28},{"gcamCode":"c16.162","gcamValue":16},{"gcamCode":"c16.163","gcamValue":52},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.165","gcamValue":6},{"gcamCode":"c16.167","gcamValue":1},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.19","gcamValue":16},{"gcamCode":"c16.2","gcamValue":32},{"gcamCode":"c16.20","gcamValue":10},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":60},{"gcamCode":"c16.23","gcamValue":7},{"gcamCode":"c16.24","gcamValue":22},{"gcamCode":"c16.26","gcamValue":62},{"gcamCode":"c16.29","gcamValue":19},{"gcamCode":"c16.3","gcamValue":6},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":21},{"gcamCode":"c16.32","gcamValue":31},{"gcamCode":"c16.33","gcamValue":38},{"gcamCode":"c16.34","gcamValue":3},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":22},{"gcamCode":"c16.38","gcamValue":25},{"gcamCode":"c16.39","gcamValue":10},{"gcamCode":"c16.4","gcamValue":14},{"gcamCode":"c16.41","gcamValue":8},{"gcamCode":"c16.42","gcamValue":3},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.46","gcamValue":9},{"gcamCode":"c16.47","gcamValue":42},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":4},{"gcamCode":"c16.51","gcamValue":7},{"gcamCode":"c16.52","gcamValue":20},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":184},{"gcamCode":"c16.58","gcamValue":21},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":59},{"gcamCode":"c16.60","gcamValue":5},{"gcamCode":"c16.61","gcamValue":4},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":16},{"gcamCode":"c16.65","gcamValue":30},{"gcamCode":"c16.66","gcamValue":11},{"gcamCode":"c16.68","gcamValue":38},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.70","gcamValue":17},{"gcamCode":"c16.71","gcamValue":15},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":5},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":10},{"gcamCode":"c16.76","gcamValue":19},{"gcamCode":"c16.78","gcamValue":7},{"gcamCode":"c16.79","gcamValue":4},{"gcamCode":"c16.8","gcamValue":4},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":2},{"gcamCode":"c16.82","gcamValue":18},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":28},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":38},{"gcamCode":"c16.88","gcamValue":42},{"gcamCode":"c16.89","gcamValue":16},{"gcamCode":"c16.9","gcamValue":4},{"gcamCode":"c16.90","gcamValue":14},{"gcamCode":"c16.91","gcamValue":31},{"gcamCode":"c16.92","gcamValue":38},{"gcamCode":"c16.93","gcamValue":5},{"gcamCode":"c16.94","gcamValue":29},{"gcamCode":"c16.95","gcamValue":60},{"gcamCode":"c16.96","gcamValue":27},{"gcamCode":"c16.98","gcamValue":24},{"gcamCode":"c17.1","gcamValue":132},{"gcamCode":"c17.10","gcamValue":39},{"gcamCode":"c17.11","gcamValue":33},{"gcamCode":"c17.12","gcamValue":36},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":26},{"gcamCode":"c17.15","gcamValue":15},{"gcamCode":"c17.16","gcamValue":14},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":14},{"gcamCode":"c17.19","gcamValue":23},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":12},{"gcamCode":"c17.23","gcamValue":12},{"gcamCode":"c17.24","gcamValue":82},{"gcamCode":"c17.25","gcamValue":4},{"gcamCode":"c17.26","gcamValue":9},{"gcamCode":"c17.27","gcamValue":43},{"gcamCode":"c17.28","gcamValue":6},{"gcamCode":"c17.29","gcamValue":37},{"gcamCode":"c17.3","gcamValue":3},{"gcamCode":"c17.30","gcamValue":5},{"gcamCode":"c17.31","gcamValue":20},{"gcamCode":"c17.32","gcamValue":8},{"gcamCode":"c17.33","gcamValue":19},{"gcamCode":"c17.34","gcamValue":27},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":32},{"gcamCode":"c17.37","gcamValue":23},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":25},{"gcamCode":"c17.4","gcamValue":119},{"gcamCode":"c17.40","gcamValue":5},{"gcamCode":"c17.41","gcamValue":16},{"gcamCode":"c17.42","gcamValue":29},{"gcamCode":"c17.43","gcamValue":14},{"gcamCode":"c17.5","gcamValue":150},{"gcamCode":"c17.6","gcamValue":16},{"gcamCode":"c17.7","gcamValue":64},{"gcamCode":"c17.8","gcamValue":34},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.133","gcamValue":1},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.3","gcamValue":4},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.345","gcamValue":5},{"gcamCode":"c18.66","gcamValue":4},{"gcamCode":"c2.1","gcamValue":13},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":16},{"gcamCode":"c2.104","gcamValue":55},{"gcamCode":"c2.109","gcamValue":5},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.114","gcamValue":21},{"gcamCode":"c2.116","gcamValue":19},{"gcamCode":"c2.118","gcamValue":2},{"gcamCode":"c2.119","gcamValue":92},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.120","gcamValue":5},{"gcamCode":"c2.121","gcamValue":13},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":19},{"gcamCode":"c2.126","gcamValue":3},{"gcamCode":"c2.127","gcamValue":16},{"gcamCode":"c2.128","gcamValue":13},{"gcamCode":"c2.129","gcamValue":6},{"gcamCode":"c2.130","gcamValue":6},{"gcamCode":"c2.131","gcamValue":7},{"gcamCode":"c2.135","gcamValue":8},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.139","gcamValue":6},{"gcamCode":"c2.14","gcamValue":40},{"gcamCode":"c2.141","gcamValue":11},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":20},{"gcamCode":"c2.144","gcamValue":8},{"gcamCode":"c2.145","gcamValue":7},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":108},{"gcamCode":"c2.148","gcamValue":9},{"gcamCode":"c2.149","gcamValue":4},{"gcamCode":"c2.15","gcamValue":11},{"gcamCode":"c2.151","gcamValue":11},{"gcamCode":"c2.152","gcamValue":16},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":35},{"gcamCode":"c2.156","gcamValue":16},{"gcamCode":"c2.157","gcamValue":32},{"gcamCode":"c2.158","gcamValue":18},{"gcamCode":"c2.16","gcamValue":1},{"gcamCode":"c2.160","gcamValue":20},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.166","gcamValue":4},{"gcamCode":"c2.168","gcamValue":3},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.173","gcamValue":5},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":20},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":2},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":21},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":25},{"gcamCode":"c2.185","gcamValue":66},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":5},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":12},{"gcamCode":"c2.193","gcamValue":50},{"gcamCode":"c2.195","gcamValue":54},{"gcamCode":"c2.196","gcamValue":10},{"gcamCode":"c2.197","gcamValue":9},{"gcamCode":"c2.198","gcamValue":30},{"gcamCode":"c2.199","gcamValue":12},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":10},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":27},{"gcamCode":"c2.205","gcamValue":9},{"gcamCode":"c2.206","gcamValue":8},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.209","gcamValue":7},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":23},{"gcamCode":"c2.211","gcamValue":6},{"gcamCode":"c2.213","gcamValue":10},{"gcamCode":"c2.214","gcamValue":12},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.217","gcamValue":8},{"gcamCode":"c2.220","gcamValue":9},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.225","gcamValue":15},{"gcamCode":"c2.226","gcamValue":8},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":8},{"gcamCode":"c2.26","gcamValue":20},{"gcamCode":"c2.27","gcamValue":20},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.33","gcamValue":7},{"gcamCode":"c2.34","gcamValue":26},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.39","gcamValue":79},{"gcamCode":"c2.4","gcamValue":5},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":3},{"gcamCode":"c2.45","gcamValue":4},{"gcamCode":"c2.46","gcamValue":38},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":6},{"gcamCode":"c2.54","gcamValue":7},{"gcamCode":"c2.57","gcamValue":6},{"gcamCode":"c2.58","gcamValue":10},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":8},{"gcamCode":"c2.62","gcamValue":20},{"gcamCode":"c2.64","gcamValue":10},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.7","gcamValue":14},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":9},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":67},{"gcamCode":"c2.76","gcamValue":269},{"gcamCode":"c2.77","gcamValue":11},{"gcamCode":"c2.78","gcamValue":52},{"gcamCode":"c2.79","gcamValue":17},{"gcamCode":"c2.80","gcamValue":55},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":5},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":4},{"gcamCode":"c2.87","gcamValue":6},{"gcamCode":"c2.88","gcamValue":8},{"gcamCode":"c2.89","gcamValue":22},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":76},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":31},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":25},{"gcamCode":"c3.2","gcamValue":20},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.18","gcamValue":3},{"gcamCode":"c35.20","gcamValue":10},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.31","gcamValue":11},{"gcamCode":"c35.32","gcamValue":10},{"gcamCode":"c35.33","gcamValue":11},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":3},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.2","gcamValue":5},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":22},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":12},{"gcamCode":"c39.37","gcamValue":13},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":22},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":4},{"gcamCode":"c39.5","gcamValue":9},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.1","gcamValue":1},{"gcamCode":"c4.12","gcamValue":4},{"gcamCode":"c4.15","gcamValue":3},{"gcamCode":"c4.22","gcamValue":5},{"gcamCode":"c4.23","gcamValue":3},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c41.1","gcamValue":25},{"gcamCode":"c5.10","gcamValue":60},{"gcamCode":"c5.11","gcamValue":33},{"gcamCode":"c5.12","gcamValue":111},{"gcamCode":"c5.13","gcamValue":3},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":18},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":8},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.3","gcamValue":2},{"gcamCode":"c5.30","gcamValue":32},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":11},{"gcamCode":"c5.36","gcamValue":17},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.40","gcamValue":22},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":20},{"gcamCode":"c5.45","gcamValue":5},{"gcamCode":"c5.46","gcamValue":106},{"gcamCode":"c5.47","gcamValue":5},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":16},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":33},{"gcamCode":"c5.51","gcamValue":7},{"gcamCode":"c5.52","gcamValue":36},{"gcamCode":"c5.53","gcamValue":64},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":31},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":210},{"gcamCode":"c5.7","gcamValue":22},{"gcamCode":"c5.8","gcamValue":12},{"gcamCode":"c5.9","gcamValue":18},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":11},{"gcamCode":"c6.5","gcamValue":12},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":14},{"gcamCode":"c7.2","gcamValue":29},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.11","gcamValue":2},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.2","gcamValue":7},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":16},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.37","gcamValue":2},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.4","gcamValue":21},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":7},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":3},{"gcamCode":"c9.1","gcamValue":6},{"gcamCode":"c9.10","gcamValue":11},{"gcamCode":"c9.100","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.101","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1019","gcamValue":1},{"gcamCode":"c9.102","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1025","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.115","gcamValue":3},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":6},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.126","gcamValue":2},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":12},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":4},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.150","gcamValue":3},{"gcamCode":"c9.154","gcamValue":3},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":10},{"gcamCode":"c9.163","gcamValue":16},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.177","gcamValue":4},{"gcamCode":"c9.178","gcamValue":5},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":15},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":3},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.196","gcamValue":7},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.2","gcamValue":6},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":3},{"gcamCode":"c9.201","gcamValue":3},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":5},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.213","gcamValue":3},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":4},{"gcamCode":"c9.217","gcamValue":7},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.230","gcamValue":4},{"gcamCode":"c9.231","gcamValue":3},{"gcamCode":"c9.233","gcamValue":12},{"gcamCode":"c9.235","gcamValue":8},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":2},{"gcamCode":"c9.260","gcamValue":4},{"gcamCode":"c9.261","gcamValue":3},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":3},{"gcamCode":"c9.268","gcamValue":6},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":10},{"gcamCode":"c9.275","gcamValue":3},{"gcamCode":"c9.276","gcamValue":6},{"gcamCode":"c9.277","gcamValue":3},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":5},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":9},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":3},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":4},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.312","gcamValue":3},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.322","gcamValue":5},{"gcamCode":"c9.324","gcamValue":2},{"gcamCode":"c9.329","gcamValue":5},{"gcamCode":"c9.33","gcamValue":9},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.34","gcamValue":7},{"gcamCode":"c9.345","gcamValue":3},{"gcamCode":"c9.35","gcamValue":7},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":7},{"gcamCode":"c9.353","gcamValue":4},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":6},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.371","gcamValue":11},{"gcamCode":"c9.377","gcamValue":14},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.39","gcamValue":13},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.409","gcamValue":16},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.427","gcamValue":2},{"gcamCode":"c9.43","gcamValue":4},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.432","gcamValue":3},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":12},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":7},{"gcamCode":"c9.45","gcamValue":4},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.467","gcamValue":6},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.479","gcamValue":11},{"gcamCode":"c9.48","gcamValue":13},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":12},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":5},{"gcamCode":"c9.513","gcamValue":4},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.518","gcamValue":6},{"gcamCode":"c9.521","gcamValue":6},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.544","gcamValue":3},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":6},{"gcamCode":"c9.55","gcamValue":9},{"gcamCode":"c9.554","gcamValue":4},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":3},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.562","gcamValue":3},{"gcamCode":"c9.563","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.570","gcamValue":21},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.574","gcamValue":5},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":4},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":3},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.602","gcamValue":4},{"gcamCode":"c9.606","gcamValue":3},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":7},{"gcamCode":"c9.629","gcamValue":15},{"gcamCode":"c9.630","gcamValue":15},{"gcamCode":"c9.631","gcamValue":3},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":7},{"gcamCode":"c9.642","gcamValue":13},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":4},{"gcamCode":"c9.648","gcamValue":25},{"gcamCode":"c9.649","gcamValue":14},{"gcamCode":"c9.650","gcamValue":17},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":7},{"gcamCode":"c9.660","gcamValue":12},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":3},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.666","gcamValue":4},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.668","gcamValue":5},{"gcamCode":"c9.669","gcamValue":11},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.70","gcamValue":11},{"gcamCode":"c9.701","gcamValue":18},{"gcamCode":"c9.704","gcamValue":11},{"gcamCode":"c9.705","gcamValue":5},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":15},{"gcamCode":"c9.721","gcamValue":6},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.73","gcamValue":8},{"gcamCode":"c9.730","gcamValue":9},{"gcamCode":"c9.731","gcamValue":4},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":4},{"gcamCode":"c9.734","gcamValue":5},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":12},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":13},{"gcamCode":"c9.745","gcamValue":5},{"gcamCode":"c9.748","gcamValue":22},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":18},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":9},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.763","gcamValue":4},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":6},{"gcamCode":"c9.767","gcamValue":16},{"gcamCode":"c9.770","gcamValue":6},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.78","gcamValue":3},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.806","gcamValue":9},{"gcamCode":"c9.807","gcamValue":4},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.812","gcamValue":2},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.818","gcamValue":2},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":5},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.823","gcamValue":4},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":8},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":7},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.844","gcamValue":7},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":14},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":7},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.865","gcamValue":6},{"gcamCode":"c9.866","gcamValue":6},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.877","gcamValue":19},{"gcamCode":"c9.879","gcamValue":2},{"gcamCode":"c9.882","gcamValue":4},{"gcamCode":"c9.884","gcamValue":7},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.895","gcamValue":14},{"gcamCode":"c9.897","gcamValue":6},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":15},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":16},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.908","gcamValue":5},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.921","gcamValue":4},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":13},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":4},{"gcamCode":"c9.930","gcamValue":5},{"gcamCode":"c9.931","gcamValue":7},{"gcamCode":"c9.932","gcamValue":5},{"gcamCode":"c9.935","gcamValue":25},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.943","gcamValue":4},{"gcamCode":"c9.945","gcamValue":3},{"gcamCode":"c9.95","gcamValue":4},{"gcamCode":"c9.955","gcamValue":11},{"gcamCode":"c9.96","gcamValue":11},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.97","gcamValue":5},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.978","gcamValue":10},{"gcamCode":"c9.98","gcamValue":7},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":4},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.991","gcamValue":4},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.208674251473164},{"gcamCode":"v10.2","gcamValue":0.290739217032967},{"gcamCode":"v11.1","gcamValue":0.0782210368217056},{"gcamCode":"v19.1","gcamValue":6.30478260869565},{"gcamCode":"v19.2","gcamValue":5.44195652173913},{"gcamCode":"v19.3","gcamValue":5.48260869565217},{"gcamCode":"v19.4","gcamValue":6.44173913043478},{"gcamCode":"v19.5","gcamValue":5.58413043478261},{"gcamCode":"v19.6","gcamValue":5.55326086956522},{"gcamCode":"v19.7","gcamValue":6.17565217391304},{"gcamCode":"v19.8","gcamValue":5.35195652173913},{"gcamCode":"v19.9","gcamValue":5.40804347826087},{"gcamCode":"v20.1","gcamValue":0.532666666666667},{"gcamCode":"v20.10","gcamValue":-0.646},{"gcamCode":"v20.11","gcamValue":0.665},{"gcamCode":"v20.12","gcamValue":-0.597333333333333},{"gcamCode":"v20.13","gcamValue":0.475222222222222},{"gcamCode":"v20.14","gcamValue":-0.363684210526316},{"gcamCode":"v20.15","gcamValue":0.389076923076923},{"gcamCode":"v20.16","gcamValue":-0.333076923076923},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.746666666666667},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.746666666666667},{"gcamCode":"v20.6","gcamValue":-0.646},{"gcamCode":"v20.7","gcamValue":0.746666666666667},{"gcamCode":"v20.8","gcamValue":-0.646},{"gcamCode":"v20.9","gcamValue":0.698},{"gcamCode":"v21.1","gcamValue":5.44368131868133},{"gcamCode":"v26.1","gcamValue":0.4875}]https://www.hillsdale.net/storyimage/MI/20190522/NEWS/190529623/AR/0/AR-190529623.jpg[""][""][""][][{"name":"Mackenzie Baker","charOffset":737},{"name":"Ellie Ackerson","charOffset":1290},{"name":"Flesia Borck","charOffset":1421},{"name":"Melissa Jones","charOffset":1824},{"name":"Anna Stein","charOffset":1985},{"name":"Haley Jones","charOffset":2024},{"name":"Karlee Barnhill","charOffset":2289},{"name":"Emily Gier","charOffset":2432},{"name":"Ali Marry","charOffset":2486},{"name":"Vandercook Lake","charOffset":2801},{"name":"Hanover-Horton High","charOffset":3045}][{"amount":2,"amountType":"seven","charOffset":115},{"amount":2,"amountType":"innings","charOffset":470},{"amount":4,"amountType":"with three runs","charOffset":503},{"amount":3,"amountType":"runs","charOffset":512},{"amount":2,"amountType":"sacrifice grounders by Mackenzie","charOffset":539},{"amount":7,"amountType":"runs","charOffset":778},{"amount":2,"amountType":"Jonesville errors","charOffset":807},{"amount":3,"amountType":"for 4 at the","charOffset":879},{"amount":4,"amountType":"at the plate","charOffset":883},{"amount":2,"amountType":"for 4 with a","charOffset":931},{"amount":4,"amountType":"with a triple","charOffset":935},{"amount":3,"amountType":"for 4 with two","charOffset":1037},{"amount":4,"amountType":"with two doubles","charOffset":1041},{"amount":2,"amountType":"doubles","charOffset":1048},{"amount":2,"amountType":"RBIs at the plate","charOffset":1061},{"amount":7,"amountType":"innings","charOffset":1199},{"amount":5,"amountType":"runs","charOffset":1341},{"amount":2,"amountType":"for 4 at the","charOffset":1637},{"amount":4,"amountType":"at the plate for","charOffset":1641},{"amount":2,"amountType":"loss","charOffset":1674},{"amount":3,"amountType":"for 5 with two","charOffset":1817},{"amount":5,"amountType":"with two doubles","charOffset":1821},{"amount":2,"amountType":"doubles","charOffset":1828},{"amount":5,"amountType":"RBIs","charOffset":1853},{"amount":2,"amountType":"for 4 with a","charOffset":1884},{"amount":4,"amountType":"with a double","charOffset":1888},{"amount":2,"amountType":"hits","charOffset":1927},{"amount":2,"amountType":"RBIs","charOffset":1937},{"amount":2,"amountType":"hits","charOffset":1971},{"amount":1,"amountType":"for the Tigers","charOffset":2009},{"amount":7,"amountType":"innings","charOffset":2057},{"amount":3,"amountType":"district semifinal on Saturday","charOffset":2304},{"amount":4,"amountType":"Morenci district on the","charOffset":2398}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>James Gensterblum;jgensterblum@hillsdale.net</PAGE_AUTHORS><PAGE_ALTURL_AMP>https://www.hillsdale.net/news/20190522/late-runs-cost-jonesville-in-doubleheader-sweep-by-hudson?template=ampart</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEBksby.comhttps://ksby.com/ap-national-news/2019/05/23/2-migrants-die-after-found-hiding-in-truck-tank-in-serbia[{"countType":"KILL","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},{"countType":"CRISISLEX_CRISISLEXREC","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},{"countType":"CRISISLEX_T02_INJURED","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},{"countType":"CRISISLEX_T03_DEAD","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},{"countType":"CRISISLEX_T03_DEAD","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}}][{"count":{"countType":"KILL","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},"charOffset":30},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},"charOffset":30},{"count":{"countType":"CRISISLEX_T02_INJURED","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},"charOffset":30},{"count":{"countType":"CRISISLEX_T03_DEAD","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},"charOffset":30},{"count":{"countType":"CRISISLEX_T03_DEAD","count":2,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"}},"charOffset":30}]["TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_SERBIAN","TAX_FNCACT","TAX_FNCACT_AUTHORITIES","CRISISLEX_CRISISLEXREC","EPU_POLICY","EPU_POLICY_AUTHORITIES","KILL","CRISISLEX_T02_INJURED","CRISISLEX_T03_DEAD","MANMADE_DISASTER_IMPLIED","TAX_FNCACT_DRIVER","TAX_FNCACT_TRUCK_DRIVER","TAX_DISEASE","TAX_DISEASE_HYPERTHERMIA","MEDICAL","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","ARMEDCONFLICT","EPU_CATS_NATIONAL_SECURITY","POVERTY","WB_695_POVERTY"][{"theme":"MEDICAL","charOffset":498},{"theme":"TAX_DISEASE_HYPERTHERMIA","charOffset":404},{"theme":"ARMEDCONFLICT","charOffset":589},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":589},{"theme":"POVERTY","charOffset":599},{"theme":"WB_695_POVERTY","charOffset":599},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":134},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":239},{"theme":"TAX_FNCACT_DRIVER","charOffset":246},{"theme":"TAX_WORLDLANGUAGES_SERBIAN","charOffset":38},{"theme":"SECURITY_SERVICES","charOffset":508},{"theme":"TAX_FNCACT_POLICE","charOffset":508},{"theme":"CRISISLEX_C07_SAFETY","charOffset":508},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":50},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":50},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":50},{"theme":"KILL","charOffset":74},{"theme":"CRISISLEX_T02_INJURED","charOffset":74},{"theme":"CRISISLEX_T03_DEAD","charOffset":74},{"theme":"TAX_FNCACT_TRUCK_DRIVER","charOffset":246}][{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"},{"geoType":"COUNTRY","geoName":"Afghanistan","countryCode":"AF","adm1Code":"AF","adm2Code":"","geoPoint":{"latitude":33,"longitude":66},"featureId":"AF"},{"geoType":"WORLDCITY","geoName":"Vojvodina, 00, Serbia","countryCode":"RI","adm1Code":"RI00","adm2Code":"","geoPoint":{"latitude":45,"longitude":20},"featureId":"-100771"},{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"}][{"location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"},"charOffset":19},{"location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"},"charOffset":224},{"location":{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"},"charOffset":347},{"location":{"geoType":"WORLDCITY","geoName":"Vojvodina, 00, Serbia","countryCode":"RI","adm1Code":"RI00","adm2Code":"47648","geoPoint":{"latitude":45,"longitude":20},"featureId":"-100771"},"charOffset":339},{"location":{"geoType":"COUNTRY","geoName":"Afghanistan","countryCode":"AF","adm1Code":"AF","adm2Code":"","geoPoint":{"latitude":33,"longitude":66},"featureId":"AF"},"charOffset":560},{"location":{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"47629","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"},"charOffset":8}][""][]["clinical center"][{"organisation":"Clinical Center","charOffset":326}]{"tone":-10.833333,"positiveScore":0.8333333,"negativeScore":11.666667,"polarity":12.5,"activityReferenceDensity":23.333334,"selfGroupReferenceDensity":0,"wordCount":110}[][{"gcamCode":"wc","gcamValue":110},{"gcamCode":"c12.1","gcamValue":8},{"gcamCode":"c12.10","gcamValue":9},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":6},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":10},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":5},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.7","gcamValue":2},{"gcamCode":"c14.1","gcamValue":7},{"gcamCode":"c14.10","gcamValue":7},{"gcamCode":"c14.11","gcamValue":9},{"gcamCode":"c14.2","gcamValue":8},{"gcamCode":"c14.3","gcamValue":4},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":14},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.187","gcamValue":1},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.22","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c16.100","gcamValue":2},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":6},{"gcamCode":"c16.109","gcamValue":7},{"gcamCode":"c16.110","gcamValue":20},{"gcamCode":"c16.114","gcamValue":11},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":5},{"gcamCode":"c16.118","gcamValue":8},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":8},{"gcamCode":"c16.121","gcamValue":7},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":7},{"gcamCode":"c16.126","gcamValue":3},{"gcamCode":"c16.127","gcamValue":8},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":5},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":12},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.139","gcamValue":6},{"gcamCode":"c16.140","gcamValue":1},{"gcamCode":"c16.145","gcamValue":6},{"gcamCode":"c16.146","gcamValue":6},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":3},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":11},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":6},{"gcamCode":"c16.162","gcamValue":3},{"gcamCode":"c16.163","gcamValue":11},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":8},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":9},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":8},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":9},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":7},{"gcamCode":"c16.37","gcamValue":10},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":12},{"gcamCode":"c16.41","gcamValue":6},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":6},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":13},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":54},{"gcamCode":"c16.58","gcamValue":10},{"gcamCode":"c16.6","gcamValue":13},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":3},{"gcamCode":"c16.68","gcamValue":6},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":2},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":2},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":10},{"gcamCode":"c16.88","gcamValue":16},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":9},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":8},{"gcamCode":"c16.95","gcamValue":7},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":32},{"gcamCode":"c17.10","gcamValue":15},{"gcamCode":"c17.11","gcamValue":17},{"gcamCode":"c17.12","gcamValue":1},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":5},{"gcamCode":"c17.16","gcamValue":4},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":5},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.24","gcamValue":16},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":16},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":4},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":8},{"gcamCode":"c17.34","gcamValue":5},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":5},{"gcamCode":"c17.4","gcamValue":25},{"gcamCode":"c17.40","gcamValue":1},{"gcamCode":"c17.41","gcamValue":8},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":6},{"gcamCode":"c17.5","gcamValue":20},{"gcamCode":"c17.7","gcamValue":17},{"gcamCode":"c17.8","gcamValue":12},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.1","gcamValue":3},{"gcamCode":"c18.136","gcamValue":1},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.193","gcamValue":4},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.104","gcamValue":23},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":4},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":8},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":7},{"gcamCode":"c2.119","gcamValue":36},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.121","gcamValue":14},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":5},{"gcamCode":"c2.126","gcamValue":8},{"gcamCode":"c2.127","gcamValue":17},{"gcamCode":"c2.128","gcamValue":3},{"gcamCode":"c2.129","gcamValue":10},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.14","gcamValue":14},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.143","gcamValue":7},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":20},{"gcamCode":"c2.148","gcamValue":2},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":9},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":9},{"gcamCode":"c2.158","gcamValue":16},{"gcamCode":"c2.160","gcamValue":2},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.179","gcamValue":4},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":8},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":9},{"gcamCode":"c2.185","gcamValue":25},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":11},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":16},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":17},{"gcamCode":"c2.199","gcamValue":4},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":9},{"gcamCode":"c2.212","gcamValue":4},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":4},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":7},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":2},{"gcamCode":"c2.25","gcamValue":11},{"gcamCode":"c2.26","gcamValue":2},{"gcamCode":"c2.27","gcamValue":2},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.30","gcamValue":8},{"gcamCode":"c2.31","gcamValue":6},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":7},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":14},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.41","gcamValue":2},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":7},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":15},{"gcamCode":"c2.54","gcamValue":15},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":5},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":6},{"gcamCode":"c2.64","gcamValue":4},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.75","gcamValue":13},{"gcamCode":"c2.76","gcamValue":79},{"gcamCode":"c2.77","gcamValue":10},{"gcamCode":"c2.78","gcamValue":16},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":13},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":4},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":19},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c2.99","gcamValue":1},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":10},{"gcamCode":"c3.2","gcamValue":5},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.31","gcamValue":4},{"gcamCode":"c35.32","gcamValue":1},{"gcamCode":"c35.33","gcamValue":5},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.3","gcamValue":3},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":6},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.14","gcamValue":1},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c41.1","gcamValue":2},{"gcamCode":"c5.10","gcamValue":17},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":24},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":4},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":2},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":7},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":5},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":19},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":11},{"gcamCode":"c5.50","gcamValue":18},{"gcamCode":"c5.51","gcamValue":7},{"gcamCode":"c5.52","gcamValue":18},{"gcamCode":"c5.53","gcamValue":13},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":46},{"gcamCode":"c5.7","gcamValue":1},{"gcamCode":"c5.8","gcamValue":2},{"gcamCode":"c5.9","gcamValue":5},{"gcamCode":"c6.4","gcamValue":4},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":12},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.23","gcamValue":6},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":3},{"gcamCode":"c8.43","gcamValue":3},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c9.1","gcamValue":6},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.118","gcamValue":2},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.128","gcamValue":8},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":5},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":2},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.34","gcamValue":2},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.425","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.469","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.498","gcamValue":2},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.579","gcamValue":7},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.642","gcamValue":3},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":7},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.726","gcamValue":6},{"gcamCode":"c9.730","gcamValue":7},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.767","gcamValue":7},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.797","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":6},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":6},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.221906565656566},{"gcamCode":"v10.2","gcamValue":0.300403225806452},{"gcamCode":"v11.1","gcamValue":-0.00943452380952382},{"gcamCode":"v19.1","gcamValue":4.94},{"gcamCode":"v19.2","gcamValue":5.39923076923077},{"gcamCode":"v19.3","gcamValue":4.98846153846154},{"gcamCode":"v19.4","gcamValue":5.26153846153846},{"gcamCode":"v19.5","gcamValue":5.25384615384615},{"gcamCode":"v19.6","gcamValue":5.43384615384615},{"gcamCode":"v19.7","gcamValue":4.71769230769231},{"gcamCode":"v19.8","gcamValue":5.53384615384615},{"gcamCode":"v19.9","gcamValue":4.68461538461538},{"gcamCode":"v20.11","gcamValue":0.5},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.4126},{"gcamCode":"v20.14","gcamValue":-0.39575},{"gcamCode":"v20.15","gcamValue":0.351625},{"gcamCode":"v20.16","gcamValue":-0.3666},{"gcamCode":"v21.1","gcamValue":4.98315217391305},{"gcamCode":"v26.1","gcamValue":-1.22307692307692}]https://s3.amazonaws.com/cordillera-network/wp-content/uploads/sites/2/2018/06/06105543/KSBY-6-News-1920x1080.png[""][""]["https://youtube.com/channel/UChIlR_Uhv1366IAxT1ORbTA"][][{"name":"Clinical Center","charOffset":341}][{"amount":2,"amountType":"migrants","charOffset":50},{"amount":2,"amountType":"of the migrants","charOffset":446}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBwrex.comhttps://wrex.com/category/2019/05/23/census-bureau-estimates-show-chicago-population-declining/[][]["EDUCATION","TAX_FNCACT","TAX_FNCACT_PROFESSOR","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","GENERAL_HEALTH","MEDICAL","MEDIA_MSM"][{"theme":"GENERAL_HEALTH","charOffset":651},{"theme":"MEDICAL","charOffset":651},{"theme":"EDUCATION","charOffset":424},{"theme":"TAX_FNCACT_PROFESSOR","charOffset":424},{"theme":"MEDIA_MSM","charOffset":794},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":464}][{"geoType":"USCITY","geoName":"Pingree Grove, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":42.0686,"longitude":-88.4134},"featureId":"415712"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Northwestern University, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":42.0556,"longitude":-87.6745},"featureId":"414709"},{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}][{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":756},{"location":{"geoType":"USCITY","geoName":"Pingree Grove, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL089","geoPoint":{"latitude":42.0686,"longitude":-88.4134},"featureId":"415712"},"charOffset":930},{"location":{"geoType":"USCITY","geoName":"Northwestern University, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":42.0556,"longitude":-87.6745},"featureId":"414709"},"charOffset":464},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":7},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":112},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":251},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":499},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":572},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":1001}]["christine percheski"][{"person":"Christine Percheski","charOffset":399}]["chicago tribune","u s census bureau","northwestern university"][{"organisation":"Northwestern University","charOffset":464}]{"tone":-1.3513514,"positiveScore":0.6756757,"negativeScore":2.0270271,"polarity":2.7027028,"activityReferenceDensity":12.837838,"selfGroupReferenceDensity":0,"wordCount":144}[][{"gcamCode":"wc","gcamValue":144},{"gcamCode":"c12.1","gcamValue":8},{"gcamCode":"c12.10","gcamValue":13},{"gcamCode":"c12.12","gcamValue":4},{"gcamCode":"c12.13","gcamValue":6},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":4},{"gcamCode":"c12.8","gcamValue":9},{"gcamCode":"c12.9","gcamValue":4},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":7},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":8},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":10},{"gcamCode":"c14.7","gcamValue":6},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":4},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.110","gcamValue":17},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.114","gcamValue":14},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":6},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":1},{"gcamCode":"c16.121","gcamValue":10},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.125","gcamValue":1},{"gcamCode":"c16.126","gcamValue":6},{"gcamCode":"c16.127","gcamValue":9},{"gcamCode":"c16.129","gcamValue":17},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":17},{"gcamCode":"c16.138","gcamValue":6},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":8},{"gcamCode":"c16.145","gcamValue":9},{"gcamCode":"c16.146","gcamValue":6},{"gcamCode":"c16.147","gcamValue":3},{"gcamCode":"c16.153","gcamValue":4},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":12},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":10},{"gcamCode":"c16.162","gcamValue":12},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.2","gcamValue":12},{"gcamCode":"c16.26","gcamValue":13},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":6},{"gcamCode":"c16.33","gcamValue":4},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.37","gcamValue":7},{"gcamCode":"c16.38","gcamValue":4},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.47","gcamValue":17},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.52","gcamValue":10},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.57","gcamValue":73},{"gcamCode":"c16.58","gcamValue":6},{"gcamCode":"c16.6","gcamValue":17},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":2},{"gcamCode":"c16.69","gcamValue":3},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":17},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.75","gcamValue":3},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":5},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":7},{"gcamCode":"c16.88","gcamValue":22},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.9","gcamValue":4},{"gcamCode":"c16.90","gcamValue":5},{"gcamCode":"c16.91","gcamValue":4},{"gcamCode":"c16.92","gcamValue":12},{"gcamCode":"c16.94","gcamValue":14},{"gcamCode":"c16.95","gcamValue":9},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c17.1","gcamValue":44},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":17},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.15","gcamValue":18},{"gcamCode":"c17.16","gcamValue":6},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":5},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.22","gcamValue":2},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":13},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.27","gcamValue":6},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":8},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":4},{"gcamCode":"c17.33","gcamValue":6},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":1},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":29},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.42","gcamValue":2},{"gcamCode":"c17.43","gcamValue":6},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":19},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":11},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.102","gcamValue":1},{"gcamCode":"c2.104","gcamValue":18},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.114","gcamValue":5},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":5},{"gcamCode":"c2.119","gcamValue":38},{"gcamCode":"c2.12","gcamValue":6},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.125","gcamValue":9},{"gcamCode":"c2.126","gcamValue":3},{"gcamCode":"c2.127","gcamValue":12},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":20},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.14","gcamValue":5},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":8},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":17},{"gcamCode":"c2.148","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.153","gcamValue":7},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":8},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":7},{"gcamCode":"c2.158","gcamValue":10},{"gcamCode":"c2.160","gcamValue":6},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":5},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":5},{"gcamCode":"c2.179","gcamValue":7},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":3},{"gcamCode":"c2.181","gcamValue":3},{"gcamCode":"c2.183","gcamValue":3},{"gcamCode":"c2.185","gcamValue":22},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":3},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.195","gcamValue":13},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":13},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":9},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.210","gcamValue":6},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":3},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":6},{"gcamCode":"c2.25","gcamValue":10},{"gcamCode":"c2.26","gcamValue":7},{"gcamCode":"c2.27","gcamValue":7},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":6},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.34","gcamValue":9},{"gcamCode":"c2.39","gcamValue":26},{"gcamCode":"c2.44","gcamValue":4},{"gcamCode":"c2.45","gcamValue":14},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":12},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":1},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.75","gcamValue":13},{"gcamCode":"c2.76","gcamValue":91},{"gcamCode":"c2.77","gcamValue":10},{"gcamCode":"c2.78","gcamValue":20},{"gcamCode":"c2.80","gcamValue":12},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":8},{"gcamCode":"c2.86","gcamValue":9},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.9","gcamValue":6},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":20},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c25.5","gcamValue":9},{"gcamCode":"c3.1","gcamValue":3},{"gcamCode":"c3.2","gcamValue":10},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.20","gcamValue":2},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.31","gcamValue":4},{"gcamCode":"c35.32","gcamValue":2},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":5},{"gcamCode":"c39.3","gcamValue":10},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":9},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c4.21","gcamValue":1},{"gcamCode":"c4.23","gcamValue":3},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":14},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":8},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.36","gcamValue":3},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.40","gcamValue":4},{"gcamCode":"c5.43","gcamValue":4},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":16},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":5},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":12},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":15},{"gcamCode":"c5.54","gcamValue":9},{"gcamCode":"c5.6","gcamValue":5},{"gcamCode":"c5.61","gcamValue":9},{"gcamCode":"c5.62","gcamValue":51},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":4},{"gcamCode":"c5.9","gcamValue":8},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c7.1","gcamValue":3},{"gcamCode":"c7.2","gcamValue":3},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.23","gcamValue":4},{"gcamCode":"c8.28","gcamValue":3},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.4","gcamValue":3},{"gcamCode":"c8.42","gcamValue":4},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1009","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.196","gcamValue":3},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.2","gcamValue":3},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.205","gcamValue":4},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.39","gcamValue":5},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.461","gcamValue":2},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":3},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":3},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":8},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.515","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":3},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":8},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":8},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":3},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":3},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.807","gcamValue":3},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.864","gcamValue":3},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.868","gcamValue":3},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.992","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.30146958537916},{"gcamCode":"v10.2","gcamValue":0.349112426035503},{"gcamCode":"v11.1","gcamValue":0.0196134259259259},{"gcamCode":"v19.1","gcamValue":5.51785714285714},{"gcamCode":"v19.2","gcamValue":4.91571428571429},{"gcamCode":"v19.3","gcamValue":5.07357142857143},{"gcamCode":"v19.4","gcamValue":5.375},{"gcamCode":"v19.5","gcamValue":4.79357142857143},{"gcamCode":"v19.6","gcamValue":4.77857142857143},{"gcamCode":"v19.7","gcamValue":5.65071428571429},{"gcamCode":"v19.8","gcamValue":5.00357142857143},{"gcamCode":"v19.9","gcamValue":5.28071428571429},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-0.292},{"gcamCode":"v20.11","gcamValue":0.656},{"gcamCode":"v20.12","gcamValue":-0.292},{"gcamCode":"v20.13","gcamValue":0.401785714285714},{"gcamCode":"v20.14","gcamValue":-0.3335},{"gcamCode":"v20.15","gcamValue":0.3828125},{"gcamCode":"v20.16","gcamValue":-0.29175},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.656},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.656},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.656},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v20.9","gcamValue":0.656},{"gcamCode":"v21.1","gcamValue":5.4402380952381},{"gcamCode":"v26.1","gcamValue":0.9}]https://s3-ca-central-1.amazonaws.com/quincy-network/wp-content/uploads/sites/12/2018/12/WREX-Generic1.jpg[""][""][""][][{"name":"Northwestern University","charOffset":450},{"name":"Chicago Tribune","charOffset":481},{"name":"Pingree Grove","charOffset":896},{"name":"Chicago Tribune","charOffset":958}][{"amount":7000000,"amountType":"residents","charOffset":241}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBabcfoxmontana.comhttps://www.abcfoxmontana.com/bozeman/belgrade-shooting-survivor-fights-on-a-year-after-attack-raising/article_6e354258-7d27-11e9-8f46-7ba8ac9b932e.html[][]["TAX_FNCACT","TAX_FNCACT_WOMAN","CRISISLEX_CRISISLEXREC","TAX_DISEASE","TAX_DISEASE_WOUNDS","GENERAL_HEALTH","TAX_FNCACT_ASSISTANT","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","CRISISLEX_T02_INJURED","ARREST","SOC_GENERALCRIME","CRISISLEX_C07_SAFETY","TRIAL","DELAY","USPEC_UNCERTAINTY1","CRISISLEX_C04_LOGISTICS_TRANSPORT","TAX_FNCACT_LAWYERS","CRISISLEX_T11_UPDATESSYMPATHY","TAX_ETHNICITY","TAX_ETHNICITY_SIOUX","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_SIOUX"][{"theme":"TAX_FNCACT_ASSISTANT","charOffset":735},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":1330},{"theme":"TAX_FNCACT_WOMAN","charOffset":179},{"theme":"DELAY","charOffset":1170},{"theme":"USPEC_UNCERTAINTY1","charOffset":1170},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":1170},{"theme":"TAX_DISEASE_WOUNDS","charOffset":485},{"theme":"TAX_DISEASE_WOUNDS","charOffset":661},{"theme":"TAX_ETHNICITY_SIOUX","charOffset":1474},{"theme":"TAX_WORLDLANGUAGES_SIOUX","charOffset":1474},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":250},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":372},{"theme":"TAX_FNCACT_LAWYERS","charOffset":1205},{"theme":"GENERAL_HEALTH","charOffset":725},{"theme":"WB_1428_INJURY","charOffset":836},{"theme":"WB_1406_DISEASES","charOffset":836},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":836},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":836},{"theme":"CRISISLEX_T02_INJURED","charOffset":836},{"theme":"TRIAL","charOffset":960},{"theme":"ARREST","charOffset":906},{"theme":"SOC_GENERALCRIME","charOffset":906},{"theme":"CRISISLEX_C07_SAFETY","charOffset":906}][{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"}][{"location":{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"47629","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"},"charOffset":8},{"location":{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"47629","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"},"charOffset":113}]["lauren dewise","van hemert","joseph paul dewise","ashley van hemert"][{"person":"Lauren Dewise","charOffset":30},{"person":"Van Hemert","charOffset":163},{"person":"Van Hemert","charOffset":538},{"person":"Van Hemert","charOffset":849},{"person":"Van Hemert","charOffset":1281},{"person":"Van Hemert","charOffset":1428},{"person":"Van Hemert","charOffset":1718},{"person":"Van Hemert","charOffset":1836},{"person":"Van Hemert","charOffset":1941},{"person":"Joseph Paul Dewise","charOffset":95},{"person":"Ashley Van Hemert","charOffset":163}][""][]{"tone":-4.71464,"positiveScore":2.9776676,"negativeScore":7.6923075,"polarity":10.669975,"activityReferenceDensity":23.076923,"selfGroupReferenceDensity":0.24813896,"wordCount":352}[{"dateResolution":4,"month":1,"day":11,"year":0,"charOffset":970}][{"gcamCode":"wc","gcamValue":352},{"gcamCode":"c12.1","gcamValue":15},{"gcamCode":"c12.10","gcamValue":27},{"gcamCode":"c12.12","gcamValue":17},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":9},{"gcamCode":"c12.3","gcamValue":7},{"gcamCode":"c12.4","gcamValue":5},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":23},{"gcamCode":"c12.8","gcamValue":8},{"gcamCode":"c12.9","gcamValue":12},{"gcamCode":"c13.14","gcamValue":6},{"gcamCode":"c13.7","gcamValue":8},{"gcamCode":"c14.1","gcamValue":16},{"gcamCode":"c14.10","gcamValue":11},{"gcamCode":"c14.11","gcamValue":26},{"gcamCode":"c14.2","gcamValue":26},{"gcamCode":"c14.3","gcamValue":17},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":33},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c14.8","gcamValue":3},{"gcamCode":"c14.9","gcamValue":5},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.213","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c15.251","gcamValue":5},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.8","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.94","gcamValue":2},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":7},{"gcamCode":"c16.101","gcamValue":7},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":7},{"gcamCode":"c16.106","gcamValue":13},{"gcamCode":"c16.109","gcamValue":19},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":57},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.114","gcamValue":16},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":12},{"gcamCode":"c16.117","gcamValue":18},{"gcamCode":"c16.118","gcamValue":29},{"gcamCode":"c16.12","gcamValue":39},{"gcamCode":"c16.120","gcamValue":20},{"gcamCode":"c16.121","gcamValue":18},{"gcamCode":"c16.122","gcamValue":7},{"gcamCode":"c16.124","gcamValue":6},{"gcamCode":"c16.125","gcamValue":29},{"gcamCode":"c16.126","gcamValue":17},{"gcamCode":"c16.127","gcamValue":26},{"gcamCode":"c16.128","gcamValue":4},{"gcamCode":"c16.129","gcamValue":30},{"gcamCode":"c16.13","gcamValue":3},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":18},{"gcamCode":"c16.134","gcamValue":36},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":13},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":14},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":32},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.15","gcamValue":2},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":13},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":29},{"gcamCode":"c16.16","gcamValue":14},{"gcamCode":"c16.161","gcamValue":43},{"gcamCode":"c16.162","gcamValue":12},{"gcamCode":"c16.163","gcamValue":42},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":3},{"gcamCode":"c16.19","gcamValue":13},{"gcamCode":"c16.2","gcamValue":8},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":3},{"gcamCode":"c16.26","gcamValue":51},{"gcamCode":"c16.27","gcamValue":6},{"gcamCode":"c16.3","gcamValue":6},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":22},{"gcamCode":"c16.32","gcamValue":3},{"gcamCode":"c16.33","gcamValue":30},{"gcamCode":"c16.34","gcamValue":4},{"gcamCode":"c16.35","gcamValue":19},{"gcamCode":"c16.37","gcamValue":29},{"gcamCode":"c16.38","gcamValue":17},{"gcamCode":"c16.4","gcamValue":36},{"gcamCode":"c16.41","gcamValue":14},{"gcamCode":"c16.42","gcamValue":4},{"gcamCode":"c16.45","gcamValue":13},{"gcamCode":"c16.46","gcamValue":8},{"gcamCode":"c16.47","gcamValue":44},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":5},{"gcamCode":"c16.5","gcamValue":5},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":13},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":167},{"gcamCode":"c16.58","gcamValue":35},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":45},{"gcamCode":"c16.60","gcamValue":6},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":13},{"gcamCode":"c16.63","gcamValue":7},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":10},{"gcamCode":"c16.68","gcamValue":21},{"gcamCode":"c16.69","gcamValue":14},{"gcamCode":"c16.7","gcamValue":10},{"gcamCode":"c16.70","gcamValue":23},{"gcamCode":"c16.71","gcamValue":7},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":5},{"gcamCode":"c16.74","gcamValue":5},{"gcamCode":"c16.75","gcamValue":13},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":10},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":6},{"gcamCode":"c16.84","gcamValue":17},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":33},{"gcamCode":"c16.88","gcamValue":44},{"gcamCode":"c16.89","gcamValue":14},{"gcamCode":"c16.90","gcamValue":18},{"gcamCode":"c16.91","gcamValue":13},{"gcamCode":"c16.92","gcamValue":30},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":29},{"gcamCode":"c16.95","gcamValue":35},{"gcamCode":"c16.96","gcamValue":8},{"gcamCode":"c16.97","gcamValue":5},{"gcamCode":"c16.98","gcamValue":29},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":86},{"gcamCode":"c17.10","gcamValue":34},{"gcamCode":"c17.11","gcamValue":52},{"gcamCode":"c17.12","gcamValue":22},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":26},{"gcamCode":"c17.16","gcamValue":15},{"gcamCode":"c17.18","gcamValue":6},{"gcamCode":"c17.19","gcamValue":26},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":6},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":7},{"gcamCode":"c17.23","gcamValue":11},{"gcamCode":"c17.24","gcamValue":28},{"gcamCode":"c17.25","gcamValue":10},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":35},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":14},{"gcamCode":"c17.3","gcamValue":3},{"gcamCode":"c17.30","gcamValue":10},{"gcamCode":"c17.31","gcamValue":23},{"gcamCode":"c17.32","gcamValue":19},{"gcamCode":"c17.33","gcamValue":16},{"gcamCode":"c17.34","gcamValue":12},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":14},{"gcamCode":"c17.37","gcamValue":8},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":22},{"gcamCode":"c17.4","gcamValue":63},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":12},{"gcamCode":"c17.42","gcamValue":21},{"gcamCode":"c17.43","gcamValue":7},{"gcamCode":"c17.5","gcamValue":92},{"gcamCode":"c17.6","gcamValue":4},{"gcamCode":"c17.7","gcamValue":58},{"gcamCode":"c17.8","gcamValue":27},{"gcamCode":"c17.9","gcamValue":15},{"gcamCode":"c18.137","gcamValue":2},{"gcamCode":"c18.180","gcamValue":5},{"gcamCode":"c18.193","gcamValue":4},{"gcamCode":"c18.269","gcamValue":5},{"gcamCode":"c18.33","gcamValue":1},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":10},{"gcamCode":"c18.77","gcamValue":1},{"gcamCode":"c2.1","gcamValue":17},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":4},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":10},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":39},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":5},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":6},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":18},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":15},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":100},{"gcamCode":"c2.12","gcamValue":14},{"gcamCode":"c2.120","gcamValue":4},{"gcamCode":"c2.121","gcamValue":34},{"gcamCode":"c2.122","gcamValue":20},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":17},{"gcamCode":"c2.126","gcamValue":18},{"gcamCode":"c2.127","gcamValue":28},{"gcamCode":"c2.128","gcamValue":5},{"gcamCode":"c2.129","gcamValue":7},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":34},{"gcamCode":"c2.140","gcamValue":4},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.143","gcamValue":13},{"gcamCode":"c2.144","gcamValue":6},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":3},{"gcamCode":"c2.147","gcamValue":64},{"gcamCode":"c2.148","gcamValue":24},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":14},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":28},{"gcamCode":"c2.156","gcamValue":6},{"gcamCode":"c2.157","gcamValue":27},{"gcamCode":"c2.158","gcamValue":23},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.161","gcamValue":2},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":27},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":13},{"gcamCode":"c2.180","gcamValue":13},{"gcamCode":"c2.181","gcamValue":16},{"gcamCode":"c2.183","gcamValue":16},{"gcamCode":"c2.185","gcamValue":87},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":23},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":20},{"gcamCode":"c2.194","gcamValue":6},{"gcamCode":"c2.195","gcamValue":34},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":9},{"gcamCode":"c2.198","gcamValue":44},{"gcamCode":"c2.199","gcamValue":10},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.200","gcamValue":5},{"gcamCode":"c2.201","gcamValue":6},{"gcamCode":"c2.203","gcamValue":20},{"gcamCode":"c2.204","gcamValue":38},{"gcamCode":"c2.205","gcamValue":7},{"gcamCode":"c2.206","gcamValue":11},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.209","gcamValue":7},{"gcamCode":"c2.21","gcamValue":9},{"gcamCode":"c2.210","gcamValue":39},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.212","gcamValue":8},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.215","gcamValue":2},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":8},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.220","gcamValue":12},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":7},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":23},{"gcamCode":"c2.26","gcamValue":21},{"gcamCode":"c2.27","gcamValue":21},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":17},{"gcamCode":"c2.31","gcamValue":16},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":7},{"gcamCode":"c2.34","gcamValue":22},{"gcamCode":"c2.35","gcamValue":18},{"gcamCode":"c2.36","gcamValue":6},{"gcamCode":"c2.37","gcamValue":16},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":62},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.41","gcamValue":3},{"gcamCode":"c2.44","gcamValue":14},{"gcamCode":"c2.45","gcamValue":11},{"gcamCode":"c2.46","gcamValue":32},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":6},{"gcamCode":"c2.5","gcamValue":5},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":17},{"gcamCode":"c2.54","gcamValue":23},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.6","gcamValue":11},{"gcamCode":"c2.60","gcamValue":3},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":14},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.65","gcamValue":4},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":5},{"gcamCode":"c2.69","gcamValue":16},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":17},{"gcamCode":"c2.75","gcamValue":56},{"gcamCode":"c2.76","gcamValue":229},{"gcamCode":"c2.77","gcamValue":29},{"gcamCode":"c2.78","gcamValue":52},{"gcamCode":"c2.79","gcamValue":15},{"gcamCode":"c2.80","gcamValue":49},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":3},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":15},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.91","gcamValue":3},{"gcamCode":"c2.92","gcamValue":4},{"gcamCode":"c2.93","gcamValue":9},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":58},{"gcamCode":"c2.97","gcamValue":7},{"gcamCode":"c2.98","gcamValue":21},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":5},{"gcamCode":"c3.1","gcamValue":33},{"gcamCode":"c3.2","gcamValue":16},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.16","gcamValue":1},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":10},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.30","gcamValue":3},{"gcamCode":"c35.31","gcamValue":21},{"gcamCode":"c35.32","gcamValue":11},{"gcamCode":"c35.33","gcamValue":15},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":5},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":4},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":3},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":22},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":12},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":25},{"gcamCode":"c39.41","gcamValue":7},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.12","gcamValue":6},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":13},{"gcamCode":"c41.1","gcamValue":21},{"gcamCode":"c5.10","gcamValue":16},{"gcamCode":"c5.11","gcamValue":10},{"gcamCode":"c5.12","gcamValue":60},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.16","gcamValue":9},{"gcamCode":"c5.17","gcamValue":15},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":5},{"gcamCode":"c5.24","gcamValue":6},{"gcamCode":"c5.26","gcamValue":2},{"gcamCode":"c5.27","gcamValue":2},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.3","gcamValue":2},{"gcamCode":"c5.30","gcamValue":24},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":7},{"gcamCode":"c5.35","gcamValue":5},{"gcamCode":"c5.36","gcamValue":11},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.39","gcamValue":3},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":35},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":4},{"gcamCode":"c5.46","gcamValue":63},{"gcamCode":"c5.47","gcamValue":8},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":42},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":36},{"gcamCode":"c5.51","gcamValue":36},{"gcamCode":"c5.52","gcamValue":54},{"gcamCode":"c5.53","gcamValue":34},{"gcamCode":"c5.54","gcamValue":2},{"gcamCode":"c5.56","gcamValue":18},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":13},{"gcamCode":"c5.60","gcamValue":19},{"gcamCode":"c5.61","gcamValue":21},{"gcamCode":"c5.62","gcamValue":154},{"gcamCode":"c5.7","gcamValue":9},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":29},{"gcamCode":"c6.1","gcamValue":8},{"gcamCode":"c6.4","gcamValue":18},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c7.1","gcamValue":20},{"gcamCode":"c7.2","gcamValue":11},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":6},{"gcamCode":"c8.15","gcamValue":2},{"gcamCode":"c8.2","gcamValue":14},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.25","gcamValue":6},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":6},{"gcamCode":"c8.38","gcamValue":10},{"gcamCode":"c8.4","gcamValue":13},{"gcamCode":"c8.40","gcamValue":3},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":15},{"gcamCode":"c9.1","gcamValue":15},{"gcamCode":"c9.10","gcamValue":4},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.101","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1014","gcamValue":2},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.102","gcamValue":1},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":3},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":7},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":5},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.128","gcamValue":23},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.130","gcamValue":5},{"gcamCode":"c9.134","gcamValue":4},{"gcamCode":"c9.135","gcamValue":2},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":4},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":3},{"gcamCode":"c9.162","gcamValue":12},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":5},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":3},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.184","gcamValue":14},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.19","gcamValue":2},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.192","gcamValue":4},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":5},{"gcamCode":"c9.212","gcamValue":3},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":3},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.229","gcamValue":4},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":4},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.244","gcamValue":9},{"gcamCode":"c9.245","gcamValue":5},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.250","gcamValue":4},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.254","gcamValue":2},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":2},{"gcamCode":"c9.260","gcamValue":4},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.274","gcamValue":5},{"gcamCode":"c9.275","gcamValue":5},{"gcamCode":"c9.276","gcamValue":14},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.282","gcamValue":8},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.285","gcamValue":3},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":5},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":10},{"gcamCode":"c9.291","gcamValue":5},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":13},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":5},{"gcamCode":"c9.317","gcamValue":3},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":3},{"gcamCode":"c9.34","gcamValue":5},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":5},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":6},{"gcamCode":"c9.385","gcamValue":15},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":5},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.415","gcamValue":4},{"gcamCode":"c9.419","gcamValue":3},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":4},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.478","gcamValue":3},{"gcamCode":"c9.479","gcamValue":10},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.498","gcamValue":12},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.503","gcamValue":4},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":5},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.561","gcamValue":3},{"gcamCode":"c9.566","gcamValue":2},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":3},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.575","gcamValue":6},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":14},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":4},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":3},{"gcamCode":"c9.624","gcamValue":5},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.631","gcamValue":2},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.639","gcamValue":2},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":12},{"gcamCode":"c9.645","gcamValue":2},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":12},{"gcamCode":"c9.650","gcamValue":8},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":17},{"gcamCode":"c9.654","gcamValue":7},{"gcamCode":"c9.655","gcamValue":5},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":5},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.67","gcamValue":4},{"gcamCode":"c9.670","gcamValue":5},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":5},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":6},{"gcamCode":"c9.687","gcamValue":3},{"gcamCode":"c9.688","gcamValue":6},{"gcamCode":"c9.690","gcamValue":4},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":4},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.70","gcamValue":11},{"gcamCode":"c9.700","gcamValue":1},{"gcamCode":"c9.701","gcamValue":13},{"gcamCode":"c9.702","gcamValue":2},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":10},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.707","gcamValue":1},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":3},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":3},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":20},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":16},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":17},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":5},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.758","gcamValue":3},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":4},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":14},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":22},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.79","gcamValue":4},{"gcamCode":"c9.793","gcamValue":3},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":6},{"gcamCode":"c9.8","gcamValue":5},{"gcamCode":"c9.806","gcamValue":9},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.814","gcamValue":2},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":5},{"gcamCode":"c9.822","gcamValue":4},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":5},{"gcamCode":"c9.84","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.843","gcamValue":4},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":3},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":11},{"gcamCode":"c9.861","gcamValue":3},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":4},{"gcamCode":"c9.864","gcamValue":14},{"gcamCode":"c9.865","gcamValue":4},{"gcamCode":"c9.867","gcamValue":5},{"gcamCode":"c9.868","gcamValue":13},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.874","gcamValue":4},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":15},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.944","gcamValue":1},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.947","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.954","gcamValue":1},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":10},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.996","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"c9.998","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.241182815581854},{"gcamCode":"v10.2","gcamValue":0.301996920563097},{"gcamCode":"v11.1","gcamValue":0.00529080867850099},{"gcamCode":"v19.1","gcamValue":5.156},{"gcamCode":"v19.2","gcamValue":4.797},{"gcamCode":"v19.3","gcamValue":5.011},{"gcamCode":"v19.4","gcamValue":5.1838},{"gcamCode":"v19.5","gcamValue":4.8962},{"gcamCode":"v19.6","gcamValue":5.0684},{"gcamCode":"v19.7","gcamValue":5.1536},{"gcamCode":"v19.8","gcamValue":4.7386},{"gcamCode":"v19.9","gcamValue":4.9714},{"gcamCode":"v20.1","gcamValue":0.281},{"gcamCode":"v20.10","gcamValue":-0.722333333333333},{"gcamCode":"v20.11","gcamValue":0.4635},{"gcamCode":"v20.12","gcamValue":-0.722333333333333},{"gcamCode":"v20.13","gcamValue":0.404705882352941},{"gcamCode":"v20.14","gcamValue":-0.440888888888889},{"gcamCode":"v20.15","gcamValue":0.348291666666667},{"gcamCode":"v20.16","gcamValue":-0.364533333333333},{"gcamCode":"v20.3","gcamValue":0.281},{"gcamCode":"v20.4","gcamValue":-0.75},{"gcamCode":"v20.5","gcamValue":0.281},{"gcamCode":"v20.6","gcamValue":-0.75},{"gcamCode":"v20.7","gcamValue":0.281},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.281},{"gcamCode":"v21.1","gcamValue":5.20666666666667},{"gcamCode":"v26.1","gcamValue":-0.482142857142857}]https://bloximages.newyork1.vip.townnews.com/abcfoxmontana.com/content/tncms/assets/v3/editorial/2/38/238a474c-7d33-11e9-8e5d-57b71146e07d/5ce659ea8c000.image.jpg?crop=720%2C540%2C0%2C210[""][""][""][][{"name":"Lauren DeWise","charOffset":47},{"name":"Joseph Paul DeWise","charOffset":115},{"name":"Ashley Van Hemert","charOffset":184},{"name":"Van Hemert","charOffset":592},{"name":"Van Hemert","charOffset":928},{"name":"His February","charOffset":1278},{"name":"Van Hemert","charOffset":1412},{"name":"Van Hemert","charOffset":1564},{"name":"Sioux Falls","charOffset":1618},{"name":"Ankle Foot Orthosis","charOffset":1660},{"name":"Van Hemert","charOffset":1871},{"name":"Van Hemert","charOffset":2001},{"name":"Van Hemert","charOffset":2110}][{"amount":2,"amountType":"months prior","charOffset":209},{"amount":16,"amountType":"months after the shootings","charOffset":940},{"amount":6,"amountType":"dollars ","charOffset":1609},{"amount":200,"amountType":"needed","charOffset":1613}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://prayforashley.org/;https://www.abcfoxmontana.com/news/belgrade-shooting-suspect-makes-first-court-appearance/article_7be51c75-c184-5307-9240-4496438fc9de.html;https://www.abcfoxmontana.com/news/husband-arrested-in-belgrade-shooting-death/article_7f958ae7-60ca-5435-876b-2544c7295ec0.html;https://www.abcfoxmontana.com/news/petite-gal-with-a-big-spirit-fundraiser-setup-for-belgrade/article_059bba54-02f0-5857-8995-0629fb57ac33.html;https://www.abcfoxmontana.com/news/prosecutors-man-charged-with-killing-wife-in-belgrade-brought-son/article_23856197-f1eb-555a-b3b5-e171d28c9548.html;https://www.gofundme.com/Helping-Ashley-Walk-With-Bioness-L300</PAGE_LINKS><PAGE_AUTHORS>Rachel Louise Just</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523065300</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBpropertyweek.comhttps://www.propertyweek.com/private-investor-and-auctions/barnett-ross-sells-82-of-lots-on-offer-and-raises-8m-at-may-auction/5102835.article[][]["EPU_ECONOMY_HISTORIC","TAX_FNCACT","TAX_FNCACT_LEADERS"][{"theme":"TAX_FNCACT_LEADERS","charOffset":206},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":137},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":198}][][][""][][""][]{"tone":0,"positiveScore":1.3333334,"negativeScore":1.3333334,"polarity":2.6666667,"activityReferenceDensity":33.333332,"selfGroupReferenceDensity":2.6666667,"wordCount":69}[][{"gcamCode":"wc","gcamValue":69},{"gcamCode":"c1.2","gcamValue":2},{"gcamCode":"c12.1","gcamValue":5},{"gcamCode":"c12.10","gcamValue":15},{"gcamCode":"c12.12","gcamValue":2},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":9},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":4},{"gcamCode":"c12.7","gcamValue":3},{"gcamCode":"c12.8","gcamValue":4},{"gcamCode":"c12.9","gcamValue":10},{"gcamCode":"c13.10","gcamValue":6},{"gcamCode":"c14.1","gcamValue":9},{"gcamCode":"c14.10","gcamValue":6},{"gcamCode":"c14.11","gcamValue":11},{"gcamCode":"c14.2","gcamValue":5},{"gcamCode":"c14.3","gcamValue":12},{"gcamCode":"c14.4","gcamValue":2},{"gcamCode":"c14.5","gcamValue":11},{"gcamCode":"c14.7","gcamValue":5},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.137","gcamValue":2},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.245","gcamValue":2},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.55","gcamValue":2},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c16.1","gcamValue":2},{"gcamCode":"c16.10","gcamValue":1},{"gcamCode":"c16.100","gcamValue":4},{"gcamCode":"c16.109","gcamValue":5},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":11},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":4},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":2},{"gcamCode":"c16.119","gcamValue":1},{"gcamCode":"c16.12","gcamValue":7},{"gcamCode":"c16.120","gcamValue":3},{"gcamCode":"c16.121","gcamValue":7},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.124","gcamValue":5},{"gcamCode":"c16.125","gcamValue":11},{"gcamCode":"c16.126","gcamValue":3},{"gcamCode":"c16.127","gcamValue":11},{"gcamCode":"c16.129","gcamValue":9},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":2},{"gcamCode":"c16.134","gcamValue":6},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":3},{"gcamCode":"c16.145","gcamValue":5},{"gcamCode":"c16.146","gcamValue":11},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.153","gcamValue":10},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.159","gcamValue":4},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":6},{"gcamCode":"c16.162","gcamValue":4},{"gcamCode":"c16.163","gcamValue":11},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.19","gcamValue":5},{"gcamCode":"c16.2","gcamValue":4},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":9},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":7},{"gcamCode":"c16.33","gcamValue":6},{"gcamCode":"c16.35","gcamValue":1},{"gcamCode":"c16.37","gcamValue":13},{"gcamCode":"c16.38","gcamValue":12},{"gcamCode":"c16.4","gcamValue":2},{"gcamCode":"c16.45","gcamValue":2},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":15},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.52","gcamValue":7},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":49},{"gcamCode":"c16.58","gcamValue":5},{"gcamCode":"c16.6","gcamValue":8},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":2},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.70","gcamValue":1},{"gcamCode":"c16.75","gcamValue":1},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.84","gcamValue":8},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":19},{"gcamCode":"c16.88","gcamValue":15},{"gcamCode":"c16.89","gcamValue":4},{"gcamCode":"c16.90","gcamValue":6},{"gcamCode":"c16.91","gcamValue":3},{"gcamCode":"c16.92","gcamValue":10},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":8},{"gcamCode":"c16.95","gcamValue":6},{"gcamCode":"c16.96","gcamValue":4},{"gcamCode":"c16.98","gcamValue":6},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":23},{"gcamCode":"c17.10","gcamValue":7},{"gcamCode":"c17.11","gcamValue":19},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.15","gcamValue":6},{"gcamCode":"c17.16","gcamValue":1},{"gcamCode":"c17.19","gcamValue":3},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.24","gcamValue":2},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.27","gcamValue":7},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":10},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":12},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":9},{"gcamCode":"c17.37","gcamValue":5},{"gcamCode":"c17.38","gcamValue":4},{"gcamCode":"c17.39","gcamValue":10},{"gcamCode":"c17.4","gcamValue":18},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":1},{"gcamCode":"c17.5","gcamValue":19},{"gcamCode":"c17.7","gcamValue":13},{"gcamCode":"c17.8","gcamValue":15},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c2.1","gcamValue":1},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.104","gcamValue":16},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":4},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":3},{"gcamCode":"c2.119","gcamValue":22},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":6},{"gcamCode":"c2.127","gcamValue":1},{"gcamCode":"c2.129","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":10},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":2},{"gcamCode":"c2.144","gcamValue":3},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":15},{"gcamCode":"c2.148","gcamValue":5},{"gcamCode":"c2.15","gcamValue":8},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.155","gcamValue":14},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":5},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":7},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":1},{"gcamCode":"c2.181","gcamValue":1},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":1},{"gcamCode":"c2.185","gcamValue":21},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":3},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.198","gcamValue":5},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":2},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":3},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.210","gcamValue":10},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":1},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.215","gcamValue":2},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":3},{"gcamCode":"c2.26","gcamValue":5},{"gcamCode":"c2.27","gcamValue":5},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.30","gcamValue":4},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":5},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":6},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":3},{"gcamCode":"c2.46","gcamValue":4},{"gcamCode":"c2.47","gcamValue":3},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":3},{"gcamCode":"c2.54","gcamValue":4},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":24},{"gcamCode":"c2.76","gcamValue":41},{"gcamCode":"c2.77","gcamValue":1},{"gcamCode":"c2.78","gcamValue":16},{"gcamCode":"c2.79","gcamValue":3},{"gcamCode":"c2.80","gcamValue":20},{"gcamCode":"c2.82","gcamValue":3},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":5},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":11},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":2},{"gcamCode":"c3.2","gcamValue":8},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":4},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.31","gcamValue":7},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.5","gcamValue":6},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":5},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":10},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":9},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":5},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":6},{"gcamCode":"c5.43","gcamValue":4},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":15},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":4},{"gcamCode":"c5.50","gcamValue":5},{"gcamCode":"c5.51","gcamValue":1},{"gcamCode":"c5.52","gcamValue":6},{"gcamCode":"c5.53","gcamValue":2},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":3},{"gcamCode":"c5.62","gcamValue":27},{"gcamCode":"c5.7","gcamValue":1},{"gcamCode":"c5.8","gcamValue":4},{"gcamCode":"c5.9","gcamValue":3},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c7.1","gcamValue":2},{"gcamCode":"c7.2","gcamValue":4},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.22","gcamValue":6},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.42","gcamValue":1},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.199","gcamValue":2},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.296","gcamValue":6},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.498","gcamValue":5},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.511","gcamValue":3},{"gcamCode":"c9.512","gcamValue":2},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.52","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.55","gcamValue":5},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.577","gcamValue":1},{"gcamCode":"c9.578","gcamValue":1},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.59","gcamValue":2},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":3},{"gcamCode":"c9.621","gcamValue":3},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.627","gcamValue":4},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.642","gcamValue":4},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.653","gcamValue":2},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.712","gcamValue":3},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.726","gcamValue":2},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.767","gcamValue":3},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.844","gcamValue":3},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.855","gcamValue":2},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.935","gcamValue":3},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.236781609195402},{"gcamCode":"v10.2","gcamValue":0.1875},{"gcamCode":"v11.1","gcamValue":0.164715265151515},{"gcamCode":"v19.1","gcamValue":6.12727272727273},{"gcamCode":"v19.2","gcamValue":4.98636363636364},{"gcamCode":"v19.3","gcamValue":5.86363636363636},{"gcamCode":"v19.4","gcamValue":6.25},{"gcamCode":"v19.5","gcamValue":4.89090909090909},{"gcamCode":"v19.6","gcamValue":6.03090909090909},{"gcamCode":"v19.7","gcamValue":6.03545454545454},{"gcamCode":"v19.8","gcamValue":5.08454545454545},{"gcamCode":"v19.9","gcamValue":5.74727272727273},{"gcamCode":"v20.1","gcamValue":0.375},{"gcamCode":"v20.11","gcamValue":0.675},{"gcamCode":"v20.13","gcamValue":0.497692307692308},{"gcamCode":"v20.15","gcamValue":0.449615384615385},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v20.3","gcamValue":0.708333333333333},{"gcamCode":"v20.5","gcamValue":0.708333333333333},{"gcamCode":"v20.7","gcamValue":0.708333333333333},{"gcamCode":"v20.9","gcamValue":0.675},{"gcamCode":"v21.1","gcamValue":5.68825396825397},{"gcamCode":"v26.1","gcamValue":2.3}][""][""]["https://youtube.com/channel/UCjrUXXCThy_lQN_YNAjtOIA"][][][{"amount":4,"amountType":"articles","charOffset":350}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://subscriptions.propertyweek.com/register;https://subscriptions.propertyweek.com/subscribe</PAGE_LINKS><PAGE_AUTHORS>Emanuele Midolo</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523110000</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEByahoo.comhttps://news.yahoo.com/closing-arguments-begin-antioch-church-112716937.html[][]["TAX_RELIGION","TAX_RELIGION_CHURCH"][{"theme":"TAX_RELIGION_CHURCH","charOffset":90}][][][""][][""][]{"tone":-17.647058,"positiveScore":0,"negativeScore":17.647058,"polarity":17.647058,"activityReferenceDensity":29.411764,"selfGroupReferenceDensity":0,"wordCount":15}[][{"gcamCode":"wc","gcamValue":15},{"gcamCode":"c12.1","gcamValue":2},{"gcamCode":"c12.10","gcamValue":2},{"gcamCode":"c12.12","gcamValue":2},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":3},{"gcamCode":"c12.9","gcamValue":2},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":4},{"gcamCode":"c14.3","gcamValue":1},{"gcamCode":"c14.5","gcamValue":2},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":3},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.118","gcamValue":1},{"gcamCode":"c16.12","gcamValue":1},{"gcamCode":"c16.120","gcamValue":3},{"gcamCode":"c16.121","gcamValue":2},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":1},{"gcamCode":"c16.127","gcamValue":1},{"gcamCode":"c16.129","gcamValue":2},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.134","gcamValue":2},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":2},{"gcamCode":"c16.146","gcamValue":4},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":2},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":2},{"gcamCode":"c16.162","gcamValue":1},{"gcamCode":"c16.2","gcamValue":1},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.26","gcamValue":2},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":2},{"gcamCode":"c16.33","gcamValue":1},{"gcamCode":"c16.38","gcamValue":1},{"gcamCode":"c16.57","gcamValue":9},{"gcamCode":"c16.58","gcamValue":1},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":2},{"gcamCode":"c16.70","gcamValue":1},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.84","gcamValue":1},{"gcamCode":"c16.87","gcamValue":3},{"gcamCode":"c16.88","gcamValue":2},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.92","gcamValue":2},{"gcamCode":"c16.95","gcamValue":1},{"gcamCode":"c16.98","gcamValue":1},{"gcamCode":"c17.1","gcamValue":4},{"gcamCode":"c17.10","gcamValue":4},{"gcamCode":"c17.11","gcamValue":5},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":1},{"gcamCode":"c17.15","gcamValue":1},{"gcamCode":"c17.16","gcamValue":1},{"gcamCode":"c17.19","gcamValue":2},{"gcamCode":"c17.24","gcamValue":2},{"gcamCode":"c17.27","gcamValue":2},{"gcamCode":"c17.29","gcamValue":2},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":2},{"gcamCode":"c17.39","gcamValue":1},{"gcamCode":"c17.4","gcamValue":4},{"gcamCode":"c17.41","gcamValue":1},{"gcamCode":"c17.42","gcamValue":1},{"gcamCode":"c17.43","gcamValue":1},{"gcamCode":"c17.5","gcamValue":6},{"gcamCode":"c17.7","gcamValue":2},{"gcamCode":"c17.8","gcamValue":2},{"gcamCode":"c18.179","gcamValue":1},{"gcamCode":"c2.1","gcamValue":2},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":1},{"gcamCode":"c2.104","gcamValue":2},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.114","gcamValue":2},{"gcamCode":"c2.116","gcamValue":1},{"gcamCode":"c2.119","gcamValue":9},{"gcamCode":"c2.121","gcamValue":2},{"gcamCode":"c2.125","gcamValue":1},{"gcamCode":"c2.127","gcamValue":2},{"gcamCode":"c2.128","gcamValue":1},{"gcamCode":"c2.129","gcamValue":1},{"gcamCode":"c2.14","gcamValue":2},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.143","gcamValue":1},{"gcamCode":"c2.147","gcamValue":3},{"gcamCode":"c2.15","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.155","gcamValue":2},{"gcamCode":"c2.157","gcamValue":1},{"gcamCode":"c2.158","gcamValue":1},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.185","gcamValue":3},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.193","gcamValue":2},{"gcamCode":"c2.195","gcamValue":1},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":3},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.204","gcamValue":4},{"gcamCode":"c2.210","gcamValue":1},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.220","gcamValue":1},{"gcamCode":"c2.25","gcamValue":1},{"gcamCode":"c2.31","gcamValue":2},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":1},{"gcamCode":"c2.39","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.46","gcamValue":2},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.54","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.75","gcamValue":1},{"gcamCode":"c2.76","gcamValue":13},{"gcamCode":"c2.78","gcamValue":1},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":2},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.95","gcamValue":2},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":1},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":3},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":3},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.28","gcamValue":1},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":2},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":6},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.40","gcamValue":2},{"gcamCode":"c5.46","gcamValue":3},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":1},{"gcamCode":"c5.50","gcamValue":1},{"gcamCode":"c5.51","gcamValue":1},{"gcamCode":"c5.52","gcamValue":2},{"gcamCode":"c5.53","gcamValue":1},{"gcamCode":"c5.62","gcamValue":5},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":1},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c9.1","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.579","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.246875},{"gcamCode":"v10.2","gcamValue":0.2975},{"gcamCode":"v11.1","gcamValue":0.051316875},{"gcamCode":"v19.1","gcamValue":6.28},{"gcamCode":"v19.2","gcamValue":4.34},{"gcamCode":"v19.3","gcamValue":5},{"gcamCode":"v19.4","gcamValue":5.29},{"gcamCode":"v19.5","gcamValue":4.69},{"gcamCode":"v19.6","gcamValue":4.62},{"gcamCode":"v19.7","gcamValue":6.81},{"gcamCode":"v19.8","gcamValue":4.16},{"gcamCode":"v19.9","gcamValue":5.2},{"gcamCode":"v20.13","gcamValue":0.375},{"gcamCode":"v20.15","gcamValue":0.375},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v21.1","gcamValue":4.95},{"gcamCode":"v26.1","gcamValue":-1.7}]https://s.yimg.com/uu/api/res/1.2/Wi.zWGTkXnNIlR4RZf1YEQ--~B/aD03MjA7dz0xMjgwO3NtPTE7YXBwaWQ9eXRhY2h5b24-/http://media.zenfs.com/en-US/video/wtvf_nashville_scripps_870/f0b93cd00dbaaf0fc108526b41d87da1[""][""][""][][][]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523112700</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://news.yahoo.com/amphtml/closing-arguments-begin-antioch-church-112716937.html</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBwlox.comhttps://www.wlox.com/2019/05/23/legal-experts-raided-california-reporter-did-not-commit-crime/[][]["WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_CHIEF","TAX_FNCACT_POLICE_CHIEF","MEDIA_MSM","TAX_FNCACT_JOURNALIST","SOC_GENERALCRIME","EPU_CATS_MIGRATION_FEAR_FEAR","TRIAL","TAX_FNCACT_ATTORNEY","TAX_FNCACT_REPORTER","CONSTITUTIONAL","USPEC_POLICY1","EPU_POLICY_POLICY","TAX_FNCACT_EMPLOYEE","ARMEDCONFLICT","CRISISLEX_CRISISLEXREC","TAX_FNCACT_PUBLIC_DEFENDER","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_942_ACCESS_TO_JUSTICE","TAX_FNCACT_EXECUTIVE","TAX_FNCACT_DIRECTOR","TAX_FNCACT_EXECUTIVE_DIRECTOR","ALLIANCE","CYBER_ATTACK","WB_667_ICT_INFRASTRUCTURE","WB_669_SOFTWARE_INFRASTRUCTURE","WB_2945_DATABASE","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","TAX_FNCACT_JUDGE","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_SEAL","TAX_FNCACT_JUDGES","KILL","CRISISLEX_T03_DEAD","CRIME_ILLEGAL_DRUGS","DRUG_TRADE","NEGOTIATIONS","USPEC_POLITICS_GENERAL1","TAX_FNCACT_OFFICIAL","MEDIA_SOCIAL","TAX_FNCACT_VETERAN"][{"theme":"TAX_FNCACT_POLICE_CHIEF","charOffset":123},{"theme":"TAX_FNCACT_POLICE_CHIEF","charOffset":2405},{"theme":"TAX_FNCACT_POLICE_CHIEF","charOffset":4164},{"theme":"TAX_FNCACT_JUDGES","charOffset":3101},{"theme":"KILL","charOffset":3463},{"theme":"CRISISLEX_T03_DEAD","charOffset":3463},{"theme":"CYBER_ATTACK","charOffset":1309},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":633},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":4014},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":4201},{"theme":"SECURITY_SERVICES","charOffset":117},{"theme":"SECURITY_SERVICES","charOffset":195},{"theme":"SECURITY_SERVICES","charOffset":754},{"theme":"SECURITY_SERVICES","charOffset":834},{"theme":"SECURITY_SERVICES","charOffset":949},{"theme":"SECURITY_SERVICES","charOffset":1422},{"theme":"SECURITY_SERVICES","charOffset":1830},{"theme":"SECURITY_SERVICES","charOffset":1882},{"theme":"SECURITY_SERVICES","charOffset":1951},{"theme":"SECURITY_SERVICES","charOffset":2159},{"theme":"SECURITY_SERVICES","charOffset":2399},{"theme":"SECURITY_SERVICES","charOffset":3020},{"theme":"SECURITY_SERVICES","charOffset":4158},{"theme":"SECURITY_SERVICES","charOffset":4192},{"theme":"SECURITY_SERVICES","charOffset":4715},{"theme":"TAX_FNCACT_POLICE","charOffset":117},{"theme":"TAX_FNCACT_POLICE","charOffset":195},{"theme":"TAX_FNCACT_POLICE","charOffset":754},{"theme":"TAX_FNCACT_POLICE","charOffset":834},{"theme":"TAX_FNCACT_POLICE","charOffset":949},{"theme":"TAX_FNCACT_POLICE","charOffset":1422},{"theme":"TAX_FNCACT_POLICE","charOffset":1830},{"theme":"TAX_FNCACT_POLICE","charOffset":1882},{"theme":"TAX_FNCACT_POLICE","charOffset":1951},{"theme":"TAX_FNCACT_POLICE","charOffset":2159},{"theme":"TAX_FNCACT_POLICE","charOffset":2399},{"theme":"TAX_FNCACT_POLICE","charOffset":3020},{"theme":"TAX_FNCACT_POLICE","charOffset":4158},{"theme":"TAX_FNCACT_POLICE","charOffset":4192},{"theme":"TAX_FNCACT_POLICE","charOffset":4715},{"theme":"CRISISLEX_C07_SAFETY","charOffset":117},{"theme":"CRISISLEX_C07_SAFETY","charOffset":195},{"theme":"CRISISLEX_C07_SAFETY","charOffset":754},{"theme":"CRISISLEX_C07_SAFETY","charOffset":834},{"theme":"CRISISLEX_C07_SAFETY","charOffset":949},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1422},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1830},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1882},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1951},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2159},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2399},{"theme":"CRISISLEX_C07_SAFETY","charOffset":3020},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4158},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4192},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4715},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":3739},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":3996},{"theme":"ALLIANCE","charOffset":1237},{"theme":"ALLIANCE","charOffset":4140},{"theme":"TAX_FNCACT_PUBLIC_DEFENDER","charOffset":1025},{"theme":"TAX_FNCACT_PUBLIC_DEFENDER","charOffset":3419},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1025},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":3419},{"theme":"WB_840_JUSTICE","charOffset":1025},{"theme":"WB_840_JUSTICE","charOffset":3419},{"theme":"WB_942_ACCESS_TO_JUSTICE","charOffset":1025},{"theme":"WB_942_ACCESS_TO_JUSTICE","charOffset":3419},{"theme":"TAX_FNCACT_EXECUTIVE_DIRECTOR","charOffset":1204},{"theme":"WB_667_ICT_INFRASTRUCTURE","charOffset":1385},{"theme":"WB_669_SOFTWARE_INFRASTRUCTURE","charOffset":1385},{"theme":"WB_2945_DATABASE","charOffset":1385},{"theme":"TAX_FNCACT_DIRECTOR","charOffset":1204},{"theme":"TAX_FNCACT_REPORTER","charOffset":399},{"theme":"TAX_FNCACT_REPORTER","charOffset":1279},{"theme":"TAX_FNCACT_REPORTER","charOffset":1994},{"theme":"TAX_FNCACT_REPORTER","charOffset":3963},{"theme":"TAX_FNCACT_REPORTER","charOffset":4743},{"theme":"TAX_FNCACT_REPORTER","charOffset":5106},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":1195},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":45},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":348},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":1786},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":45},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":348},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":1786},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":45},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":348},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":1786},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":1750},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":1776},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":4636},{"theme":"WB_2025_INVESTIGATION","charOffset":1750},{"theme":"WB_2025_INVESTIGATION","charOffset":1776},{"theme":"WB_2025_INVESTIGATION","charOffset":4636},{"theme":"WB_831_GOVERNANCE","charOffset":1750},{"theme":"WB_831_GOVERNANCE","charOffset":1776},{"theme":"WB_831_GOVERNANCE","charOffset":4636},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":1750},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":1776},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":4636},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1750},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1776},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":4636},{"theme":"CRIME_ILLEGAL_DRUGS","charOffset":3488},{"theme":"DRUG_TRADE","charOffset":3488},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":982},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":4906},{"theme":"TAX_FNCACT_JUDGE","charOffset":2837},{"theme":"TAX_FNCACT_VETERAN","charOffset":5097},{"theme":"CONSTITUTIONAL","charOffset":436},{"theme":"USPEC_POLICY1","charOffset":573},{"theme":"EPU_POLICY_POLICY","charOffset":573},{"theme":"TAX_WORLDMAMMALS_SEAL","charOffset":2981},{"theme":"SOC_GENERALCRIME","charOffset":234},{"theme":"SOC_GENERALCRIME","charOffset":1163},{"theme":"SOC_GENERALCRIME","charOffset":1664},{"theme":"SOC_GENERALCRIME","charOffset":3282},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":234},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":1163},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":1664},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":3282},{"theme":"MEDIA_MSM","charOffset":157},{"theme":"MEDIA_MSM","charOffset":1041},{"theme":"MEDIA_MSM","charOffset":2739},{"theme":"MEDIA_MSM","charOffset":3130},{"theme":"MEDIA_MSM","charOffset":3336},{"theme":"MEDIA_MSM","charOffset":4299},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":157},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":1041},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":2739},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":3130},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":3336},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":4299},{"theme":"ARMEDCONFLICT","charOffset":727},{"theme":"TAX_FNCACT_CHIEF","charOffset":123},{"theme":"TAX_FNCACT_CHIEF","charOffset":2405},{"theme":"TAX_FNCACT_CHIEF","charOffset":4164},{"theme":"TRIAL","charOffset":303},{"theme":"TRIAL","charOffset":3790},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":303},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":3790},{"theme":"MEDIA_SOCIAL","charOffset":4991},{"theme":"LEGISLATION","charOffset":49},{"theme":"LEGISLATION","charOffset":1649},{"theme":"LEGISLATION","charOffset":1816},{"theme":"LEGISLATION","charOffset":3760},{"theme":"LEGISLATION","charOffset":4334},{"theme":"LEGISLATION","charOffset":5156},{"theme":"EPU_POLICY_LAW","charOffset":49},{"theme":"EPU_POLICY_LAW","charOffset":1649},{"theme":"EPU_POLICY_LAW","charOffset":1816},{"theme":"EPU_POLICY_LAW","charOffset":3760},{"theme":"EPU_POLICY_LAW","charOffset":4334},{"theme":"EPU_POLICY_LAW","charOffset":5156},{"theme":"NEGOTIATIONS","charOffset":3513}][{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"}][{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":5145},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":13},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":95},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":279},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":806},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":1538},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":2016},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":2377},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":2816}]["david snyder","bryan carmody","william scott","michael andraychak","duffy carolan","jeff adachi"][{"person":"David Snyder","charOffset":1183},{"person":"Bryan Carmody","charOffset":876},{"person":"William Scott","charOffset":2419},{"person":"Michael Andraychak","charOffset":1577},{"person":"Duffy Carolan","charOffset":317},{"person":"Jeff Adachi","charOffset":3433}]["u s supreme court","first amendment coalition","associated press","san francisco police"][{"organisation":"First Amendment Coalition","charOffset":1237},{"organisation":"First Amendment Coalition","charOffset":4140},{"organisation":"Associated Press","charOffset":5233}]{"tone":-1.1655011,"positiveScore":2.6806526,"negativeScore":3.8461537,"polarity":6.5268064,"activityReferenceDensity":24.358974,"selfGroupReferenceDensity":0.11655012,"wordCount":804}[{"dateResolution":4,"month":5,"day":10,"year":0,"charOffset":2462}][{"gcamCode":"wc","gcamValue":804},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":51},{"gcamCode":"c12.10","gcamValue":72},{"gcamCode":"c12.12","gcamValue":25},{"gcamCode":"c12.13","gcamValue":19},{"gcamCode":"c12.14","gcamValue":30},{"gcamCode":"c12.3","gcamValue":21},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":25},{"gcamCode":"c12.7","gcamValue":45},{"gcamCode":"c12.8","gcamValue":26},{"gcamCode":"c12.9","gcamValue":51},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.6","gcamValue":1},{"gcamCode":"c13.8","gcamValue":1},{"gcamCode":"c14.1","gcamValue":41},{"gcamCode":"c14.10","gcamValue":39},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":32},{"gcamCode":"c14.3","gcamValue":57},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":74},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":11},{"gcamCode":"c14.9","gcamValue":6},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.115","gcamValue":1},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.141","gcamValue":1},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.17","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":2},{"gcamCode":"c15.231","gcamValue":1},{"gcamCode":"c15.233","gcamValue":2},{"gcamCode":"c15.246","gcamValue":1},{"gcamCode":"c15.247","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.28","gcamValue":1},{"gcamCode":"c15.31","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.48","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.65","gcamValue":1},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":13},{"gcamCode":"c16.101","gcamValue":9},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":38},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":141},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":47},{"gcamCode":"c16.115","gcamValue":12},{"gcamCode":"c16.116","gcamValue":19},{"gcamCode":"c16.117","gcamValue":21},{"gcamCode":"c16.118","gcamValue":31},{"gcamCode":"c16.12","gcamValue":46},{"gcamCode":"c16.120","gcamValue":25},{"gcamCode":"c16.121","gcamValue":81},{"gcamCode":"c16.122","gcamValue":8},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":42},{"gcamCode":"c16.126","gcamValue":34},{"gcamCode":"c16.127","gcamValue":75},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":85},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":14},{"gcamCode":"c16.131","gcamValue":38},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":68},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.138","gcamValue":34},{"gcamCode":"c16.139","gcamValue":21},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":21},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":53},{"gcamCode":"c16.146","gcamValue":58},{"gcamCode":"c16.147","gcamValue":7},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.152","gcamValue":9},{"gcamCode":"c16.153","gcamValue":68},{"gcamCode":"c16.155","gcamValue":5},{"gcamCode":"c16.156","gcamValue":5},{"gcamCode":"c16.157","gcamValue":23},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":49},{"gcamCode":"c16.16","gcamValue":14},{"gcamCode":"c16.160","gcamValue":2},{"gcamCode":"c16.161","gcamValue":65},{"gcamCode":"c16.162","gcamValue":24},{"gcamCode":"c16.163","gcamValue":45},{"gcamCode":"c16.164","gcamValue":11},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.167","gcamValue":3},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.19","gcamValue":11},{"gcamCode":"c16.2","gcamValue":74},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":16},{"gcamCode":"c16.22","gcamValue":21},{"gcamCode":"c16.23","gcamValue":5},{"gcamCode":"c16.24","gcamValue":6},{"gcamCode":"c16.26","gcamValue":69},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":4},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":7},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":38},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":43},{"gcamCode":"c16.34","gcamValue":3},{"gcamCode":"c16.35","gcamValue":35},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":69},{"gcamCode":"c16.38","gcamValue":34},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":47},{"gcamCode":"c16.41","gcamValue":26},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":24},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":109},{"gcamCode":"c16.48","gcamValue":10},{"gcamCode":"c16.49","gcamValue":4},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":43},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":25},{"gcamCode":"c16.57","gcamValue":427},{"gcamCode":"c16.58","gcamValue":41},{"gcamCode":"c16.6","gcamValue":73},{"gcamCode":"c16.60","gcamValue":16},{"gcamCode":"c16.62","gcamValue":23},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":10},{"gcamCode":"c16.65","gcamValue":16},{"gcamCode":"c16.66","gcamValue":19},{"gcamCode":"c16.68","gcamValue":30},{"gcamCode":"c16.69","gcamValue":27},{"gcamCode":"c16.7","gcamValue":8},{"gcamCode":"c16.70","gcamValue":20},{"gcamCode":"c16.71","gcamValue":6},{"gcamCode":"c16.72","gcamValue":6},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":21},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.78","gcamValue":31},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":33},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":117},{"gcamCode":"c16.88","gcamValue":80},{"gcamCode":"c16.89","gcamValue":34},{"gcamCode":"c16.9","gcamValue":2},{"gcamCode":"c16.90","gcamValue":31},{"gcamCode":"c16.91","gcamValue":30},{"gcamCode":"c16.92","gcamValue":61},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":54},{"gcamCode":"c16.95","gcamValue":72},{"gcamCode":"c16.96","gcamValue":13},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":67},{"gcamCode":"c17.1","gcamValue":192},{"gcamCode":"c17.10","gcamValue":81},{"gcamCode":"c17.11","gcamValue":149},{"gcamCode":"c17.12","gcamValue":30},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":4},{"gcamCode":"c17.15","gcamValue":67},{"gcamCode":"c17.16","gcamValue":15},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":54},{"gcamCode":"c17.2","gcamValue":5},{"gcamCode":"c17.20","gcamValue":8},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":23},{"gcamCode":"c17.23","gcamValue":8},{"gcamCode":"c17.24","gcamValue":43},{"gcamCode":"c17.25","gcamValue":10},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":59},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":17},{"gcamCode":"c17.3","gcamValue":4},{"gcamCode":"c17.30","gcamValue":15},{"gcamCode":"c17.31","gcamValue":25},{"gcamCode":"c17.32","gcamValue":29},{"gcamCode":"c17.33","gcamValue":63},{"gcamCode":"c17.34","gcamValue":17},{"gcamCode":"c17.35","gcamValue":9},{"gcamCode":"c17.36","gcamValue":34},{"gcamCode":"c17.37","gcamValue":22},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":20},{"gcamCode":"c17.4","gcamValue":173},{"gcamCode":"c17.40","gcamValue":20},{"gcamCode":"c17.41","gcamValue":36},{"gcamCode":"c17.42","gcamValue":67},{"gcamCode":"c17.43","gcamValue":37},{"gcamCode":"c17.5","gcamValue":145},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":82},{"gcamCode":"c17.8","gcamValue":64},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.13","gcamValue":20},{"gcamCode":"c18.137","gcamValue":2},{"gcamCode":"c18.138","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.146","gcamValue":1},{"gcamCode":"c18.150","gcamValue":1},{"gcamCode":"c18.18","gcamValue":1},{"gcamCode":"c18.193","gcamValue":47},{"gcamCode":"c18.201","gcamValue":2},{"gcamCode":"c18.21","gcamValue":6},{"gcamCode":"c18.269","gcamValue":4},{"gcamCode":"c18.301","gcamValue":1},{"gcamCode":"c18.342","gcamValue":9},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.39","gcamValue":2},{"gcamCode":"c18.71","gcamValue":15},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":18},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":14},{"gcamCode":"c2.102","gcamValue":22},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":134},{"gcamCode":"c2.107","gcamValue":6},{"gcamCode":"c2.108","gcamValue":13},{"gcamCode":"c2.109","gcamValue":7},{"gcamCode":"c2.11","gcamValue":8},{"gcamCode":"c2.110","gcamValue":10},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":6},{"gcamCode":"c2.114","gcamValue":42},{"gcamCode":"c2.115","gcamValue":14},{"gcamCode":"c2.116","gcamValue":26},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":222},{"gcamCode":"c2.12","gcamValue":22},{"gcamCode":"c2.120","gcamValue":7},{"gcamCode":"c2.121","gcamValue":53},{"gcamCode":"c2.122","gcamValue":16},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":31},{"gcamCode":"c2.126","gcamValue":35},{"gcamCode":"c2.127","gcamValue":84},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":75},{"gcamCode":"c2.130","gcamValue":6},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":22},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":16},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.138","gcamValue":4},{"gcamCode":"c2.139","gcamValue":5},{"gcamCode":"c2.14","gcamValue":76},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":29},{"gcamCode":"c2.142","gcamValue":16},{"gcamCode":"c2.143","gcamValue":84},{"gcamCode":"c2.144","gcamValue":11},{"gcamCode":"c2.145","gcamValue":5},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":103},{"gcamCode":"c2.148","gcamValue":63},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":29},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":21},{"gcamCode":"c2.154","gcamValue":17},{"gcamCode":"c2.155","gcamValue":69},{"gcamCode":"c2.156","gcamValue":59},{"gcamCode":"c2.157","gcamValue":63},{"gcamCode":"c2.158","gcamValue":52},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":21},{"gcamCode":"c2.162","gcamValue":14},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":15},{"gcamCode":"c2.167","gcamValue":3},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":17},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":53},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":21},{"gcamCode":"c2.180","gcamValue":21},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":184},{"gcamCode":"c2.186","gcamValue":12},{"gcamCode":"c2.187","gcamValue":49},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":7},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":17},{"gcamCode":"c2.193","gcamValue":38},{"gcamCode":"c2.195","gcamValue":86},{"gcamCode":"c2.196","gcamValue":15},{"gcamCode":"c2.197","gcamValue":10},{"gcamCode":"c2.198","gcamValue":59},{"gcamCode":"c2.199","gcamValue":16},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":10},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":40},{"gcamCode":"c2.204","gcamValue":46},{"gcamCode":"c2.205","gcamValue":9},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":8},{"gcamCode":"c2.209","gcamValue":9},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":86},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":14},{"gcamCode":"c2.214","gcamValue":23},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":6},{"gcamCode":"c2.223","gcamValue":8},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":24},{"gcamCode":"c2.226","gcamValue":16},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":39},{"gcamCode":"c2.25","gcamValue":67},{"gcamCode":"c2.26","gcamValue":36},{"gcamCode":"c2.27","gcamValue":36},{"gcamCode":"c2.28","gcamValue":10},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.30","gcamValue":59},{"gcamCode":"c2.31","gcamValue":43},{"gcamCode":"c2.32","gcamValue":7},{"gcamCode":"c2.33","gcamValue":10},{"gcamCode":"c2.34","gcamValue":47},{"gcamCode":"c2.35","gcamValue":19},{"gcamCode":"c2.36","gcamValue":13},{"gcamCode":"c2.37","gcamValue":15},{"gcamCode":"c2.38","gcamValue":4},{"gcamCode":"c2.39","gcamValue":137},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.44","gcamValue":35},{"gcamCode":"c2.45","gcamValue":32},{"gcamCode":"c2.46","gcamValue":84},{"gcamCode":"c2.47","gcamValue":4},{"gcamCode":"c2.48","gcamValue":18},{"gcamCode":"c2.49","gcamValue":4},{"gcamCode":"c2.50","gcamValue":45},{"gcamCode":"c2.52","gcamValue":78},{"gcamCode":"c2.53","gcamValue":20},{"gcamCode":"c2.54","gcamValue":111},{"gcamCode":"c2.55","gcamValue":6},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":9},{"gcamCode":"c2.58","gcamValue":28},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.60","gcamValue":5},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":27},{"gcamCode":"c2.64","gcamValue":52},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":5},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":5},{"gcamCode":"c2.74","gcamValue":2},{"gcamCode":"c2.75","gcamValue":114},{"gcamCode":"c2.76","gcamValue":553},{"gcamCode":"c2.77","gcamValue":91},{"gcamCode":"c2.78","gcamValue":110},{"gcamCode":"c2.79","gcamValue":20},{"gcamCode":"c2.80","gcamValue":113},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":36},{"gcamCode":"c2.83","gcamValue":11},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":35},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":16},{"gcamCode":"c2.89","gcamValue":34},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":13},{"gcamCode":"c2.95","gcamValue":119},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":46},{"gcamCode":"c2.98","gcamValue":34},{"gcamCode":"c2.99","gcamValue":7},{"gcamCode":"c25.1","gcamValue":7},{"gcamCode":"c25.11","gcamValue":5},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":8},{"gcamCode":"c25.7","gcamValue":11},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":49},{"gcamCode":"c3.2","gcamValue":64},{"gcamCode":"c3.3","gcamValue":1},{"gcamCode":"c35.1","gcamValue":19},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.14","gcamValue":11},{"gcamCode":"c35.15","gcamValue":12},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":34},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.22","gcamValue":3},{"gcamCode":"c35.24","gcamValue":5},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.29","gcamValue":5},{"gcamCode":"c35.30","gcamValue":8},{"gcamCode":"c35.31","gcamValue":48},{"gcamCode":"c35.32","gcamValue":25},{"gcamCode":"c35.33","gcamValue":66},{"gcamCode":"c35.4","gcamValue":7},{"gcamCode":"c35.5","gcamValue":5},{"gcamCode":"c35.7","gcamValue":7},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":7},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":6},{"gcamCode":"c39.2","gcamValue":11},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":31},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":23},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":10},{"gcamCode":"c39.4","gcamValue":20},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c4.1","gcamValue":1},{"gcamCode":"c4.13","gcamValue":27},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.18","gcamValue":3},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":21},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":34},{"gcamCode":"c5.10","gcamValue":28},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":63},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":15},{"gcamCode":"c5.2","gcamValue":4},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":20},{"gcamCode":"c5.22","gcamValue":14},{"gcamCode":"c5.23","gcamValue":10},{"gcamCode":"c5.24","gcamValue":7},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":17},{"gcamCode":"c5.29","gcamValue":24},{"gcamCode":"c5.30","gcamValue":89},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.34","gcamValue":11},{"gcamCode":"c5.35","gcamValue":17},{"gcamCode":"c5.36","gcamValue":27},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":9},{"gcamCode":"c5.40","gcamValue":77},{"gcamCode":"c5.42","gcamValue":6},{"gcamCode":"c5.43","gcamValue":10},{"gcamCode":"c5.44","gcamValue":14},{"gcamCode":"c5.45","gcamValue":13},{"gcamCode":"c5.46","gcamValue":98},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":8},{"gcamCode":"c5.49","gcamValue":70},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":84},{"gcamCode":"c5.51","gcamValue":61},{"gcamCode":"c5.52","gcamValue":102},{"gcamCode":"c5.53","gcamValue":98},{"gcamCode":"c5.54","gcamValue":44},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":7},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":34},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":58},{"gcamCode":"c5.62","gcamValue":349},{"gcamCode":"c5.7","gcamValue":25},{"gcamCode":"c5.8","gcamValue":60},{"gcamCode":"c5.9","gcamValue":24},{"gcamCode":"c6.1","gcamValue":32},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":5},{"gcamCode":"c6.4","gcamValue":38},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c6.6","gcamValue":7},{"gcamCode":"c7.1","gcamValue":38},{"gcamCode":"c7.2","gcamValue":37},{"gcamCode":"c8.10","gcamValue":6},{"gcamCode":"c8.12","gcamValue":4},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.16","gcamValue":4},{"gcamCode":"c8.2","gcamValue":7},{"gcamCode":"c8.22","gcamValue":4},{"gcamCode":"c8.23","gcamValue":11},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.34","gcamValue":3},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":24},{"gcamCode":"c8.38","gcamValue":32},{"gcamCode":"c8.39","gcamValue":10},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":17},{"gcamCode":"c8.42","gcamValue":47},{"gcamCode":"c8.43","gcamValue":25},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":8},{"gcamCode":"c9.1","gcamValue":23},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":15},{"gcamCode":"c9.1006","gcamValue":14},{"gcamCode":"c9.1007","gcamValue":17},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1009","gcamValue":3},{"gcamCode":"c9.101","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":9},{"gcamCode":"c9.1011","gcamValue":19},{"gcamCode":"c9.1012","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.102","gcamValue":1},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1042","gcamValue":2},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.106","gcamValue":4},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":15},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":4},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.122","gcamValue":18},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.128","gcamValue":40},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.136","gcamValue":1},{"gcamCode":"c9.138","gcamValue":4},{"gcamCode":"c9.14","gcamValue":4},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":6},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.158","gcamValue":26},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":10},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":16},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":9},{"gcamCode":"c9.184","gcamValue":9},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":3},{"gcamCode":"c9.200","gcamValue":9},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":7},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":5},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.234","gcamValue":2},{"gcamCode":"c9.235","gcamValue":4},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.238","gcamValue":2},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":3},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":4},{"gcamCode":"c9.276","gcamValue":3},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":2},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":21},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.310","gcamValue":4},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":3},{"gcamCode":"c9.33","gcamValue":9},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.35","gcamValue":10},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":7},{"gcamCode":"c9.374","gcamValue":1},{"gcamCode":"c9.383","gcamValue":14},{"gcamCode":"c9.384","gcamValue":7},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.422","gcamValue":11},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":5},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":7},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":8},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":18},{"gcamCode":"c9.481","gcamValue":5},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":13},{"gcamCode":"c9.49","gcamValue":8},{"gcamCode":"c9.491","gcamValue":12},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":10},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":6},{"gcamCode":"c9.502","gcamValue":18},{"gcamCode":"c9.503","gcamValue":5},{"gcamCode":"c9.504","gcamValue":4},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":23},{"gcamCode":"c9.513","gcamValue":19},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.518","gcamValue":12},{"gcamCode":"c9.519","gcamValue":16},{"gcamCode":"c9.521","gcamValue":6},{"gcamCode":"c9.522","gcamValue":16},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":10},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.537","gcamValue":9},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":5},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":20},{"gcamCode":"c9.55","gcamValue":9},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":37},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":27},{"gcamCode":"c9.556","gcamValue":36},{"gcamCode":"c9.557","gcamValue":43},{"gcamCode":"c9.558","gcamValue":3},{"gcamCode":"c9.559","gcamValue":7},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":26},{"gcamCode":"c9.561","gcamValue":13},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":3},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":22},{"gcamCode":"c9.578","gcamValue":6},{"gcamCode":"c9.579","gcamValue":22},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":4},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.615","gcamValue":6},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":11},{"gcamCode":"c9.619","gcamValue":28},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":3},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":2},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.64","gcamValue":5},{"gcamCode":"c9.640","gcamValue":5},{"gcamCode":"c9.642","gcamValue":19},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.648","gcamValue":8},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":7},{"gcamCode":"c9.653","gcamValue":29},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":16},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":4},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.665","gcamValue":5},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":7},{"gcamCode":"c9.668","gcamValue":5},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":16},{"gcamCode":"c9.671","gcamValue":7},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":6},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":9},{"gcamCode":"c9.677","gcamValue":4},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.683","gcamValue":11},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":14},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.691","gcamValue":2},{"gcamCode":"c9.692","gcamValue":7},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":6},{"gcamCode":"c9.696","gcamValue":5},{"gcamCode":"c9.698","gcamValue":4},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":9},{"gcamCode":"c9.701","gcamValue":17},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":7},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.708","gcamValue":12},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":3},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":8},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":8},{"gcamCode":"c9.723","gcamValue":9},{"gcamCode":"c9.724","gcamValue":18},{"gcamCode":"c9.725","gcamValue":6},{"gcamCode":"c9.726","gcamValue":28},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":8},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":8},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":3},{"gcamCode":"c9.748","gcamValue":11},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":8},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":13},{"gcamCode":"c9.759","gcamValue":8},{"gcamCode":"c9.76","gcamValue":7},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":21},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":22},{"gcamCode":"c9.767","gcamValue":42},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":4},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":8},{"gcamCode":"c9.772","gcamValue":8},{"gcamCode":"c9.773","gcamValue":2},{"gcamCode":"c9.774","gcamValue":4},{"gcamCode":"c9.775","gcamValue":7},{"gcamCode":"c9.776","gcamValue":6},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":3},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.786","gcamValue":2},{"gcamCode":"c9.788","gcamValue":8},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":13},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":4},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":8},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":2},{"gcamCode":"c9.8","gcamValue":6},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":7},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":11},{"gcamCode":"c9.806","gcamValue":12},{"gcamCode":"c9.808","gcamValue":7},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":7},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":3},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.827","gcamValue":3},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":21},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":5},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.841","gcamValue":4},{"gcamCode":"c9.842","gcamValue":6},{"gcamCode":"c9.843","gcamValue":3},{"gcamCode":"c9.844","gcamValue":5},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":2},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.855","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":5},{"gcamCode":"c9.86","gcamValue":6},{"gcamCode":"c9.860","gcamValue":8},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":6},{"gcamCode":"c9.864","gcamValue":21},{"gcamCode":"c9.865","gcamValue":4},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":8},{"gcamCode":"c9.868","gcamValue":22},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":9},{"gcamCode":"c9.870","gcamValue":2},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.872","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.877","gcamValue":17},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":5},{"gcamCode":"c9.897","gcamValue":6},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":11},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.911","gcamValue":7},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.921","gcamValue":3},{"gcamCode":"c9.923","gcamValue":7},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.930","gcamValue":4},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":11},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.939","gcamValue":3},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.949","gcamValue":12},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.962","gcamValue":10},{"gcamCode":"c9.963","gcamValue":7},{"gcamCode":"c9.964","gcamValue":17},{"gcamCode":"c9.965","gcamValue":7},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.968","gcamValue":2},{"gcamCode":"c9.972","gcamValue":16},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.978","gcamValue":9},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":9},{"gcamCode":"c9.986","gcamValue":22},{"gcamCode":"c9.988","gcamValue":5},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.991","gcamValue":6},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.241710069444444},{"gcamCode":"v10.2","gcamValue":0.304453001579779},{"gcamCode":"v11.1","gcamValue":0.00298502991452993},{"gcamCode":"v19.1","gcamValue":4.90917647058824},{"gcamCode":"v19.2","gcamValue":5.14458823529412},{"gcamCode":"v19.3","gcamValue":4.63341176470588},{"gcamCode":"v19.4","gcamValue":4.92788235294117},{"gcamCode":"v19.5","gcamValue":5.02305882352941},{"gcamCode":"v19.6","gcamValue":4.57470588235294},{"gcamCode":"v19.7","gcamValue":4.88788235294118},{"gcamCode":"v19.8","gcamValue":5.26352941176471},{"gcamCode":"v19.9","gcamValue":4.70447058823529},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-0.6405},{"gcamCode":"v20.11","gcamValue":0.573529411764706},{"gcamCode":"v20.12","gcamValue":-0.523416666666667},{"gcamCode":"v20.13","gcamValue":0.4393},{"gcamCode":"v20.14","gcamValue":-0.4823125},{"gcamCode":"v20.15","gcamValue":0.365897959183673},{"gcamCode":"v20.16","gcamValue":-0.431317073170732},{"gcamCode":"v20.3","gcamValue":0.6405},{"gcamCode":"v20.4","gcamValue":-0.625},{"gcamCode":"v20.5","gcamValue":0.6405},{"gcamCode":"v20.6","gcamValue":-0.625},{"gcamCode":"v20.7","gcamValue":0.7135},{"gcamCode":"v20.8","gcamValue":-0.625},{"gcamCode":"v20.9","gcamValue":0.65625},{"gcamCode":"v21.1","gcamValue":5.26247887323943},{"gcamCode":"v26.1","gcamValue":0.242857142857143}]https://www.wlox.com/resizer/M4vLz_J37q3QX2EzbBWZVNA_6XI=/1200x0/arc-anglerfish-arc2-prod-raycom.s3.amazonaws.com/public/T7IPPJXHW5HJZG6FQUFV5YZAAI.jpg[""][""][""][{"charLength":48,"verb":"","quote":"not a confidential , legally protected document","charOffset":1458}][{"name":"San Francisco","charOffset":78},{"name":"Duffy Carolan","charOffset":275},{"name":"San Francisco","charOffset":785},{"name":"Bryan Carmody","charOffset":842},{"name":"David Snyder","charOffset":1154},{"name":"First Amendment","charOffset":1201},{"name":"Michael Andraychak","charOffset":1546},{"name":"San Francisco Chronicle","charOffset":2007},{"name":"Francisco Police Chief William Scott","charOffset":2387},{"name":"First Amendment","charOffset":2772},{"name":"San Francisco","charOffset":2813},{"name":"First Amendment Coalition","charOffset":4184},{"name":"Associated Press","charOffset":5319}][{"amount":12,"amountType":"of cameras","charOffset":1871},{"amount":3,"amountType":"television news outlets","charOffset":3932},{"amount":15,"amountType":"dollars ","charOffset":4209},{"amount":12,"amountType":"of news organizations siding","charOffset":4357}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://twitter.com/search;https://www.gofundme.com/journalist-raided-by-police-support-1st-amendment</PAGE_LINKS><PAGE_AUTHORS>JANIE HAR</PAGE_AUTHORS><PAGE_ALTURL_AMP>/2019/05/23/legal-experts-raided-california-reporter-did-not-commit-crime/?outputType=amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBtheglobeandmail.comhttps://www.theglobeandmail.com/arts/film/article-documentary-me-my-mouth-and-i-offers-a-mouthful-at-torontos/[][]["TAX_DISEASE","TAX_DISEASE_SYNDROME","TAX_DISEASE_TOURETTE_SYNDROME","MANMADE_DISASTER_IMPLIED","TAX_FNCACT","TAX_FNCACT_DIRECTOR","TAX_DISEASE_STUTTERING","DISABILITY","WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","WB_635_PUBLIC_HEALTH","WB_1464_HEALTH_OF_THE_DISABLED","WB_621_HEALTH_NUTRITION_AND_POPULATION","TAX_ETHNICITY","TAX_ETHNICITY_PALESTINIAN","TAX_FNCACT_CHILD","GENERAL_HEALTH","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITAL","CRISISLEX_C03_WELLBEING_HEALTH","CRISISLEX_CRISISLEXREC","TAX_FNCACT_ARTIST","TAX_ETHNICITY_AUSTRALIAN"][{"theme":"TAX_ETHNICITY_PALESTINIAN","charOffset":1489},{"theme":"DISABILITY","charOffset":1166},{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":1166},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":1166},{"theme":"WB_1464_HEALTH_OF_THE_DISABLED","charOffset":1166},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1166},{"theme":"TAX_FNCACT_DIRECTOR","charOffset":465},{"theme":"TAX_FNCACT_ARTIST","charOffset":1694},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1549},{"theme":"TAX_FNCACT_CHILD","charOffset":1495},{"theme":"TAX_DISEASE_TOURETTE_SYNDROME","charOffset":350},{"theme":"GENERAL_HEALTH","charOffset":1525},{"theme":"MEDICAL","charOffset":1525},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":1525},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1525},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":449},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":833},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":959},{"theme":"TAX_ETHNICITY_AUSTRALIAN","charOffset":1849},{"theme":"TAX_DISEASE_STUTTERING","charOffset":744},{"theme":"TAX_DISEASE_SYNDROME","charOffset":350}][{"geoType":"WORLDCITY","geoName":"Gaza, Israel (General), Israel","countryCode":"IS","adm1Code":"IS00","adm2Code":"","geoPoint":{"latitude":31.4167,"longitude":34.3333},"featureId":"-797156"},{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},{"geoType":"COUNTRY","geoName":"Israel","countryCode":"IS","adm1Code":"IS","adm2Code":"","geoPoint":{"latitude":31.5,"longitude":34.75},"featureId":"IS"}][{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":280},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":541},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":1705},{"location":{"geoType":"COUNTRY","geoName":"Australian","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},"charOffset":1849},{"location":{"geoType":"WORLDCITY","geoName":"Gaza, Israel (General), Israel","countryCode":"IS","adm1Code":"IS00","adm2Code":"18315","geoPoint":{"latitude":31.4167,"longitude":34.3333},"featureId":"-797156"},"charOffset":1557},{"location":{"geoType":"COUNTRY","geoName":"Israeli","countryCode":"IS","adm1Code":"IS","adm2Code":"","geoPoint":{"latitude":31.5,"longitude":34.75},"featureId":"IS"},"charOffset":1516},{"location":{"geoType":"COUNTRY","geoName":"British","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":142},{"location":{"geoType":"COUNTRY","geoName":"Palestinian","countryCode":"IS","adm1Code":"IS","adm2Code":"","geoPoint":{"latitude":31.5,"longitude":34.75},"featureId":"IS"},"charOffset":1489}]["samuel beckett","adam cohoon","jess thom"][{"person":"Samuel Beckett","charOffset":229},{"person":"Adam Cohoon","charOffset":1635},{"person":"Jess Thom","charOffset":75}][""][]{"tone":-1.1173184,"positiveScore":2.793296,"negativeScore":3.9106145,"polarity":6.703911,"activityReferenceDensity":20.391062,"selfGroupReferenceDensity":1.9553072,"wordCount":308}[{"dateResolution":4,"month":6,"day":2,"year":0,"charOffset":568}][{"gcamCode":"wc","gcamValue":308},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c12.1","gcamValue":24},{"gcamCode":"c12.10","gcamValue":28},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":10},{"gcamCode":"c12.14","gcamValue":9},{"gcamCode":"c12.3","gcamValue":6},{"gcamCode":"c12.4","gcamValue":5},{"gcamCode":"c12.5","gcamValue":18},{"gcamCode":"c12.7","gcamValue":17},{"gcamCode":"c12.8","gcamValue":14},{"gcamCode":"c12.9","gcamValue":24},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c13.9","gcamValue":4},{"gcamCode":"c14.1","gcamValue":25},{"gcamCode":"c14.10","gcamValue":15},{"gcamCode":"c14.11","gcamValue":45},{"gcamCode":"c14.2","gcamValue":20},{"gcamCode":"c14.3","gcamValue":26},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":35},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":5},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.115","gcamValue":1},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.137","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.206","gcamValue":3},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.260","gcamValue":3},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.31","gcamValue":1},{"gcamCode":"c15.34","gcamValue":2},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.105","gcamValue":5},{"gcamCode":"c16.106","gcamValue":13},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":19},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":54},{"gcamCode":"c16.113","gcamValue":6},{"gcamCode":"c16.114","gcamValue":23},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":6},{"gcamCode":"c16.117","gcamValue":10},{"gcamCode":"c16.118","gcamValue":19},{"gcamCode":"c16.12","gcamValue":41},{"gcamCode":"c16.120","gcamValue":11},{"gcamCode":"c16.121","gcamValue":15},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.123","gcamValue":2},{"gcamCode":"c16.124","gcamValue":5},{"gcamCode":"c16.125","gcamValue":23},{"gcamCode":"c16.126","gcamValue":19},{"gcamCode":"c16.127","gcamValue":23},{"gcamCode":"c16.128","gcamValue":4},{"gcamCode":"c16.129","gcamValue":43},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":13},{"gcamCode":"c16.131","gcamValue":15},{"gcamCode":"c16.134","gcamValue":32},{"gcamCode":"c16.137","gcamValue":1},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":13},{"gcamCode":"c16.140","gcamValue":8},{"gcamCode":"c16.145","gcamValue":22},{"gcamCode":"c16.146","gcamValue":11},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":20},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":16},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":27},{"gcamCode":"c16.16","gcamValue":6},{"gcamCode":"c16.161","gcamValue":29},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":15},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":10},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":3},{"gcamCode":"c16.26","gcamValue":42},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":20},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":24},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":21},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":24},{"gcamCode":"c16.38","gcamValue":7},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":27},{"gcamCode":"c16.41","gcamValue":15},{"gcamCode":"c16.45","gcamValue":12},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":33},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":6},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":4},{"gcamCode":"c16.57","gcamValue":147},{"gcamCode":"c16.58","gcamValue":16},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":35},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":12},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.65","gcamValue":14},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":10},{"gcamCode":"c16.69","gcamValue":12},{"gcamCode":"c16.7","gcamValue":5},{"gcamCode":"c16.70","gcamValue":15},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":13},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.78","gcamValue":7},{"gcamCode":"c16.81","gcamValue":10},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":8},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":18},{"gcamCode":"c16.88","gcamValue":52},{"gcamCode":"c16.89","gcamValue":20},{"gcamCode":"c16.90","gcamValue":9},{"gcamCode":"c16.91","gcamValue":3},{"gcamCode":"c16.92","gcamValue":21},{"gcamCode":"c16.93","gcamValue":5},{"gcamCode":"c16.94","gcamValue":18},{"gcamCode":"c16.95","gcamValue":15},{"gcamCode":"c16.96","gcamValue":6},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":27},{"gcamCode":"c17.1","gcamValue":90},{"gcamCode":"c17.10","gcamValue":36},{"gcamCode":"c17.11","gcamValue":50},{"gcamCode":"c17.12","gcamValue":7},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":13},{"gcamCode":"c17.16","gcamValue":8},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":8},{"gcamCode":"c17.19","gcamValue":23},{"gcamCode":"c17.2","gcamValue":7},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.21","gcamValue":4},{"gcamCode":"c17.22","gcamValue":6},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":29},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.27","gcamValue":32},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":14},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":5},{"gcamCode":"c17.31","gcamValue":13},{"gcamCode":"c17.32","gcamValue":8},{"gcamCode":"c17.33","gcamValue":18},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":10},{"gcamCode":"c17.37","gcamValue":13},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":8},{"gcamCode":"c17.4","gcamValue":79},{"gcamCode":"c17.40","gcamValue":5},{"gcamCode":"c17.41","gcamValue":7},{"gcamCode":"c17.42","gcamValue":16},{"gcamCode":"c17.43","gcamValue":9},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":58},{"gcamCode":"c17.6","gcamValue":4},{"gcamCode":"c17.7","gcamValue":37},{"gcamCode":"c17.8","gcamValue":36},{"gcamCode":"c17.9","gcamValue":5},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.110","gcamValue":2},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.180","gcamValue":5},{"gcamCode":"c18.193","gcamValue":3},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.104","gcamValue":46},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":4},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.112","gcamValue":6},{"gcamCode":"c2.114","gcamValue":13},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.118","gcamValue":3},{"gcamCode":"c2.119","gcamValue":74},{"gcamCode":"c2.12","gcamValue":14},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":20},{"gcamCode":"c2.122","gcamValue":10},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":15},{"gcamCode":"c2.126","gcamValue":14},{"gcamCode":"c2.127","gcamValue":26},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":7},{"gcamCode":"c2.131","gcamValue":3},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":25},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":12},{"gcamCode":"c2.144","gcamValue":9},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":7},{"gcamCode":"c2.147","gcamValue":45},{"gcamCode":"c2.148","gcamValue":36},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":12},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":10},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":40},{"gcamCode":"c2.156","gcamValue":8},{"gcamCode":"c2.157","gcamValue":34},{"gcamCode":"c2.158","gcamValue":21},{"gcamCode":"c2.159","gcamValue":5},{"gcamCode":"c2.160","gcamValue":17},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":4},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":5},{"gcamCode":"c2.176","gcamValue":7},{"gcamCode":"c2.177","gcamValue":17},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":12},{"gcamCode":"c2.180","gcamValue":14},{"gcamCode":"c2.181","gcamValue":14},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":16},{"gcamCode":"c2.185","gcamValue":59},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":16},{"gcamCode":"c2.188","gcamValue":6},{"gcamCode":"c2.189","gcamValue":6},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":7},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":24},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":20},{"gcamCode":"c2.196","gcamValue":5},{"gcamCode":"c2.197","gcamValue":1},{"gcamCode":"c2.198","gcamValue":33},{"gcamCode":"c2.199","gcamValue":12},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.202","gcamValue":3},{"gcamCode":"c2.203","gcamValue":19},{"gcamCode":"c2.204","gcamValue":22},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":3},{"gcamCode":"c2.209","gcamValue":11},{"gcamCode":"c2.21","gcamValue":5},{"gcamCode":"c2.210","gcamValue":24},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":4},{"gcamCode":"c2.214","gcamValue":14},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.219","gcamValue":2},{"gcamCode":"c2.220","gcamValue":8},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":11},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":21},{"gcamCode":"c2.26","gcamValue":19},{"gcamCode":"c2.27","gcamValue":19},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":15},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":19},{"gcamCode":"c2.36","gcamValue":12},{"gcamCode":"c2.37","gcamValue":18},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":55},{"gcamCode":"c2.4","gcamValue":6},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.44","gcamValue":12},{"gcamCode":"c2.45","gcamValue":8},{"gcamCode":"c2.46","gcamValue":22},{"gcamCode":"c2.47","gcamValue":3},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.52","gcamValue":26},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":27},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.6","gcamValue":8},{"gcamCode":"c2.61","gcamValue":5},{"gcamCode":"c2.62","gcamValue":18},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.69","gcamValue":7},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.73","gcamValue":9},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":45},{"gcamCode":"c2.76","gcamValue":207},{"gcamCode":"c2.77","gcamValue":19},{"gcamCode":"c2.78","gcamValue":41},{"gcamCode":"c2.79","gcamValue":4},{"gcamCode":"c2.80","gcamValue":31},{"gcamCode":"c2.81","gcamValue":7},{"gcamCode":"c2.82","gcamValue":13},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":13},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":8},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.91","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":11},{"gcamCode":"c2.95","gcamValue":59},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":18},{"gcamCode":"c2.99","gcamValue":1},{"gcamCode":"c25.10","gcamValue":1},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.1","gcamValue":18},{"gcamCode":"c3.2","gcamValue":22},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":9},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.20","gcamValue":3},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.32","gcamValue":14},{"gcamCode":"c35.33","gcamValue":6},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.25","gcamValue":2},{"gcamCode":"c39.3","gcamValue":14},{"gcamCode":"c39.32","gcamValue":2},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":3},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":10},{"gcamCode":"c39.5","gcamValue":1},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":15},{"gcamCode":"c4.3","gcamValue":2},{"gcamCode":"c40.5","gcamValue":4},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":25},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":43},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.16","gcamValue":6},{"gcamCode":"c5.17","gcamValue":10},{"gcamCode":"c5.20","gcamValue":3},{"gcamCode":"c5.21","gcamValue":3},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":8},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":12},{"gcamCode":"c5.27","gcamValue":3},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.29","gcamValue":8},{"gcamCode":"c5.30","gcamValue":41},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":16},{"gcamCode":"c5.36","gcamValue":17},{"gcamCode":"c5.37","gcamValue":3},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":26},{"gcamCode":"c5.43","gcamValue":10},{"gcamCode":"c5.44","gcamValue":6},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":43},{"gcamCode":"c5.47","gcamValue":13},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":33},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":27},{"gcamCode":"c5.51","gcamValue":28},{"gcamCode":"c5.52","gcamValue":41},{"gcamCode":"c5.53","gcamValue":29},{"gcamCode":"c5.54","gcamValue":14},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":8},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":6},{"gcamCode":"c5.6","gcamValue":19},{"gcamCode":"c5.60","gcamValue":18},{"gcamCode":"c5.61","gcamValue":32},{"gcamCode":"c5.62","gcamValue":143},{"gcamCode":"c5.7","gcamValue":5},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":10},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":11},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":17},{"gcamCode":"c7.2","gcamValue":18},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.19","gcamValue":1},{"gcamCode":"c8.20","gcamValue":5},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":6},{"gcamCode":"c8.37","gcamValue":11},{"gcamCode":"c8.38","gcamValue":3},{"gcamCode":"c8.4","gcamValue":14},{"gcamCode":"c8.40","gcamValue":5},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":9},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":12},{"gcamCode":"c9.10","gcamValue":4},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":3},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":3},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":8},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":4},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.126","gcamValue":2},{"gcamCode":"c9.128","gcamValue":15},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.152","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":9},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":3},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":3},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.20","gcamValue":3},{"gcamCode":"c9.200","gcamValue":3},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.213","gcamValue":6},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":3},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.27","gcamValue":6},{"gcamCode":"c9.270","gcamValue":3},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.277","gcamValue":3},{"gcamCode":"c9.28","gcamValue":4},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.287","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.3","gcamValue":13},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.304","gcamValue":3},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.308","gcamValue":5},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.324","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":6},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.34","gcamValue":11},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.370","gcamValue":3},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.383","gcamValue":3},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.385","gcamValue":7},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.424","gcamValue":4},{"gcamCode":"c9.428","gcamValue":4},{"gcamCode":"c9.429","gcamValue":4},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.443","gcamValue":3},{"gcamCode":"c9.444","gcamValue":1},{"gcamCode":"c9.445","gcamValue":2},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.45","gcamValue":4},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":5},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.469","gcamValue":3},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.470","gcamValue":4},{"gcamCode":"c9.471","gcamValue":4},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":5},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.478","gcamValue":5},{"gcamCode":"c9.479","gcamValue":7},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":10},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.497","gcamValue":2},{"gcamCode":"c9.498","gcamValue":5},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":3},{"gcamCode":"c9.511","gcamValue":10},{"gcamCode":"c9.513","gcamValue":6},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":7},{"gcamCode":"c9.522","gcamValue":12},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.530","gcamValue":4},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":7},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.561","gcamValue":3},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.568","gcamValue":4},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":17},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.587","gcamValue":3},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":3},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.605","gcamValue":4},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.608","gcamValue":3},{"gcamCode":"c9.609","gcamValue":5},{"gcamCode":"c9.61","gcamValue":5},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.614","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.624","gcamValue":12},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.640","gcamValue":5},{"gcamCode":"c9.642","gcamValue":4},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":5},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":18},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.671","gcamValue":4},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.689","gcamValue":1},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":5},{"gcamCode":"c9.702","gcamValue":4},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":3},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":15},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":14},{"gcamCode":"c9.731","gcamValue":7},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":5},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.75","gcamValue":4},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":13},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.767","gcamValue":15},{"gcamCode":"c9.771","gcamValue":5},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":3},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":2},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.801","gcamValue":2},{"gcamCode":"c9.805","gcamValue":3},{"gcamCode":"c9.806","gcamValue":4},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":5},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.83","gcamValue":9},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":4},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":13},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.868","gcamValue":12},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.873","gcamValue":4},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":2},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":6},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.887","gcamValue":4},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":3},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":7},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.924","gcamValue":4},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.930","gcamValue":8},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":6},{"gcamCode":"c9.933","gcamValue":4},{"gcamCode":"c9.935","gcamValue":6},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.95","gcamValue":3},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":8},{"gcamCode":"c9.974","gcamValue":4},{"gcamCode":"c9.975","gcamValue":4},{"gcamCode":"c9.977","gcamValue":5},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":3},{"gcamCode":"c9.997","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.28374383454829},{"gcamCode":"v10.2","gcamValue":0.27714769027269},{"gcamCode":"v11.1","gcamValue":0.0758506896551724},{"gcamCode":"v19.1","gcamValue":6.502},{"gcamCode":"v19.2","gcamValue":5.12828571428571},{"gcamCode":"v19.3","gcamValue":5.77371428571429},{"gcamCode":"v19.4","gcamValue":6.32171428571429},{"gcamCode":"v19.5","gcamValue":5.02},{"gcamCode":"v19.6","gcamValue":5.784},{"gcamCode":"v19.7","gcamValue":6.65971428571429},{"gcamCode":"v19.8","gcamValue":5.23342857142857},{"gcamCode":"v19.9","gcamValue":5.75457142857143},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-1},{"gcamCode":"v20.11","gcamValue":0.686333333333333},{"gcamCode":"v20.12","gcamValue":-1},{"gcamCode":"v20.13","gcamValue":0.4744},{"gcamCode":"v20.14","gcamValue":-0.6615},{"gcamCode":"v20.15","gcamValue":0.3803125},{"gcamCode":"v20.16","gcamValue":-0.387166666666667},{"gcamCode":"v20.3","gcamValue":0.656},{"gcamCode":"v20.5","gcamValue":0.836},{"gcamCode":"v20.6","gcamValue":-1},{"gcamCode":"v20.7","gcamValue":0.8188},{"gcamCode":"v20.8","gcamValue":-1},{"gcamCode":"v20.9","gcamValue":0.7795},{"gcamCode":"v21.1","gcamValue":5.49843373493976},{"gcamCode":"v26.1","gcamValue":1.365}]https://www.theglobeandmail.com/resizer/iIK9U_1duxiK-7bSO7CI18yhs_E=/1200x0/filters:quality(80)/arc-anglerfish-tgam-prod-tgam.s3.amazonaws.com/public/TWQ5WPWTKBG77OLASTYWZM7JTM.jpg[""][""]["https://youtube.com/user/TheGlobeandMail"][][{"name":"Jess Thom","charOffset":76},{"name":"Samuel Beckett","charOffset":245},{"name":"Biscuit Land","charOffset":442},{"name":"World Stage","charOffset":471},{"name":"Sophie Robinson","charOffset":503},{"name":"ReelAbilities Toronto Film Festival","charOffset":588},{"name":"Generally Temporary","charOffset":1501},{"name":"Barrier Free","charOffset":1685},{"name":"Adam Cohoon","charOffset":1711},{"name":"Act Natural","charOffset":1830}][{"amount":4,"amountType":"annual ReelAbilities Toronto Film","charOffset":428}]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://www.theglobeandmail.com/amp/arts/film/article-documentary-me-my-mouth-and-i-offers-a-mouthful-at-torontos/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBsheffieldtelegraph.co.ukhttps://www.sheffieldtelegraph.co.uk/cars/car-news/watch-hidden-camera-footage-shows-3-in-4-britons-will-help-a-drunk-get-into-their-car_fb8d2b75384759c6832a550edd8b7133/[{"countType":"WOUND","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},{"countType":"CRISISLEX_CRISISLEXREC","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},{"countType":"CRISISLEX_C03_WELLBEING_HEALTH","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},{"countType":"CRISISLEX_T02_INJURED","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}}][{"count":{"countType":"WOUND","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},"charOffset":2220},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},"charOffset":2220},{"count":{"countType":"CRISISLEX_C03_WELLBEING_HEALTH","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},"charOffset":2220},{"count":{"countType":"CRISISLEX_T02_INJURED","count":24,"objectType":"","location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}},"charOffset":2220}]["CRISISLEX_CRISISLEXREC","MANMADE_DISASTER_IMPLIED","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","IDEOLOGY","TAX_FNCACT","TAX_FNCACT_DRIVER","WB_615_GENDER","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_ACTOR","TAX_FNCACT_WOMAN","TAX_FNCACT_MAN","WOUND","CRISISLEX_C03_WELLBEING_HEALTH","CRISISLEX_T02_INJURED","KILL","CRISISLEX_T03_DEAD","WB_135_TRANSPORT","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","EPU_CATS_NATIONAL_SECURITY","UNGP_FORESTS_RIVERS_OCEANS","AFFECT"][{"theme":"TAX_FNCACT_WOMAN","charOffset":1554},{"theme":"EDUCATION","charOffset":752},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":752},{"theme":"TAX_FNCACT_ACTOR","charOffset":1013},{"theme":"TAX_FNCACT_ACTOR","charOffset":1118},{"theme":"TAX_FNCACT_ACTOR","charOffset":1219},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":129},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":316},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":491},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":679},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1081},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1135},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1758},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":169},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":734},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":169},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":734},{"theme":"WB_840_JUSTICE","charOffset":169},{"theme":"WB_840_JUSTICE","charOffset":734},{"theme":"WB_2025_INVESTIGATION","charOffset":169},{"theme":"WB_2025_INVESTIGATION","charOffset":734},{"theme":"WB_831_GOVERNANCE","charOffset":169},{"theme":"WB_831_GOVERNANCE","charOffset":734},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":169},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":734},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":169},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":734},{"theme":"AFFECT","charOffset":2920},{"theme":"WB_615_GENDER","charOffset":539},{"theme":"WB_135_TRANSPORT","charOffset":2345},{"theme":"WOUND","charOffset":2256},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":2256},{"theme":"CRISISLEX_T02_INJURED","charOffset":2256},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":2682},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":14},{"theme":"TAX_FNCACT_DRIVER","charOffset":291},{"theme":"TAX_FNCACT_DRIVER","charOffset":524},{"theme":"TAX_FNCACT_DRIVER","charOffset":1423},{"theme":"TAX_FNCACT_DRIVER","charOffset":2849},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2787},{"theme":"KILL","charOffset":2265},{"theme":"CRISISLEX_T03_DEAD","charOffset":2265},{"theme":"IDEOLOGY","charOffset":192},{"theme":"SECURITY_SERVICES","charOffset":2675},{"theme":"TAX_FNCACT_POLICE","charOffset":2675},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2675},{"theme":"TAX_FNCACT_MAN","charOffset":1583}][{"geoType":"WORLDCITY","geoName":"Bristol, Bristol, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKB7","adm2Code":"","geoPoint":{"latitude":51.45,"longitude":-2.58333},"featureId":"-2590919"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}][{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":413},{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":802},{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":1305},{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":1331},{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":1610},{"location":{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":1723},{"location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"40126","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"},"charOffset":1289},{"location":{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"40126","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"},"charOffset":1707},{"location":{"geoType":"COUNTRY","geoName":"Britons","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":61},{"location":{"geoType":"WORLDCITY","geoName":"Bristol, Bristol, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKB7","adm2Code":"40094","geoPoint":{"latitude":51.45,"longitude":-2.58333},"featureId":"-2590919"},"charOffset":1315},{"location":{"geoType":"WORLDCITY","geoName":"Bristol, Bristol, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKB7","adm2Code":"40094","geoPoint":{"latitude":51.45,"longitude":-2.58333},"featureId":"-2590919"},"charOffset":1594}]["cormac doyle"][{"person":"Cormac Doyle","charOffset":1911}]["campaign against drink","department for"][{"organisation":"Campaign Against Drink","charOffset":2746},{"organisation":"Department For","charOffset":2335}]{"tone":-2.729045,"positiveScore":1.5594542,"negativeScore":4.288499,"polarity":5.8479533,"activityReferenceDensity":26.900585,"selfGroupReferenceDensity":1.1695906,"wordCount":485}[][{"gcamCode":"wc","gcamValue":485},{"gcamCode":"c12.1","gcamValue":40},{"gcamCode":"c12.10","gcamValue":67},{"gcamCode":"c12.12","gcamValue":25},{"gcamCode":"c12.13","gcamValue":27},{"gcamCode":"c12.14","gcamValue":29},{"gcamCode":"c12.3","gcamValue":20},{"gcamCode":"c12.4","gcamValue":10},{"gcamCode":"c12.5","gcamValue":13},{"gcamCode":"c12.7","gcamValue":45},{"gcamCode":"c12.8","gcamValue":35},{"gcamCode":"c12.9","gcamValue":40},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.7","gcamValue":7},{"gcamCode":"c13.9","gcamValue":11},{"gcamCode":"c14.1","gcamValue":54},{"gcamCode":"c14.10","gcamValue":37},{"gcamCode":"c14.11","gcamValue":67},{"gcamCode":"c14.2","gcamValue":37},{"gcamCode":"c14.3","gcamValue":47},{"gcamCode":"c14.4","gcamValue":13},{"gcamCode":"c14.5","gcamValue":90},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":18},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":15},{"gcamCode":"c15.10","gcamValue":2},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.102","gcamValue":12},{"gcamCode":"c15.103","gcamValue":3},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.112","gcamValue":3},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.131","gcamValue":2},{"gcamCode":"c15.132","gcamValue":2},{"gcamCode":"c15.137","gcamValue":3},{"gcamCode":"c15.143","gcamValue":11},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":11},{"gcamCode":"c15.149","gcamValue":1},{"gcamCode":"c15.15","gcamValue":3},{"gcamCode":"c15.152","gcamValue":2},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.156","gcamValue":1},{"gcamCode":"c15.159","gcamValue":2},{"gcamCode":"c15.167","gcamValue":2},{"gcamCode":"c15.168","gcamValue":3},{"gcamCode":"c15.171","gcamValue":2},{"gcamCode":"c15.173","gcamValue":4},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.18","gcamValue":3},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.201","gcamValue":4},{"gcamCode":"c15.204","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":3},{"gcamCode":"c15.221","gcamValue":2},{"gcamCode":"c15.222","gcamValue":2},{"gcamCode":"c15.227","gcamValue":4},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.239","gcamValue":1},{"gcamCode":"c15.24","gcamValue":3},{"gcamCode":"c15.241","gcamValue":4},{"gcamCode":"c15.251","gcamValue":7},{"gcamCode":"c15.252","gcamValue":3},{"gcamCode":"c15.255","gcamValue":2},{"gcamCode":"c15.257","gcamValue":2},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.27","gcamValue":2},{"gcamCode":"c15.275","gcamValue":1},{"gcamCode":"c15.29","gcamValue":2},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":4},{"gcamCode":"c15.42","gcamValue":3},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.48","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":2},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.71","gcamValue":11},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.9","gcamValue":2},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.102","gcamValue":9},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":23},{"gcamCode":"c16.109","gcamValue":37},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":108},{"gcamCode":"c16.111","gcamValue":15},{"gcamCode":"c16.114","gcamValue":36},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":18},{"gcamCode":"c16.117","gcamValue":42},{"gcamCode":"c16.118","gcamValue":50},{"gcamCode":"c16.12","gcamValue":57},{"gcamCode":"c16.120","gcamValue":22},{"gcamCode":"c16.121","gcamValue":42},{"gcamCode":"c16.122","gcamValue":6},{"gcamCode":"c16.124","gcamValue":9},{"gcamCode":"c16.125","gcamValue":55},{"gcamCode":"c16.126","gcamValue":35},{"gcamCode":"c16.127","gcamValue":34},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":59},{"gcamCode":"c16.13","gcamValue":10},{"gcamCode":"c16.130","gcamValue":11},{"gcamCode":"c16.131","gcamValue":32},{"gcamCode":"c16.133","gcamValue":8},{"gcamCode":"c16.134","gcamValue":54},{"gcamCode":"c16.138","gcamValue":16},{"gcamCode":"c16.139","gcamValue":22},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":36},{"gcamCode":"c16.142","gcamValue":3},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":32},{"gcamCode":"c16.146","gcamValue":26},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.151","gcamValue":5},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":24},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":5},{"gcamCode":"c16.157","gcamValue":14},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":42},{"gcamCode":"c16.16","gcamValue":8},{"gcamCode":"c16.161","gcamValue":52},{"gcamCode":"c16.162","gcamValue":31},{"gcamCode":"c16.163","gcamValue":52},{"gcamCode":"c16.164","gcamValue":10},{"gcamCode":"c16.165","gcamValue":13},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":32},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":88},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":34},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":58},{"gcamCode":"c16.34","gcamValue":4},{"gcamCode":"c16.35","gcamValue":36},{"gcamCode":"c16.37","gcamValue":62},{"gcamCode":"c16.38","gcamValue":14},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":38},{"gcamCode":"c16.40","gcamValue":1},{"gcamCode":"c16.41","gcamValue":25},{"gcamCode":"c16.42","gcamValue":6},{"gcamCode":"c16.45","gcamValue":24},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":81},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":3},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":7},{"gcamCode":"c16.52","gcamValue":21},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":4},{"gcamCode":"c16.57","gcamValue":274},{"gcamCode":"c16.58","gcamValue":42},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":89},{"gcamCode":"c16.60","gcamValue":4},{"gcamCode":"c16.62","gcamValue":23},{"gcamCode":"c16.63","gcamValue":29},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.65","gcamValue":8},{"gcamCode":"c16.66","gcamValue":11},{"gcamCode":"c16.68","gcamValue":36},{"gcamCode":"c16.69","gcamValue":22},{"gcamCode":"c16.7","gcamValue":5},{"gcamCode":"c16.70","gcamValue":30},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.73","gcamValue":15},{"gcamCode":"c16.74","gcamValue":5},{"gcamCode":"c16.75","gcamValue":22},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":13},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":32},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":33},{"gcamCode":"c16.88","gcamValue":85},{"gcamCode":"c16.89","gcamValue":10},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":14},{"gcamCode":"c16.91","gcamValue":20},{"gcamCode":"c16.92","gcamValue":70},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":52},{"gcamCode":"c16.95","gcamValue":51},{"gcamCode":"c16.96","gcamValue":21},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":38},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":136},{"gcamCode":"c17.10","gcamValue":53},{"gcamCode":"c17.11","gcamValue":56},{"gcamCode":"c17.12","gcamValue":10},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":19},{"gcamCode":"c17.15","gcamValue":33},{"gcamCode":"c17.16","gcamValue":16},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":13},{"gcamCode":"c17.19","gcamValue":54},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.21","gcamValue":4},{"gcamCode":"c17.22","gcamValue":21},{"gcamCode":"c17.23","gcamValue":4},{"gcamCode":"c17.24","gcamValue":43},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":65},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":26},{"gcamCode":"c17.31","gcamValue":43},{"gcamCode":"c17.32","gcamValue":29},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":14},{"gcamCode":"c17.35","gcamValue":17},{"gcamCode":"c17.36","gcamValue":28},{"gcamCode":"c17.37","gcamValue":21},{"gcamCode":"c17.38","gcamValue":13},{"gcamCode":"c17.39","gcamValue":22},{"gcamCode":"c17.4","gcamValue":108},{"gcamCode":"c17.40","gcamValue":13},{"gcamCode":"c17.41","gcamValue":22},{"gcamCode":"c17.42","gcamValue":42},{"gcamCode":"c17.43","gcamValue":43},{"gcamCode":"c17.5","gcamValue":108},{"gcamCode":"c17.6","gcamValue":13},{"gcamCode":"c17.7","gcamValue":71},{"gcamCode":"c17.8","gcamValue":69},{"gcamCode":"c17.9","gcamValue":6},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.147","gcamValue":1},{"gcamCode":"c18.193","gcamValue":10},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.2","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":16},{"gcamCode":"c2.10","gcamValue":6},{"gcamCode":"c2.100","gcamValue":14},{"gcamCode":"c2.101","gcamValue":12},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.104","gcamValue":87},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":4},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":16},{"gcamCode":"c2.113","gcamValue":11},{"gcamCode":"c2.114","gcamValue":50},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":46},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":174},{"gcamCode":"c2.12","gcamValue":31},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":50},{"gcamCode":"c2.122","gcamValue":9},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":38},{"gcamCode":"c2.126","gcamValue":35},{"gcamCode":"c2.127","gcamValue":68},{"gcamCode":"c2.128","gcamValue":12},{"gcamCode":"c2.129","gcamValue":15},{"gcamCode":"c2.131","gcamValue":4},{"gcamCode":"c2.132","gcamValue":3},{"gcamCode":"c2.133","gcamValue":6},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.138","gcamValue":3},{"gcamCode":"c2.139","gcamValue":8},{"gcamCode":"c2.14","gcamValue":78},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":13},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":38},{"gcamCode":"c2.144","gcamValue":15},{"gcamCode":"c2.145","gcamValue":6},{"gcamCode":"c2.146","gcamValue":9},{"gcamCode":"c2.147","gcamValue":79},{"gcamCode":"c2.148","gcamValue":43},{"gcamCode":"c2.15","gcamValue":24},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.153","gcamValue":14},{"gcamCode":"c2.154","gcamValue":10},{"gcamCode":"c2.155","gcamValue":56},{"gcamCode":"c2.156","gcamValue":33},{"gcamCode":"c2.157","gcamValue":55},{"gcamCode":"c2.158","gcamValue":63},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.160","gcamValue":33},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":8},{"gcamCode":"c2.169","gcamValue":4},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.172","gcamValue":9},{"gcamCode":"c2.173","gcamValue":6},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":8},{"gcamCode":"c2.177","gcamValue":58},{"gcamCode":"c2.179","gcamValue":19},{"gcamCode":"c2.18","gcamValue":22},{"gcamCode":"c2.180","gcamValue":22},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.182","gcamValue":4},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":146},{"gcamCode":"c2.186","gcamValue":10},{"gcamCode":"c2.187","gcamValue":38},{"gcamCode":"c2.19","gcamValue":5},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":15},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":53},{"gcamCode":"c2.196","gcamValue":17},{"gcamCode":"c2.197","gcamValue":10},{"gcamCode":"c2.198","gcamValue":52},{"gcamCode":"c2.199","gcamValue":15},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":6},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":20},{"gcamCode":"c2.204","gcamValue":42},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":9},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.209","gcamValue":15},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":65},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.212","gcamValue":9},{"gcamCode":"c2.213","gcamValue":33},{"gcamCode":"c2.214","gcamValue":29},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":12},{"gcamCode":"c2.217","gcamValue":21},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.220","gcamValue":24},{"gcamCode":"c2.221","gcamValue":16},{"gcamCode":"c2.223","gcamValue":17},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":37},{"gcamCode":"c2.226","gcamValue":15},{"gcamCode":"c2.227","gcamValue":6},{"gcamCode":"c2.228","gcamValue":6},{"gcamCode":"c2.23","gcamValue":17},{"gcamCode":"c2.25","gcamValue":38},{"gcamCode":"c2.26","gcamValue":30},{"gcamCode":"c2.27","gcamValue":30},{"gcamCode":"c2.28","gcamValue":12},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":31},{"gcamCode":"c2.32","gcamValue":8},{"gcamCode":"c2.33","gcamValue":8},{"gcamCode":"c2.34","gcamValue":42},{"gcamCode":"c2.35","gcamValue":12},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":10},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":76},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.44","gcamValue":25},{"gcamCode":"c2.45","gcamValue":14},{"gcamCode":"c2.46","gcamValue":66},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":8},{"gcamCode":"c2.49","gcamValue":5},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":9},{"gcamCode":"c2.52","gcamValue":39},{"gcamCode":"c2.54","gcamValue":45},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":8},{"gcamCode":"c2.57","gcamValue":21},{"gcamCode":"c2.58","gcamValue":13},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":4},{"gcamCode":"c2.62","gcamValue":26},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":14},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.69","gcamValue":7},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.72","gcamValue":4},{"gcamCode":"c2.73","gcamValue":6},{"gcamCode":"c2.75","gcamValue":95},{"gcamCode":"c2.76","gcamValue":360},{"gcamCode":"c2.77","gcamValue":74},{"gcamCode":"c2.78","gcamValue":92},{"gcamCode":"c2.79","gcamValue":17},{"gcamCode":"c2.80","gcamValue":87},{"gcamCode":"c2.81","gcamValue":16},{"gcamCode":"c2.82","gcamValue":18},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":8},{"gcamCode":"c2.86","gcamValue":15},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":32},{"gcamCode":"c2.9","gcamValue":8},{"gcamCode":"c2.90","gcamValue":14},{"gcamCode":"c2.93","gcamValue":8},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":82},{"gcamCode":"c2.97","gcamValue":5},{"gcamCode":"c2.98","gcamValue":24},{"gcamCode":"c2.99","gcamValue":11},{"gcamCode":"c25.1","gcamValue":4},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c3.1","gcamValue":46},{"gcamCode":"c3.2","gcamValue":38},{"gcamCode":"c3.4","gcamValue":1},{"gcamCode":"c35.1","gcamValue":7},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.16","gcamValue":1},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":18},{"gcamCode":"c35.25","gcamValue":6},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":23},{"gcamCode":"c35.32","gcamValue":9},{"gcamCode":"c35.33","gcamValue":25},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.15","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.2","gcamValue":10},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":15},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":7},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":15},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c4.12","gcamValue":9},{"gcamCode":"c4.13","gcamValue":4},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":22},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c40.5","gcamValue":3},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":25},{"gcamCode":"c5.11","gcamValue":22},{"gcamCode":"c5.12","gcamValue":64},{"gcamCode":"c5.13","gcamValue":14},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":17},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":12},{"gcamCode":"c5.24","gcamValue":8},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":23},{"gcamCode":"c5.27","gcamValue":8},{"gcamCode":"c5.28","gcamValue":11},{"gcamCode":"c5.29","gcamValue":10},{"gcamCode":"c5.30","gcamValue":73},{"gcamCode":"c5.31","gcamValue":13},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":20},{"gcamCode":"c5.35","gcamValue":24},{"gcamCode":"c5.36","gcamValue":34},{"gcamCode":"c5.37","gcamValue":19},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":10},{"gcamCode":"c5.40","gcamValue":56},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":16},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.45","gcamValue":18},{"gcamCode":"c5.46","gcamValue":72},{"gcamCode":"c5.47","gcamValue":17},{"gcamCode":"c5.48","gcamValue":4},{"gcamCode":"c5.49","gcamValue":63},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":81},{"gcamCode":"c5.51","gcamValue":42},{"gcamCode":"c5.52","gcamValue":97},{"gcamCode":"c5.53","gcamValue":43},{"gcamCode":"c5.54","gcamValue":17},{"gcamCode":"c5.55","gcamValue":5},{"gcamCode":"c5.56","gcamValue":2},{"gcamCode":"c5.57","gcamValue":6},{"gcamCode":"c5.58","gcamValue":4},{"gcamCode":"c5.6","gcamValue":46},{"gcamCode":"c5.60","gcamValue":17},{"gcamCode":"c5.61","gcamValue":34},{"gcamCode":"c5.62","gcamValue":228},{"gcamCode":"c5.7","gcamValue":22},{"gcamCode":"c5.8","gcamValue":12},{"gcamCode":"c5.9","gcamValue":16},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":8},{"gcamCode":"c6.4","gcamValue":16},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c6.6","gcamValue":10},{"gcamCode":"c7.1","gcamValue":43},{"gcamCode":"c7.2","gcamValue":27},{"gcamCode":"c8.1","gcamValue":7},{"gcamCode":"c8.10","gcamValue":5},{"gcamCode":"c8.12","gcamValue":12},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.20","gcamValue":12},{"gcamCode":"c8.23","gcamValue":6},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.3","gcamValue":2},{"gcamCode":"c8.37","gcamValue":9},{"gcamCode":"c8.38","gcamValue":11},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":20},{"gcamCode":"c8.43","gcamValue":15},{"gcamCode":"c8.5","gcamValue":7},{"gcamCode":"c9.1","gcamValue":28},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.103","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":6},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":15},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":7},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.118","gcamValue":2},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":1},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.126","gcamValue":3},{"gcamCode":"c9.128","gcamValue":28},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.134","gcamValue":2},{"gcamCode":"c9.137","gcamValue":2},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":6},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":13},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":8},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":7},{"gcamCode":"c9.165","gcamValue":12},{"gcamCode":"c9.166","gcamValue":10},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":6},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":3},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":19},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":8},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.197","gcamValue":6},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":8},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.202","gcamValue":5},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":5},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":5},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":6},{"gcamCode":"c9.278","gcamValue":4},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":3},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":10},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.294","gcamValue":3},{"gcamCode":"c9.3","gcamValue":23},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":11},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.308","gcamValue":12},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.317","gcamValue":2},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":15},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":10},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":9},{"gcamCode":"c9.350","gcamValue":1},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":5},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":3},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":8},{"gcamCode":"c9.384","gcamValue":8},{"gcamCode":"c9.385","gcamValue":7},{"gcamCode":"c9.386","gcamValue":12},{"gcamCode":"c9.387","gcamValue":2},{"gcamCode":"c9.39","gcamValue":14},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.391","gcamValue":2},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.400","gcamValue":2},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.458","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":5},{"gcamCode":"c9.470","gcamValue":3},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.475","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":3},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":10},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":7},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.492","gcamValue":5},{"gcamCode":"c9.494","gcamValue":14},{"gcamCode":"c9.496","gcamValue":6},{"gcamCode":"c9.498","gcamValue":7},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.502","gcamValue":4},{"gcamCode":"c9.503","gcamValue":4},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":5},{"gcamCode":"c9.511","gcamValue":15},{"gcamCode":"c9.513","gcamValue":12},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":4},{"gcamCode":"c9.518","gcamValue":3},{"gcamCode":"c9.521","gcamValue":6},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.547","gcamValue":2},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":6},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":2},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.573","gcamValue":3},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":23},{"gcamCode":"c9.581","gcamValue":5},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.608","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.620","gcamValue":4},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":5},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":4},{"gcamCode":"c9.640","gcamValue":7},{"gcamCode":"c9.642","gcamValue":9},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":8},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.653","gcamValue":29},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":13},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":7},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":5},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":3},{"gcamCode":"c9.668","gcamValue":4},{"gcamCode":"c9.669","gcamValue":6},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":6},{"gcamCode":"c9.671","gcamValue":14},{"gcamCode":"c9.672","gcamValue":13},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.674","gcamValue":3},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":4},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":7},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":5},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":10},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":13},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":8},{"gcamCode":"c9.700","gcamValue":1},{"gcamCode":"c9.701","gcamValue":9},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.708","gcamValue":8},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.718","gcamValue":4},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":3},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":35},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":24},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":16},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":6},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":7},{"gcamCode":"c9.746","gcamValue":4},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":9},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":14},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":25},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":8},{"gcamCode":"c9.767","gcamValue":35},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":7},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.784","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":10},{"gcamCode":"c9.790","gcamValue":4},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.816","gcamValue":7},{"gcamCode":"c9.819","gcamValue":2},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.821","gcamValue":4},{"gcamCode":"c9.828","gcamValue":2},{"gcamCode":"c9.83","gcamValue":11},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.836","gcamValue":2},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":5},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":8},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.854","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":7},{"gcamCode":"c9.860","gcamValue":6},{"gcamCode":"c9.861","gcamValue":5},{"gcamCode":"c9.862","gcamValue":4},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":26},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":24},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.882","gcamValue":4},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.893","gcamValue":4},{"gcamCode":"c9.895","gcamValue":3},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":3},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":7},{"gcamCode":"c9.904","gcamValue":5},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":6},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.92","gcamValue":1},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.926","gcamValue":10},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.935","gcamValue":11},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":5},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":6},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":9},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.995","gcamValue":15},{"gcamCode":"c9.998","gcamValue":1},{"gcamCode":"c9.999","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.242001373626374},{"gcamCode":"v10.2","gcamValue":0.288901954237892},{"gcamCode":"v11.1","gcamValue":0.11000381043257},{"gcamCode":"v19.1","gcamValue":6.57222222222222},{"gcamCode":"v19.2","gcamValue":5.51111111111111},{"gcamCode":"v19.3","gcamValue":5.62666666666667},{"gcamCode":"v19.4","gcamValue":6.42380952380952},{"gcamCode":"v19.5","gcamValue":5.26460317460317},{"gcamCode":"v19.6","gcamValue":5.72777777777778},{"gcamCode":"v19.7","gcamValue":6.71746031746032},{"gcamCode":"v19.8","gcamValue":5.76222222222222},{"gcamCode":"v19.9","gcamValue":5.50333333333333},{"gcamCode":"v20.1","gcamValue":0.3446},{"gcamCode":"v20.10","gcamValue":-0.75},{"gcamCode":"v20.11","gcamValue":0.491},{"gcamCode":"v20.12","gcamValue":-0.666666666666667},{"gcamCode":"v20.13","gcamValue":0.40308},{"gcamCode":"v20.14","gcamValue":-0.459545454545455},{"gcamCode":"v20.15","gcamValue":0.372393442622951},{"gcamCode":"v20.16","gcamValue":-0.316851851851852},{"gcamCode":"v20.3","gcamValue":0.473},{"gcamCode":"v20.4","gcamValue":-0.75},{"gcamCode":"v20.5","gcamValue":0.473},{"gcamCode":"v20.6","gcamValue":-0.75},{"gcamCode":"v20.7","gcamValue":0.473},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.488},{"gcamCode":"v21.1","gcamValue":5.47983758700696},{"gcamCode":"v26.1","gcamValue":0.195918367346939}]https://inews.co.uk/wp-content/uploads/2019/05/main.png["https://inews.co.uk/wp-content/uploads/2019/05/Hidden-camera-reveals-the-shocking-truth-about-drink-driving-1-33-screenshot-760x428.png"][""][""][][{"name":"United Kingdom","charOffset":426},{"name":"United Kingdom","charOffset":829},{"name":"Campaign Against Drink Driving","charOffset":2805}][{"amount":24,"amountType":"people were injured","charOffset":1821}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://inews.co.uk/essentials/lifestyle/cars/car-features/what-is-the-uk-drink-drive-limit-and-what-are-the-punishments-for-breaking-it/;https://inews.co.uk/essentials/lifestyle/cars/car-news/millions-think-its-safe-to-drink-drive-feel-okay/;https://inews.co.uk/essentials/lifestyle/cars/car-news/motorist-reports-drink-driver-after-crash-forgetting-he-is-also-drunk/;https://inews.co.uk/news/drink-driving-arrests-halve-but-deaths-at-the-highest-since-2009/;https://midrive.com/video/drink-driving-hidden-camera-experiment</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBccenterdispatch.comhttp://www.ccenterdispatch.com/news/state/article_02b9f065-05cc-5a87-91e0-2ba618f740cf.html[][]["MANMADE_DISASTER_IMPLIED","WB_168_ROADS_AND_HIGHWAYS","WB_135_TRANSPORT","WB_1809_HIGHWAYS","WB_1803_TRANSPORT_INFRASTRUCTURE","TAX_FNCACT","TAX_FNCACT_WOMAN","KILL","CRISISLEX_T03_DEAD","TAX_FNCACT_DRIVER","TAX_FNCACT_MAN","TAX_FNCACT_AUTHORITIES","CRISISLEX_CRISISLEXREC","EPU_POLICY","EPU_POLICY_AUTHORITIES","GENERAL_HEALTH","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITAL","CRISISLEX_C03_WELLBEING_HEALTH","WOUND","CRISISLEX_T02_INJURED","LEGISLATION","EPU_POLICY_LAW","SECURITY_SERVICES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","WB_328_FINANCIAL_INTEGRITY","WB_1014_CRIMINAL_JUSTICE","WB_2082_LAW_ENFORCEMENT"][{"theme":"TAX_FNCACT_WOMAN","charOffset":70},{"theme":"TAX_FNCACT_WOMAN","charOffset":284},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":50},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":50},{"theme":"WB_135_TRANSPORT","charOffset":50},{"theme":"WB_1809_HIGHWAYS","charOffset":50},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":50},{"theme":"TAX_FNCACT_DRIVER","charOffset":160},{"theme":"TAX_FNCACT_DRIVER","charOffset":372},{"theme":"GENERAL_HEALTH","charOffset":333},{"theme":"MEDICAL","charOffset":333},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":333},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":333},{"theme":"KILL","charOffset":95},{"theme":"CRISISLEX_T03_DEAD","charOffset":95},{"theme":"SECURITY_SERVICES","charOffset":447},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":447},{"theme":"WB_840_JUSTICE","charOffset":447},{"theme":"WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","charOffset":447},{"theme":"WB_328_FINANCIAL_INTEGRITY","charOffset":447},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":447},{"theme":"WB_2082_LAW_ENFORCEMENT","charOffset":447},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":297},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":297},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":297},{"theme":"LEGISLATION","charOffset":435},{"theme":"EPU_POLICY_LAW","charOffset":435},{"theme":"TAX_FNCACT_MAN","charOffset":170},{"theme":"TAX_FNCACT_MAN","charOffset":342},{"theme":"WOUND","charOffset":358},{"theme":"CRISISLEX_T02_INJURED","charOffset":358}][][]["kammi leland"][{"person":"Kammi Leland","charOffset":314}][""][]{"tone":-6.741573,"positiveScore":0,"negativeScore":6.741573,"polarity":6.741573,"activityReferenceDensity":23.595505,"selfGroupReferenceDensity":0,"wordCount":76}[][{"gcamCode":"wc","gcamValue":76},{"gcamCode":"c12.1","gcamValue":5},{"gcamCode":"c12.10","gcamValue":7},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":2},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.5","gcamValue":4},{"gcamCode":"c12.7","gcamValue":6},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":6},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":5},{"gcamCode":"c14.10","gcamValue":2},{"gcamCode":"c14.11","gcamValue":9},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":4},{"gcamCode":"c14.4","gcamValue":3},{"gcamCode":"c14.5","gcamValue":10},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.112","gcamValue":2},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.45","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.109","gcamValue":3},{"gcamCode":"c16.110","gcamValue":21},{"gcamCode":"c16.114","gcamValue":4},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":5},{"gcamCode":"c16.12","gcamValue":9},{"gcamCode":"c16.120","gcamValue":4},{"gcamCode":"c16.121","gcamValue":7},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.125","gcamValue":5},{"gcamCode":"c16.126","gcamValue":3},{"gcamCode":"c16.127","gcamValue":6},{"gcamCode":"c16.129","gcamValue":5},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":11},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":5},{"gcamCode":"c16.146","gcamValue":1},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":1},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.159","gcamValue":5},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":5},{"gcamCode":"c16.162","gcamValue":9},{"gcamCode":"c16.163","gcamValue":13},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":8},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.26","gcamValue":7},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":5},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":5},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":3},{"gcamCode":"c16.37","gcamValue":6},{"gcamCode":"c16.38","gcamValue":3},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":3},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.47","gcamValue":7},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":3},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":40},{"gcamCode":"c16.58","gcamValue":5},{"gcamCode":"c16.6","gcamValue":6},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":3},{"gcamCode":"c16.69","gcamValue":4},{"gcamCode":"c16.7","gcamValue":5},{"gcamCode":"c16.70","gcamValue":9},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.75","gcamValue":3},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":2},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.84","gcamValue":2},{"gcamCode":"c16.87","gcamValue":6},{"gcamCode":"c16.88","gcamValue":16},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":2},{"gcamCode":"c16.92","gcamValue":7},{"gcamCode":"c16.94","gcamValue":3},{"gcamCode":"c16.95","gcamValue":14},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":3},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":14},{"gcamCode":"c17.10","gcamValue":6},{"gcamCode":"c17.11","gcamValue":13},{"gcamCode":"c17.12","gcamValue":6},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":1},{"gcamCode":"c17.15","gcamValue":11},{"gcamCode":"c17.16","gcamValue":5},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":8},{"gcamCode":"c17.22","gcamValue":1},{"gcamCode":"c17.24","gcamValue":4},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":7},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":1},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.33","gcamValue":2},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":3},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":2},{"gcamCode":"c17.4","gcamValue":14},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.42","gcamValue":5},{"gcamCode":"c17.43","gcamValue":2},{"gcamCode":"c17.5","gcamValue":18},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":15},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.1","gcamValue":2},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.193","gcamValue":7},{"gcamCode":"c18.2","gcamValue":2},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c2.1","gcamValue":1},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":15},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.114","gcamValue":6},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":5},{"gcamCode":"c2.119","gcamValue":28},{"gcamCode":"c2.12","gcamValue":3},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":1},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":14},{"gcamCode":"c2.128","gcamValue":5},{"gcamCode":"c2.129","gcamValue":8},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":10},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":11},{"gcamCode":"c2.147","gcamValue":9},{"gcamCode":"c2.148","gcamValue":1},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":3},{"gcamCode":"c2.150","gcamValue":2},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":7},{"gcamCode":"c2.156","gcamValue":4},{"gcamCode":"c2.157","gcamValue":7},{"gcamCode":"c2.158","gcamValue":9},{"gcamCode":"c2.160","gcamValue":4},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.177","gcamValue":10},{"gcamCode":"c2.178","gcamValue":3},{"gcamCode":"c2.179","gcamValue":5},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":3},{"gcamCode":"c2.181","gcamValue":3},{"gcamCode":"c2.182","gcamValue":2},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":27},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":5},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":8},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":1},{"gcamCode":"c2.198","gcamValue":10},{"gcamCode":"c2.199","gcamValue":4},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":2},{"gcamCode":"c2.204","gcamValue":4},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":8},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.218","gcamValue":2},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":4},{"gcamCode":"c2.226","gcamValue":4},{"gcamCode":"c2.23","gcamValue":4},{"gcamCode":"c2.25","gcamValue":4},{"gcamCode":"c2.30","gcamValue":4},{"gcamCode":"c2.31","gcamValue":3},{"gcamCode":"c2.34","gcamValue":10},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":16},{"gcamCode":"c2.44","gcamValue":4},{"gcamCode":"c2.45","gcamValue":2},{"gcamCode":"c2.46","gcamValue":12},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":7},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":3},{"gcamCode":"c2.64","gcamValue":3},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.69","gcamValue":2},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":11},{"gcamCode":"c2.76","gcamValue":59},{"gcamCode":"c2.77","gcamValue":13},{"gcamCode":"c2.78","gcamValue":9},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":17},{"gcamCode":"c2.81","gcamValue":6},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":5},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":2},{"gcamCode":"c2.99","gcamValue":4},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":8},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c3.3","gcamValue":2},{"gcamCode":"c35.20","gcamValue":7},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.31","gcamValue":1},{"gcamCode":"c35.33","gcamValue":9},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.4","gcamValue":1},{"gcamCode":"c39.5","gcamValue":1},{"gcamCode":"c4.12","gcamValue":3},{"gcamCode":"c4.23","gcamValue":3},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c41.1","gcamValue":5},{"gcamCode":"c5.10","gcamValue":8},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":9},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.36","gcamValue":3},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.40","gcamValue":9},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":9},{"gcamCode":"c5.47","gcamValue":3},{"gcamCode":"c5.49","gcamValue":7},{"gcamCode":"c5.50","gcamValue":10},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":11},{"gcamCode":"c5.53","gcamValue":15},{"gcamCode":"c5.56","gcamValue":2},{"gcamCode":"c5.6","gcamValue":3},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":2},{"gcamCode":"c5.62","gcamValue":33},{"gcamCode":"c5.7","gcamValue":1},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":1},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":7},{"gcamCode":"c7.2","gcamValue":3},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":4},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":3},{"gcamCode":"c8.42","gcamValue":3},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":3},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":2},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.137","gcamValue":4},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.278","gcamValue":3},{"gcamCode":"c9.279","gcamValue":2},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.34","gcamValue":2},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":3},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.385","gcamValue":2},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.522","gcamValue":4},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.718","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.762","gcamValue":3},{"gcamCode":"c9.763","gcamValue":2},{"gcamCode":"c9.767","gcamValue":5},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.864","gcamValue":3},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":3},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.898","gcamValue":3},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.924","gcamValue":2},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.93","gcamValue":2},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.976","gcamValue":2},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.991","gcamValue":2},{"gcamCode":"c9.998","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.2078125},{"gcamCode":"v10.2","gcamValue":0.30575},{"gcamCode":"v11.1","gcamValue":-0.0754326923076923},{"gcamCode":"v19.1","gcamValue":5.208},{"gcamCode":"v19.2","gcamValue":5.308},{"gcamCode":"v19.3","gcamValue":5.12266666666667},{"gcamCode":"v19.4","gcamValue":5.24466666666667},{"gcamCode":"v19.5","gcamValue":5.09066666666667},{"gcamCode":"v19.6","gcamValue":5.342},{"gcamCode":"v19.7","gcamValue":5.21933333333333},{"gcamCode":"v19.8","gcamValue":5.556},{"gcamCode":"v19.9","gcamValue":4.94333333333333},{"gcamCode":"v20.10","gcamValue":-0.571},{"gcamCode":"v20.12","gcamValue":-0.571},{"gcamCode":"v20.13","gcamValue":0.375},{"gcamCode":"v20.14","gcamValue":-0.425},{"gcamCode":"v20.15","gcamValue":0.291666666666667},{"gcamCode":"v20.16","gcamValue":-0.3375},{"gcamCode":"v21.1","gcamValue":4.87606060606061},{"gcamCode":"v26.1","gcamValue":-1.8875}]https://bloximages.newyork1.vip.townnews.com/ccenterdispatch.com/content/tncms/custom/image/3de488ae-db5f-11e7-8c38-0b4b5ccd4842.jpg[""][""][""][][{"name":"North Dakota Highway Patrol","charOffset":62},{"name":"Kammi Leland","charOffset":338}][]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523110300</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBreliefweb.inthttps://reliefweb.int/job/3139918/meal-coordinator-venezuela[{"countType":"AFFECT","count":4000000,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"}},{"countType":"REFUGEES","count":4000000,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"}}][{"count":{"countType":"AFFECT","count":4000000,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"}},"charOffset":1484},{"count":{"countType":"REFUGEES","count":4000000,"objectType":"migrants","location":{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"}},"charOffset":1484}]["DISABILITY","WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","WB_635_PUBLIC_HEALTH","WB_1464_HEALTH_OF_THE_DISABLED","WB_621_HEALTH_NUTRITION_AND_POPULATION","TAX_AIDGROUPS","TAX_AIDGROUPS_HANDICAP_INTERNATIONAL","RELIGION","EPU_POLICY","EPU_POLICY_POLITICAL","POVERTY","WB_695_POVERTY","UNGP_FORESTS_RIVERS_OCEANS","TAX_DISEASE","TAX_DISEASE_EMERGENCIES","USPEC_POLICY1","EPU_POLICY_BUDGET","TAX_FNCACT","TAX_FNCACT_EMPLOYEES","CRISISLEX_CRISISLEXREC","GENERAL_HEALTH","MEDICAL","CRISISLEX_C07_SAFETY","FOOD_SECURITY","WB_199_FOOD_SECURITY","WB_435_AGRICULTURE_AND_FOOD_SECURITY","WB_1967_AGRICULTURAL_RISK_AND_SECURITY","UNGP_AFFORDABLE_NUTRITIOUS_FOOD","WB_644_NUTRITION","TAX_ETHNICITY","TAX_ETHNICITY_VENEZUELANS","AFFECT","REFUGEES","EPU_ECONOMY","EPU_ECONOMY_HISTORIC","ECON_BUDGET_DEFICIT","POLITICAL_TURMOIL","LEADER","TAX_FNCACT_PRESIDENT","USPEC_POLITICS_GENERAL1","SANCTIONS","TAX_ETHNICITY_VENEZUELAN","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","SELF_IDENTIFIED_HUMANITARIAN_CRISIS","AID_HUMANITARIAN","WB_1609_FOOD_AND_IN_KIND_TRANSFERS","WB_1466_SOCIAL_ASSISTANCE","WB_1618_FOOD_DISTRIBUTION","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_FNCACT_MANAGER","TAX_FNCACT_COORDINATOR","WB_728_PUBLIC_SERVICE_DELIVERY","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_723_PUBLIC_ADMINISTRATION","WB_721_STATE_OWNED_ENTERPRISES","MANMADE_DISASTER_IMPLIED","PUBLIC_TRANSPORT","TRANSPARENCY","WB_1156_MONITORING_AND_EVALUATION_SYSTEMS","WB_706_EVIDENCE_BASED_POLICY","WB_678_DIGITAL_GOVERNMENT","WB_655_INFORMATION_MANAGEMENT","WB_653_ENTERPRISE_ARCHITECTURE","WB_2375_ICT_METHODS_AND_PROCEDURES","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","WB_667_ICT_INFRASTRUCTURE","WB_669_SOFTWARE_INFRASTRUCTURE","WB_2945_DATABASE","RECRUITMENT","SLFID_CAPACITY_BUILDING","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_OFFICER","TAX_FNCACT_OFFICER","TAX_FNCACT_CANDIDATES","WB_713_PUBLIC_FINANCE","WB_2066_PROJECT_CYCLE_MANAGEMENT","WB_718_PUBLIC_INVESTMENT_MANAGEMENT","WB_2670_JOBS","WB_1467_EDUCATION_FOR_ALL","WB_470_EDUCATION","WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","TAX_ETHNICITY_SPANISH","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_SPANISH","TAX_ETHNICITY_ENGLISH","TAX_WORLDLANGUAGES_ENGLISH","TAX_FNCACT_CANDIDATE","WB_1973_FINANCIAL_RISK_REDUCTION","WB_337_INSURANCE","CRISISLEX_C03_WELLBEING_HEALTH","RETIREMENT","WB_2690_CATEGORIES_OF_EMPLOYMENT","WB_2689_JOBS_DIAGNOSTICS","WB_2896_RETIREMENT","GOV_REPATRIATION","GEN_HOLIDAY"][{"theme":"TAX_FNCACT_CANDIDATES","charOffset":5600},{"theme":"WB_1156_MONITORING_AND_EVALUATION_SYSTEMS","charOffset":4021},{"theme":"WB_706_EVIDENCE_BASED_POLICY","charOffset":4021},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":4250},{"theme":"WB_655_INFORMATION_MANAGEMENT","charOffset":4250},{"theme":"WB_653_ENTERPRISE_ARCHITECTURE","charOffset":4250},{"theme":"WB_2375_ICT_METHODS_AND_PROCEDURES","charOffset":4250},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":4250},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":640},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1120},{"theme":"WB_1973_FINANCIAL_RISK_REDUCTION","charOffset":7537},{"theme":"WB_337_INSURANCE","charOffset":7537},{"theme":"SLFID_CAPACITY_BUILDING","charOffset":4974},{"theme":"SLFID_CAPACITY_BUILDING","charOffset":5086},{"theme":"DISABILITY","charOffset":59},{"theme":"DISABILITY","charOffset":533},{"theme":"DISABILITY","charOffset":2439},{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":59},{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":533},{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":2439},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":59},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":533},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":2439},{"theme":"WB_1464_HEALTH_OF_THE_DISABLED","charOffset":59},{"theme":"WB_1464_HEALTH_OF_THE_DISABLED","charOffset":533},{"theme":"WB_1464_HEALTH_OF_THE_DISABLED","charOffset":2439},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":59},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":533},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":2439},{"theme":"POVERTY","charOffset":455},{"theme":"WB_695_POVERTY","charOffset":455},{"theme":"FOOD_SECURITY","charOffset":1120},{"theme":"WB_199_FOOD_SECURITY","charOffset":1120},{"theme":"WB_435_AGRICULTURE_AND_FOOD_SECURITY","charOffset":1120},{"theme":"WB_1967_AGRICULTURAL_RISK_AND_SECURITY","charOffset":1120},{"theme":"UNGP_AFFORDABLE_NUTRITIOUS_FOOD","charOffset":1120},{"theme":"RECRUITMENT","charOffset":4942},{"theme":"TAX_DISEASE_EMERGENCIES","charOffset":818},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":974},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1434},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1634},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1681},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1773},{"theme":"SELF_IDENTIFIED_HUMANITARIAN_CRISIS","charOffset":2107},{"theme":"SELF_IDENTIFIED_HUMANITARIAN_CRISIS","charOffset":5681},{"theme":"AID_HUMANITARIAN","charOffset":2107},{"theme":"AID_HUMANITARIAN","charOffset":5681},{"theme":"LEADER","charOffset":1823},{"theme":"LEADER","charOffset":1869},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":1823},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":1869},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":1823},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":1869},{"theme":"TAX_ETHNICITY_VENEZUELANS","charOffset":1271},{"theme":"RETIREMENT","charOffset":7576},{"theme":"WB_2690_CATEGORIES_OF_EMPLOYMENT","charOffset":7576},{"theme":"WB_2689_JOBS_DIAGNOSTICS","charOffset":7576},{"theme":"WB_2896_RETIREMENT","charOffset":7576},{"theme":"TAX_FNCACT_COORDINATOR","charOffset":2939},{"theme":"TAX_FNCACT_COORDINATOR","charOffset":3277},{"theme":"TAX_ETHNICITY_SPANISH","charOffset":6903},{"theme":"TAX_WORLDLANGUAGES_SPANISH","charOffset":6903},{"theme":"WB_667_ICT_INFRASTRUCTURE","charOffset":4427},{"theme":"WB_669_SOFTWARE_INFRASTRUCTURE","charOffset":4427},{"theme":"WB_2945_DATABASE","charOffset":4427},{"theme":"TRANSPARENCY","charOffset":3614},{"theme":"TRANSPARENCY","charOffset":3868},{"theme":"WB_728_PUBLIC_SERVICE_DELIVERY","charOffset":3161},{"theme":"WB_728_PUBLIC_SERVICE_DELIVERY","charOffset":5014},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":3161},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":5014},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":3161},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":5014},{"theme":"WB_721_STATE_OWNED_ENTERPRISES","charOffset":3161},{"theme":"WB_721_STATE_OWNED_ENTERPRISES","charOffset":5014},{"theme":"AFFECT","charOffset":1512},{"theme":"REFUGEES","charOffset":1512},{"theme":"GENERAL_GOVERNMENT","charOffset":1951},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1951},{"theme":"TAX_ETHNICITY_ENGLISH","charOffset":6958},{"theme":"TAX_WORLDLANGUAGES_ENGLISH","charOffset":6958},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":5174},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":6569},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":6645},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":6793},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":6826},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":7106},{"theme":"WB_1467_EDUCATION_FOR_ALL","charOffset":7224},{"theme":"WB_470_EDUCATION","charOffset":5174},{"theme":"WB_470_EDUCATION","charOffset":6569},{"theme":"WB_470_EDUCATION","charOffset":6645},{"theme":"WB_470_EDUCATION","charOffset":6793},{"theme":"WB_470_EDUCATION","charOffset":6826},{"theme":"WB_470_EDUCATION","charOffset":7106},{"theme":"WB_470_EDUCATION","charOffset":7224},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":5174},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":6569},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":6645},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":6793},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":6826},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":7106},{"theme":"WB_2131_EMPLOYABILITY_SKILLS_AND_JOBS","charOffset":7224},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":5174},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":6569},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":6645},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":6793},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":6826},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":7106},{"theme":"WB_1484_EDUCATION_SKILLS_DEVELOPMENT_AND_LABOR_MARKET","charOffset":7224},{"theme":"GOV_REPATRIATION","charOffset":7600},{"theme":"TAX_FNCACT_CANDIDATE","charOffset":7421},{"theme":"TAX_FNCACT_MANAGER","charOffset":2802},{"theme":"TAX_FNCACT_MANAGER","charOffset":2906},{"theme":"TAX_FNCACT_MANAGER","charOffset":5042},{"theme":"EPU_POLICY_POLITICAL","charOffset":407},{"theme":"EPU_POLICY_POLITICAL","charOffset":1674},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":7547},{"theme":"WB_1609_FOOD_AND_IN_KIND_TRANSFERS","charOffset":2669},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2669},{"theme":"WB_1618_FOOD_DISTRIBUTION","charOffset":2669},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2669},{"theme":"WB_644_NUTRITION","charOffset":1134},{"theme":"EPU_ECONOMY","charOffset":1627},{"theme":"EPU_ECONOMY","charOffset":1904},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1627},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1904},{"theme":"POLITICAL_TURMOIL","charOffset":1681},{"theme":"WB_2670_JOBS","charOffset":6519},{"theme":"SANCTIONS","charOffset":1914},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":873},{"theme":"WB_713_PUBLIC_FINANCE","charOffset":5972},{"theme":"WB_2066_PROJECT_CYCLE_MANAGEMENT","charOffset":5972},{"theme":"WB_718_PUBLIC_INVESTMENT_MANAGEMENT","charOffset":5972},{"theme":"GENERAL_HEALTH","charOffset":1093},{"theme":"GENERAL_HEALTH","charOffset":7554},{"theme":"MEDICAL","charOffset":1093},{"theme":"MEDICAL","charOffset":7554},{"theme":"RELIGION","charOffset":395},{"theme":"GEN_HOLIDAY","charOffset":7623},{"theme":"ECON_BUDGET_DEFICIT","charOffset":1634},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3558},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3654},{"theme":"PUBLIC_TRANSPORT","charOffset":3558},{"theme":"PUBLIC_TRANSPORT","charOffset":3654},{"theme":"TAX_AIDGROUPS_HANDICAP_INTERNATIONAL","charOffset":226},{"theme":"TAX_AIDGROUPS_HANDICAP_INTERNATIONAL","charOffset":2245},{"theme":"TAX_AIDGROUPS_HANDICAP_INTERNATIONAL","charOffset":6551},{"theme":"TAX_ETHNICITY_VENEZUELAN","charOffset":1940},{"theme":"TAX_ETHNICITY_VENEZUELAN","charOffset":2401},{"theme":"TAX_ETHNICITY_VENEZUELAN","charOffset":2706},{"theme":"TAX_MILITARY_TITLE_OFFICER","charOffset":5114},{"theme":"TAX_FNCACT_OFFICER","charOffset":5114},{"theme":"USPEC_POLICY1","charOffset":842},{"theme":"EPU_POLICY_BUDGET","charOffset":842}][{"geoType":"WORLDCITY","geoName":"Caracas, Distrito Federal, Venezuela","countryCode":"VE","adm1Code":"VE25","adm2Code":"","geoPoint":{"latitude":10.5,"longitude":-66.9167},"featureId":"-938457"},{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"},{"geoType":"COUNTRY","geoName":"Venezuela","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"}][{"location":{"geoType":"COUNTRY","geoName":"Venezuela","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":987},{"location":{"geoType":"COUNTRY","geoName":"Venezuela","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":1723},{"location":{"geoType":"COUNTRY","geoName":"Venezuela","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":2832},{"location":{"geoType":"COUNTRY","geoName":"Venezuelan","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":1940},{"location":{"geoType":"COUNTRY","geoName":"Venezuelan","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":2401},{"location":{"geoType":"COUNTRY","geoName":"Venezuelan","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":2706},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1212},{"location":{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"},"charOffset":1405},{"location":{"geoType":"COUNTRY","geoName":"Spanish","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"},"charOffset":6903},{"location":{"geoType":"COUNTRY","geoName":"French","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},"charOffset":6948},{"location":{"geoType":"COUNTRY","geoName":"Venezuelans","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"},"charOffset":1271},{"location":{"geoType":"WORLDCITY","geoName":"Caracas, Distrito Federal, Venezuela","countryCode":"VE","adm1Code":"VE25","adm2Code":"31959","geoPoint":{"latitude":10.5,"longitude":-66.9167},"featureId":"-938457"},"charOffset":2821}][""][]["system development implementation","national assembly as","capacity development"][{"organisation":"System Development Implementation","charOffset":3748},{"organisation":"National Assembly As","charOffset":1851},{"organisation":"Capacity Development","charOffset":4868}]{"tone":0.8795075,"positiveScore":4.925242,"negativeScore":4.0457344,"polarity":8.970976,"activityReferenceDensity":19.085312,"selfGroupReferenceDensity":0.703606,"wordCount":962}[{"dateResolution":1,"month":0,"day":0,"year":1982,"charOffset":741},{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":1345}][{"gcamCode":"wc","gcamValue":962},{"gcamCode":"c1.2","gcamValue":2},{"gcamCode":"c1.3","gcamValue":3},{"gcamCode":"c1.4","gcamValue":3},{"gcamCode":"c12.1","gcamValue":52},{"gcamCode":"c12.10","gcamValue":124},{"gcamCode":"c12.12","gcamValue":28},{"gcamCode":"c12.13","gcamValue":29},{"gcamCode":"c12.14","gcamValue":74},{"gcamCode":"c12.3","gcamValue":13},{"gcamCode":"c12.4","gcamValue":9},{"gcamCode":"c12.5","gcamValue":34},{"gcamCode":"c12.7","gcamValue":40},{"gcamCode":"c12.8","gcamValue":34},{"gcamCode":"c12.9","gcamValue":95},{"gcamCode":"c13.1","gcamValue":5},{"gcamCode":"c13.10","gcamValue":3},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c13.2","gcamValue":2},{"gcamCode":"c13.3","gcamValue":2},{"gcamCode":"c13.4","gcamValue":5},{"gcamCode":"c14.1","gcamValue":50},{"gcamCode":"c14.10","gcamValue":30},{"gcamCode":"c14.11","gcamValue":116},{"gcamCode":"c14.2","gcamValue":58},{"gcamCode":"c14.3","gcamValue":57},{"gcamCode":"c14.4","gcamValue":10},{"gcamCode":"c14.5","gcamValue":116},{"gcamCode":"c14.6","gcamValue":4},{"gcamCode":"c14.7","gcamValue":22},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":21},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.110","gcamValue":4},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.123","gcamValue":2},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.15","gcamValue":9},{"gcamCode":"c15.156","gcamValue":1},{"gcamCode":"c15.157","gcamValue":1},{"gcamCode":"c15.167","gcamValue":8},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.221","gcamValue":8},{"gcamCode":"c15.222","gcamValue":8},{"gcamCode":"c15.226","gcamValue":1},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.265","gcamValue":1},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.29","gcamValue":8},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.53","gcamValue":8},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.97","gcamValue":2},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":38},{"gcamCode":"c16.101","gcamValue":16},{"gcamCode":"c16.102","gcamValue":3},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":17},{"gcamCode":"c16.106","gcamValue":19},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":79},{"gcamCode":"c16.11","gcamValue":19},{"gcamCode":"c16.110","gcamValue":139},{"gcamCode":"c16.111","gcamValue":9},{"gcamCode":"c16.112","gcamValue":2},{"gcamCode":"c16.113","gcamValue":9},{"gcamCode":"c16.114","gcamValue":34},{"gcamCode":"c16.115","gcamValue":16},{"gcamCode":"c16.116","gcamValue":37},{"gcamCode":"c16.117","gcamValue":26},{"gcamCode":"c16.118","gcamValue":46},{"gcamCode":"c16.12","gcamValue":88},{"gcamCode":"c16.120","gcamValue":62},{"gcamCode":"c16.121","gcamValue":113},{"gcamCode":"c16.122","gcamValue":9},{"gcamCode":"c16.124","gcamValue":17},{"gcamCode":"c16.125","gcamValue":59},{"gcamCode":"c16.126","gcamValue":94},{"gcamCode":"c16.127","gcamValue":70},{"gcamCode":"c16.128","gcamValue":20},{"gcamCode":"c16.129","gcamValue":115},{"gcamCode":"c16.13","gcamValue":5},{"gcamCode":"c16.130","gcamValue":23},{"gcamCode":"c16.131","gcamValue":24},{"gcamCode":"c16.132","gcamValue":2},{"gcamCode":"c16.133","gcamValue":8},{"gcamCode":"c16.134","gcamValue":92},{"gcamCode":"c16.136","gcamValue":4},{"gcamCode":"c16.138","gcamValue":55},{"gcamCode":"c16.139","gcamValue":19},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":23},{"gcamCode":"c16.141","gcamValue":4},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":74},{"gcamCode":"c16.146","gcamValue":82},{"gcamCode":"c16.147","gcamValue":4},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":8},{"gcamCode":"c16.150","gcamValue":2},{"gcamCode":"c16.152","gcamValue":11},{"gcamCode":"c16.153","gcamValue":51},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":6},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":31},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":42},{"gcamCode":"c16.16","gcamValue":29},{"gcamCode":"c16.160","gcamValue":1},{"gcamCode":"c16.161","gcamValue":64},{"gcamCode":"c16.162","gcamValue":59},{"gcamCode":"c16.163","gcamValue":73},{"gcamCode":"c16.164","gcamValue":26},{"gcamCode":"c16.165","gcamValue":15},{"gcamCode":"c16.17","gcamValue":9},{"gcamCode":"c16.19","gcamValue":20},{"gcamCode":"c16.2","gcamValue":92},{"gcamCode":"c16.21","gcamValue":4},{"gcamCode":"c16.22","gcamValue":20},{"gcamCode":"c16.23","gcamValue":14},{"gcamCode":"c16.24","gcamValue":5},{"gcamCode":"c16.26","gcamValue":112},{"gcamCode":"c16.27","gcamValue":11},{"gcamCode":"c16.28","gcamValue":4},{"gcamCode":"c16.29","gcamValue":5},{"gcamCode":"c16.3","gcamValue":24},{"gcamCode":"c16.31","gcamValue":88},{"gcamCode":"c16.32","gcamValue":11},{"gcamCode":"c16.33","gcamValue":97},{"gcamCode":"c16.34","gcamValue":16},{"gcamCode":"c16.35","gcamValue":39},{"gcamCode":"c16.37","gcamValue":83},{"gcamCode":"c16.38","gcamValue":55},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":61},{"gcamCode":"c16.40","gcamValue":1},{"gcamCode":"c16.41","gcamValue":18},{"gcamCode":"c16.42","gcamValue":8},{"gcamCode":"c16.45","gcamValue":34},{"gcamCode":"c16.46","gcamValue":15},{"gcamCode":"c16.47","gcamValue":162},{"gcamCode":"c16.48","gcamValue":22},{"gcamCode":"c16.49","gcamValue":5},{"gcamCode":"c16.5","gcamValue":7},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":18},{"gcamCode":"c16.52","gcamValue":68},{"gcamCode":"c16.53","gcamValue":8},{"gcamCode":"c16.54","gcamValue":7},{"gcamCode":"c16.55","gcamValue":11},{"gcamCode":"c16.56","gcamValue":26},{"gcamCode":"c16.57","gcamValue":558},{"gcamCode":"c16.58","gcamValue":48},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":86},{"gcamCode":"c16.60","gcamValue":14},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":21},{"gcamCode":"c16.63","gcamValue":16},{"gcamCode":"c16.64","gcamValue":21},{"gcamCode":"c16.65","gcamValue":20},{"gcamCode":"c16.66","gcamValue":32},{"gcamCode":"c16.68","gcamValue":73},{"gcamCode":"c16.69","gcamValue":17},{"gcamCode":"c16.7","gcamValue":16},{"gcamCode":"c16.70","gcamValue":44},{"gcamCode":"c16.71","gcamValue":14},{"gcamCode":"c16.72","gcamValue":10},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":22},{"gcamCode":"c16.75","gcamValue":20},{"gcamCode":"c16.76","gcamValue":19},{"gcamCode":"c16.77","gcamValue":4},{"gcamCode":"c16.78","gcamValue":35},{"gcamCode":"c16.79","gcamValue":12},{"gcamCode":"c16.8","gcamValue":3},{"gcamCode":"c16.80","gcamValue":16},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.83","gcamValue":7},{"gcamCode":"c16.84","gcamValue":93},{"gcamCode":"c16.85","gcamValue":6},{"gcamCode":"c16.86","gcamValue":4},{"gcamCode":"c16.87","gcamValue":97},{"gcamCode":"c16.88","gcamValue":73},{"gcamCode":"c16.89","gcamValue":50},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":51},{"gcamCode":"c16.91","gcamValue":38},{"gcamCode":"c16.92","gcamValue":91},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":74},{"gcamCode":"c16.95","gcamValue":95},{"gcamCode":"c16.96","gcamValue":43},{"gcamCode":"c16.97","gcamValue":7},{"gcamCode":"c16.98","gcamValue":72},{"gcamCode":"c16.99","gcamValue":17},{"gcamCode":"c17.1","gcamValue":264},{"gcamCode":"c17.10","gcamValue":165},{"gcamCode":"c17.11","gcamValue":132},{"gcamCode":"c17.12","gcamValue":39},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":22},{"gcamCode":"c17.15","gcamValue":84},{"gcamCode":"c17.16","gcamValue":39},{"gcamCode":"c17.18","gcamValue":13},{"gcamCode":"c17.19","gcamValue":46},{"gcamCode":"c17.2","gcamValue":32},{"gcamCode":"c17.20","gcamValue":16},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":29},{"gcamCode":"c17.23","gcamValue":29},{"gcamCode":"c17.24","gcamValue":71},{"gcamCode":"c17.25","gcamValue":14},{"gcamCode":"c17.26","gcamValue":6},{"gcamCode":"c17.27","gcamValue":112},{"gcamCode":"c17.28","gcamValue":11},{"gcamCode":"c17.29","gcamValue":30},{"gcamCode":"c17.3","gcamValue":4},{"gcamCode":"c17.30","gcamValue":26},{"gcamCode":"c17.31","gcamValue":59},{"gcamCode":"c17.32","gcamValue":66},{"gcamCode":"c17.33","gcamValue":61},{"gcamCode":"c17.34","gcamValue":30},{"gcamCode":"c17.35","gcamValue":14},{"gcamCode":"c17.36","gcamValue":48},{"gcamCode":"c17.37","gcamValue":56},{"gcamCode":"c17.38","gcamValue":14},{"gcamCode":"c17.39","gcamValue":32},{"gcamCode":"c17.4","gcamValue":202},{"gcamCode":"c17.40","gcamValue":34},{"gcamCode":"c17.41","gcamValue":34},{"gcamCode":"c17.42","gcamValue":69},{"gcamCode":"c17.43","gcamValue":57},{"gcamCode":"c17.5","gcamValue":209},{"gcamCode":"c17.6","gcamValue":4},{"gcamCode":"c17.7","gcamValue":105},{"gcamCode":"c17.8","gcamValue":130},{"gcamCode":"c17.9","gcamValue":18},{"gcamCode":"c18.110","gcamValue":6},{"gcamCode":"c18.119","gcamValue":2},{"gcamCode":"c18.123","gcamValue":1},{"gcamCode":"c18.125","gcamValue":1},{"gcamCode":"c18.136","gcamValue":1},{"gcamCode":"c18.139","gcamValue":2},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.180","gcamValue":6},{"gcamCode":"c18.186","gcamValue":2},{"gcamCode":"c18.193","gcamValue":11},{"gcamCode":"c18.208","gcamValue":1},{"gcamCode":"c18.217","gcamValue":2},{"gcamCode":"c18.241","gcamValue":1},{"gcamCode":"c18.249","gcamValue":1},{"gcamCode":"c18.301","gcamValue":3},{"gcamCode":"c18.34","gcamValue":6},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.35","gcamValue":3},{"gcamCode":"c18.4","gcamValue":1},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.81","gcamValue":1},{"gcamCode":"c18.93","gcamValue":1},{"gcamCode":"c18.98","gcamValue":2},{"gcamCode":"c18.99","gcamValue":1},{"gcamCode":"c2.1","gcamValue":44},{"gcamCode":"c2.10","gcamValue":2},{"gcamCode":"c2.100","gcamValue":21},{"gcamCode":"c2.101","gcamValue":14},{"gcamCode":"c2.102","gcamValue":75},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":166},{"gcamCode":"c2.106","gcamValue":5},{"gcamCode":"c2.107","gcamValue":4},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":29},{"gcamCode":"c2.110","gcamValue":6},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":31},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":17},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":330},{"gcamCode":"c2.12","gcamValue":26},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":52},{"gcamCode":"c2.122","gcamValue":9},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":8},{"gcamCode":"c2.125","gcamValue":46},{"gcamCode":"c2.126","gcamValue":18},{"gcamCode":"c2.127","gcamValue":59},{"gcamCode":"c2.128","gcamValue":26},{"gcamCode":"c2.129","gcamValue":69},{"gcamCode":"c2.13","gcamValue":1},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.131","gcamValue":11},{"gcamCode":"c2.132","gcamValue":6},{"gcamCode":"c2.133","gcamValue":6},{"gcamCode":"c2.134","gcamValue":5},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.136","gcamValue":14},{"gcamCode":"c2.137","gcamValue":2},{"gcamCode":"c2.138","gcamValue":4},{"gcamCode":"c2.139","gcamValue":13},{"gcamCode":"c2.14","gcamValue":109},{"gcamCode":"c2.141","gcamValue":38},{"gcamCode":"c2.142","gcamValue":5},{"gcamCode":"c2.143","gcamValue":91},{"gcamCode":"c2.144","gcamValue":10},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":167},{"gcamCode":"c2.148","gcamValue":36},{"gcamCode":"c2.15","gcamValue":50},{"gcamCode":"c2.150","gcamValue":2},{"gcamCode":"c2.151","gcamValue":6},{"gcamCode":"c2.152","gcamValue":5},{"gcamCode":"c2.153","gcamValue":14},{"gcamCode":"c2.154","gcamValue":25},{"gcamCode":"c2.155","gcamValue":121},{"gcamCode":"c2.156","gcamValue":59},{"gcamCode":"c2.157","gcamValue":98},{"gcamCode":"c2.158","gcamValue":65},{"gcamCode":"c2.159","gcamValue":15},{"gcamCode":"c2.160","gcamValue":36},{"gcamCode":"c2.162","gcamValue":10},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":11},{"gcamCode":"c2.167","gcamValue":4},{"gcamCode":"c2.169","gcamValue":7},{"gcamCode":"c2.17","gcamValue":6},{"gcamCode":"c2.170","gcamValue":10},{"gcamCode":"c2.172","gcamValue":15},{"gcamCode":"c2.173","gcamValue":14},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":4},{"gcamCode":"c2.176","gcamValue":9},{"gcamCode":"c2.177","gcamValue":29},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":15},{"gcamCode":"c2.180","gcamValue":15},{"gcamCode":"c2.181","gcamValue":36},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":39},{"gcamCode":"c2.185","gcamValue":161},{"gcamCode":"c2.186","gcamValue":14},{"gcamCode":"c2.187","gcamValue":26},{"gcamCode":"c2.19","gcamValue":6},{"gcamCode":"c2.191","gcamValue":7},{"gcamCode":"c2.192","gcamValue":27},{"gcamCode":"c2.193","gcamValue":66},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":153},{"gcamCode":"c2.196","gcamValue":18},{"gcamCode":"c2.197","gcamValue":10},{"gcamCode":"c2.198","gcamValue":60},{"gcamCode":"c2.199","gcamValue":25},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":16},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":12},{"gcamCode":"c2.204","gcamValue":43},{"gcamCode":"c2.205","gcamValue":14},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.21","gcamValue":7},{"gcamCode":"c2.210","gcamValue":53},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.212","gcamValue":2},{"gcamCode":"c2.213","gcamValue":21},{"gcamCode":"c2.214","gcamValue":73},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":32},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":34},{"gcamCode":"c2.221","gcamValue":14},{"gcamCode":"c2.222","gcamValue":5},{"gcamCode":"c2.223","gcamValue":20},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":23},{"gcamCode":"c2.226","gcamValue":23},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":2},{"gcamCode":"c2.23","gcamValue":33},{"gcamCode":"c2.25","gcamValue":39},{"gcamCode":"c2.26","gcamValue":30},{"gcamCode":"c2.27","gcamValue":30},{"gcamCode":"c2.28","gcamValue":14},{"gcamCode":"c2.30","gcamValue":31},{"gcamCode":"c2.31","gcamValue":20},{"gcamCode":"c2.32","gcamValue":12},{"gcamCode":"c2.33","gcamValue":16},{"gcamCode":"c2.34","gcamValue":23},{"gcamCode":"c2.35","gcamValue":12},{"gcamCode":"c2.36","gcamValue":4},{"gcamCode":"c2.37","gcamValue":7},{"gcamCode":"c2.38","gcamValue":5},{"gcamCode":"c2.39","gcamValue":116},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":6},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":72},{"gcamCode":"c2.46","gcamValue":40},{"gcamCode":"c2.47","gcamValue":5},{"gcamCode":"c2.48","gcamValue":54},{"gcamCode":"c2.5","gcamValue":3},{"gcamCode":"c2.50","gcamValue":19},{"gcamCode":"c2.52","gcamValue":67},{"gcamCode":"c2.54","gcamValue":75},{"gcamCode":"c2.55","gcamValue":11},{"gcamCode":"c2.56","gcamValue":8},{"gcamCode":"c2.57","gcamValue":27},{"gcamCode":"c2.58","gcamValue":32},{"gcamCode":"c2.59","gcamValue":5},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":18},{"gcamCode":"c2.63","gcamValue":2},{"gcamCode":"c2.64","gcamValue":25},{"gcamCode":"c2.65","gcamValue":4},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.72","gcamValue":16},{"gcamCode":"c2.73","gcamValue":8},{"gcamCode":"c2.74","gcamValue":2},{"gcamCode":"c2.75","gcamValue":105},{"gcamCode":"c2.76","gcamValue":665},{"gcamCode":"c2.77","gcamValue":62},{"gcamCode":"c2.78","gcamValue":88},{"gcamCode":"c2.79","gcamValue":7},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":119},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":12},{"gcamCode":"c2.83","gcamValue":4},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.86","gcamValue":13},{"gcamCode":"c2.87","gcamValue":20},{"gcamCode":"c2.88","gcamValue":24},{"gcamCode":"c2.89","gcamValue":34},{"gcamCode":"c2.9","gcamValue":15},{"gcamCode":"c2.90","gcamValue":7},{"gcamCode":"c2.93","gcamValue":53},{"gcamCode":"c2.95","gcamValue":125},{"gcamCode":"c2.97","gcamValue":7},{"gcamCode":"c2.98","gcamValue":35},{"gcamCode":"c2.99","gcamValue":1},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.10","gcamValue":1},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.3","gcamValue":3},{"gcamCode":"c25.4","gcamValue":2},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":33},{"gcamCode":"c3.2","gcamValue":116},{"gcamCode":"c35.1","gcamValue":22},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":11},{"gcamCode":"c35.14","gcamValue":12},{"gcamCode":"c35.15","gcamValue":32},{"gcamCode":"c35.17","gcamValue":1},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":4},{"gcamCode":"c35.20","gcamValue":29},{"gcamCode":"c35.22","gcamValue":3},{"gcamCode":"c35.23","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":4},{"gcamCode":"c35.27","gcamValue":3},{"gcamCode":"c35.3","gcamValue":4},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":109},{"gcamCode":"c35.32","gcamValue":45},{"gcamCode":"c35.33","gcamValue":42},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":45},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.7","gcamValue":10},{"gcamCode":"c35.9","gcamValue":3},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":3},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":6},{"gcamCode":"c39.17","gcamValue":20},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":9},{"gcamCode":"c39.3","gcamValue":28},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":31},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c39.39","gcamValue":16},{"gcamCode":"c39.4","gcamValue":21},{"gcamCode":"c39.40","gcamValue":6},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":10},{"gcamCode":"c39.6","gcamValue":2},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c4.1","gcamValue":4},{"gcamCode":"c4.14","gcamValue":1},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.20","gcamValue":2},{"gcamCode":"c4.22","gcamValue":3},{"gcamCode":"c4.23","gcamValue":15},{"gcamCode":"c4.3","gcamValue":9},{"gcamCode":"c4.6","gcamValue":1},{"gcamCode":"c4.7","gcamValue":1},{"gcamCode":"c4.9","gcamValue":1},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c40.5","gcamValue":3},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":6},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c41.1","gcamValue":71},{"gcamCode":"c5.10","gcamValue":86},{"gcamCode":"c5.11","gcamValue":14},{"gcamCode":"c5.12","gcamValue":130},{"gcamCode":"c5.13","gcamValue":16},{"gcamCode":"c5.14","gcamValue":5},{"gcamCode":"c5.15","gcamValue":14},{"gcamCode":"c5.16","gcamValue":4},{"gcamCode":"c5.17","gcamValue":31},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.21","gcamValue":9},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":32},{"gcamCode":"c5.24","gcamValue":9},{"gcamCode":"c5.25","gcamValue":8},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":25},{"gcamCode":"c5.29","gcamValue":22},{"gcamCode":"c5.3","gcamValue":2},{"gcamCode":"c5.30","gcamValue":106},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.33","gcamValue":5},{"gcamCode":"c5.34","gcamValue":11},{"gcamCode":"c5.35","gcamValue":33},{"gcamCode":"c5.36","gcamValue":46},{"gcamCode":"c5.37","gcamValue":23},{"gcamCode":"c5.38","gcamValue":13},{"gcamCode":"c5.4","gcamValue":8},{"gcamCode":"c5.40","gcamValue":73},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":14},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":6},{"gcamCode":"c5.46","gcamValue":159},{"gcamCode":"c5.47","gcamValue":8},{"gcamCode":"c5.48","gcamValue":4},{"gcamCode":"c5.49","gcamValue":39},{"gcamCode":"c5.50","gcamValue":53},{"gcamCode":"c5.51","gcamValue":31},{"gcamCode":"c5.52","gcamValue":63},{"gcamCode":"c5.53","gcamValue":90},{"gcamCode":"c5.54","gcamValue":15},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":8},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":29},{"gcamCode":"c5.60","gcamValue":15},{"gcamCode":"c5.61","gcamValue":30},{"gcamCode":"c5.62","gcamValue":330},{"gcamCode":"c5.7","gcamValue":62},{"gcamCode":"c5.8","gcamValue":86},{"gcamCode":"c5.9","gcamValue":19},{"gcamCode":"c6.1","gcamValue":5},{"gcamCode":"c6.2","gcamValue":13},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":22},{"gcamCode":"c6.5","gcamValue":20},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":41},{"gcamCode":"c7.2","gcamValue":64},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":2},{"gcamCode":"c8.14","gcamValue":3},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.20","gcamValue":18},{"gcamCode":"c8.22","gcamValue":9},{"gcamCode":"c8.23","gcamValue":21},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.3","gcamValue":5},{"gcamCode":"c8.30","gcamValue":2},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.34","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":41},{"gcamCode":"c8.38","gcamValue":40},{"gcamCode":"c8.39","gcamValue":4},{"gcamCode":"c8.4","gcamValue":15},{"gcamCode":"c8.40","gcamValue":10},{"gcamCode":"c8.41","gcamValue":12},{"gcamCode":"c8.42","gcamValue":32},{"gcamCode":"c8.43","gcamValue":14},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":21},{"gcamCode":"c9.10","gcamValue":12},{"gcamCode":"c9.100","gcamValue":5},{"gcamCode":"c9.1000","gcamValue":3},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1004","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":4},{"gcamCode":"c9.1033","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":5},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":6},{"gcamCode":"c9.11","gcamValue":7},{"gcamCode":"c9.111","gcamValue":8},{"gcamCode":"c9.113","gcamValue":5},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":5},{"gcamCode":"c9.12","gcamValue":1},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":7},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.128","gcamValue":20},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":5},{"gcamCode":"c9.141","gcamValue":11},{"gcamCode":"c9.143","gcamValue":7},{"gcamCode":"c9.145","gcamValue":6},{"gcamCode":"c9.147","gcamValue":3},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":12},{"gcamCode":"c9.156","gcamValue":3},{"gcamCode":"c9.157","gcamValue":5},{"gcamCode":"c9.158","gcamValue":21},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":10},{"gcamCode":"c9.161","gcamValue":17},{"gcamCode":"c9.162","gcamValue":15},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":14},{"gcamCode":"c9.165","gcamValue":4},{"gcamCode":"c9.166","gcamValue":11},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":24},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":3},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":17},{"gcamCode":"c9.178","gcamValue":8},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":13},{"gcamCode":"c9.184","gcamValue":29},{"gcamCode":"c9.186","gcamValue":6},{"gcamCode":"c9.188","gcamValue":7},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":4},{"gcamCode":"c9.191","gcamValue":4},{"gcamCode":"c9.192","gcamValue":9},{"gcamCode":"c9.193","gcamValue":8},{"gcamCode":"c9.195","gcamValue":6},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":6},{"gcamCode":"c9.198","gcamValue":11},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":12},{"gcamCode":"c9.201","gcamValue":10},{"gcamCode":"c9.202","gcamValue":4},{"gcamCode":"c9.203","gcamValue":11},{"gcamCode":"c9.204","gcamValue":3},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":6},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.208","gcamValue":4},{"gcamCode":"c9.209","gcamValue":8},{"gcamCode":"c9.210","gcamValue":3},{"gcamCode":"c9.212","gcamValue":5},{"gcamCode":"c9.213","gcamValue":2},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":4},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":6},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":6},{"gcamCode":"c9.221","gcamValue":2},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":12},{"gcamCode":"c9.224","gcamValue":21},{"gcamCode":"c9.225","gcamValue":1},{"gcamCode":"c9.229","gcamValue":3},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.233","gcamValue":8},{"gcamCode":"c9.234","gcamValue":2},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":2},{"gcamCode":"c9.239","gcamValue":3},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.240","gcamValue":1},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.242","gcamValue":3},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":8},{"gcamCode":"c9.250","gcamValue":7},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.260","gcamValue":11},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":4},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":3},{"gcamCode":"c9.27","gcamValue":6},{"gcamCode":"c9.270","gcamValue":3},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.275","gcamValue":5},{"gcamCode":"c9.276","gcamValue":3},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.281","gcamValue":5},{"gcamCode":"c9.282","gcamValue":8},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.288","gcamValue":8},{"gcamCode":"c9.29","gcamValue":4},{"gcamCode":"c9.290","gcamValue":4},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.294","gcamValue":10},{"gcamCode":"c9.295","gcamValue":2},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":18},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.302","gcamValue":7},{"gcamCode":"c9.304","gcamValue":3},{"gcamCode":"c9.305","gcamValue":5},{"gcamCode":"c9.306","gcamValue":3},{"gcamCode":"c9.308","gcamValue":16},{"gcamCode":"c9.310","gcamValue":2},{"gcamCode":"c9.311","gcamValue":2},{"gcamCode":"c9.312","gcamValue":6},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":2},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":2},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.323","gcamValue":9},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.329","gcamValue":5},{"gcamCode":"c9.33","gcamValue":28},{"gcamCode":"c9.331","gcamValue":4},{"gcamCode":"c9.337","gcamValue":6},{"gcamCode":"c9.339","gcamValue":5},{"gcamCode":"c9.34","gcamValue":10},{"gcamCode":"c9.340","gcamValue":14},{"gcamCode":"c9.35","gcamValue":13},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":4},{"gcamCode":"c9.36","gcamValue":6},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.37","gcamValue":9},{"gcamCode":"c9.370","gcamValue":5},{"gcamCode":"c9.38","gcamValue":2},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":15},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.387","gcamValue":3},{"gcamCode":"c9.389","gcamValue":5},{"gcamCode":"c9.39","gcamValue":28},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":3},{"gcamCode":"c9.403","gcamValue":6},{"gcamCode":"c9.405","gcamValue":8},{"gcamCode":"c9.409","gcamValue":4},{"gcamCode":"c9.411","gcamValue":2},{"gcamCode":"c9.413","gcamValue":6},{"gcamCode":"c9.416","gcamValue":8},{"gcamCode":"c9.42","gcamValue":6},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.427","gcamValue":3},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.430","gcamValue":7},{"gcamCode":"c9.432","gcamValue":4},{"gcamCode":"c9.433","gcamValue":3},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":13},{"gcamCode":"c9.440","gcamValue":5},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.451","gcamValue":3},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":9},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.465","gcamValue":3},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.468","gcamValue":5},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.479","gcamValue":12},{"gcamCode":"c9.48","gcamValue":20},{"gcamCode":"c9.480","gcamValue":5},{"gcamCode":"c9.481","gcamValue":3},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.485","gcamValue":2},{"gcamCode":"c9.487","gcamValue":2},{"gcamCode":"c9.488","gcamValue":6},{"gcamCode":"c9.489","gcamValue":14},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":8},{"gcamCode":"c9.494","gcamValue":4},{"gcamCode":"c9.496","gcamValue":8},{"gcamCode":"c9.497","gcamValue":1},{"gcamCode":"c9.498","gcamValue":30},{"gcamCode":"c9.5","gcamValue":10},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.501","gcamValue":4},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":14},{"gcamCode":"c9.513","gcamValue":27},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":9},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.52","gcamValue":4},{"gcamCode":"c9.521","gcamValue":20},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.53","gcamValue":5},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":15},{"gcamCode":"c9.537","gcamValue":12},{"gcamCode":"c9.539","gcamValue":5},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.545","gcamValue":2},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":5},{"gcamCode":"c9.55","gcamValue":6},{"gcamCode":"c9.551","gcamValue":21},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":5},{"gcamCode":"c9.557","gcamValue":7},{"gcamCode":"c9.559","gcamValue":4},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":17},{"gcamCode":"c9.564","gcamValue":6},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":5},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.57","gcamValue":6},{"gcamCode":"c9.570","gcamValue":3},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.575","gcamValue":6},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":21},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.581","gcamValue":4},{"gcamCode":"c9.585","gcamValue":2},{"gcamCode":"c9.587","gcamValue":2},{"gcamCode":"c9.589","gcamValue":3},{"gcamCode":"c9.59","gcamValue":5},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.6","gcamValue":2},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.602","gcamValue":5},{"gcamCode":"c9.605","gcamValue":2},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":4},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":4},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":6},{"gcamCode":"c9.619","gcamValue":18},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.621","gcamValue":4},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":8},{"gcamCode":"c9.625","gcamValue":6},{"gcamCode":"c9.626","gcamValue":3},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.629","gcamValue":11},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":11},{"gcamCode":"c9.631","gcamValue":2},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.635","gcamValue":5},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.638","gcamValue":18},{"gcamCode":"c9.64","gcamValue":6},{"gcamCode":"c9.640","gcamValue":16},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":15},{"gcamCode":"c9.643","gcamValue":1},{"gcamCode":"c9.646","gcamValue":7},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":28},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":41},{"gcamCode":"c9.654","gcamValue":24},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":16},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":21},{"gcamCode":"c9.661","gcamValue":6},{"gcamCode":"c9.663","gcamValue":2},{"gcamCode":"c9.664","gcamValue":7},{"gcamCode":"c9.665","gcamValue":11},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":7},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":14},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":11},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":13},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":5},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":19},{"gcamCode":"c9.677","gcamValue":7},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":7},{"gcamCode":"c9.683","gcamValue":11},{"gcamCode":"c9.684","gcamValue":4},{"gcamCode":"c9.686","gcamValue":6},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.688","gcamValue":3},{"gcamCode":"c9.689","gcamValue":1},{"gcamCode":"c9.69","gcamValue":2},{"gcamCode":"c9.690","gcamValue":14},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":4},{"gcamCode":"c9.694","gcamValue":6},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.698","gcamValue":7},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":13},{"gcamCode":"c9.701","gcamValue":44},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":14},{"gcamCode":"c9.705","gcamValue":10},{"gcamCode":"c9.708","gcamValue":13},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":4},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.717","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.720","gcamValue":21},{"gcamCode":"c9.721","gcamValue":13},{"gcamCode":"c9.722","gcamValue":9},{"gcamCode":"c9.723","gcamValue":7},{"gcamCode":"c9.724","gcamValue":9},{"gcamCode":"c9.726","gcamValue":55},{"gcamCode":"c9.727","gcamValue":4},{"gcamCode":"c9.73","gcamValue":11},{"gcamCode":"c9.730","gcamValue":26},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":10},{"gcamCode":"c9.733","gcamValue":10},{"gcamCode":"c9.734","gcamValue":4},{"gcamCode":"c9.735","gcamValue":24},{"gcamCode":"c9.736","gcamValue":14},{"gcamCode":"c9.737","gcamValue":6},{"gcamCode":"c9.739","gcamValue":3},{"gcamCode":"c9.740","gcamValue":15},{"gcamCode":"c9.741","gcamValue":13},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.745","gcamValue":11},{"gcamCode":"c9.746","gcamValue":10},{"gcamCode":"c9.747","gcamValue":6},{"gcamCode":"c9.748","gcamValue":30},{"gcamCode":"c9.75","gcamValue":7},{"gcamCode":"c9.750","gcamValue":6},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":4},{"gcamCode":"c9.757","gcamValue":5},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":9},{"gcamCode":"c9.76","gcamValue":16},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.762","gcamValue":20},{"gcamCode":"c9.763","gcamValue":2},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":13},{"gcamCode":"c9.767","gcamValue":28},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":7},{"gcamCode":"c9.776","gcamValue":6},{"gcamCode":"c9.777","gcamValue":4},{"gcamCode":"c9.778","gcamValue":3},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.785","gcamValue":7},{"gcamCode":"c9.787","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":5},{"gcamCode":"c9.79","gcamValue":4},{"gcamCode":"c9.790","gcamValue":5},{"gcamCode":"c9.792","gcamValue":4},{"gcamCode":"c9.795","gcamValue":2},{"gcamCode":"c9.797","gcamValue":2},{"gcamCode":"c9.798","gcamValue":3},{"gcamCode":"c9.8","gcamValue":25},{"gcamCode":"c9.80","gcamValue":12},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.801","gcamValue":4},{"gcamCode":"c9.802","gcamValue":6},{"gcamCode":"c9.803","gcamValue":5},{"gcamCode":"c9.805","gcamValue":2},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.808","gcamValue":5},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.81","gcamValue":1},{"gcamCode":"c9.810","gcamValue":3},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":8},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.818","gcamValue":3},{"gcamCode":"c9.819","gcamValue":2},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.824","gcamValue":6},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":6},{"gcamCode":"c9.837","gcamValue":5},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.841","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.845","gcamValue":4},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.847","gcamValue":4},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":3},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":2},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":4},{"gcamCode":"c9.858","gcamValue":23},{"gcamCode":"c9.86","gcamValue":9},{"gcamCode":"c9.860","gcamValue":13},{"gcamCode":"c9.861","gcamValue":8},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":6},{"gcamCode":"c9.864","gcamValue":20},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":18},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.872","gcamValue":1},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.876","gcamValue":1},{"gcamCode":"c9.877","gcamValue":4},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":6},{"gcamCode":"c9.883","gcamValue":3},{"gcamCode":"c9.884","gcamValue":9},{"gcamCode":"c9.886","gcamValue":2},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":7},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.896","gcamValue":10},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.899","gcamValue":10},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":4},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.902","gcamValue":8},{"gcamCode":"c9.903","gcamValue":11},{"gcamCode":"c9.908","gcamValue":11},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":12},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":8},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":5},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.919","gcamValue":2},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.926","gcamValue":25},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":9},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":9},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":24},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.942","gcamValue":2},{"gcamCode":"c9.945","gcamValue":11},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.949","gcamValue":7},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.953","gcamValue":7},{"gcamCode":"c9.954","gcamValue":1},{"gcamCode":"c9.955","gcamValue":12},{"gcamCode":"c9.96","gcamValue":17},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.966","gcamValue":7},{"gcamCode":"c9.967","gcamValue":2},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":11},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":18},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":12},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":4},{"gcamCode":"c9.990","gcamValue":3},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.292696443341605},{"gcamCode":"v10.2","gcamValue":0.242833286271001},{"gcamCode":"v11.1","gcamValue":0.118152101449275},{"gcamCode":"v19.1","gcamValue":6.0126724137931},{"gcamCode":"v19.2","gcamValue":5.22103448275863},{"gcamCode":"v19.3","gcamValue":5.51293103448276},{"gcamCode":"v19.4","gcamValue":6.04663793103448},{"gcamCode":"v19.5","gcamValue":5.10517241379311},{"gcamCode":"v19.6","gcamValue":5.6328448275862},{"gcamCode":"v19.7","gcamValue":6.00241379310345},{"gcamCode":"v19.8","gcamValue":5.36431034482758},{"gcamCode":"v19.9","gcamValue":5.40068965517242},{"gcamCode":"v20.1","gcamValue":0.5024},{"gcamCode":"v20.10","gcamValue":-0.5415},{"gcamCode":"v20.11","gcamValue":0.618454545454545},{"gcamCode":"v20.12","gcamValue":-0.52075},{"gcamCode":"v20.13","gcamValue":0.429423076923077},{"gcamCode":"v20.14","gcamValue":-0.387},{"gcamCode":"v20.15","gcamValue":0.369615384615385},{"gcamCode":"v20.16","gcamValue":-0.350947368421053},{"gcamCode":"v20.3","gcamValue":0.746428571428571},{"gcamCode":"v20.4","gcamValue":-0.5},{"gcamCode":"v20.5","gcamValue":0.7625},{"gcamCode":"v20.6","gcamValue":-0.5},{"gcamCode":"v20.7","gcamValue":0.7625},{"gcamCode":"v20.8","gcamValue":-0.5},{"gcamCode":"v20.9","gcamValue":0.736909090909091},{"gcamCode":"v21.1","gcamValue":5.59733742331288},{"gcamCode":"v26.1","gcamValue":0.492753623188406}][""][""]["https://youtube.com/channel/UC4RQutFVU_1OSNtOzGyBfGw"][][{"name":"South America","charOffset":1322},{"name":"National Assembly","charOffset":2013},{"name":"Interim President","charOffset":2034},{"name":"Country Manager","charOffset":2990},{"name":"Operation Manager","charOffset":3094},{"name":"Accountability Framework","charOffset":3852},{"name":"Strategic Definition","charOffset":5600},{"name":"Handicap International","charOffset":6908}][{"amount":55,"amountType":"countries","charOffset":681},{"amount":150000000,"amountType":"euros","charOffset":758},{"amount":5000000,"amountType":"Venezuelans have left the","charOffset":1111},{"amount":4000000,"amountType":"migrants/refugees","charOffset":1318},{"amount":2,"amountType":"months","charOffset":6367},{"amount":3,"amountType":"months","charOffset":6655}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.hi.orr</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEBfxstreet.comhttps://www.fxstreet.com/cryptocurrencies/news/japan-to-host-g20-summit-2019-looks-forward-to-anti-money-laundering-policies-201905231148[][]["WB_1921_PRIVATE_SECTOR_DEVELOPMENT","WB_405_BUSINESS_CLIMATE","WB_2531_INSPECTIONS_LICENSING_AND_PERMITS","WB_2530_BUSINESS_ENVIRONMENT","USPEC_POLICY1","ECON_BITCOIN","EPU_POLICY","EPU_POLICY_REGULATION","EPU_CATS_REGULATION","CRISISLEX_C07_SAFETY","EPU_ECONOMY_HISTORIC","TAX_FNCACT","TAX_FNCACT_BUREAUCRATS"][{"theme":"CRISISLEX_C07_SAFETY","charOffset":1154},{"theme":"ECON_BITCOIN","charOffset":934},{"theme":"EPU_POLICY_REGULATION","charOffset":1041},{"theme":"EPU_CATS_REGULATION","charOffset":1041},{"theme":"USPEC_POLICY1","charOffset":295},{"theme":"USPEC_POLICY1","charOffset":820},{"theme":"USPEC_POLICY1","charOffset":946},{"theme":"USPEC_POLICY1","charOffset":1485},{"theme":"TAX_FNCACT_BUREAUCRATS","charOffset":1365},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1292},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":41},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":642},{"theme":"WB_405_BUSINESS_CLIMATE","charOffset":41},{"theme":"WB_405_BUSINESS_CLIMATE","charOffset":642},{"theme":"WB_2531_INSPECTIONS_LICENSING_AND_PERMITS","charOffset":41},{"theme":"WB_2531_INSPECTIONS_LICENSING_AND_PERMITS","charOffset":642},{"theme":"WB_2530_BUSINESS_ENVIRONMENT","charOffset":41},{"theme":"WB_2530_BUSINESS_ENVIRONMENT","charOffset":642}][{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"}][{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":5},{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":85},{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":162},{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":606},{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":770},{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":879},{"location":{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},"charOffset":1407}][""][]["financial services agency"][{"organisation":"Financial Services Agency","charOffset":373}]{"tone":-0.3968254,"positiveScore":1.1904762,"negativeScore":1.5873016,"polarity":2.7777777,"activityReferenceDensity":21.825397,"selfGroupReferenceDensity":0,"wordCount":235}[{"dateResolution":1,"month":0,"day":0,"year":2008,"charOffset":560}][{"gcamCode":"wc","gcamValue":235},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":9},{"gcamCode":"c12.10","gcamValue":21},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.13","gcamValue":10},{"gcamCode":"c12.14","gcamValue":10},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":3},{"gcamCode":"c12.8","gcamValue":11},{"gcamCode":"c12.9","gcamValue":12},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c14.1","gcamValue":12},{"gcamCode":"c14.10","gcamValue":2},{"gcamCode":"c14.11","gcamValue":19},{"gcamCode":"c14.2","gcamValue":8},{"gcamCode":"c14.3","gcamValue":6},{"gcamCode":"c14.5","gcamValue":18},{"gcamCode":"c14.7","gcamValue":1},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.203","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.57","gcamValue":3},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c16.100","gcamValue":6},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.106","gcamValue":15},{"gcamCode":"c16.109","gcamValue":22},{"gcamCode":"c16.110","gcamValue":38},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":5},{"gcamCode":"c16.114","gcamValue":20},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":5},{"gcamCode":"c16.117","gcamValue":5},{"gcamCode":"c16.118","gcamValue":17},{"gcamCode":"c16.12","gcamValue":34},{"gcamCode":"c16.120","gcamValue":4},{"gcamCode":"c16.121","gcamValue":10},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.125","gcamValue":15},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":27},{"gcamCode":"c16.128","gcamValue":4},{"gcamCode":"c16.129","gcamValue":15},{"gcamCode":"c16.13","gcamValue":7},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":15},{"gcamCode":"c16.134","gcamValue":21},{"gcamCode":"c16.137","gcamValue":1},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.139","gcamValue":16},{"gcamCode":"c16.140","gcamValue":7},{"gcamCode":"c16.145","gcamValue":14},{"gcamCode":"c16.146","gcamValue":10},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":20},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":27},{"gcamCode":"c16.162","gcamValue":6},{"gcamCode":"c16.163","gcamValue":12},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":9},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.23","gcamValue":4},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":23},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.29","gcamValue":2},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":7},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":19},{"gcamCode":"c16.35","gcamValue":16},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":28},{"gcamCode":"c16.38","gcamValue":6},{"gcamCode":"c16.4","gcamValue":21},{"gcamCode":"c16.41","gcamValue":17},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":15},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":37},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":12},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":112},{"gcamCode":"c16.58","gcamValue":25},{"gcamCode":"c16.6","gcamValue":25},{"gcamCode":"c16.60","gcamValue":7},{"gcamCode":"c16.62","gcamValue":15},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":7},{"gcamCode":"c16.69","gcamValue":15},{"gcamCode":"c16.7","gcamValue":7},{"gcamCode":"c16.70","gcamValue":12},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":15},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.8","gcamValue":2},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":12},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":8},{"gcamCode":"c16.87","gcamValue":14},{"gcamCode":"c16.88","gcamValue":33},{"gcamCode":"c16.89","gcamValue":10},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":10},{"gcamCode":"c16.94","gcamValue":19},{"gcamCode":"c16.95","gcamValue":5},{"gcamCode":"c16.96","gcamValue":8},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":22},{"gcamCode":"c17.1","gcamValue":48},{"gcamCode":"c17.10","gcamValue":32},{"gcamCode":"c17.11","gcamValue":33},{"gcamCode":"c17.12","gcamValue":4},{"gcamCode":"c17.13","gcamValue":2},{"gcamCode":"c17.15","gcamValue":11},{"gcamCode":"c17.16","gcamValue":8},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":11},{"gcamCode":"c17.2","gcamValue":5},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":9},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":23},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":27},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":1},{"gcamCode":"c17.30","gcamValue":4},{"gcamCode":"c17.31","gcamValue":14},{"gcamCode":"c17.32","gcamValue":14},{"gcamCode":"c17.33","gcamValue":12},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":9},{"gcamCode":"c17.37","gcamValue":12},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":12},{"gcamCode":"c17.4","gcamValue":49},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":3},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":7},{"gcamCode":"c17.5","gcamValue":50},{"gcamCode":"c17.6","gcamValue":4},{"gcamCode":"c17.7","gcamValue":33},{"gcamCode":"c17.8","gcamValue":22},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.337","gcamValue":1},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c2.1","gcamValue":2},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":11},{"gcamCode":"c2.104","gcamValue":25},{"gcamCode":"c2.106","gcamValue":7},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":7},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":5},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.119","gcamValue":60},{"gcamCode":"c2.12","gcamValue":15},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":21},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":12},{"gcamCode":"c2.126","gcamValue":15},{"gcamCode":"c2.127","gcamValue":27},{"gcamCode":"c2.128","gcamValue":7},{"gcamCode":"c2.129","gcamValue":17},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":4},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.14","gcamValue":16},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.143","gcamValue":15},{"gcamCode":"c2.144","gcamValue":5},{"gcamCode":"c2.146","gcamValue":5},{"gcamCode":"c2.147","gcamValue":44},{"gcamCode":"c2.148","gcamValue":15},{"gcamCode":"c2.15","gcamValue":3},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":30},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":28},{"gcamCode":"c2.158","gcamValue":20},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":10},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":4},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.172","gcamValue":4},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":17},{"gcamCode":"c2.179","gcamValue":4},{"gcamCode":"c2.18","gcamValue":15},{"gcamCode":"c2.180","gcamValue":15},{"gcamCode":"c2.181","gcamValue":16},{"gcamCode":"c2.183","gcamValue":16},{"gcamCode":"c2.185","gcamValue":54},{"gcamCode":"c2.186","gcamValue":7},{"gcamCode":"c2.187","gcamValue":19},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":7},{"gcamCode":"c2.193","gcamValue":17},{"gcamCode":"c2.195","gcamValue":12},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":1},{"gcamCode":"c2.198","gcamValue":26},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.203","gcamValue":13},{"gcamCode":"c2.204","gcamValue":21},{"gcamCode":"c2.205","gcamValue":3},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.210","gcamValue":32},{"gcamCode":"c2.213","gcamValue":4},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.221","gcamValue":6},{"gcamCode":"c2.222","gcamValue":2},{"gcamCode":"c2.223","gcamValue":8},{"gcamCode":"c2.225","gcamValue":3},{"gcamCode":"c2.226","gcamValue":6},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":6},{"gcamCode":"c2.25","gcamValue":20},{"gcamCode":"c2.26","gcamValue":11},{"gcamCode":"c2.27","gcamValue":11},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":4},{"gcamCode":"c2.31","gcamValue":18},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":10},{"gcamCode":"c2.39","gcamValue":43},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":22},{"gcamCode":"c2.45","gcamValue":22},{"gcamCode":"c2.46","gcamValue":24},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":3},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":26},{"gcamCode":"c2.54","gcamValue":26},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":10},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":16},{"gcamCode":"c2.64","gcamValue":3},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.73","gcamValue":6},{"gcamCode":"c2.75","gcamValue":45},{"gcamCode":"c2.76","gcamValue":155},{"gcamCode":"c2.77","gcamValue":24},{"gcamCode":"c2.78","gcamValue":44},{"gcamCode":"c2.79","gcamValue":2},{"gcamCode":"c2.80","gcamValue":29},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":11},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":13},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":4},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":5},{"gcamCode":"c2.95","gcamValue":46},{"gcamCode":"c2.98","gcamValue":14},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c3.1","gcamValue":3},{"gcamCode":"c3.2","gcamValue":14},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.20","gcamValue":7},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.30","gcamValue":2},{"gcamCode":"c35.31","gcamValue":10},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":11},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.28","gcamValue":4},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":8},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":11},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":7},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":1},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.20","gcamValue":1},{"gcamCode":"c4.23","gcamValue":15},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":23},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":35},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":5},{"gcamCode":"c5.21","gcamValue":7},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":4},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":14},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":7},{"gcamCode":"c5.36","gcamValue":8},{"gcamCode":"c5.4","gcamValue":9},{"gcamCode":"c5.40","gcamValue":7},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":5},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":3},{"gcamCode":"c5.46","gcamValue":45},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.49","gcamValue":25},{"gcamCode":"c5.50","gcamValue":27},{"gcamCode":"c5.51","gcamValue":18},{"gcamCode":"c5.52","gcamValue":28},{"gcamCode":"c5.53","gcamValue":28},{"gcamCode":"c5.54","gcamValue":13},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":15},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":15},{"gcamCode":"c5.62","gcamValue":116},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":12},{"gcamCode":"c5.9","gcamValue":10},{"gcamCode":"c6.1","gcamValue":8},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":3},{"gcamCode":"c7.2","gcamValue":8},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.23","gcamValue":6},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":5},{"gcamCode":"c8.37","gcamValue":2},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":15},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":4},{"gcamCode":"c9.1","gcamValue":17},{"gcamCode":"c9.1005","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":1},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":18},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.138","gcamValue":4},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.158","gcamValue":4},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.184","gcamValue":6},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":7},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.292","gcamValue":4},{"gcamCode":"c9.296","gcamValue":5},{"gcamCode":"c9.3","gcamValue":16},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":7},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.34","gcamValue":3},{"gcamCode":"c9.35","gcamValue":6},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.367","gcamValue":7},{"gcamCode":"c9.38","gcamValue":1},{"gcamCode":"c9.382","gcamValue":3},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.463","gcamValue":3},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.479","gcamValue":6},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.498","gcamValue":8},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":3},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.530","gcamValue":3},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":15},{"gcamCode":"c9.581","gcamValue":2},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":3},{"gcamCode":"c9.621","gcamValue":3},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":9},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":7},{"gcamCode":"c9.653","gcamValue":16},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.678","gcamValue":3},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":12},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.692","gcamValue":4},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":6},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":7},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":3},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":3},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":17},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":17},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.748","gcamValue":6},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.757","gcamValue":3},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":15},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":17},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.827","gcamValue":2},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":6},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":15},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":15},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":6},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":7},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":4},{"gcamCode":"c9.935","gcamValue":6},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.964","gcamValue":2},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.241377753701697},{"gcamCode":"v10.2","gcamValue":0.20823752787068},{"gcamCode":"v11.1","gcamValue":0.0731882092198582},{"gcamCode":"v19.1","gcamValue":5.99882352941176},{"gcamCode":"v19.2","gcamValue":5.28117647058824},{"gcamCode":"v19.3","gcamValue":5.38705882352941},{"gcamCode":"v19.4","gcamValue":5.88235294117647},{"gcamCode":"v19.5","gcamValue":5.13117647058824},{"gcamCode":"v19.6","gcamValue":5.59882352941176},{"gcamCode":"v19.7","gcamValue":6.15058823529412},{"gcamCode":"v19.8","gcamValue":5.4935294117647},{"gcamCode":"v19.9","gcamValue":5.11882352941176},{"gcamCode":"v20.1","gcamValue":0.307},{"gcamCode":"v20.10","gcamValue":-0.292},{"gcamCode":"v20.11","gcamValue":0.519666666666667},{"gcamCode":"v20.12","gcamValue":-0.396},{"gcamCode":"v20.13","gcamValue":0.4344},{"gcamCode":"v20.14","gcamValue":-0.389},{"gcamCode":"v20.15","gcamValue":0.386782608695652},{"gcamCode":"v20.16","gcamValue":-0.389},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.307},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.538},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.538},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v20.9","gcamValue":0.54425},{"gcamCode":"v21.1","gcamValue":5.39970873786408},{"gcamCode":"v26.1","gcamValue":1.17}]https://editorial.azureedge.net/images/Macroeconomics/Countries/Asia/Japan/tokyo-crowds-at-senso-ji-temple-in-asakusa-japan-41269048_Large.jpg[""][""]["https://youtube.com/user/fxstreetcom","https://youtube.com/user/fxstreetcom/"][][{"name":"Financial Services Agency","charOffset":372},{"name":"Nikkei Japan","charOffset":613}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.fxstreet.com/cryptocurrencies/resources/brokers-best-cryptocurrencies-exchanges</PAGE_LINKS><PAGE_ALTURL_AMP>https://www.fxstreet.com/amp/cryptocurrencies/news/japan-to-host-g20-summit-2019-looks-forward-to-anti-money-laundering-policies-201905231148</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBsfgate.comhttps://www.sfgate.com/news/article/Sheriff-Man-shot-wife-after-mistaking-her-for-13878421.php[][]["TAX_FNCACT","TAX_FNCACT_AUTHORITIES","CRISISLEX_CRISISLEXREC","EPU_POLICY","EPU_POLICY_AUTHORITIES","TAX_FNCACT_MAN","TAX_FNCACT_SHERIFF","CRISISLEX_C07_SAFETY","MILITARY","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_SOLDIER","TAX_FNCACT_SOLDIER","GENERAL_HEALTH","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITAL","CRISISLEX_C03_WELLBEING_HEALTH","TAX_ETHNICITY","TAX_ETHNICITY_SIOUX","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_SIOUX"][{"theme":"GENERAL_HEALTH","charOffset":437},{"theme":"GENERAL_HEALTH","charOffset":470},{"theme":"MEDICAL","charOffset":437},{"theme":"MEDICAL","charOffset":470},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":437},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":470},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":437},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":470},{"theme":"TAX_FNCACT_SHERIFF","charOffset":183},{"theme":"CRISISLEX_C07_SAFETY","charOffset":183},{"theme":"MILITARY","charOffset":7},{"theme":"MILITARY","charOffset":319},{"theme":"TAX_MILITARY_TITLE_SOLDIER","charOffset":7},{"theme":"TAX_MILITARY_TITLE_SOLDIER","charOffset":319},{"theme":"TAX_FNCACT_SOLDIER","charOffset":7},{"theme":"TAX_FNCACT_SOLDIER","charOffset":319},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":37},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":37},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":37},{"theme":"TAX_FNCACT_MAN","charOffset":47},{"theme":"TAX_ETHNICITY_SIOUX","charOffset":479},{"theme":"TAX_WORLDLANGUAGES_SIOUX","charOffset":479}][{"geoType":"USCITY","geoName":"Monona County, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0333,"longitude":-95.967},"featureId":"465255"},{"geoType":"USCITY","geoName":"Onawa, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0267,"longitude":-96.0972},"featureId":"459865"},{"geoType":"USCITY","geoName":"Sioux City, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.5,"longitude":-96.4003},"featureId":"461653"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}][{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":14},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":77},{"location":{"geoType":"USCITY","geoName":"Onawa, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"IA133","geoPoint":{"latitude":42.0267,"longitude":-96.0972},"featureId":"459865"},"charOffset":413},{"location":{"geoType":"USCITY","geoName":"Monona County, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"IA133","geoPoint":{"latitude":42.0333,"longitude":-95.967},"featureId":"465255"},"charOffset":160},{"location":{"geoType":"USCITY","geoName":"Sioux City, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"IA193","geoPoint":{"latitude":42.5,"longitude":-96.4003},"featureId":"461653"},"charOffset":484}]["jackie krier","jeffrey pratt","jackier krier","brian krier"][{"person":"Jackie Krier","charOffset":249},{"person":"Jeffrey Pratt","charOffset":197},{"person":"Jackier Krier","charOffset":391},{"person":"Brian Krier","charOffset":374}][""][]{"tone":-3.3333333,"positiveScore":0,"negativeScore":3.3333333,"polarity":3.3333333,"activityReferenceDensity":22.222221,"selfGroupReferenceDensity":0,"wordCount":88}[][{"gcamCode":"wc","gcamValue":88},{"gcamCode":"c12.1","gcamValue":2},{"gcamCode":"c12.10","gcamValue":2},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.14","gcamValue":1},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.5","gcamValue":1},{"gcamCode":"c12.7","gcamValue":2},{"gcamCode":"c12.9","gcamValue":2},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":3},{"gcamCode":"c14.3","gcamValue":1},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":7},{"gcamCode":"c14.7","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c16.100","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.110","gcamValue":18},{"gcamCode":"c16.114","gcamValue":9},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":6},{"gcamCode":"c16.12","gcamValue":10},{"gcamCode":"c16.120","gcamValue":8},{"gcamCode":"c16.121","gcamValue":4},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":1},{"gcamCode":"c16.127","gcamValue":7},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":12},{"gcamCode":"c16.130","gcamValue":4},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":10},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":7},{"gcamCode":"c16.143","gcamValue":3},{"gcamCode":"c16.145","gcamValue":7},{"gcamCode":"c16.146","gcamValue":8},{"gcamCode":"c16.151","gcamValue":3},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.161","gcamValue":8},{"gcamCode":"c16.162","gcamValue":6},{"gcamCode":"c16.163","gcamValue":2},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":9},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":4},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.26","gcamValue":10},{"gcamCode":"c16.31","gcamValue":4},{"gcamCode":"c16.33","gcamValue":10},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.37","gcamValue":7},{"gcamCode":"c16.4","gcamValue":7},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.47","gcamValue":8},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":41},{"gcamCode":"c16.58","gcamValue":7},{"gcamCode":"c16.6","gcamValue":15},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":3},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":5},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.79","gcamValue":3},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.84","gcamValue":2},{"gcamCode":"c16.87","gcamValue":8},{"gcamCode":"c16.88","gcamValue":15},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":1},{"gcamCode":"c16.92","gcamValue":9},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":10},{"gcamCode":"c16.98","gcamValue":6},{"gcamCode":"c17.1","gcamValue":22},{"gcamCode":"c17.10","gcamValue":9},{"gcamCode":"c17.11","gcamValue":13},{"gcamCode":"c17.12","gcamValue":1},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":8},{"gcamCode":"c17.16","gcamValue":6},{"gcamCode":"c17.19","gcamValue":11},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":12},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.27","gcamValue":11},{"gcamCode":"c17.29","gcamValue":2},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":4},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.36","gcamValue":2},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":4},{"gcamCode":"c17.4","gcamValue":17},{"gcamCode":"c17.40","gcamValue":1},{"gcamCode":"c17.41","gcamValue":3},{"gcamCode":"c17.42","gcamValue":4},{"gcamCode":"c17.43","gcamValue":2},{"gcamCode":"c17.5","gcamValue":16},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":14},{"gcamCode":"c17.8","gcamValue":3},{"gcamCode":"c18.149","gcamValue":2},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":4},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.72","gcamValue":1},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c2.1","gcamValue":2},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":5},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":8},{"gcamCode":"c2.105","gcamValue":1},{"gcamCode":"c2.114","gcamValue":6},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.119","gcamValue":27},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.122","gcamValue":4},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":9},{"gcamCode":"c2.128","gcamValue":8},{"gcamCode":"c2.129","gcamValue":6},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":5},{"gcamCode":"c2.147","gcamValue":13},{"gcamCode":"c2.148","gcamValue":4},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":8},{"gcamCode":"c2.156","gcamValue":2},{"gcamCode":"c2.157","gcamValue":8},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":1},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.177","gcamValue":10},{"gcamCode":"c2.179","gcamValue":4},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":19},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":6},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":8},{"gcamCode":"c2.195","gcamValue":7},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":14},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":5},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":11},{"gcamCode":"c2.214","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.219","gcamValue":2},{"gcamCode":"c2.220","gcamValue":6},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":6},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":7},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":12},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":3},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":8},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.73","gcamValue":4},{"gcamCode":"c2.75","gcamValue":14},{"gcamCode":"c2.76","gcamValue":50},{"gcamCode":"c2.77","gcamValue":11},{"gcamCode":"c2.78","gcamValue":13},{"gcamCode":"c2.79","gcamValue":4},{"gcamCode":"c2.80","gcamValue":8},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":3},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.91","gcamValue":2},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.5","gcamValue":4},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":4},{"gcamCode":"c3.2","gcamValue":6},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.17","gcamValue":1},{"gcamCode":"c35.18","gcamValue":3},{"gcamCode":"c35.20","gcamValue":7},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":11},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.3","gcamValue":5},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":3},{"gcamCode":"c39.4","gcamValue":7},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c4.3","gcamValue":2},{"gcamCode":"c41.1","gcamValue":2},{"gcamCode":"c5.10","gcamValue":8},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":14},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.30","gcamValue":3},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.36","gcamValue":1},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.39","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":9},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":13},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":11},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":11},{"gcamCode":"c5.51","gcamValue":8},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":7},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":5},{"gcamCode":"c5.62","gcamValue":33},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":5},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":1},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.23","gcamValue":3},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.42","gcamValue":2},{"gcamCode":"c8.43","gcamValue":3},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.128","gcamValue":6},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.284","gcamValue":3},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.294","gcamValue":4},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":4},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":2},{"gcamCode":"c9.385","gcamValue":3},{"gcamCode":"c9.390","gcamValue":3},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":4},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":3},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":7},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.943","gcamValue":1},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.248989898989899},{"gcamCode":"v10.2","gcamValue":0.286675347222222},{"gcamCode":"v11.1","gcamValue":-0.0176790650406504},{"gcamCode":"v19.1","gcamValue":6.04545454545455},{"gcamCode":"v19.2","gcamValue":5.28181818181818},{"gcamCode":"v19.3","gcamValue":5.30090909090909},{"gcamCode":"v19.4","gcamValue":6.03818181818182},{"gcamCode":"v19.5","gcamValue":4.88727272727273},{"gcamCode":"v19.6","gcamValue":5.57727272727273},{"gcamCode":"v19.7","gcamValue":6.05272727272727},{"gcamCode":"v19.8","gcamValue":5.60363636363637},{"gcamCode":"v19.9","gcamValue":5.04181818181818},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.364666666666667},{"gcamCode":"v20.14","gcamValue":-0.5},{"gcamCode":"v20.15","gcamValue":0.3188},{"gcamCode":"v20.16","gcamValue":-0.333333333333333},{"gcamCode":"v21.1","gcamValue":5.32214285714286},{"gcamCode":"v26.1","gcamValue":1.075}]https://www.sfgate.com/img/pages/article/opengraph_default.png[""][""][""][][{"name":"County Sheriff Jeffrey Pratt","charOffset":186},{"name":"Jackie Krier","charOffset":240}][{"amount":3,"amountType":"miles","charOffset":229},{"amount":5,"amountType":"kilometers","charOffset":236}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523115800</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.sfgate.com/news/crime/amp/Sheriff-Man-shot-wife-after-mistaking-her-for-13878421.php</PAGE_ALTURL_AMP><PAGE_ALTURL_MOBILE>https://m.sfgate.com/news/crime/article/Sheriff-Man-shot-wife-after-mistaking-her-for-13878421.php</PAGE_ALTURL_MOBILE>

Showing the first 58 rows.

gdeltGkgDS.count
res50: Long = 2543

Let's look a the locations field.

We want to be able to filter by a country.

display(gdeltGkgDS.select($"locations"))
[]
[{"geoType":"USSTATE","geoName":"Michigan, United States","countryCode":"US","adm1Code":"USMI","adm2Code":"","geoPoint":{"latitude":43.3504,"longitude":-84.5603},"featureId":"MI"}]
[{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},{"geoType":"WORLDCITY","geoName":"Bassac, Svay Rieng, Cambodia","countryCode":"CB","adm1Code":"CB18","adm2Code":"","geoPoint":{"latitude":11.0526,"longitude":105.837},"featureId":"-1024141"},{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"}]
[{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}]
[]
[]
[{"geoType":"WORLDCITY","geoName":"Lagos, Lagos, Nigeria","countryCode":"NI","adm1Code":"NI05","adm2Code":"","geoPoint":{"latitude":6.45306,"longitude":3.39583},"featureId":"-2017355"},{"geoType":"WORLDCITY","geoName":"Port Harcourt, Rivers, Nigeria","countryCode":"NI","adm1Code":"NI50","adm2Code":"","geoPoint":{"latitude":4.78917,"longitude":6.99861},"featureId":"-2025046"},{"geoType":"COUNTRY","geoName":"Nigeria","countryCode":"NI","adm1Code":"NI","adm2Code":"","geoPoint":{"latitude":10,"longitude":8},"featureId":"NI"},{"geoType":"WORLDSTATE","geoName":"Rivers State, Rivers, Nigeria","countryCode":"NI","adm1Code":"NI50","adm2Code":"","geoPoint":{"latitude":4.75,"longitude":6.83333},"featureId":"-2025387"}]
[{"geoType":"WORLDCITY","geoName":"Accra, Greater Accra, Ghana","countryCode":"GH","adm1Code":"GH01","adm2Code":"","geoPoint":{"latitude":5.55,"longitude":-0.216667},"featureId":"-2067935"},{"geoType":"COUNTRY","geoName":"Ghana","countryCode":"GH","adm1Code":"GH","adm2Code":"","geoPoint":{"latitude":8,"longitude":-2},"featureId":"GH"}]
[{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}]
[{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}]
[{"geoType":"USCITY","geoName":"Williamstown, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9792,"longitude":-80.0409},"featureId":"1191490"},{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},{"geoType":"USCITY","geoName":"Springfield, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9307,"longitude":-75.3202},"featureId":"1188289"},{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},{"geoType":"USCITY","geoName":"Laurel Springs, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.3028,"longitude":-75.8739},"featureId":"2488119"},{"geoType":"USCITY","geoName":"Cherry Hill, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.7582,"longitude":-75.3093},"featureId":"1171636"},{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},{"geoType":"USCITY","geoName":"Mount Laurel, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.9345,"longitude":-75.9935},"featureId":"1181733"},{"geoType":"USCITY","geoName":"Hawaiian Islands, Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":20.7503,"longitude":-156.5},"featureId":"1905681"},{"geoType":"USCITY","geoName":"Walt Whitman House, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.9431,"longitude":-78.6756},"featureId":"2115149"},{"geoType":"USSTATE","geoName":"Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"}]
[{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"}]
[{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"}]
[]
[{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"}]
[{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Georgetown Visitation Preparatory School, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.9094,"longitude":-77.0694},"featureId":"530098"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}]
[]
[{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},{"geoType":"WORLDCITY","geoName":"Metro Manila, Philippines (General), Philippines","countryCode":"RP","adm1Code":"RP00","adm2Code":"","geoPoint":{"latitude":14.5833,"longitude":121},"featureId":"-2439768"}]
[{"geoType":"USSTATE","geoName":"Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":27.8333,"longitude":-81.717},"featureId":"FL"},{"geoType":"USCITY","geoName":"Royal Palm Beach, Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":26.7084,"longitude":-80.2306},"featureId":"302697"}]
[{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}]
[{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"WORLDCITY","geoName":"Renningen, Baden-WüBerg, Germany","countryCode":"GM","adm1Code":"GM01","adm2Code":"","geoPoint":{"latitude":48.7667,"longitude":8.93333},"featureId":"-1848765"},{"geoType":"WORLDCITY","geoName":"Frankfurt, Brandenburg, Germany","countryCode":"GM","adm1Code":"GM11","adm2Code":"","geoPoint":{"latitude":52.35,"longitude":14.55},"featureId":"-1771146"}]
[{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}]
[{"geoType":"WORLDCITY","geoName":"Phnom Penh, (Cb11), Cambodia","countryCode":"CB","adm1Code":"CB11","adm2Code":"","geoPoint":{"latitude":11.55,"longitude":104.917},"featureId":"-1033783"},{"geoType":"COUNTRY","geoName":"Cambodia","countryCode":"CB","adm1Code":"CB","adm2Code":"","geoPoint":{"latitude":13,"longitude":105},"featureId":"CB"}]
[]
[{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"COUNTRY","geoName":"Poland","countryCode":"PL","adm1Code":"PL","adm2Code":"","geoPoint":{"latitude":52,"longitude":20},"featureId":"PL"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Munich, Bayern, Germany","countryCode":"GM","adm1Code":"GM02","adm2Code":"","geoPoint":{"latitude":48.15,"longitude":11.5833},"featureId":"-1829149"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"}]
[{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Berlin, Berlin, Germany","countryCode":"GM","adm1Code":"GM16","adm2Code":"","geoPoint":{"latitude":52.5167,"longitude":13.4},"featureId":"-1746443"},{"geoType":"WORLDCITY","geoName":"Buckingham Palace, Westminster, United Kingdom","countryCode":"UK","adm1Code":"UKP5","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":-0.133333},"featureId":"-2591190"}]
[]
[]
[]
[{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},{"geoType":"USCITY","geoName":"Leesville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.9165,"longitude":-81.5134},"featureId":"1223870"},{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},{"geoType":"USCITY","geoName":"Trinity United Methodist Church, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.2957,"longitude":-81.0315},"featureId":"1230987"},{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"}]
[]
[]
[{"geoType":"WORLDCITY","geoName":"Perth, Western Australia, Australia","countryCode":"AS","adm1Code":"AS08","adm2Code":"","geoPoint":{"latitude":-31.9333,"longitude":115.833},"featureId":"-1594675"}]
[{"geoType":"WORLDCITY","geoName":"Manila, Manila, Philippines","countryCode":"RP","adm1Code":"RPD9","adm2Code":"","geoPoint":{"latitude":14.6042,"longitude":120.982},"featureId":"-2437894"},{"geoType":"COUNTRY","geoName":"Philippines","countryCode":"RP","adm1Code":"RP","adm2Code":"","geoPoint":{"latitude":13,"longitude":122},"featureId":"RP"},{"geoType":"WORLDCITY","geoName":"Philippine, Benguet, Philippines","countryCode":"RP","adm1Code":"RP10","adm2Code":"","geoPoint":{"latitude":16.45,"longitude":120.55},"featureId":"-2445611"},{"geoType":"WORLDCITY","geoName":"Palawan, Dapitan, Philippines","countryCode":"RP","adm1Code":"RPC2","adm2Code":"","geoPoint":{"latitude":8.63333,"longitude":123.4},"featureId":"-2447135"},{"geoType":"WORLDCITY","geoName":"Linapacan, Palawan, Philippines","countryCode":"RP","adm1Code":"RP49","adm2Code":"","geoPoint":{"latitude":11.4924,"longitude":119.87},"featureId":"-2433265"},{"geoType":"WORLDCITY","geoName":"Andres Bonifacio, Nueva Ecija, Philippines","countryCode":"RP","adm1Code":"RP47","adm2Code":"","geoPoint":{"latitude":15.7097,"longitude":121.009},"featureId":"-2408485"}]
[{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"WORLDCITY","geoName":"Montreal, Quebec, Canada","countryCode":"CA","adm1Code":"CA10","adm2Code":"","geoPoint":{"latitude":45.5,"longitude":-73.5833},"featureId":"-569541"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"}]
[{"geoType":"WORLDCITY","geoName":"Inverness, Highland, United Kingdom","countryCode":"UK","adm1Code":"UKV3","adm2Code":"","geoPoint":{"latitude":57.4667,"longitude":-4.23333},"featureId":"-2599537"}]
[{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}]
[{"geoType":"USCITY","geoName":"Phoenix, Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"","geoPoint":{"latitude":33.4484,"longitude":-112.074},"featureId":"44784"},{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"}]
[]
[{"geoType":"USSTATE","geoName":"Montana, United States","countryCode":"US","adm1Code":"USMT","adm2Code":"","geoPoint":{"latitude":46.9048,"longitude":-110.326},"featureId":"MT"},{"geoType":"USCITY","geoName":"Erskine College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3304,"longitude":-82.3907},"featureId":"1247684"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Ninety Six High School, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1648,"longitude":-82.0204},"featureId":"1234185"},{"geoType":"USCITY","geoName":"Ninety Six, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1751,"longitude":-82.024},"featureId":"1249874"},{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},{"geoType":"COUNTRY","geoName":"Jordan","countryCode":"JO","adm1Code":"JO","adm2Code":"","geoPoint":{"latitude":31,"longitude":36},"featureId":"JO"},{"geoType":"USCITY","geoName":"Greenville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8526,"longitude":-82.394},"featureId":"1245842"},{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},{"geoType":"USCITY","geoName":"Honea Path, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.4465,"longitude":-82.3915},"featureId":"1246035"},{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},{"geoType":"USCITY","geoName":"Cheraw, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.6977,"longitude":-79.8834},"featureId":"1247267"},{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"}]
[{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}]
[]
[{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"WORLDCITY","geoName":"Essex, Queensland, Australia","countryCode":"AS","adm1Code":"AS04","adm2Code":"","geoPoint":{"latitude":-25.85,"longitude":145.15},"featureId":"-1572465"}]
[]
[]
[]
[{"geoType":"COUNTRY","geoName":"Serbia","countryCode":"RI","adm1Code":"RI","adm2Code":"","geoPoint":{"latitude":44,"longitude":21},"featureId":"RI"},{"geoType":"COUNTRY","geoName":"Afghanistan","countryCode":"AF","adm1Code":"AF","adm2Code":"","geoPoint":{"latitude":33,"longitude":66},"featureId":"AF"},{"geoType":"WORLDCITY","geoName":"Vojvodina, 00, Serbia","countryCode":"RI","adm1Code":"RI00","adm2Code":"","geoPoint":{"latitude":45,"longitude":20},"featureId":"-100771"},{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"}]
[{"geoType":"USCITY","geoName":"Pingree Grove, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":42.0686,"longitude":-88.4134},"featureId":"415712"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Northwestern University, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":42.0556,"longitude":-87.6745},"featureId":"414709"},{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}]
[{"geoType":"WORLDCITY","geoName":"Belgrade, Serbia (General), ","countryCode":"RB","adm1Code":"RB00","adm2Code":"","geoPoint":{"latitude":44.8186,"longitude":20.4681},"featureId":"-74897"}]
[]
[]
[{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"}]
[{"geoType":"WORLDCITY","geoName":"Gaza, Israel (General), Israel","countryCode":"IS","adm1Code":"IS00","adm2Code":"","geoPoint":{"latitude":31.4167,"longitude":34.3333},"featureId":"-797156"},{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},{"geoType":"COUNTRY","geoName":"Israel","countryCode":"IS","adm1Code":"IS","adm2Code":"","geoPoint":{"latitude":31.5,"longitude":34.75},"featureId":"IS"}]
[{"geoType":"WORLDCITY","geoName":"Bristol, Bristol, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKB7","adm2Code":"","geoPoint":{"latitude":51.45,"longitude":-2.58333},"featureId":"-2590919"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Nottingham, Nottingham, United Kingdom","countryCode":"UK","adm1Code":"UKJ8","adm2Code":"","geoPoint":{"latitude":52.9667,"longitude":-1.16667},"featureId":"-2604469"}]
[]
[{"geoType":"WORLDCITY","geoName":"Caracas, Distrito Federal, Venezuela","countryCode":"VE","adm1Code":"VE25","adm2Code":"","geoPoint":{"latitude":10.5,"longitude":-66.9167},"featureId":"-938457"},{"geoType":"COUNTRY","geoName":"Colombia","countryCode":"CO","adm1Code":"CO","adm2Code":"","geoPoint":{"latitude":4,"longitude":-72},"featureId":"CO"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"},{"geoType":"COUNTRY","geoName":"Venezuela","countryCode":"VE","adm1Code":"VE","adm2Code":"","geoPoint":{"latitude":8,"longitude":-66},"featureId":"VE"}]
[{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"}]
[{"geoType":"USCITY","geoName":"Monona County, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0333,"longitude":-95.967},"featureId":"465255"},{"geoType":"USCITY","geoName":"Onawa, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0267,"longitude":-96.0972},"featureId":"459865"},{"geoType":"USCITY","geoName":"Sioux City, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.5,"longitude":-96.4003},"featureId":"461653"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}]
[{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"USCITY","geoName":"Columbus County, North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":34.2504,"longitude":-78.6331},"featureId":"1026339"}]
[{"geoType":"USCITY","geoName":"Brooklyn, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.7512,"longitude":-75.8069},"featureId":"1170330"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"}]
[{"geoType":"COUNTRY","geoName":"Australia","countryCode":"AS","adm1Code":"AS","adm2Code":"","geoPoint":{"latitude":-25,"longitude":135},"featureId":"AS"},{"geoType":"COUNTRY","geoName":"Pakistan","countryCode":"PK","adm1Code":"PK","adm2Code":"","geoPoint":{"latitude":30,"longitude":70},"featureId":"PK"}]
[{"geoType":"USSTATE","geoName":"Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"","geoPoint":{"latitude":33.7712,"longitude":-111.388},"featureId":"AZ"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}]
[{"geoType":"WORLDCITY","geoName":"Alappuzha, Kerala, India","countryCode":"IN","adm1Code":"IN13","adm2Code":"","geoPoint":{"latitude":9.49417,"longitude":76.3275},"featureId":"-2088519"},{"geoType":"WORLDCITY","geoName":"Thiruvananthapuram, Kerala, India","countryCode":"IN","adm1Code":"IN13","adm2Code":"","geoPoint":{"latitude":8.50694,"longitude":76.9569},"featureId":"-2113457"},{"geoType":"COUNTRY","geoName":"India","countryCode":"IN","adm1Code":"IN","adm2Code":"","geoPoint":{"latitude":20,"longitude":77},"featureId":"IN"},{"geoType":"WORLDSTATE","geoName":"Kerala, Kerala, India","countryCode":"IN","adm1Code":"IN13","adm2Code":"","geoPoint":{"latitude":10,"longitude":76.5},"featureId":"-2100307"}]
[{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"}]
[{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}]
[{"geoType":"WORLDCITY","geoName":"Glasgow, Glasgow City, United Kingdom","countryCode":"UK","adm1Code":"UKV2","adm2Code":"","geoPoint":{"latitude":55.8333,"longitude":-4.25},"featureId":"-2597039"},{"geoType":"WORLDCITY","geoName":"Edinburgh, Edinburgh, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKU8","adm2Code":"","geoPoint":{"latitude":55.95,"longitude":-3.2},"featureId":"-2595386"}]
[{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"WORLDCITY","geoName":"Paris, France (General), France","countryCode":"FR","adm1Code":"FR00","adm2Code":"","geoPoint":{"latitude":48.8667,"longitude":2.33333},"featureId":"-1456928"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Berlin, Berlin, Germany","countryCode":"GM","adm1Code":"GM16","adm2Code":"","geoPoint":{"latitude":52.5167,"longitude":13.4},"featureId":"-1746443"},{"geoType":"WORLDCITY","geoName":"London, London, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKH9","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":-0.116667},"featureId":"-2601889"}]
[{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"COUNTRY","geoName":"Netherlands","countryCode":"NL","adm1Code":"NL","adm2Code":"","geoPoint":{"latitude":52.5,"longitude":5.75},"featureId":"NL"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"}]
[{"geoType":"COUNTRY","geoName":"South Africa","countryCode":"SF","adm1Code":"SF","adm2Code":"","geoPoint":{"latitude":-30,"longitude":26},"featureId":"SF"},{"geoType":"WORLDCITY","geoName":"Mumbai, Maharashtra, India","countryCode":"IN","adm1Code":"IN16","adm2Code":"","geoPoint":{"latitude":18.975,"longitude":72.8258},"featureId":"-2092174"},{"geoType":"WORLDCITY","geoName":"Lahore, Punjab, Pakistan","countryCode":"PK","adm1Code":"PK04","adm2Code":"","geoPoint":{"latitude":31.5497,"longitude":74.3436},"featureId":"-2767043"},{"geoType":"COUNTRY","geoName":"Maldives","countryCode":"MV","adm1Code":"MV","adm2Code":"","geoPoint":{"latitude":3.2,"longitude":73},"featureId":"MV"}]
[{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}]
[{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"New York University, New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":40.7287,"longitude":-73.996},"featureId":"958483"},{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"}]
[]
[{"geoType":"WORLDCITY","geoName":"Mumbai, Maharashtra, India","countryCode":"IN","adm1Code":"IN16","adm2Code":"","geoPoint":{"latitude":18.975,"longitude":72.8258},"featureId":"-2092174"},{"geoType":"WORLDCITY","geoName":"Hyderabad, Andhra Pradesh, India","countryCode":"IN","adm1Code":"IN02","adm2Code":"","geoPoint":{"latitude":17.3753,"longitude":78.4744},"featureId":"-2097701"}]
[{"geoType":"COUNTRY","geoName":"India","countryCode":"IN","adm1Code":"IN","adm2Code":"","geoPoint":{"latitude":20,"longitude":77},"featureId":"IN"},{"geoType":"WORLDSTATE","geoName":"Tamil Nadu, Tamil Nadu, India","countryCode":"IN","adm1Code":"IN25","adm2Code":"","geoPoint":{"latitude":11,"longitude":78},"featureId":"-2112557"}]
[{"geoType":"COUNTRY","geoName":"Norway","countryCode":"NO","adm1Code":"NO","adm2Code":"","geoPoint":{"latitude":62,"longitude":10},"featureId":"NO"},{"geoType":"COUNTRY","geoName":"Liechtenstein","countryCode":"LS","adm1Code":"LS","adm2Code":"","geoPoint":{"latitude":47.166668,"longitude":9.533333},"featureId":"LS"}]
[]
[{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"COUNTRY","geoName":"Western Sahara","countryCode":"WI","adm1Code":"WI","adm2Code":"","geoPoint":{"latitude":25,"longitude":-13.5},"featureId":"WI"}]
[{"geoType":"WORLDCITY","geoName":"Lahore, Punjab, Pakistan","countryCode":"PK","adm1Code":"PK04","adm2Code":"","geoPoint":{"latitude":31.5497,"longitude":74.3436},"featureId":"-2767043"}]
[]
[{"geoType":"COUNTRY","geoName":"India","countryCode":"IN","adm1Code":"IN","adm2Code":"","geoPoint":{"latitude":20,"longitude":77},"featureId":"IN"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}]
[{"geoType":"WORLDCITY","geoName":"Artsakh, Azerbaijan (General), Azerbaijan","countryCode":"AJ","adm1Code":"AJ00","adm2Code":"","geoPoint":{"latitude":40,"longitude":46.5833},"featureId":"335527"},{"geoType":"COUNTRY","geoName":"Azerbaijan","countryCode":"AJ","adm1Code":"AJ","adm2Code":"","geoPoint":{"latitude":40.5,"longitude":47.5},"featureId":"AJ"},{"geoType":"COUNTRY","geoName":"Armenia","countryCode":"AM","adm1Code":"AM","adm2Code":"","geoPoint":{"latitude":40,"longitude":45},"featureId":"AM"},{"geoType":"WORLDCITY","geoName":"Yerevan, Yerevan*, Armenia","countryCode":"AM","adm1Code":"AM11","adm2Code":"","geoPoint":{"latitude":40.1811,"longitude":44.5136},"featureId":"-2325645"}]
[{"geoType":"WORLDSTATE","geoName":"Hertfordshire, Hertfordshire, United Kingdom","countryCode":"UK","adm1Code":"UKF8","adm2Code":"","geoPoint":{"latitude":51.8333,"longitude":-0.25},"featureId":"-2598579"}]
[]
[{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"WORLDCITY","geoName":"Milan, Lombardia, Italy","countryCode":"IT","adm1Code":"IT09","adm2Code":"","geoPoint":{"latitude":45.4667,"longitude":9.2},"featureId":"-121726"},{"geoType":"WORLDCITY","geoName":"Tiber River, Italy (General), Italy","countryCode":"IT","adm1Code":"IT00","adm2Code":"","geoPoint":{"latitude":41.7333,"longitude":12.2333},"featureId":"-130733"},{"geoType":"WORLDCITY","geoName":"Rome, Lazio, Italy","countryCode":"IT","adm1Code":"IT07","adm2Code":"","geoPoint":{"latitude":41.9,"longitude":12.4833},"featureId":"-126693"},{"geoType":"WORLDCITY","geoName":"Roma, Lazio, Italy","countryCode":"IT","adm1Code":"IT07","adm2Code":"","geoPoint":{"latitude":41.9,"longitude":12.4833},"featureId":"-126693"},{"geoType":"COUNTRY","geoName":"Italy","countryCode":"IT","adm1Code":"IT","adm2Code":"","geoPoint":{"latitude":42.833332,"longitude":12.833333},"featureId":"IT"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"WORLDCITY","geoName":"Forli, Emilia-Romagna, Italy","countryCode":"IT","adm1Code":"IT05","adm2Code":"","geoPoint":{"latitude":44.2236,"longitude":12.0528},"featureId":"-117787"}]
[{"geoType":"COUNTRY","geoName":"Puerto Rico","countryCode":"RQ","adm1Code":"RQ","adm2Code":"","geoPoint":{"latitude":18.2359,"longitude":-66.4838},"featureId":"RQ"}]
[{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"WORLDCITY","geoName":"Vienna, Wien, Austria","countryCode":"AU","adm1Code":"AU09","adm2Code":"","geoPoint":{"latitude":48.2,"longitude":16.3667},"featureId":"-1995499"},{"geoType":"COUNTRY","geoName":"Greece","countryCode":"GR","adm1Code":"GR","adm2Code":"","geoPoint":{"latitude":39,"longitude":22},"featureId":"GR"}]
[{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}]
[]
[{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USCITY","geoName":"Hampshire, New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1634,"longitude":-77.5242},"featureId":"972587"},{"geoType":"USSTATE","geoName":"New Jersey, United States","countryCode":"US","adm1Code":"USNJ","adm2Code":"","geoPoint":{"latitude":40.314,"longitude":-74.5089},"featureId":"NJ"},{"geoType":"USSTATE","geoName":"Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.2373,"longitude":-71.5314},"featureId":"MA"},{"geoType":"USSTATE","geoName":"Vermont, United States","countryCode":"US","adm1Code":"USVT","adm2Code":"","geoPoint":{"latitude":44.0407,"longitude":-72.7093},"featureId":"VT"}]
[{"geoType":"USCITY","geoName":"Los Angeles, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":34.0522,"longitude":-118.244},"featureId":"1662328"}]
[{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},{"geoType":"USCITY","geoName":"Marion County, Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.7684,"longitude":-86.1555},"featureId":"450371"}]
[{"geoType":"WORLDCITY","geoName":"Bexleyheath, Bexley, United Kingdom","countryCode":"UK","adm1Code":"UKA6","adm2Code":"","geoPoint":{"latitude":51.45,"longitude":0.15},"featureId":"-2589818"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"WORLDCITY","geoName":"Crayford, Kent, United Kingdom","countryCode":"UK","adm1Code":"UKG5","adm2Code":"","geoPoint":{"latitude":51.4333,"longitude":0.183333},"featureId":"-2593561"},{"geoType":"WORLDCITY","geoName":"London, London, City Of, United Kingdom","countryCode":"UK","adm1Code":"UKH9","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":-0.116667},"featureId":"-2601889"},{"geoType":"WORLDSTATE","geoName":"Northamptonshire, Northamptonshire, United Kingdom","countryCode":"UK","adm1Code":"UKJ1","adm2Code":"","geoPoint":{"latitude":52.316,"longitude":-0.848108},"featureId":"-2604210"}]
[{"geoType":"COUNTRY","geoName":"China","countryCode":"CH","adm1Code":"CH","adm2Code":"","geoPoint":{"latitude":35,"longitude":105},"featureId":"CH"},{"geoType":"COUNTRY","geoName":"Germany","countryCode":"GM","adm1Code":"GM","adm2Code":"","geoPoint":{"latitude":51.5,"longitude":10.5},"featureId":"GM"},{"geoType":"COUNTRY","geoName":"Japan","countryCode":"JA","adm1Code":"JA","adm2Code":"","geoPoint":{"latitude":36,"longitude":138},"featureId":"JA"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"COUNTRY","geoName":"Ethiopia","countryCode":"ET","adm1Code":"ET","adm2Code":"","geoPoint":{"latitude":8,"longitude":38},"featureId":"ET"}]
[{"geoType":"USCITY","geoName":"Millville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.5496,"longitude":-75.1232},"featureId":"214323"},{"geoType":"USSTATE","geoName":"Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":39.3498,"longitude":-75.5148},"featureId":"DE"},{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"},{"geoType":"USSTATE","geoName":"Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5773,"longitude":-77.264},"featureId":"PA"},{"geoType":"USCITY","geoName":"Beebe Medical Center, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.7717,"longitude":-75.1432},"featureId":"1988754"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"}]
[{"geoType":"COUNTRY","geoName":"Taiwan","countryCode":"TW","adm1Code":"TW","adm2Code":"","geoPoint":{"latitude":24,"longitude":121},"featureId":"TW"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Hong Kong","countryCode":"HK","adm1Code":"HK","adm2Code":"","geoPoint":{"latitude":22.25,"longitude":114.166664},"featureId":"HK"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"COUNTRY","geoName":"Brazil","countryCode":"BR","adm1Code":"BR","adm2Code":"","geoPoint":{"latitude":-10,"longitude":-55},"featureId":"BR"},{"geoType":"WORLDCITY","geoName":"Beijing, Beijing, China","countryCode":"CH","adm1Code":"CH22","adm2Code":"","geoPoint":{"latitude":39.9289,"longitude":116.388},"featureId":"-1898541"},{"geoType":"COUNTRY","geoName":"China","countryCode":"CH","adm1Code":"CH","adm2Code":"","geoPoint":{"latitude":35,"longitude":105},"featureId":"CH"},{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Xiaomi, Fujian, China","countryCode":"CH","adm1Code":"CH07","adm2Code":"","geoPoint":{"latitude":25.2225,"longitude":116.057},"featureId":"10999868"}]
[{"geoType":"WORLDCITY","geoName":"Beijing, Beijing, China","countryCode":"CH","adm1Code":"CH22","adm2Code":"","geoPoint":{"latitude":39.9289,"longitude":116.388},"featureId":"-1898541"},{"geoType":"COUNTRY","geoName":"China","countryCode":"CH","adm1Code":"CH","adm2Code":"","geoPoint":{"latitude":35,"longitude":105},"featureId":"CH"},{"geoType":"WORLDCITY","geoName":"Qiming, Sichuan, China","countryCode":"CH","adm1Code":"CH32","adm2Code":"","geoPoint":{"latitude":29.0226,"longitude":102.719},"featureId":"10414322"},{"geoType":"WORLDCITY","geoName":"Tongcheng, Anhui, China","countryCode":"CH","adm1Code":"CH01","adm2Code":"","geoPoint":{"latitude":31.6063,"longitude":118.66},"featureId":"-3829837"},{"geoType":"WORLDCITY","geoName":"Elong, Hainan, China","countryCode":"CH","adm1Code":"CH31","adm2Code":"","geoPoint":{"latitude":18.9984,"longitude":109.034},"featureId":"10985441"}]
[{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"}]
[{"geoType":"COUNTRY","geoName":"India","countryCode":"IN","adm1Code":"IN","adm2Code":"","geoPoint":{"latitude":20,"longitude":77},"featureId":"IN"}]
[{"geoType":"COUNTRY","geoName":"China","countryCode":"CH","adm1Code":"CH","adm2Code":"","geoPoint":{"latitude":35,"longitude":105},"featureId":"CH"}]
[]

Showing the first 1000 rows.

val USgdeltGkgDS = gdeltGkgDS.withColumn("loc",$"locations"(0))
          .filter($"loc.countryCode" contains "US").drop("loc")
USgdeltGkgDS: org.apache.spark.sql.DataFrame = [gkgRecordId: struct<publishDate: timestamp, translingual: boolean ... 1 more field>, publishDate: timestamp ... 25 more fields]
val IEgdeltGkgDS = gdeltGkgDS.withColumn("loc",$"locations"(0))
          .filter($"loc.countryCode" contains "IE").drop("loc")
IEgdeltGkgDS: org.apache.spark.sql.DataFrame = [gkgRecordId: struct<publishDate: timestamp, translingual: boolean ... 1 more field>, publishDate: timestamp ... 25 more fields]
IEgdeltGkgDS.count
res54: Long = 0
USgdeltGkgDS.count
res51: Long = 682
display(USgdeltGkgDS)
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBwkar.orghttps://www.wkar.org/people/daniella-cheslow[][]["GENERAL_HEALTH","MEDICAL","WB_635_PUBLIC_HEALTH","WB_621_HEALTH_NUTRITION_AND_POPULATION","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","WB_2670_JOBS","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","SOC_POINTSOFINTEREST_COLLEGE","TAX_FNCACT","TAX_FNCACT_COUNSELOR","TAX_FNCACT_CAREER_COUNSELOR"][{"theme":"TAX_FNCACT_CAREER_COUNSELOR","charOffset":361},{"theme":"TAX_FNCACT_COUNSELOR","charOffset":361},{"theme":"GENERAL_HEALTH","charOffset":83},{"theme":"MEDICAL","charOffset":83},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":344},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":83},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":83},{"theme":"EDUCATION","charOffset":103},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":103},{"theme":"WB_2670_JOBS","charOffset":175},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":175},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":175},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":175},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":175}][{"geoType":"USSTATE","geoName":"Michigan, United States","countryCode":"US","adm1Code":"USMI","adm2Code":"","geoPoint":{"latitude":43.3504,"longitude":-84.5603},"featureId":"MI"}][{"location":{"geoType":"USSTATE","geoName":"Michigan, United States","countryCode":"US","adm1Code":"USMI","adm2Code":"","geoPoint":{"latitude":43.3504,"longitude":-84.5603},"featureId":"MI"},"charOffset":115}]["sam smith","brittany smith"][{"person":"Sam Smith","charOffset":295},{"person":"Brittany Smith","charOffset":14}]["university of michigan"][{"organisation":"University Of Michigan","charOffset":115}]{"tone":0,"positiveScore":5,"negativeScore":5,"polarity":10,"activityReferenceDensity":23.75,"selfGroupReferenceDensity":0,"wordCount":69}[{"dateResolution":1,"month":0,"day":0,"year":2013,"charOffset":213}][{"gcamCode":"wc","gcamValue":69},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":4},{"gcamCode":"c12.10","gcamValue":9},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":6},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":3},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":9},{"gcamCode":"c14.7","gcamValue":4},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.110","gcamValue":10},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.114","gcamValue":2},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":3},{"gcamCode":"c16.12","gcamValue":6},{"gcamCode":"c16.120","gcamValue":5},{"gcamCode":"c16.121","gcamValue":5},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":3},{"gcamCode":"c16.129","gcamValue":7},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":5},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":4},{"gcamCode":"c16.146","gcamValue":10},{"gcamCode":"c16.153","gcamValue":2},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":5},{"gcamCode":"c16.161","gcamValue":4},{"gcamCode":"c16.162","gcamValue":4},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.2","gcamValue":3},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":7},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":5},{"gcamCode":"c16.33","gcamValue":5},{"gcamCode":"c16.35","gcamValue":2},{"gcamCode":"c16.37","gcamValue":2},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":4},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":2},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":9},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":2},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.56","gcamValue":2},{"gcamCode":"c16.57","gcamValue":37},{"gcamCode":"c16.58","gcamValue":4},{"gcamCode":"c16.6","gcamValue":7},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":2},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":8},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":4},{"gcamCode":"c16.88","gcamValue":4},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":4},{"gcamCode":"c16.92","gcamValue":4},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":3},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":3},{"gcamCode":"c17.1","gcamValue":18},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":5},{"gcamCode":"c17.12","gcamValue":2},{"gcamCode":"c17.15","gcamValue":4},{"gcamCode":"c17.16","gcamValue":3},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":5},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":5},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":10},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":5},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":2},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":3},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":4},{"gcamCode":"c17.4","gcamValue":12},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":2},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":1},{"gcamCode":"c17.5","gcamValue":17},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":10},{"gcamCode":"c17.8","gcamValue":4},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":9},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.114","gcamValue":4},{"gcamCode":"c2.119","gcamValue":17},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.121","gcamValue":2},{"gcamCode":"c2.122","gcamValue":6},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.128","gcamValue":4},{"gcamCode":"c2.129","gcamValue":4},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":2},{"gcamCode":"c2.147","gcamValue":12},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.155","gcamValue":5},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":4},{"gcamCode":"c2.158","gcamValue":4},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":4},{"gcamCode":"c2.179","gcamValue":3},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":10},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":2},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":8},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":7},{"gcamCode":"c2.198","gcamValue":8},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":7},{"gcamCode":"c2.204","gcamValue":5},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.210","gcamValue":2},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.214","gcamValue":3},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.226","gcamValue":3},{"gcamCode":"c2.23","gcamValue":2},{"gcamCode":"c2.25","gcamValue":3},{"gcamCode":"c2.26","gcamValue":5},{"gcamCode":"c2.27","gcamValue":5},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":2},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":3},{"gcamCode":"c2.35","gcamValue":4},{"gcamCode":"c2.36","gcamValue":3},{"gcamCode":"c2.37","gcamValue":4},{"gcamCode":"c2.39","gcamValue":10},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":4},{"gcamCode":"c2.46","gcamValue":7},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":8},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":11},{"gcamCode":"c2.76","gcamValue":48},{"gcamCode":"c2.77","gcamValue":5},{"gcamCode":"c2.78","gcamValue":5},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":7},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.83","gcamValue":2},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":5},{"gcamCode":"c2.89","gcamValue":1},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":12},{"gcamCode":"c2.98","gcamValue":3},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.31","gcamValue":8},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":2},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":2},{"gcamCode":"c4.1","gcamValue":2},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":5},{"gcamCode":"c5.10","gcamValue":9},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":15},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.35","gcamValue":1},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":7},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":12},{"gcamCode":"c5.47","gcamValue":4},{"gcamCode":"c5.49","gcamValue":8},{"gcamCode":"c5.50","gcamValue":9},{"gcamCode":"c5.51","gcamValue":6},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":7},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.6","gcamValue":3},{"gcamCode":"c5.60","gcamValue":6},{"gcamCode":"c5.61","gcamValue":7},{"gcamCode":"c5.62","gcamValue":34},{"gcamCode":"c5.7","gcamValue":5},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c7.1","gcamValue":6},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.43","gcamValue":1},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.128","gcamValue":2},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.384","gcamValue":3},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.579","gcamValue":2},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.642","gcamValue":3},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.718","gcamValue":2},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.220521255060729},{"gcamCode":"v10.2","gcamValue":0.184115761689291},{"gcamCode":"v11.1","gcamValue":0.148483064516129},{"gcamCode":"v19.1","gcamValue":5.31333333333333},{"gcamCode":"v19.2","gcamValue":4.94},{"gcamCode":"v19.3","gcamValue":4.85666666666667},{"gcamCode":"v19.4","gcamValue":5.12833333333333},{"gcamCode":"v19.5","gcamValue":4.88333333333333},{"gcamCode":"v19.6","gcamValue":4.73833333333333},{"gcamCode":"v19.7","gcamValue":5.47},{"gcamCode":"v19.8","gcamValue":5.01833333333333},{"gcamCode":"v19.9","gcamValue":4.925},{"gcamCode":"v20.1","gcamValue":0.281},{"gcamCode":"v20.10","gcamValue":-0.521},{"gcamCode":"v20.11","gcamValue":0.3905},{"gcamCode":"v20.12","gcamValue":-0.521},{"gcamCode":"v20.13","gcamValue":0.388428571428571},{"gcamCode":"v20.14","gcamValue":-0.521},{"gcamCode":"v20.15","gcamValue":0.371125},{"gcamCode":"v20.16","gcamValue":-0.430666666666667},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.281},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.281},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.281},{"gcamCode":"v20.8","gcamValue":-0.521},{"gcamCode":"v20.9","gcamValue":0.281},{"gcamCode":"v21.1","gcamValue":5.32825396825397},{"gcamCode":"v26.1","gcamValue":-0.166666666666667}][""][""][""][][{"name":"Brittany Smith","charOffset":15},{"name":"Sam Smith","charOffset":323}][]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Daniella Cheslow</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBksby.comhttps://ksby.com/ap-national-news/2019/05/23/3-deaths-in-missouri-as-tornado-strikes-state-capital[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":158},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":392},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":392},{"count":{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":791}]["NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_T03_DEAD","UNGP_CRIME_VIOLENCE","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","AFFECT"][{"theme":"AFFECT","charOffset":819},{"theme":"KILL","charOffset":175},{"theme":"KILL","charOffset":758},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":447},{"theme":"CRISISLEX_T03_DEAD","charOffset":423},{"theme":"LEADER","charOffset":554},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":554},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":56},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":309},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":56},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":309},{"theme":"CRISISLEX_O01_WEATHER","charOffset":56},{"theme":"CRISISLEX_O01_WEATHER","charOffset":309},{"theme":"SECURITY_SERVICES","charOffset":724},{"theme":"TAX_FNCACT_POLICE","charOffset":724},{"theme":"CRISISLEX_C07_SAFETY","charOffset":724},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":80},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":80},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":123}][{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":92},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":433},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":525},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":488},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":332},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":702}]["mike parson","david williams"][{"person":"Mike Parson","charOffset":404},{"person":"David Williams","charOffset":743}]["jefferson city police","national weather service"][{"organisation":"National Weather Service","charOffset":262}]{"tone":-5.46875,"positiveScore":3.90625,"negativeScore":9.375,"polarity":13.28125,"activityReferenceDensity":25.78125,"selfGroupReferenceDensity":0,"wordCount":129}[][{"gcamCode":"wc","gcamValue":129},{"gcamCode":"c12.1","gcamValue":6},{"gcamCode":"c12.10","gcamValue":8},{"gcamCode":"c12.12","gcamValue":5},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":7},{"gcamCode":"c12.8","gcamValue":1},{"gcamCode":"c12.9","gcamValue":6},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c14.1","gcamValue":8},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":12},{"gcamCode":"c14.2","gcamValue":7},{"gcamCode":"c14.3","gcamValue":7},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":16},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":23},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":10},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":5},{"gcamCode":"c16.12","gcamValue":9},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":19},{"gcamCode":"c16.125","gcamValue":4},{"gcamCode":"c16.126","gcamValue":9},{"gcamCode":"c16.127","gcamValue":8},{"gcamCode":"c16.129","gcamValue":18},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":22},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":10},{"gcamCode":"c16.145","gcamValue":9},{"gcamCode":"c16.146","gcamValue":7},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":13},{"gcamCode":"c16.161","gcamValue":19},{"gcamCode":"c16.162","gcamValue":13},{"gcamCode":"c16.163","gcamValue":9},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.19","gcamValue":2},{"gcamCode":"c16.2","gcamValue":16},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.26","gcamValue":16},{"gcamCode":"c16.31","gcamValue":8},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":11},{"gcamCode":"c16.35","gcamValue":9},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":16},{"gcamCode":"c16.4","gcamValue":9},{"gcamCode":"c16.41","gcamValue":6},{"gcamCode":"c16.45","gcamValue":7},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":17},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.52","gcamValue":12},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":5},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":82},{"gcamCode":"c16.58","gcamValue":7},{"gcamCode":"c16.6","gcamValue":16},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":17},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.78","gcamValue":11},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":9},{"gcamCode":"c16.88","gcamValue":22},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.9","gcamValue":5},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":13},{"gcamCode":"c16.93","gcamValue":6},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":17},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":7},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":49},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":14},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.15","gcamValue":18},{"gcamCode":"c17.16","gcamValue":11},{"gcamCode":"c17.19","gcamValue":9},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":5},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.24","gcamValue":11},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":14},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":12},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.39","gcamValue":2},{"gcamCode":"c17.4","gcamValue":33},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":21},{"gcamCode":"c17.7","gcamValue":20},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.1","gcamValue":4},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.156","gcamValue":5},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":4},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":19},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":10},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":9},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":37},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":7},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":4},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":15},{"gcamCode":"c2.128","gcamValue":12},{"gcamCode":"c2.129","gcamValue":15},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":9},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":12},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":17},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.153","gcamValue":3},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":8},{"gcamCode":"c2.156","gcamValue":7},{"gcamCode":"c2.157","gcamValue":8},{"gcamCode":"c2.158","gcamValue":9},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.172","gcamValue":7},{"gcamCode":"c2.173","gcamValue":4},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":6},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":25},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":10},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":3},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":10},{"gcamCode":"c2.195","gcamValue":12},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":14},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":4},{"gcamCode":"c2.204","gcamValue":10},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.210","gcamValue":10},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":11},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":8},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":5},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.34","gcamValue":9},{"gcamCode":"c2.35","gcamValue":3},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":15},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":12},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.50","gcamValue":4},{"gcamCode":"c2.52","gcamValue":9},{"gcamCode":"c2.54","gcamValue":10},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":4},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":13},{"gcamCode":"c2.76","gcamValue":82},{"gcamCode":"c2.77","gcamValue":15},{"gcamCode":"c2.78","gcamValue":19},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":6},{"gcamCode":"c2.82","gcamValue":2},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":2},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.9","gcamValue":10},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":22},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c3.1","gcamValue":17},{"gcamCode":"c3.2","gcamValue":13},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.25","gcamValue":5},{"gcamCode":"c35.31","gcamValue":5},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":9},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":5},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c41.1","gcamValue":5},{"gcamCode":"c5.10","gcamValue":17},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":4},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":3},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":4},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":7},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":13},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":16},{"gcamCode":"c5.49","gcamValue":10},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":15},{"gcamCode":"c5.51","gcamValue":9},{"gcamCode":"c5.52","gcamValue":15},{"gcamCode":"c5.53","gcamValue":10},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.6","gcamValue":5},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":5},{"gcamCode":"c5.62","gcamValue":42},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":5},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c7.1","gcamValue":9},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.23","gcamValue":3},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":4},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.128","gcamValue":9},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":3},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":5},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.348","gcamValue":2},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.359","gcamValue":5},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":7},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":5},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.653","gcamValue":6},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":3},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":6},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.742","gcamValue":5},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.766","gcamValue":10},{"gcamCode":"c9.767","gcamValue":9},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.263916666666667},{"gcamCode":"v10.2","gcamValue":0.306427304964539},{"gcamCode":"v11.1","gcamValue":-0.0105883777777778},{"gcamCode":"v19.1","gcamValue":5.64409090909091},{"gcamCode":"v19.2","gcamValue":5.60545454545454},{"gcamCode":"v19.3","gcamValue":5.29818181818182},{"gcamCode":"v19.4","gcamValue":5.59545454545454},{"gcamCode":"v19.5","gcamValue":5.15545454545455},{"gcamCode":"v19.6","gcamValue":5.20272727272727},{"gcamCode":"v19.7","gcamValue":5.70409090909091},{"gcamCode":"v19.8","gcamValue":6},{"gcamCode":"v19.9","gcamValue":5.34545454545454},{"gcamCode":"v20.1","gcamValue":0.583},{"gcamCode":"v20.10","gcamValue":-0.652666666666667},{"gcamCode":"v20.11","gcamValue":0.58325},{"gcamCode":"v20.12","gcamValue":-0.6145},{"gcamCode":"v20.13","gcamValue":0.433},{"gcamCode":"v20.14","gcamValue":-0.56875},{"gcamCode":"v20.15","gcamValue":0.38725},{"gcamCode":"v20.16","gcamValue":-0.409375},{"gcamCode":"v20.3","gcamValue":0.583},{"gcamCode":"v20.5","gcamValue":0.583},{"gcamCode":"v20.7","gcamValue":0.6665},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.6665},{"gcamCode":"v21.1","gcamValue":5.27598290598291},{"gcamCode":"v26.1","gcamValue":0.10625}]https://s3.amazonaws.com/cordillera-network/wp-content/uploads/sites/2/2018/06/06105543/KSBY-6-News-1920x1080.png[""][""]["https://youtube.com/channel/UChIlR_Uhv1366IAxT1ORbTA"][][{"name":"National Weather Service","charOffset":260},{"name":"Jefferson City","charOffset":335},{"name":"Mike Parson","charOffset":391},{"name":"Public Safety","charOffset":439},{"name":"Golden City","charOffset":480},{"name":"City Police","charOffset":670},{"name":"David Williams","charOffset":689}][{"amount":3,"amountType":"deaths","charOffset":133},{"amount":12,"amountType":"of people","charOffset":156},{"amount":3,"amountType":"people died","charOffset":337},{"amount":20,"amountType":"people have been rescued","charOffset":617}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBjournalstar.comhttps://journalstar.com/news/national/the-latest-missouri-governor-describes-storm-devastation/article_a76cae4e-013f-56bc-a000-54b2c6056c2e.html[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"KILL","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},{"countType":"CRISISLEX_T03_DEAD","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":254},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":621},{"count":{"countType":"KILL","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},"charOffset":1828},{"count":{"countType":"CRISISLEX_T03_DEAD","count":14,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},"charOffset":1828},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2154},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":2388},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":2388},{"count":{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}},"charOffset":2787}]["NATURAL_DISASTER","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_CRISISLEXREC","CRISISLEX_T03_DEAD","TAX_FNCACT","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","AFFECT","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","LEADER","TAX_FNCACT_GOVERNOR","LEGISLATION","EPU_POLICY_LAW","SECURITY_SERVICES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","WB_328_FINANCIAL_INTEGRITY","WB_1014_CRIMINAL_JUSTICE","WB_2082_LAW_ENFORCEMENT","MARITIME_INCIDENT","MARITIME","MANMADE_DISASTER_IMPLIED","CRISISLEX_T11_UPDATESSYMPATHY","MEDIA_MSM","TAX_FNCACT_OFFICIALS","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","WB_168_ROADS_AND_HIGHWAYS","WB_135_TRANSPORT","WB_1809_HIGHWAYS","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_137_WATER","NATURAL_DISASTER_TORNADO","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","UNGP_CRIME_VIOLENCE","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY"][{"theme":"NATURAL_DISASTER_FLOODING","charOffset":1331},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":1331},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":1382},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":1559},{"theme":"WB_135_TRANSPORT","charOffset":1382},{"theme":"WB_135_TRANSPORT","charOffset":1559},{"theme":"WB_1809_HIGHWAYS","charOffset":1382},{"theme":"WB_1809_HIGHWAYS","charOffset":1559},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1382},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1559},{"theme":"LEADER","charOffset":465},{"theme":"LEADER","charOffset":2550},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":465},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":2550},{"theme":"MEDIA_MSM","charOffset":1182},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":361},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":756},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":361},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":756},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2076},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":2076},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":75},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":2119},{"theme":"KILL","charOffset":294},{"theme":"KILL","charOffset":638},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":294},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":638},{"theme":"CRISISLEX_T03_DEAD","charOffset":294},{"theme":"CRISISLEX_T03_DEAD","charOffset":638},{"theme":"MARITIME_INCIDENT","charOffset":777},{"theme":"MARITIME_INCIDENT","charOffset":1345},{"theme":"MARITIME_INCIDENT","charOffset":1405},{"theme":"MARITIME","charOffset":777},{"theme":"MARITIME","charOffset":1345},{"theme":"MARITIME","charOffset":1405},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":777},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1345},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1405},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":2443},{"theme":"WB_137_WATER","charOffset":1887},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2052},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2305},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2052},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2305},{"theme":"TAX_FNCACT_POLICE","charOffset":2720},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2720},{"theme":"SECURITY_SERVICES","charOffset":546},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":546},{"theme":"WB_840_JUSTICE","charOffset":546},{"theme":"WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","charOffset":546},{"theme":"WB_328_FINANCIAL_INTEGRITY","charOffset":546},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":546},{"theme":"WB_2082_LAW_ENFORCEMENT","charOffset":546},{"theme":"AFFECT","charOffset":403},{"theme":"LEGISLATION","charOffset":534},{"theme":"EPU_POLICY_LAW","charOffset":534},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":1040},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":1295},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":403}][{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":1252},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":1618},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":1747},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":200},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":706},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2088},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2429},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":836},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1374},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1482},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":2521},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":669},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":2484},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":2328},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":2698},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":29},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":115},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":684},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1267},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1633},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1762},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2343},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2499},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2536},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2713}]["mike parson","david williams"][{"person":"Mike Parson","charOffset":166},{"person":"Mike Parson","charOffset":2400},{"person":"David Williams","charOffset":2739}]["jefferson city police","national weather service","oklahoma department of transportation","united states"][{"organisation":"National Weather Service","charOffset":2258},{"organisation":"Oklahoma Department Of Transportation","charOffset":1511},{"organisation":"United States","charOffset":29},{"organisation":"United States","charOffset":115},{"organisation":"United States","charOffset":684},{"organisation":"United States","charOffset":1267},{"organisation":"United States","charOffset":1633},{"organisation":"United States","charOffset":1762},{"organisation":"United States","charOffset":2343},{"organisation":"United States","charOffset":2499},{"organisation":"United States","charOffset":2536},{"organisation":"United States","charOffset":2713}]{"tone":-5.580357,"positiveScore":2.9017856,"negativeScore":8.482142,"polarity":11.383928,"activityReferenceDensity":21.875,"selfGroupReferenceDensity":0.22321428,"wordCount":424}[{"dateResolution":1,"month":0,"day":0,"year":2002,"charOffset":1618}][{"gcamCode":"wc","gcamValue":424},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":26},{"gcamCode":"c12.10","gcamValue":32},{"gcamCode":"c12.12","gcamValue":18},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":10},{"gcamCode":"c12.3","gcamValue":14},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":27},{"gcamCode":"c12.8","gcamValue":6},{"gcamCode":"c12.9","gcamValue":22},{"gcamCode":"c13.10","gcamValue":4},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c13.3","gcamValue":3},{"gcamCode":"c13.7","gcamValue":2},{"gcamCode":"c14.1","gcamValue":22},{"gcamCode":"c14.10","gcamValue":18},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":20},{"gcamCode":"c14.3","gcamValue":24},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":54},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":4},{"gcamCode":"c15.160","gcamValue":1},{"gcamCode":"c15.168","gcamValue":2},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.245","gcamValue":1},{"gcamCode":"c15.260","gcamValue":2},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.55","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":20},{"gcamCode":"c16.101","gcamValue":8},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":8},{"gcamCode":"c16.106","gcamValue":13},{"gcamCode":"c16.109","gcamValue":17},{"gcamCode":"c16.11","gcamValue":9},{"gcamCode":"c16.110","gcamValue":63},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":29},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":17},{"gcamCode":"c16.117","gcamValue":15},{"gcamCode":"c16.118","gcamValue":22},{"gcamCode":"c16.12","gcamValue":32},{"gcamCode":"c16.120","gcamValue":19},{"gcamCode":"c16.121","gcamValue":43},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":26},{"gcamCode":"c16.126","gcamValue":25},{"gcamCode":"c16.127","gcamValue":31},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":54},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":15},{"gcamCode":"c16.134","gcamValue":54},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":7},{"gcamCode":"c16.139","gcamValue":16},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":24},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":26},{"gcamCode":"c16.146","gcamValue":19},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":24},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":5},{"gcamCode":"c16.159","gcamValue":39},{"gcamCode":"c16.16","gcamValue":6},{"gcamCode":"c16.161","gcamValue":50},{"gcamCode":"c16.162","gcamValue":33},{"gcamCode":"c16.163","gcamValue":41},{"gcamCode":"c16.164","gcamValue":7},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":7},{"gcamCode":"c16.2","gcamValue":38},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":43},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":3},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":25},{"gcamCode":"c16.32","gcamValue":8},{"gcamCode":"c16.33","gcamValue":31},{"gcamCode":"c16.35","gcamValue":20},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":42},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":32},{"gcamCode":"c16.41","gcamValue":15},{"gcamCode":"c16.42","gcamValue":4},{"gcamCode":"c16.45","gcamValue":15},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":54},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":7},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":5},{"gcamCode":"c16.52","gcamValue":33},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.55","gcamValue":7},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":242},{"gcamCode":"c16.58","gcamValue":22},{"gcamCode":"c16.6","gcamValue":49},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.62","gcamValue":14},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.65","gcamValue":5},{"gcamCode":"c16.66","gcamValue":6},{"gcamCode":"c16.68","gcamValue":12},{"gcamCode":"c16.69","gcamValue":15},{"gcamCode":"c16.7","gcamValue":7},{"gcamCode":"c16.70","gcamValue":44},{"gcamCode":"c16.71","gcamValue":12},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":13},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":22},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":12},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":35},{"gcamCode":"c16.88","gcamValue":67},{"gcamCode":"c16.89","gcamValue":11},{"gcamCode":"c16.9","gcamValue":8},{"gcamCode":"c16.90","gcamValue":10},{"gcamCode":"c16.91","gcamValue":16},{"gcamCode":"c16.92","gcamValue":34},{"gcamCode":"c16.93","gcamValue":13},{"gcamCode":"c16.94","gcamValue":27},{"gcamCode":"c16.95","gcamValue":45},{"gcamCode":"c16.96","gcamValue":10},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":26},{"gcamCode":"c16.99","gcamValue":5},{"gcamCode":"c17.1","gcamValue":125},{"gcamCode":"c17.10","gcamValue":26},{"gcamCode":"c17.11","gcamValue":55},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":7},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":35},{"gcamCode":"c17.16","gcamValue":23},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":10},{"gcamCode":"c17.19","gcamValue":19},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":9},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":12},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":33},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":44},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.30","gcamValue":10},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":5},{"gcamCode":"c17.33","gcamValue":19},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":27},{"gcamCode":"c17.37","gcamValue":7},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":21},{"gcamCode":"c17.4","gcamValue":95},{"gcamCode":"c17.40","gcamValue":6},{"gcamCode":"c17.41","gcamValue":11},{"gcamCode":"c17.42","gcamValue":18},{"gcamCode":"c17.43","gcamValue":31},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":81},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":67},{"gcamCode":"c17.8","gcamValue":27},{"gcamCode":"c17.9","gcamValue":11},{"gcamCode":"c18.1","gcamValue":7},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":2},{"gcamCode":"c18.156","gcamValue":7},{"gcamCode":"c18.165","gcamValue":8},{"gcamCode":"c18.193","gcamValue":6},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.71","gcamValue":2},{"gcamCode":"c18.78","gcamValue":2},{"gcamCode":"c2.1","gcamValue":13},{"gcamCode":"c2.10","gcamValue":4},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":6},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":66},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":22},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":17},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":116},{"gcamCode":"c2.12","gcamValue":13},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":20},{"gcamCode":"c2.122","gcamValue":8},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":19},{"gcamCode":"c2.126","gcamValue":17},{"gcamCode":"c2.127","gcamValue":43},{"gcamCode":"c2.128","gcamValue":37},{"gcamCode":"c2.129","gcamValue":36},{"gcamCode":"c2.130","gcamValue":4},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":5},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":30},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":26},{"gcamCode":"c2.144","gcamValue":8},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":64},{"gcamCode":"c2.148","gcamValue":25},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":9},{"gcamCode":"c2.154","gcamValue":13},{"gcamCode":"c2.155","gcamValue":35},{"gcamCode":"c2.156","gcamValue":17},{"gcamCode":"c2.157","gcamValue":26},{"gcamCode":"c2.158","gcamValue":28},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.16","gcamValue":4},{"gcamCode":"c2.160","gcamValue":22},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":11},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":5},{"gcamCode":"c2.177","gcamValue":18},{"gcamCode":"c2.178","gcamValue":6},{"gcamCode":"c2.179","gcamValue":14},{"gcamCode":"c2.18","gcamValue":13},{"gcamCode":"c2.180","gcamValue":13},{"gcamCode":"c2.181","gcamValue":19},{"gcamCode":"c2.183","gcamValue":19},{"gcamCode":"c2.185","gcamValue":91},{"gcamCode":"c2.186","gcamValue":6},{"gcamCode":"c2.187","gcamValue":22},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.190","gcamValue":4},{"gcamCode":"c2.191","gcamValue":2},{"gcamCode":"c2.192","gcamValue":15},{"gcamCode":"c2.193","gcamValue":38},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":44},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":50},{"gcamCode":"c2.199","gcamValue":8},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":12},{"gcamCode":"c2.204","gcamValue":32},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":9},{"gcamCode":"c2.208","gcamValue":10},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.210","gcamValue":29},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":14},{"gcamCode":"c2.214","gcamValue":9},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":6},{"gcamCode":"c2.220","gcamValue":8},{"gcamCode":"c2.221","gcamValue":10},{"gcamCode":"c2.223","gcamValue":10},{"gcamCode":"c2.225","gcamValue":15},{"gcamCode":"c2.226","gcamValue":8},{"gcamCode":"c2.228","gcamValue":4},{"gcamCode":"c2.23","gcamValue":32},{"gcamCode":"c2.24","gcamValue":2},{"gcamCode":"c2.25","gcamValue":25},{"gcamCode":"c2.26","gcamValue":19},{"gcamCode":"c2.27","gcamValue":19},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.30","gcamValue":20},{"gcamCode":"c2.31","gcamValue":14},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":35},{"gcamCode":"c2.35","gcamValue":5},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":3},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":67},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":15},{"gcamCode":"c2.45","gcamValue":29},{"gcamCode":"c2.46","gcamValue":40},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.50","gcamValue":15},{"gcamCode":"c2.52","gcamValue":30},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":38},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":5},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.61","gcamValue":5},{"gcamCode":"c2.62","gcamValue":17},{"gcamCode":"c2.64","gcamValue":13},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":6},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.73","gcamValue":7},{"gcamCode":"c2.75","gcamValue":58},{"gcamCode":"c2.76","gcamValue":277},{"gcamCode":"c2.77","gcamValue":36},{"gcamCode":"c2.78","gcamValue":55},{"gcamCode":"c2.79","gcamValue":10},{"gcamCode":"c2.80","gcamValue":43},{"gcamCode":"c2.81","gcamValue":6},{"gcamCode":"c2.82","gcamValue":10},{"gcamCode":"c2.83","gcamValue":2},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":10},{"gcamCode":"c2.87","gcamValue":7},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":10},{"gcamCode":"c2.9","gcamValue":17},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":11},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":65},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":28},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.5","gcamValue":12},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":42},{"gcamCode":"c3.2","gcamValue":32},{"gcamCode":"c35.1","gcamValue":5},{"gcamCode":"c35.10","gcamValue":3},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":8},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":15},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.25","gcamValue":10},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":14},{"gcamCode":"c35.32","gcamValue":14},{"gcamCode":"c35.33","gcamValue":28},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":3},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":20},{"gcamCode":"c39.30","gcamValue":3},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":19},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":17},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.22","gcamValue":3},{"gcamCode":"c4.23","gcamValue":13},{"gcamCode":"c40.3","gcamValue":4},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":25},{"gcamCode":"c5.10","gcamValue":47},{"gcamCode":"c5.11","gcamValue":12},{"gcamCode":"c5.12","gcamValue":80},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":8},{"gcamCode":"c5.2","gcamValue":8},{"gcamCode":"c5.21","gcamValue":10},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":6},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":5},{"gcamCode":"c5.27","gcamValue":2},{"gcamCode":"c5.28","gcamValue":5},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":28},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.34","gcamValue":13},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":23},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":30},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":6},{"gcamCode":"c5.46","gcamValue":60},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.49","gcamValue":27},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":43},{"gcamCode":"c5.51","gcamValue":22},{"gcamCode":"c5.52","gcamValue":45},{"gcamCode":"c5.53","gcamValue":44},{"gcamCode":"c5.54","gcamValue":10},{"gcamCode":"c5.55","gcamValue":4},{"gcamCode":"c5.57","gcamValue":4},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":16},{"gcamCode":"c5.60","gcamValue":9},{"gcamCode":"c5.61","gcamValue":19},{"gcamCode":"c5.62","gcamValue":160},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":13},{"gcamCode":"c5.9","gcamValue":19},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":21},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":36},{"gcamCode":"c7.2","gcamValue":19},{"gcamCode":"c8.10","gcamValue":9},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":4},{"gcamCode":"c8.17","gcamValue":3},{"gcamCode":"c8.18","gcamValue":7},{"gcamCode":"c8.2","gcamValue":13},{"gcamCode":"c8.22","gcamValue":6},{"gcamCode":"c8.23","gcamValue":16},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":6},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":13},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":15},{"gcamCode":"c8.43","gcamValue":13},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":15},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1012","gcamValue":4},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":7},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":8},{"gcamCode":"c9.109","gcamValue":8},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":5},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":11},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":22},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.138","gcamValue":5},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":9},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.177","gcamValue":5},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":10},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":7},{"gcamCode":"c9.198","gcamValue":9},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.215","gcamValue":5},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":14},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.316","gcamValue":5},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.322","gcamValue":3},{"gcamCode":"c9.324","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":5},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.348","gcamValue":3},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.358","gcamValue":6},{"gcamCode":"c9.359","gcamValue":6},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.38","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":13},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":3},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.438","gcamValue":3},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.449","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.454","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":5},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.489","gcamValue":6},{"gcamCode":"c9.49","gcamValue":11},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.50","gcamValue":1},{"gcamCode":"c9.501","gcamValue":4},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":7},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":7},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.519","gcamValue":8},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":3},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":3},{"gcamCode":"c9.535","gcamValue":3},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":7},{"gcamCode":"c9.543","gcamValue":5},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":4},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":10},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":3},{"gcamCode":"c9.556","gcamValue":5},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":12},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":6},{"gcamCode":"c9.579","gcamValue":14},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":6},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.642","gcamValue":7},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":18},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":9},{"gcamCode":"c9.660","gcamValue":6},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.667","gcamValue":3},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":7},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.692","gcamValue":8},{"gcamCode":"c9.693","gcamValue":5},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.695","gcamValue":1},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":4},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":5},{"gcamCode":"c9.724","gcamValue":15},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":14},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":13},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":5},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":10},{"gcamCode":"c9.744","gcamValue":4},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":14},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.766","gcamValue":15},{"gcamCode":"c9.767","gcamValue":19},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.783","gcamValue":2},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":5},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.83","gcamValue":13},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":4},{"gcamCode":"c9.839","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.851","gcamValue":2},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":5},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":15},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":14},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.871","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":8},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":5},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.908","gcamValue":5},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.920","gcamValue":4},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.938","gcamValue":6},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.948","gcamValue":3},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":8},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.991","gcamValue":2},{"gcamCode":"c9.994","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.259912312240332},{"gcamCode":"v10.2","gcamValue":0.299500843644544},{"gcamCode":"v11.1","gcamValue":0.019426463963964},{"gcamCode":"v19.1","gcamValue":5.72481481481482},{"gcamCode":"v19.2","gcamValue":5.245},{"gcamCode":"v19.3","gcamValue":5.15351851851852},{"gcamCode":"v19.4","gcamValue":5.71240740740741},{"gcamCode":"v19.5","gcamValue":4.92092592592593},{"gcamCode":"v19.6","gcamValue":5.11722222222222},{"gcamCode":"v19.7","gcamValue":5.73574074074074},{"gcamCode":"v19.8","gcamValue":5.53222222222222},{"gcamCode":"v19.9","gcamValue":5.14240740740741},{"gcamCode":"v20.1","gcamValue":0.4555},{"gcamCode":"v20.10","gcamValue":-0.64575},{"gcamCode":"v20.11","gcamValue":0.6162},{"gcamCode":"v20.12","gcamValue":-0.597166666666667},{"gcamCode":"v20.13","gcamValue":0.457170731707317},{"gcamCode":"v20.14","gcamValue":-0.520777777777778},{"gcamCode":"v20.15","gcamValue":0.396448275862069},{"gcamCode":"v20.16","gcamValue":-0.385388888888889},{"gcamCode":"v20.3","gcamValue":0.5894},{"gcamCode":"v20.5","gcamValue":0.688857142857143},{"gcamCode":"v20.7","gcamValue":0.6965},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.658454545454546},{"gcamCode":"v21.1","gcamValue":5.27078804347827},{"gcamCode":"v26.1","gcamValue":-0.255102040816326}]https://bloximages.chicago2.vip.townnews.com/journalstar.com/content/tncms/assets/v3/editorial/d/ea/deac223f-16e2-5cf1-b95d-4a5827f4d16d/5ce677206bee2.image.jpg?crop=1662%2C935%2C0%2C156[""][""]["https://youtube.com/user/JournalStarNews/","https://youtube.com/liedcenter"][][{"name":"United States","charOffset":100},{"name":"Mike Parson","charOffset":160},{"name":"Golden City","charOffset":674},{"name":"Arkansas River","charOffset":819},{"name":"Webbers Falls","charOffset":1416},{"name":"Oklahoma Highway Patrol","charOffset":1544},{"name":"Oklahoma Department","charOffset":1652},{"name":"Arkansas River","charOffset":1766},{"name":"Webbers Falls","charOffset":1783},{"name":"Memorial Day","charOffset":1819},{"name":"Webbers Falls","charOffset":1904},{"name":"National Weather Service","charOffset":2460},{"name":"Jefferson City","charOffset":2535},{"name":"Mike Parson","charOffset":2591},{"name":"Public Safety","charOffset":2639},{"name":"Golden City","charOffset":2680},{"name":"City Police","charOffset":2870},{"name":"David Williams","charOffset":2889}][{"amount":3,"amountType":"fatalities have been reported","charOffset":228},{"amount":3,"amountType":"fatalities were reported near","charOffset":521},{"amount":40,"amountType":"bridge","charOffset":1258},{"amount":40,"amountType":"bridge pier at Webbers","charOffset":1403},{"amount":14,"amountType":"people died after their","charOffset":1489},{"amount":3,"amountType":"deaths","charOffset":1765},{"amount":12,"amountType":"of people","charOffset":1788},{"amount":3,"amountType":"people died","charOffset":1969},{"amount":20,"amountType":"people have been rescued","charOffset":2249}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://journalstar.com/news/national/the-latest-missouri-governor-describes-storm-devastation/article_a76cae4e-013f-56bc-a000-54b2c6056c2e.html;https://journalstar.com/users/admin/leefalcon/activate/</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190523112900</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://journalstar.com/news/national/the-latest-missouri-governor-describes-storm-devastation/article_a76cae4e-013f-56bc-a000-54b2c6056c2e.amp.html</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":false,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBlowellsun.comhttp://www.lowellsun.com/breakingnews/ci_32647760/3-deaths-missouri-tornado-strikes-state-capital[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":670},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":904},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":904},{"count":{"countType":"AFFECT","count":20,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":1303}]["NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","EPU_CATS_MIGRATION_FEAR_FEAR","KILL","CRISISLEX_T03_DEAD","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","UNGP_CRIME_VIOLENCE","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","AFFECT"][{"theme":"AFFECT","charOffset":1331},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":959},{"theme":"LEADER","charOffset":1066},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":1066},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":339},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":129},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":287},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":347},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":568},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":821},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":129},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":287},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":347},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":568},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":821},{"theme":"CRISISLEX_O01_WEATHER","charOffset":129},{"theme":"CRISISLEX_O01_WEATHER","charOffset":287},{"theme":"CRISISLEX_O01_WEATHER","charOffset":347},{"theme":"CRISISLEX_O01_WEATHER","charOffset":568},{"theme":"CRISISLEX_O01_WEATHER","charOffset":821},{"theme":"SECURITY_SERVICES","charOffset":1236},{"theme":"TAX_FNCACT_POLICE","charOffset":1236},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1236},{"theme":"KILL","charOffset":434},{"theme":"CRISISLEX_T03_DEAD","charOffset":434},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":592},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":592},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":635}][{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":88},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":246},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":404},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":604},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":945},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":1037},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":1000},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":64},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":222},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":378},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":532},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":844},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":1214}]["mike parson","david williams"][{"person":"Mike Parson","charOffset":916},{"person":"David Williams","charOffset":1255}]["jefferson city police","national weather service"][{"organisation":"National Weather Service","charOffset":478},{"organisation":"National Weather Service","charOffset":774}]{"tone":-5.6074767,"positiveScore":2.3364487,"negativeScore":7.9439254,"polarity":10.280374,"activityReferenceDensity":23.364487,"selfGroupReferenceDensity":0,"wordCount":216}[][{"gcamCode":"wc","gcamValue":216},{"gcamCode":"c1.3","gcamValue":2},{"gcamCode":"c12.1","gcamValue":7},{"gcamCode":"c12.10","gcamValue":19},{"gcamCode":"c12.12","gcamValue":11},{"gcamCode":"c12.13","gcamValue":6},{"gcamCode":"c12.14","gcamValue":5},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":13},{"gcamCode":"c12.8","gcamValue":7},{"gcamCode":"c12.9","gcamValue":8},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c13.2","gcamValue":2},{"gcamCode":"c14.1","gcamValue":11},{"gcamCode":"c14.10","gcamValue":8},{"gcamCode":"c14.11","gcamValue":15},{"gcamCode":"c14.2","gcamValue":9},{"gcamCode":"c14.3","gcamValue":9},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":24},{"gcamCode":"c14.7","gcamValue":5},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":16},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":7},{"gcamCode":"c16.109","gcamValue":10},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":32},{"gcamCode":"c16.111","gcamValue":6},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":15},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":11},{"gcamCode":"c16.117","gcamValue":7},{"gcamCode":"c16.118","gcamValue":16},{"gcamCode":"c16.12","gcamValue":15},{"gcamCode":"c16.120","gcamValue":11},{"gcamCode":"c16.121","gcamValue":25},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":6},{"gcamCode":"c16.126","gcamValue":9},{"gcamCode":"c16.127","gcamValue":13},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":28},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":9},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":33},{"gcamCode":"c16.138","gcamValue":3},{"gcamCode":"c16.139","gcamValue":7},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":14},{"gcamCode":"c16.145","gcamValue":13},{"gcamCode":"c16.146","gcamValue":13},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":9},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":15},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":30},{"gcamCode":"c16.162","gcamValue":23},{"gcamCode":"c16.163","gcamValue":15},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.19","gcamValue":6},{"gcamCode":"c16.2","gcamValue":21},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":27},{"gcamCode":"c16.31","gcamValue":17},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":19},{"gcamCode":"c16.35","gcamValue":12},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":20},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":14},{"gcamCode":"c16.41","gcamValue":8},{"gcamCode":"c16.45","gcamValue":9},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":22},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.52","gcamValue":17},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":8},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":126},{"gcamCode":"c16.58","gcamValue":11},{"gcamCode":"c16.6","gcamValue":27},{"gcamCode":"c16.62","gcamValue":7},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":3},{"gcamCode":"c16.68","gcamValue":6},{"gcamCode":"c16.69","gcamValue":7},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":22},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.75","gcamValue":7},{"gcamCode":"c16.78","gcamValue":17},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":9},{"gcamCode":"c16.87","gcamValue":14},{"gcamCode":"c16.88","gcamValue":32},{"gcamCode":"c16.89","gcamValue":4},{"gcamCode":"c16.9","gcamValue":8},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":22},{"gcamCode":"c16.93","gcamValue":14},{"gcamCode":"c16.94","gcamValue":12},{"gcamCode":"c16.95","gcamValue":27},{"gcamCode":"c16.96","gcamValue":3},{"gcamCode":"c16.98","gcamValue":11},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":81},{"gcamCode":"c17.10","gcamValue":17},{"gcamCode":"c17.11","gcamValue":21},{"gcamCode":"c17.12","gcamValue":8},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.15","gcamValue":24},{"gcamCode":"c17.16","gcamValue":20},{"gcamCode":"c17.18","gcamValue":1},{"gcamCode":"c17.19","gcamValue":13},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":11},{"gcamCode":"c17.21","gcamValue":4},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.24","gcamValue":18},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":27},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.33","gcamValue":7},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":13},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.39","gcamValue":6},{"gcamCode":"c17.4","gcamValue":56},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":13},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":36},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":35},{"gcamCode":"c17.8","gcamValue":9},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.1","gcamValue":5},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.156","gcamValue":11},{"gcamCode":"c18.193","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":34},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":16},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":15},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":56},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":14},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":7},{"gcamCode":"c2.126","gcamValue":9},{"gcamCode":"c2.127","gcamValue":19},{"gcamCode":"c2.128","gcamValue":18},{"gcamCode":"c2.129","gcamValue":21},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":14},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":16},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":35},{"gcamCode":"c2.148","gcamValue":9},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.150","gcamValue":6},{"gcamCode":"c2.153","gcamValue":5},{"gcamCode":"c2.154","gcamValue":7},{"gcamCode":"c2.155","gcamValue":12},{"gcamCode":"c2.156","gcamValue":7},{"gcamCode":"c2.157","gcamValue":12},{"gcamCode":"c2.158","gcamValue":17},{"gcamCode":"c2.159","gcamValue":3},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":3},{"gcamCode":"c2.172","gcamValue":10},{"gcamCode":"c2.173","gcamValue":4},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.179","gcamValue":8},{"gcamCode":"c2.18","gcamValue":7},{"gcamCode":"c2.180","gcamValue":7},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":35},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":12},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":4},{"gcamCode":"c2.192","gcamValue":4},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":16},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":3},{"gcamCode":"c2.198","gcamValue":19},{"gcamCode":"c2.199","gcamValue":4},{"gcamCode":"c2.20","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":6},{"gcamCode":"c2.204","gcamValue":12},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.210","gcamValue":13},{"gcamCode":"c2.213","gcamValue":10},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":10},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.23","gcamValue":14},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":13},{"gcamCode":"c2.26","gcamValue":8},{"gcamCode":"c2.27","gcamValue":8},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":7},{"gcamCode":"c2.31","gcamValue":8},{"gcamCode":"c2.34","gcamValue":11},{"gcamCode":"c2.35","gcamValue":3},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":29},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":18},{"gcamCode":"c2.46","gcamValue":19},{"gcamCode":"c2.50","gcamValue":4},{"gcamCode":"c2.51","gcamValue":2},{"gcamCode":"c2.52","gcamValue":17},{"gcamCode":"c2.54","gcamValue":20},{"gcamCode":"c2.57","gcamValue":4},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":7},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":19},{"gcamCode":"c2.76","gcamValue":140},{"gcamCode":"c2.77","gcamValue":18},{"gcamCode":"c2.78","gcamValue":26},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.80","gcamValue":14},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":4},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":7},{"gcamCode":"c2.9","gcamValue":13},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.95","gcamValue":31},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":10},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c25.5","gcamValue":10},{"gcamCode":"c3.1","gcamValue":25},{"gcamCode":"c3.2","gcamValue":17},{"gcamCode":"c35.1","gcamValue":2},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.31","gcamValue":5},{"gcamCode":"c35.32","gcamValue":7},{"gcamCode":"c35.33","gcamValue":12},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":5},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":4},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.23","gcamValue":7},{"gcamCode":"c4.5","gcamValue":2},{"gcamCode":"c40.4","gcamValue":5},{"gcamCode":"c41.1","gcamValue":7},{"gcamCode":"c5.10","gcamValue":32},{"gcamCode":"c5.11","gcamValue":3},{"gcamCode":"c5.12","gcamValue":40},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":5},{"gcamCode":"c5.21","gcamValue":5},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":11},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.34","gcamValue":6},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":9},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":13},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":31},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":12},{"gcamCode":"c5.5","gcamValue":5},{"gcamCode":"c5.50","gcamValue":19},{"gcamCode":"c5.51","gcamValue":11},{"gcamCode":"c5.52","gcamValue":19},{"gcamCode":"c5.53","gcamValue":22},{"gcamCode":"c5.54","gcamValue":5},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.6","gcamValue":9},{"gcamCode":"c5.60","gcamValue":2},{"gcamCode":"c5.61","gcamValue":7},{"gcamCode":"c5.62","gcamValue":75},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":6},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":5},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":15},{"gcamCode":"c7.2","gcamValue":5},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":13},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":7},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":8},{"gcamCode":"c8.43","gcamValue":4},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":7},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":4},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.128","gcamValue":11},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.163","gcamValue":4},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":5},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":12},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.244","gcamValue":5},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.254","gcamValue":2},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.322","gcamValue":5},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.348","gcamValue":3},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.359","gcamValue":10},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":8},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.465","gcamValue":4},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":8},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.535","gcamValue":2},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.555","gcamValue":2},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":8},{"gcamCode":"c9.585","gcamValue":2},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.6","gcamValue":2},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.615","gcamValue":2},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":4},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.63","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.653","gcamValue":9},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":6},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":3},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":3},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":9},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":9},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.742","gcamValue":8},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":7},{"gcamCode":"c9.766","gcamValue":14},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":4},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":5},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.910","gcamValue":2},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":5},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.266948717948718},{"gcamCode":"v10.2","gcamValue":0.286481661798117},{"gcamCode":"v11.1","gcamValue":-0.00668701680672268},{"gcamCode":"v19.1","gcamValue":5.43638888888889},{"gcamCode":"v19.2","gcamValue":5.54527777777778},{"gcamCode":"v19.3","gcamValue":5.32555555555555},{"gcamCode":"v19.4","gcamValue":5.48194444444445},{"gcamCode":"v19.5","gcamValue":5.13277777777778},{"gcamCode":"v19.6","gcamValue":5.31555555555556},{"gcamCode":"v19.7","gcamValue":5.43138888888889},{"gcamCode":"v19.8","gcamValue":5.84916666666667},{"gcamCode":"v19.9","gcamValue":5.34416666666667},{"gcamCode":"v20.1","gcamValue":0.583},{"gcamCode":"v20.10","gcamValue":-0.5625},{"gcamCode":"v20.11","gcamValue":0.5555},{"gcamCode":"v20.12","gcamValue":-0.55},{"gcamCode":"v20.13","gcamValue":0.415608695652174},{"gcamCode":"v20.14","gcamValue":-0.4765},{"gcamCode":"v20.15","gcamValue":0.374866666666667},{"gcamCode":"v20.16","gcamValue":-0.3859},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.583},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.583},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.6665},{"gcamCode":"v20.8","gcamValue":-0.521},{"gcamCode":"v20.9","gcamValue":0.6665},{"gcamCode":"v21.1","gcamValue":5.27888888888889},{"gcamCode":"v26.1","gcamValue":0.0619047619047618}]http://extras.mnginteractive.com/live/media/site105/2019/0523/20190523_044805_AP19143357322128.jpg[""][""]["https://youtube.com/embed/videoseries?list=PLfO4x88EHCLHLwh5OJQLQbei2-__tg3fl&ecver=2","https://youtube.com/channel/UC9zW2ZBbt1nO3ZwDnQDSZVQ"][][{"name":"Hidden Oaks","charOffset":29},{"name":"Jefferson City Missouri","charOffset":74},{"name":"Hidden Oaks","charOffset":198},{"name":"Jefferson City Missouri","charOffset":243},{"name":"Jefferson City","charOffset":400},{"name":"National Weather Service","charOffset":494},{"name":"National Weather Service","charOffset":799},{"name":"Jefferson City","charOffset":874},{"name":"Mike Parson","charOffset":932},{"name":"Public Safety","charOffset":980},{"name":"Golden City","charOffset":1021},{"name":"City Police","charOffset":1213},{"name":"David Williams","charOffset":1232}][{"amount":3,"amountType":"deaths","charOffset":544},{"amount":12,"amountType":"of people","charOffset":567},{"amount":3,"amountType":"people died","charOffset":748},{"amount":20,"amountType":"people have been rescued","charOffset":1028}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBthedailyjournal.comhttps://www.thedailyjournal.com/story/entertainment/2019/05/23/heres-your-south-jersey-summer-bucket-list/3744892002/[][][""][][{"geoType":"USCITY","geoName":"Williamstown, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9792,"longitude":-80.0409},"featureId":"1191490"},{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},{"geoType":"USCITY","geoName":"Springfield, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9307,"longitude":-75.3202},"featureId":"1188289"},{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},{"geoType":"USCITY","geoName":"Laurel Springs, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.3028,"longitude":-75.8739},"featureId":"2488119"},{"geoType":"USCITY","geoName":"Cherry Hill, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.7582,"longitude":-75.3093},"featureId":"1171636"},{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},{"geoType":"USCITY","geoName":"Mount Laurel, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.9345,"longitude":-75.9935},"featureId":"1181733"},{"geoType":"USCITY","geoName":"Hawaiian Islands, Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":20.7503,"longitude":-156.5},"featureId":"1905681"},{"geoType":"USCITY","geoName":"Walt Whitman House, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.9431,"longitude":-78.6756},"featureId":"2115149"},{"geoType":"USSTATE","geoName":"Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"}][{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":146},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":999},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":1201},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":9638},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":9674},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":9798},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":10400},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":10685},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":10956},{"location":{"geoType":"USCITY","geoName":"Wildwood, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA003","geoPoint":{"latitude":40.5942,"longitude":-79.9701},"featureId":"1191426"},"charOffset":11132},{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":11081},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":7019},{"location":{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA017","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},"charOffset":7783},{"location":{"geoType":"USCITY","geoName":"Blueberry, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA017","geoPoint":{"latitude":40.3954,"longitude":-75.1963},"featureId":"1207759"},"charOffset":15452},{"location":{"geoType":"USCITY","geoName":"Hawaiian Islands, Hawaii, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"HI009","geoPoint":{"latitude":20.7503,"longitude":-156.5},"featureId":"1905681"},"charOffset":11043},{"location":{"geoType":"USSTATE","geoName":"Hawaiian, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},"charOffset":10561},{"location":{"geoType":"USSTATE","geoName":"Hawaiian, United States","countryCode":"US","adm1Code":"USHI","adm2Code":"","geoPoint":{"latitude":21.1098,"longitude":-157.531},"featureId":"HI"},"charOffset":11035},{"location":{"geoType":"USCITY","geoName":"Cherry Hill, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA095","geoPoint":{"latitude":40.7582,"longitude":-75.3093},"featureId":"1171636"},"charOffset":6829},{"location":{"geoType":"USCITY","geoName":"Springfield, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA045","geoPoint":{"latitude":39.9307,"longitude":-75.3202},"featureId":"1188289"},"charOffset":14887},{"location":{"geoType":"USCITY","geoName":"Walt Whitman House, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA083","geoPoint":{"latitude":41.9431,"longitude":-78.6756},"featureId":"2115149"},"charOffset":7223},{"location":{"geoType":"USCITY","geoName":"Mount Laurel, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA079","geoPoint":{"latitude":40.9345,"longitude":-75.9935},"featureId":"1181733"},"charOffset":3167},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":4365},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":4527},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":5425},{"location":{"geoType":"USCITY","geoName":"Burlington, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA015","geoPoint":{"latitude":41.7798,"longitude":-76.6074},"featureId":"1170725"},"charOffset":14846},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":6908},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":7392},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":13489},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":583},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":957},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":4606},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":5220},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":14413},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":15394},{"location":{"geoType":"COUNTRY","geoName":"Jersey","countryCode":"JE","adm1Code":"JE","adm2Code":"","geoPoint":{"latitude":49.216667,"longitude":-2.116667},"featureId":"JE"},"charOffset":15584},{"location":{"geoType":"USCITY","geoName":"Laurel Springs, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA011","geoPoint":{"latitude":40.3028,"longitude":-75.8739},"featureId":"2488119"},"charOffset":6706},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":12686},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":12990},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13089},{"location":{"geoType":"USCITY","geoName":"Williamstown, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA125","geoPoint":{"latitude":39.9792,"longitude":-80.0409},"featureId":"1191490"},"charOffset":10883},{"location":{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA041","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},"charOffset":11941},{"location":{"geoType":"USCITY","geoName":"Cumberland County, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA041","geoPoint":{"latitude":40.2504,"longitude":-77.375},"featureId":"1209176"},"charOffset":14787}]["mullica hill","tammy paolino","deborah m marko","martin luther king","jim walsh","chubby checker","anthony v coppola","joseph p smith","walt whitman","carly q romalino","kim mulford","sheri berkery","boz scaggs","rebecca king","celeste whittaker","david crosby","curtin marina"][{"person":"Mullica Hill","charOffset":14985},{"person":"Tammy Paolino","charOffset":6815},{"person":"Tammy Paolino","charOffset":14379},{"person":"Tammy Paolino","charOffset":15051},{"person":"Jim Walsh","charOffset":6618},{"person":"Chubby Checker","charOffset":9208},{"person":"Walt Whitman","charOffset":6655},{"person":"Walt Whitman","charOffset":6875},{"person":"Walt Whitman","charOffset":7052},{"person":"Walt Whitman","charOffset":7217},{"person":"Kim Mulford","charOffset":1521},{"person":"Sheri Berkery","charOffset":3133},{"person":"Sheri Berkery","charOffset":4328},{"person":"Boz Scaggs","charOffset":14154},{"person":"Rebecca King","charOffset":11716},{"person":"Celeste Whittaker","charOffset":5084},{"person":"Celeste Whittaker","charOffset":6042},{"person":"David Crosby","charOffset":13716},{"person":"Curtin Marina","charOffset":4468}]["cruise committee","arena football league","bayshore center","rutgers university","bayshore center at bivalve in cumberland","whitman","wildwood aviation museum","sand beer co"][{"organisation":"Arena Football League","charOffset":13352},{"organisation":"Bayshore Center","charOffset":11748},{"organisation":"Bayshore Center","charOffset":11909},{"organisation":"Rutgers University","charOffset":7330},{"organisation":"Bayshore Center At Bivalve In Cumberland","charOffset":11934},{"organisation":"Whitman","charOffset":6655},{"organisation":"Whitman","charOffset":6744},{"organisation":"Whitman","charOffset":6875},{"organisation":"Whitman","charOffset":7052},{"organisation":"Whitman","charOffset":7217},{"organisation":"Sand Beer Co","charOffset":1940}]{"tone":2.4916325,"positiveScore":3.4585347,"negativeScore":0.9669022,"polarity":4.425437,"activityReferenceDensity":22.089996,"selfGroupReferenceDensity":0.7437709,"wordCount":2256}[{"dateResolution":4,"month":5,"day":31,"year":0,"charOffset":1843},{"dateResolution":4,"month":5,"day":25,"year":0,"charOffset":4005},{"dateResolution":4,"month":6,"day":21,"year":0,"charOffset":4055},{"dateResolution":4,"month":5,"day":31,"year":0,"charOffset":7120},{"dateResolution":4,"month":7,"day":13,"year":0,"charOffset":8891},{"dateResolution":4,"month":7,"day":12,"year":0,"charOffset":9147},{"dateResolution":4,"month":6,"day":8,"year":0,"charOffset":9610},{"dateResolution":4,"month":6,"day":25,"year":0,"charOffset":10932},{"dateResolution":4,"month":6,"day":1,"year":0,"charOffset":11597},{"dateResolution":4,"month":6,"day":8,"year":0,"charOffset":12345},{"dateResolution":4,"month":6,"day":9,"year":0,"charOffset":12387},{"dateResolution":1,"month":0,"day":0,"year":1975,"charOffset":12711},{"dateResolution":4,"month":6,"day":1,"year":0,"charOffset":13587},{"dateResolution":4,"month":7,"day":2,"year":0,"charOffset":14532},{"dateResolution":4,"month":7,"day":25,"year":0,"charOffset":14657}][{"gcamCode":"wc","gcamValue":2256},{"gcamCode":"c1.1","gcamValue":3},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":3},{"gcamCode":"c12.1","gcamValue":119},{"gcamCode":"c12.10","gcamValue":159},{"gcamCode":"c12.12","gcamValue":31},{"gcamCode":"c12.13","gcamValue":46},{"gcamCode":"c12.14","gcamValue":89},{"gcamCode":"c12.3","gcamValue":51},{"gcamCode":"c12.4","gcamValue":14},{"gcamCode":"c12.5","gcamValue":84},{"gcamCode":"c12.7","gcamValue":76},{"gcamCode":"c12.8","gcamValue":58},{"gcamCode":"c12.9","gcamValue":162},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.10","gcamValue":4},{"gcamCode":"c13.11","gcamValue":3},{"gcamCode":"c13.12","gcamValue":2},{"gcamCode":"c13.13","gcamValue":1},{"gcamCode":"c13.3","gcamValue":10},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.5","gcamValue":1},{"gcamCode":"c13.6","gcamValue":2},{"gcamCode":"c13.7","gcamValue":14},{"gcamCode":"c13.9","gcamValue":2},{"gcamCode":"c14.1","gcamValue":117},{"gcamCode":"c14.10","gcamValue":80},{"gcamCode":"c14.11","gcamValue":175},{"gcamCode":"c14.2","gcamValue":113},{"gcamCode":"c14.3","gcamValue":120},{"gcamCode":"c14.4","gcamValue":15},{"gcamCode":"c14.5","gcamValue":198},{"gcamCode":"c14.6","gcamValue":6},{"gcamCode":"c14.7","gcamValue":26},{"gcamCode":"c14.8","gcamValue":3},{"gcamCode":"c14.9","gcamValue":24},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.100","gcamValue":2},{"gcamCode":"c15.102","gcamValue":3},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.105","gcamValue":2},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.107","gcamValue":2},{"gcamCode":"c15.108","gcamValue":1},{"gcamCode":"c15.109","gcamValue":2},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.114","gcamValue":1},{"gcamCode":"c15.116","gcamValue":6},{"gcamCode":"c15.118","gcamValue":8},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":3},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.13","gcamValue":3},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":3},{"gcamCode":"c15.139","gcamValue":3},{"gcamCode":"c15.14","gcamValue":1},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":3},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.15","gcamValue":4},{"gcamCode":"c15.152","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.156","gcamValue":6},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.162","gcamValue":2},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":2},{"gcamCode":"c15.167","gcamValue":5},{"gcamCode":"c15.168","gcamValue":4},{"gcamCode":"c15.169","gcamValue":1},{"gcamCode":"c15.171","gcamValue":3},{"gcamCode":"c15.172","gcamValue":3},{"gcamCode":"c15.173","gcamValue":7},{"gcamCode":"c15.175","gcamValue":5},{"gcamCode":"c15.176","gcamValue":6},{"gcamCode":"c15.177","gcamValue":3},{"gcamCode":"c15.178","gcamValue":3},{"gcamCode":"c15.179","gcamValue":3},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.212","gcamValue":4},{"gcamCode":"c15.215","gcamValue":3},{"gcamCode":"c15.218","gcamValue":3},{"gcamCode":"c15.221","gcamValue":6},{"gcamCode":"c15.222","gcamValue":3},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.229","gcamValue":4},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.237","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.252","gcamValue":4},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.256","gcamValue":3},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.26","gcamValue":3},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.263","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.270","gcamValue":3},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.279","gcamValue":3},{"gcamCode":"c15.29","gcamValue":3},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.34","gcamValue":2},{"gcamCode":"c15.36","gcamValue":3},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.43","gcamValue":8},{"gcamCode":"c15.46","gcamValue":3},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.53","gcamValue":3},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":7},{"gcamCode":"c15.69","gcamValue":4},{"gcamCode":"c15.71","gcamValue":3},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.75","gcamValue":1},{"gcamCode":"c15.76","gcamValue":3},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.83","gcamValue":4},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.9","gcamValue":3},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c15.96","gcamValue":1},{"gcamCode":"c15.97","gcamValue":4},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":21},{"gcamCode":"c16.100","gcamValue":113},{"gcamCode":"c16.101","gcamValue":24},{"gcamCode":"c16.102","gcamValue":4},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.104","gcamValue":5},{"gcamCode":"c16.105","gcamValue":19},{"gcamCode":"c16.106","gcamValue":77},{"gcamCode":"c16.109","gcamValue":99},{"gcamCode":"c16.11","gcamValue":18},{"gcamCode":"c16.110","gcamValue":276},{"gcamCode":"c16.111","gcamValue":21},{"gcamCode":"c16.113","gcamValue":6},{"gcamCode":"c16.114","gcamValue":130},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":95},{"gcamCode":"c16.117","gcamValue":65},{"gcamCode":"c16.118","gcamValue":174},{"gcamCode":"c16.12","gcamValue":200},{"gcamCode":"c16.120","gcamValue":128},{"gcamCode":"c16.121","gcamValue":123},{"gcamCode":"c16.122","gcamValue":18},{"gcamCode":"c16.123","gcamValue":6},{"gcamCode":"c16.124","gcamValue":9},{"gcamCode":"c16.125","gcamValue":120},{"gcamCode":"c16.126","gcamValue":91},{"gcamCode":"c16.127","gcamValue":171},{"gcamCode":"c16.128","gcamValue":19},{"gcamCode":"c16.129","gcamValue":231},{"gcamCode":"c16.13","gcamValue":10},{"gcamCode":"c16.130","gcamValue":62},{"gcamCode":"c16.131","gcamValue":83},{"gcamCode":"c16.134","gcamValue":207},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.137","gcamValue":6},{"gcamCode":"c16.138","gcamValue":58},{"gcamCode":"c16.139","gcamValue":71},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":65},{"gcamCode":"c16.141","gcamValue":7},{"gcamCode":"c16.142","gcamValue":5},{"gcamCode":"c16.143","gcamValue":9},{"gcamCode":"c16.145","gcamValue":149},{"gcamCode":"c16.146","gcamValue":167},{"gcamCode":"c16.149","gcamValue":12},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.150","gcamValue":10},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":8},{"gcamCode":"c16.153","gcamValue":81},{"gcamCode":"c16.155","gcamValue":9},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":63},{"gcamCode":"c16.158","gcamValue":4},{"gcamCode":"c16.159","gcamValue":209},{"gcamCode":"c16.16","gcamValue":76},{"gcamCode":"c16.160","gcamValue":3},{"gcamCode":"c16.161","gcamValue":277},{"gcamCode":"c16.162","gcamValue":146},{"gcamCode":"c16.163","gcamValue":215},{"gcamCode":"c16.164","gcamValue":20},{"gcamCode":"c16.165","gcamValue":17},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":4},{"gcamCode":"c16.18","gcamValue":4},{"gcamCode":"c16.19","gcamValue":66},{"gcamCode":"c16.2","gcamValue":134},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":16},{"gcamCode":"c16.22","gcamValue":71},{"gcamCode":"c16.23","gcamValue":20},{"gcamCode":"c16.24","gcamValue":14},{"gcamCode":"c16.26","gcamValue":272},{"gcamCode":"c16.27","gcamValue":15},{"gcamCode":"c16.28","gcamValue":3},{"gcamCode":"c16.29","gcamValue":12},{"gcamCode":"c16.3","gcamValue":50},{"gcamCode":"c16.30","gcamValue":6},{"gcamCode":"c16.31","gcamValue":164},{"gcamCode":"c16.32","gcamValue":19},{"gcamCode":"c16.33","gcamValue":210},{"gcamCode":"c16.34","gcamValue":18},{"gcamCode":"c16.35","gcamValue":92},{"gcamCode":"c16.36","gcamValue":22},{"gcamCode":"c16.37","gcamValue":190},{"gcamCode":"c16.38","gcamValue":46},{"gcamCode":"c16.39","gcamValue":4},{"gcamCode":"c16.4","gcamValue":162},{"gcamCode":"c16.41","gcamValue":82},{"gcamCode":"c16.42","gcamValue":6},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":84},{"gcamCode":"c16.46","gcamValue":25},{"gcamCode":"c16.47","gcamValue":263},{"gcamCode":"c16.48","gcamValue":21},{"gcamCode":"c16.49","gcamValue":13},{"gcamCode":"c16.5","gcamValue":9},{"gcamCode":"c16.50","gcamValue":11},{"gcamCode":"c16.51","gcamValue":13},{"gcamCode":"c16.52","gcamValue":95},{"gcamCode":"c16.53","gcamValue":10},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":16},{"gcamCode":"c16.56","gcamValue":24},{"gcamCode":"c16.57","gcamValue":1134},{"gcamCode":"c16.58","gcamValue":156},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":261},{"gcamCode":"c16.60","gcamValue":23},{"gcamCode":"c16.61","gcamValue":8},{"gcamCode":"c16.62","gcamValue":72},{"gcamCode":"c16.63","gcamValue":69},{"gcamCode":"c16.64","gcamValue":50},{"gcamCode":"c16.65","gcamValue":103},{"gcamCode":"c16.66","gcamValue":37},{"gcamCode":"c16.68","gcamValue":135},{"gcamCode":"c16.69","gcamValue":68},{"gcamCode":"c16.7","gcamValue":22},{"gcamCode":"c16.70","gcamValue":211},{"gcamCode":"c16.71","gcamValue":93},{"gcamCode":"c16.72","gcamValue":23},{"gcamCode":"c16.73","gcamValue":13},{"gcamCode":"c16.74","gcamValue":8},{"gcamCode":"c16.75","gcamValue":72},{"gcamCode":"c16.76","gcamValue":12},{"gcamCode":"c16.77","gcamValue":7},{"gcamCode":"c16.78","gcamValue":51},{"gcamCode":"c16.79","gcamValue":18},{"gcamCode":"c16.8","gcamValue":5},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":17},{"gcamCode":"c16.82","gcamValue":17},{"gcamCode":"c16.83","gcamValue":16},{"gcamCode":"c16.84","gcamValue":112},{"gcamCode":"c16.85","gcamValue":8},{"gcamCode":"c16.86","gcamValue":11},{"gcamCode":"c16.87","gcamValue":148},{"gcamCode":"c16.88","gcamValue":263},{"gcamCode":"c16.89","gcamValue":57},{"gcamCode":"c16.9","gcamValue":25},{"gcamCode":"c16.90","gcamValue":57},{"gcamCode":"c16.91","gcamValue":87},{"gcamCode":"c16.92","gcamValue":148},{"gcamCode":"c16.93","gcamValue":40},{"gcamCode":"c16.94","gcamValue":209},{"gcamCode":"c16.95","gcamValue":123},{"gcamCode":"c16.96","gcamValue":57},{"gcamCode":"c16.97","gcamValue":11},{"gcamCode":"c16.98","gcamValue":156},{"gcamCode":"c16.99","gcamValue":9},{"gcamCode":"c17.1","gcamValue":542},{"gcamCode":"c17.10","gcamValue":225},{"gcamCode":"c17.11","gcamValue":251},{"gcamCode":"c17.12","gcamValue":74},{"gcamCode":"c17.13","gcamValue":31},{"gcamCode":"c17.14","gcamValue":82},{"gcamCode":"c17.15","gcamValue":138},{"gcamCode":"c17.16","gcamValue":166},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":103},{"gcamCode":"c17.19","gcamValue":96},{"gcamCode":"c17.2","gcamValue":23},{"gcamCode":"c17.20","gcamValue":18},{"gcamCode":"c17.21","gcamValue":37},{"gcamCode":"c17.22","gcamValue":60},{"gcamCode":"c17.23","gcamValue":12},{"gcamCode":"c17.24","gcamValue":190},{"gcamCode":"c17.25","gcamValue":23},{"gcamCode":"c17.26","gcamValue":14},{"gcamCode":"c17.27","gcamValue":225},{"gcamCode":"c17.28","gcamValue":39},{"gcamCode":"c17.29","gcamValue":114},{"gcamCode":"c17.3","gcamValue":18},{"gcamCode":"c17.30","gcamValue":43},{"gcamCode":"c17.31","gcamValue":168},{"gcamCode":"c17.32","gcamValue":97},{"gcamCode":"c17.33","gcamValue":115},{"gcamCode":"c17.34","gcamValue":63},{"gcamCode":"c17.35","gcamValue":38},{"gcamCode":"c17.36","gcamValue":152},{"gcamCode":"c17.37","gcamValue":81},{"gcamCode":"c17.38","gcamValue":29},{"gcamCode":"c17.39","gcamValue":140},{"gcamCode":"c17.4","gcamValue":417},{"gcamCode":"c17.40","gcamValue":44},{"gcamCode":"c17.41","gcamValue":120},{"gcamCode":"c17.42","gcamValue":141},{"gcamCode":"c17.43","gcamValue":129},{"gcamCode":"c17.44","gcamValue":5},{"gcamCode":"c17.5","gcamValue":460},{"gcamCode":"c17.6","gcamValue":31},{"gcamCode":"c17.7","gcamValue":360},{"gcamCode":"c17.8","gcamValue":209},{"gcamCode":"c17.9","gcamValue":50},{"gcamCode":"c18.100","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.156","gcamValue":6},{"gcamCode":"c18.165","gcamValue":9},{"gcamCode":"c18.180","gcamValue":10},{"gcamCode":"c18.193","gcamValue":13},{"gcamCode":"c18.199","gcamValue":1},{"gcamCode":"c18.235","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.32","gcamValue":1},{"gcamCode":"c18.339","gcamValue":4},{"gcamCode":"c18.342","gcamValue":19},{"gcamCode":"c18.345","gcamValue":3},{"gcamCode":"c18.351","gcamValue":3},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.52","gcamValue":3},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c18.94","gcamValue":1},{"gcamCode":"c2.1","gcamValue":116},{"gcamCode":"c2.10","gcamValue":23},{"gcamCode":"c2.100","gcamValue":10},{"gcamCode":"c2.101","gcamValue":40},{"gcamCode":"c2.102","gcamValue":51},{"gcamCode":"c2.103","gcamValue":10},{"gcamCode":"c2.104","gcamValue":258},{"gcamCode":"c2.106","gcamValue":2},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":9},{"gcamCode":"c2.11","gcamValue":30},{"gcamCode":"c2.110","gcamValue":27},{"gcamCode":"c2.111","gcamValue":14},{"gcamCode":"c2.112","gcamValue":41},{"gcamCode":"c2.113","gcamValue":16},{"gcamCode":"c2.114","gcamValue":73},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":46},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":7},{"gcamCode":"c2.119","gcamValue":661},{"gcamCode":"c2.12","gcamValue":80},{"gcamCode":"c2.120","gcamValue":9},{"gcamCode":"c2.121","gcamValue":167},{"gcamCode":"c2.122","gcamValue":19},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":95},{"gcamCode":"c2.126","gcamValue":77},{"gcamCode":"c2.127","gcamValue":206},{"gcamCode":"c2.128","gcamValue":175},{"gcamCode":"c2.129","gcamValue":114},{"gcamCode":"c2.130","gcamValue":13},{"gcamCode":"c2.131","gcamValue":14},{"gcamCode":"c2.132","gcamValue":12},{"gcamCode":"c2.133","gcamValue":31},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":13},{"gcamCode":"c2.136","gcamValue":18},{"gcamCode":"c2.137","gcamValue":2},{"gcamCode":"c2.138","gcamValue":9},{"gcamCode":"c2.139","gcamValue":16},{"gcamCode":"c2.14","gcamValue":160},{"gcamCode":"c2.140","gcamValue":6},{"gcamCode":"c2.141","gcamValue":39},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":136},{"gcamCode":"c2.144","gcamValue":35},{"gcamCode":"c2.145","gcamValue":15},{"gcamCode":"c2.146","gcamValue":20},{"gcamCode":"c2.147","gcamValue":306},{"gcamCode":"c2.148","gcamValue":104},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":81},{"gcamCode":"c2.150","gcamValue":7},{"gcamCode":"c2.151","gcamValue":12},{"gcamCode":"c2.152","gcamValue":35},{"gcamCode":"c2.153","gcamValue":26},{"gcamCode":"c2.154","gcamValue":52},{"gcamCode":"c2.155","gcamValue":216},{"gcamCode":"c2.156","gcamValue":60},{"gcamCode":"c2.157","gcamValue":194},{"gcamCode":"c2.158","gcamValue":165},{"gcamCode":"c2.159","gcamValue":35},{"gcamCode":"c2.16","gcamValue":17},{"gcamCode":"c2.160","gcamValue":84},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":18},{"gcamCode":"c2.163","gcamValue":5},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":22},{"gcamCode":"c2.167","gcamValue":6},{"gcamCode":"c2.168","gcamValue":13},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":27},{"gcamCode":"c2.170","gcamValue":39},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":63},{"gcamCode":"c2.173","gcamValue":27},{"gcamCode":"c2.174","gcamValue":3},{"gcamCode":"c2.175","gcamValue":4},{"gcamCode":"c2.176","gcamValue":46},{"gcamCode":"c2.177","gcamValue":93},{"gcamCode":"c2.178","gcamValue":18},{"gcamCode":"c2.179","gcamValue":34},{"gcamCode":"c2.18","gcamValue":68},{"gcamCode":"c2.180","gcamValue":77},{"gcamCode":"c2.181","gcamValue":80},{"gcamCode":"c2.182","gcamValue":4},{"gcamCode":"c2.183","gcamValue":91},{"gcamCode":"c2.184","gcamValue":1},{"gcamCode":"c2.185","gcamValue":401},{"gcamCode":"c2.186","gcamValue":18},{"gcamCode":"c2.187","gcamValue":106},{"gcamCode":"c2.19","gcamValue":17},{"gcamCode":"c2.190","gcamValue":7},{"gcamCode":"c2.191","gcamValue":32},{"gcamCode":"c2.192","gcamValue":26},{"gcamCode":"c2.193","gcamValue":150},{"gcamCode":"c2.194","gcamValue":17},{"gcamCode":"c2.195","gcamValue":177},{"gcamCode":"c2.196","gcamValue":42},{"gcamCode":"c2.197","gcamValue":85},{"gcamCode":"c2.198","gcamValue":275},{"gcamCode":"c2.199","gcamValue":56},{"gcamCode":"c2.2","gcamValue":11},{"gcamCode":"c2.20","gcamValue":5},{"gcamCode":"c2.200","gcamValue":5},{"gcamCode":"c2.201","gcamValue":6},{"gcamCode":"c2.203","gcamValue":41},{"gcamCode":"c2.204","gcamValue":202},{"gcamCode":"c2.205","gcamValue":26},{"gcamCode":"c2.206","gcamValue":55},{"gcamCode":"c2.207","gcamValue":21},{"gcamCode":"c2.208","gcamValue":7},{"gcamCode":"c2.209","gcamValue":39},{"gcamCode":"c2.21","gcamValue":10},{"gcamCode":"c2.210","gcamValue":162},{"gcamCode":"c2.211","gcamValue":22},{"gcamCode":"c2.212","gcamValue":8},{"gcamCode":"c2.213","gcamValue":22},{"gcamCode":"c2.214","gcamValue":88},{"gcamCode":"c2.215","gcamValue":4},{"gcamCode":"c2.216","gcamValue":5},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.218","gcamValue":12},{"gcamCode":"c2.219","gcamValue":4},{"gcamCode":"c2.220","gcamValue":42},{"gcamCode":"c2.221","gcamValue":33},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":35},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":35},{"gcamCode":"c2.226","gcamValue":48},{"gcamCode":"c2.227","gcamValue":18},{"gcamCode":"c2.228","gcamValue":23},{"gcamCode":"c2.23","gcamValue":30},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":109},{"gcamCode":"c2.26","gcamValue":79},{"gcamCode":"c2.27","gcamValue":79},{"gcamCode":"c2.28","gcamValue":13},{"gcamCode":"c2.3","gcamValue":3},{"gcamCode":"c2.30","gcamValue":61},{"gcamCode":"c2.31","gcamValue":96},{"gcamCode":"c2.32","gcamValue":16},{"gcamCode":"c2.33","gcamValue":43},{"gcamCode":"c2.34","gcamValue":115},{"gcamCode":"c2.35","gcamValue":30},{"gcamCode":"c2.36","gcamValue":20},{"gcamCode":"c2.37","gcamValue":21},{"gcamCode":"c2.38","gcamValue":8},{"gcamCode":"c2.39","gcamValue":244},{"gcamCode":"c2.4","gcamValue":12},{"gcamCode":"c2.40","gcamValue":10},{"gcamCode":"c2.41","gcamValue":5},{"gcamCode":"c2.42","gcamValue":22},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":83},{"gcamCode":"c2.45","gcamValue":88},{"gcamCode":"c2.46","gcamValue":137},{"gcamCode":"c2.47","gcamValue":33},{"gcamCode":"c2.48","gcamValue":29},{"gcamCode":"c2.49","gcamValue":3},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":16},{"gcamCode":"c2.52","gcamValue":107},{"gcamCode":"c2.54","gcamValue":121},{"gcamCode":"c2.55","gcamValue":16},{"gcamCode":"c2.56","gcamValue":9},{"gcamCode":"c2.57","gcamValue":27},{"gcamCode":"c2.58","gcamValue":43},{"gcamCode":"c2.59","gcamValue":6},{"gcamCode":"c2.6","gcamValue":19},{"gcamCode":"c2.60","gcamValue":3},{"gcamCode":"c2.61","gcamValue":12},{"gcamCode":"c2.62","gcamValue":118},{"gcamCode":"c2.63","gcamValue":6},{"gcamCode":"c2.64","gcamValue":31},{"gcamCode":"c2.65","gcamValue":35},{"gcamCode":"c2.66","gcamValue":11},{"gcamCode":"c2.67","gcamValue":6},{"gcamCode":"c2.68","gcamValue":20},{"gcamCode":"c2.7","gcamValue":6},{"gcamCode":"c2.70","gcamValue":17},{"gcamCode":"c2.71","gcamValue":17},{"gcamCode":"c2.72","gcamValue":23},{"gcamCode":"c2.73","gcamValue":15},{"gcamCode":"c2.74","gcamValue":4},{"gcamCode":"c2.75","gcamValue":261},{"gcamCode":"c2.76","gcamValue":1303},{"gcamCode":"c2.77","gcamValue":113},{"gcamCode":"c2.78","gcamValue":254},{"gcamCode":"c2.79","gcamValue":33},{"gcamCode":"c2.80","gcamValue":239},{"gcamCode":"c2.81","gcamValue":34},{"gcamCode":"c2.82","gcamValue":44},{"gcamCode":"c2.83","gcamValue":13},{"gcamCode":"c2.84","gcamValue":7},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":46},{"gcamCode":"c2.87","gcamValue":5},{"gcamCode":"c2.88","gcamValue":39},{"gcamCode":"c2.89","gcamValue":67},{"gcamCode":"c2.9","gcamValue":27},{"gcamCode":"c2.90","gcamValue":27},{"gcamCode":"c2.91","gcamValue":2},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":41},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":289},{"gcamCode":"c2.96","gcamValue":29},{"gcamCode":"c2.97","gcamValue":34},{"gcamCode":"c2.98","gcamValue":58},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":5},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":6},{"gcamCode":"c25.5","gcamValue":32},{"gcamCode":"c25.7","gcamValue":7},{"gcamCode":"c25.9","gcamValue":4},{"gcamCode":"c3.1","gcamValue":48},{"gcamCode":"c3.2","gcamValue":171},{"gcamCode":"c35.1","gcamValue":18},{"gcamCode":"c35.10","gcamValue":3},{"gcamCode":"c35.12","gcamValue":13},{"gcamCode":"c35.13","gcamValue":4},{"gcamCode":"c35.14","gcamValue":17},{"gcamCode":"c35.15","gcamValue":24},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":6},{"gcamCode":"c35.19","gcamValue":3},{"gcamCode":"c35.2","gcamValue":6},{"gcamCode":"c35.20","gcamValue":40},{"gcamCode":"c35.21","gcamValue":3},{"gcamCode":"c35.24","gcamValue":6},{"gcamCode":"c35.25","gcamValue":31},{"gcamCode":"c35.26","gcamValue":2},{"gcamCode":"c35.28","gcamValue":1},{"gcamCode":"c35.30","gcamValue":3},{"gcamCode":"c35.31","gcamValue":75},{"gcamCode":"c35.32","gcamValue":56},{"gcamCode":"c35.33","gcamValue":86},{"gcamCode":"c35.4","gcamValue":6},{"gcamCode":"c35.5","gcamValue":16},{"gcamCode":"c35.6","gcamValue":3},{"gcamCode":"c35.7","gcamValue":7},{"gcamCode":"c35.8","gcamValue":3},{"gcamCode":"c39.1","gcamValue":11},{"gcamCode":"c39.10","gcamValue":2},{"gcamCode":"c39.11","gcamValue":1},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":5},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.15","gcamValue":3},{"gcamCode":"c39.17","gcamValue":27},{"gcamCode":"c39.18","gcamValue":6},{"gcamCode":"c39.19","gcamValue":6},{"gcamCode":"c39.2","gcamValue":47},{"gcamCode":"c39.20","gcamValue":6},{"gcamCode":"c39.21","gcamValue":14},{"gcamCode":"c39.22","gcamValue":2},{"gcamCode":"c39.23","gcamValue":2},{"gcamCode":"c39.25","gcamValue":7},{"gcamCode":"c39.27","gcamValue":2},{"gcamCode":"c39.28","gcamValue":5},{"gcamCode":"c39.3","gcamValue":131},{"gcamCode":"c39.30","gcamValue":7},{"gcamCode":"c39.34","gcamValue":12},{"gcamCode":"c39.36","gcamValue":41},{"gcamCode":"c39.37","gcamValue":104},{"gcamCode":"c39.38","gcamValue":12},{"gcamCode":"c39.39","gcamValue":19},{"gcamCode":"c39.4","gcamValue":116},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":35},{"gcamCode":"c39.5","gcamValue":73},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.1","gcamValue":3},{"gcamCode":"c4.11","gcamValue":4},{"gcamCode":"c4.12","gcamValue":28},{"gcamCode":"c4.15","gcamValue":4},{"gcamCode":"c4.17","gcamValue":3},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":73},{"gcamCode":"c4.4","gcamValue":3},{"gcamCode":"c4.5","gcamValue":3},{"gcamCode":"c4.6","gcamValue":2},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.3","gcamValue":19},{"gcamCode":"c40.4","gcamValue":6},{"gcamCode":"c40.5","gcamValue":11},{"gcamCode":"c40.6","gcamValue":2},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":47},{"gcamCode":"c5.10","gcamValue":202},{"gcamCode":"c5.11","gcamValue":65},{"gcamCode":"c5.12","gcamValue":423},{"gcamCode":"c5.13","gcamValue":21},{"gcamCode":"c5.14","gcamValue":3},{"gcamCode":"c5.15","gcamValue":5},{"gcamCode":"c5.16","gcamValue":12},{"gcamCode":"c5.17","gcamValue":36},{"gcamCode":"c5.18","gcamValue":14},{"gcamCode":"c5.19","gcamValue":17},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":13},{"gcamCode":"c5.21","gcamValue":46},{"gcamCode":"c5.22","gcamValue":12},{"gcamCode":"c5.23","gcamValue":42},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":15},{"gcamCode":"c5.26","gcamValue":52},{"gcamCode":"c5.27","gcamValue":13},{"gcamCode":"c5.28","gcamValue":10},{"gcamCode":"c5.29","gcamValue":18},{"gcamCode":"c5.3","gcamValue":4},{"gcamCode":"c5.30","gcamValue":152},{"gcamCode":"c5.31","gcamValue":6},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":14},{"gcamCode":"c5.35","gcamValue":69},{"gcamCode":"c5.36","gcamValue":100},{"gcamCode":"c5.37","gcamValue":10},{"gcamCode":"c5.39","gcamValue":4},{"gcamCode":"c5.4","gcamValue":33},{"gcamCode":"c5.40","gcamValue":99},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":56},{"gcamCode":"c5.44","gcamValue":10},{"gcamCode":"c5.45","gcamValue":27},{"gcamCode":"c5.46","gcamValue":286},{"gcamCode":"c5.47","gcamValue":41},{"gcamCode":"c5.48","gcamValue":32},{"gcamCode":"c5.49","gcamValue":142},{"gcamCode":"c5.5","gcamValue":14},{"gcamCode":"c5.50","gcamValue":160},{"gcamCode":"c5.51","gcamValue":123},{"gcamCode":"c5.52","gcamValue":207},{"gcamCode":"c5.53","gcamValue":163},{"gcamCode":"c5.54","gcamValue":50},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.57","gcamValue":25},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.6","gcamValue":174},{"gcamCode":"c5.60","gcamValue":33},{"gcamCode":"c5.61","gcamValue":83},{"gcamCode":"c5.62","gcamValue":750},{"gcamCode":"c5.7","gcamValue":30},{"gcamCode":"c5.8","gcamValue":28},{"gcamCode":"c5.9","gcamValue":152},{"gcamCode":"c6.1","gcamValue":26},{"gcamCode":"c6.2","gcamValue":23},{"gcamCode":"c6.3","gcamValue":11},{"gcamCode":"c6.4","gcamValue":26},{"gcamCode":"c6.5","gcamValue":13},{"gcamCode":"c6.6","gcamValue":14},{"gcamCode":"c7.1","gcamValue":66},{"gcamCode":"c7.2","gcamValue":123},{"gcamCode":"c8.1","gcamValue":7},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.11","gcamValue":7},{"gcamCode":"c8.12","gcamValue":12},{"gcamCode":"c8.13","gcamValue":13},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":4},{"gcamCode":"c8.17","gcamValue":9},{"gcamCode":"c8.18","gcamValue":31},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.20","gcamValue":35},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":31},{"gcamCode":"c8.23","gcamValue":92},{"gcamCode":"c8.24","gcamValue":2},{"gcamCode":"c8.25","gcamValue":16},{"gcamCode":"c8.26","gcamValue":3},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":15},{"gcamCode":"c8.29","gcamValue":10},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":6},{"gcamCode":"c8.34","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":10},{"gcamCode":"c8.37","gcamValue":20},{"gcamCode":"c8.38","gcamValue":29},{"gcamCode":"c8.39","gcamValue":4},{"gcamCode":"c8.4","gcamValue":83},{"gcamCode":"c8.40","gcamValue":13},{"gcamCode":"c8.41","gcamValue":5},{"gcamCode":"c8.42","gcamValue":24},{"gcamCode":"c8.43","gcamValue":64},{"gcamCode":"c8.5","gcamValue":9},{"gcamCode":"c8.6","gcamValue":19},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":7},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":83},{"gcamCode":"c9.10","gcamValue":15},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":6},{"gcamCode":"c9.1004","gcamValue":6},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1012","gcamValue":8},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":6},{"gcamCode":"c9.1017","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":12},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":3},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1025","gcamValue":1},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.1027","gcamValue":3},{"gcamCode":"c9.1029","gcamValue":3},{"gcamCode":"c9.1030","gcamValue":23},{"gcamCode":"c9.1031","gcamValue":3},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":5},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.1042","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":16},{"gcamCode":"c9.108","gcamValue":3},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":27},{"gcamCode":"c9.113","gcamValue":25},{"gcamCode":"c9.115","gcamValue":6},{"gcamCode":"c9.116","gcamValue":11},{"gcamCode":"c9.117","gcamValue":8},{"gcamCode":"c9.118","gcamValue":13},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.120","gcamValue":3},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":6},{"gcamCode":"c9.124","gcamValue":12},{"gcamCode":"c9.125","gcamValue":7},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":89},{"gcamCode":"c9.129","gcamValue":8},{"gcamCode":"c9.130","gcamValue":9},{"gcamCode":"c9.131","gcamValue":17},{"gcamCode":"c9.132","gcamValue":6},{"gcamCode":"c9.133","gcamValue":3},{"gcamCode":"c9.134","gcamValue":13},{"gcamCode":"c9.135","gcamValue":11},{"gcamCode":"c9.137","gcamValue":2},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":7},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":21},{"gcamCode":"c9.142","gcamValue":4},{"gcamCode":"c9.143","gcamValue":21},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":38},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":10},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":8},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.154","gcamValue":2},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":38},{"gcamCode":"c9.159","gcamValue":10},{"gcamCode":"c9.16","gcamValue":5},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":8},{"gcamCode":"c9.162","gcamValue":28},{"gcamCode":"c9.163","gcamValue":5},{"gcamCode":"c9.164","gcamValue":12},{"gcamCode":"c9.165","gcamValue":7},{"gcamCode":"c9.166","gcamValue":10},{"gcamCode":"c9.167","gcamValue":6},{"gcamCode":"c9.168","gcamValue":12},{"gcamCode":"c9.169","gcamValue":11},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":8},{"gcamCode":"c9.174","gcamValue":12},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":15},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.18","gcamValue":6},{"gcamCode":"c9.180","gcamValue":9},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":10},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":31},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.186","gcamValue":7},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":38},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":4},{"gcamCode":"c9.190","gcamValue":20},{"gcamCode":"c9.191","gcamValue":11},{"gcamCode":"c9.192","gcamValue":24},{"gcamCode":"c9.193","gcamValue":12},{"gcamCode":"c9.194","gcamValue":5},{"gcamCode":"c9.195","gcamValue":20},{"gcamCode":"c9.196","gcamValue":9},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":74},{"gcamCode":"c9.199","gcamValue":2},{"gcamCode":"c9.2","gcamValue":6},{"gcamCode":"c9.20","gcamValue":15},{"gcamCode":"c9.200","gcamValue":19},{"gcamCode":"c9.201","gcamValue":11},{"gcamCode":"c9.202","gcamValue":3},{"gcamCode":"c9.203","gcamValue":6},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":21},{"gcamCode":"c9.206","gcamValue":6},{"gcamCode":"c9.207","gcamValue":12},{"gcamCode":"c9.209","gcamValue":21},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":11},{"gcamCode":"c9.213","gcamValue":3},{"gcamCode":"c9.214","gcamValue":8},{"gcamCode":"c9.215","gcamValue":19},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":5},{"gcamCode":"c9.218","gcamValue":1},{"gcamCode":"c9.219","gcamValue":10},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":24},{"gcamCode":"c9.227","gcamValue":6},{"gcamCode":"c9.229","gcamValue":6},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":8},{"gcamCode":"c9.231","gcamValue":11},{"gcamCode":"c9.232","gcamValue":4},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.234","gcamValue":4},{"gcamCode":"c9.235","gcamValue":28},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":4},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":11},{"gcamCode":"c9.242","gcamValue":4},{"gcamCode":"c9.244","gcamValue":4},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":7},{"gcamCode":"c9.248","gcamValue":4},{"gcamCode":"c9.249","gcamValue":3},{"gcamCode":"c9.25","gcamValue":8},{"gcamCode":"c9.250","gcamValue":3},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.253","gcamValue":5},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.256","gcamValue":4},{"gcamCode":"c9.257","gcamValue":4},{"gcamCode":"c9.258","gcamValue":6},{"gcamCode":"c9.259","gcamValue":8},{"gcamCode":"c9.260","gcamValue":8},{"gcamCode":"c9.261","gcamValue":3},{"gcamCode":"c9.262","gcamValue":9},{"gcamCode":"c9.263","gcamValue":6},{"gcamCode":"c9.265","gcamValue":13},{"gcamCode":"c9.266","gcamValue":8},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":11},{"gcamCode":"c9.270","gcamValue":11},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.273","gcamValue":1},{"gcamCode":"c9.274","gcamValue":14},{"gcamCode":"c9.275","gcamValue":6},{"gcamCode":"c9.276","gcamValue":27},{"gcamCode":"c9.277","gcamValue":23},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":9},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.281","gcamValue":3},{"gcamCode":"c9.282","gcamValue":12},{"gcamCode":"c9.283","gcamValue":13},{"gcamCode":"c9.284","gcamValue":6},{"gcamCode":"c9.285","gcamValue":5},{"gcamCode":"c9.286","gcamValue":5},{"gcamCode":"c9.287","gcamValue":5},{"gcamCode":"c9.288","gcamValue":22},{"gcamCode":"c9.289","gcamValue":5},{"gcamCode":"c9.29","gcamValue":4},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":10},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":6},{"gcamCode":"c9.294","gcamValue":4},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.298","gcamValue":2},{"gcamCode":"c9.3","gcamValue":70},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.301","gcamValue":3},{"gcamCode":"c9.302","gcamValue":26},{"gcamCode":"c9.303","gcamValue":13},{"gcamCode":"c9.304","gcamValue":13},{"gcamCode":"c9.305","gcamValue":8},{"gcamCode":"c9.306","gcamValue":15},{"gcamCode":"c9.307","gcamValue":7},{"gcamCode":"c9.308","gcamValue":37},{"gcamCode":"c9.310","gcamValue":3},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":7},{"gcamCode":"c9.313","gcamValue":2},{"gcamCode":"c9.314","gcamValue":3},{"gcamCode":"c9.315","gcamValue":7},{"gcamCode":"c9.316","gcamValue":6},{"gcamCode":"c9.318","gcamValue":3},{"gcamCode":"c9.319","gcamValue":8},{"gcamCode":"c9.32","gcamValue":10},{"gcamCode":"c9.320","gcamValue":3},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":6},{"gcamCode":"c9.324","gcamValue":6},{"gcamCode":"c9.325","gcamValue":5},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":6},{"gcamCode":"c9.33","gcamValue":47},{"gcamCode":"c9.330","gcamValue":11},{"gcamCode":"c9.331","gcamValue":2},{"gcamCode":"c9.333","gcamValue":2},{"gcamCode":"c9.334","gcamValue":4},{"gcamCode":"c9.335","gcamValue":4},{"gcamCode":"c9.338","gcamValue":3},{"gcamCode":"c9.34","gcamValue":15},{"gcamCode":"c9.340","gcamValue":5},{"gcamCode":"c9.341","gcamValue":1},{"gcamCode":"c9.344","gcamValue":2},{"gcamCode":"c9.345","gcamValue":5},{"gcamCode":"c9.347","gcamValue":3},{"gcamCode":"c9.348","gcamValue":3},{"gcamCode":"c9.349","gcamValue":3},{"gcamCode":"c9.35","gcamValue":16},{"gcamCode":"c9.351","gcamValue":12},{"gcamCode":"c9.352","gcamValue":12},{"gcamCode":"c9.353","gcamValue":11},{"gcamCode":"c9.354","gcamValue":20},{"gcamCode":"c9.355","gcamValue":1},{"gcamCode":"c9.356","gcamValue":3},{"gcamCode":"c9.358","gcamValue":20},{"gcamCode":"c9.359","gcamValue":2},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.360","gcamValue":3},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.362","gcamValue":5},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.366","gcamValue":5},{"gcamCode":"c9.367","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":15},{"gcamCode":"c9.371","gcamValue":6},{"gcamCode":"c9.373","gcamValue":4},{"gcamCode":"c9.377","gcamValue":6},{"gcamCode":"c9.378","gcamValue":26},{"gcamCode":"c9.380","gcamValue":2},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.382","gcamValue":20},{"gcamCode":"c9.383","gcamValue":9},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.389","gcamValue":4},{"gcamCode":"c9.39","gcamValue":38},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.391","gcamValue":3},{"gcamCode":"c9.392","gcamValue":1},{"gcamCode":"c9.394","gcamValue":19},{"gcamCode":"c9.395","gcamValue":10},{"gcamCode":"c9.396","gcamValue":6},{"gcamCode":"c9.397","gcamValue":5},{"gcamCode":"c9.398","gcamValue":7},{"gcamCode":"c9.399","gcamValue":5},{"gcamCode":"c9.4","gcamValue":12},{"gcamCode":"c9.40","gcamValue":8},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.401","gcamValue":2},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.404","gcamValue":1},{"gcamCode":"c9.405","gcamValue":5},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.409","gcamValue":7},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.411","gcamValue":15},{"gcamCode":"c9.412","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.42","gcamValue":7},{"gcamCode":"c9.420","gcamValue":9},{"gcamCode":"c9.421","gcamValue":2},{"gcamCode":"c9.422","gcamValue":2},{"gcamCode":"c9.426","gcamValue":1},{"gcamCode":"c9.427","gcamValue":2},{"gcamCode":"c9.428","gcamValue":6},{"gcamCode":"c9.429","gcamValue":3},{"gcamCode":"c9.430","gcamValue":9},{"gcamCode":"c9.432","gcamValue":22},{"gcamCode":"c9.433","gcamValue":17},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":3},{"gcamCode":"c9.437","gcamValue":12},{"gcamCode":"c9.438","gcamValue":6},{"gcamCode":"c9.44","gcamValue":17},{"gcamCode":"c9.440","gcamValue":22},{"gcamCode":"c9.442","gcamValue":4},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.446","gcamValue":7},{"gcamCode":"c9.447","gcamValue":9},{"gcamCode":"c9.448","gcamValue":7},{"gcamCode":"c9.45","gcamValue":2},{"gcamCode":"c9.451","gcamValue":6},{"gcamCode":"c9.452","gcamValue":6},{"gcamCode":"c9.454","gcamValue":2},{"gcamCode":"c9.456","gcamValue":3},{"gcamCode":"c9.458","gcamValue":11},{"gcamCode":"c9.459","gcamValue":7},{"gcamCode":"c9.46","gcamValue":11},{"gcamCode":"c9.460","gcamValue":3},{"gcamCode":"c9.461","gcamValue":3},{"gcamCode":"c9.463","gcamValue":5},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":8},{"gcamCode":"c9.467","gcamValue":6},{"gcamCode":"c9.468","gcamValue":6},{"gcamCode":"c9.47","gcamValue":19},{"gcamCode":"c9.470","gcamValue":4},{"gcamCode":"c9.471","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":10},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.478","gcamValue":5},{"gcamCode":"c9.479","gcamValue":27},{"gcamCode":"c9.48","gcamValue":23},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":9},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":3},{"gcamCode":"c9.487","gcamValue":3},{"gcamCode":"c9.488","gcamValue":12},{"gcamCode":"c9.489","gcamValue":12},{"gcamCode":"c9.49","gcamValue":29},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.493","gcamValue":2},{"gcamCode":"c9.494","gcamValue":5},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.496","gcamValue":9},{"gcamCode":"c9.498","gcamValue":33},{"gcamCode":"c9.5","gcamValue":18},{"gcamCode":"c9.500","gcamValue":4},{"gcamCode":"c9.501","gcamValue":5},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.503","gcamValue":2},{"gcamCode":"c9.504","gcamValue":4},{"gcamCode":"c9.505","gcamValue":1},{"gcamCode":"c9.507","gcamValue":9},{"gcamCode":"c9.509","gcamValue":4},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":38},{"gcamCode":"c9.513","gcamValue":20},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.516","gcamValue":2},{"gcamCode":"c9.517","gcamValue":13},{"gcamCode":"c9.518","gcamValue":6},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":20},{"gcamCode":"c9.522","gcamValue":16},{"gcamCode":"c9.523","gcamValue":5},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":3},{"gcamCode":"c9.528","gcamValue":16},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":9},{"gcamCode":"c9.530","gcamValue":8},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":3},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":7},{"gcamCode":"c9.54","gcamValue":23},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":6},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":19},{"gcamCode":"c9.55","gcamValue":31},{"gcamCode":"c9.550","gcamValue":8},{"gcamCode":"c9.551","gcamValue":10},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":13},{"gcamCode":"c9.556","gcamValue":18},{"gcamCode":"c9.557","gcamValue":10},{"gcamCode":"c9.559","gcamValue":6},{"gcamCode":"c9.56","gcamValue":5},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":11},{"gcamCode":"c9.564","gcamValue":20},{"gcamCode":"c9.566","gcamValue":3},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.568","gcamValue":8},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":11},{"gcamCode":"c9.570","gcamValue":15},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":4},{"gcamCode":"c9.575","gcamValue":16},{"gcamCode":"c9.576","gcamValue":26},{"gcamCode":"c9.579","gcamValue":74},{"gcamCode":"c9.58","gcamValue":2},{"gcamCode":"c9.580","gcamValue":13},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":3},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.589","gcamValue":3},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":6},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.600","gcamValue":6},{"gcamCode":"c9.602","gcamValue":5},{"gcamCode":"c9.603","gcamValue":3},{"gcamCode":"c9.604","gcamValue":2},{"gcamCode":"c9.606","gcamValue":2},{"gcamCode":"c9.609","gcamValue":4},{"gcamCode":"c9.61","gcamValue":14},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.614","gcamValue":1},{"gcamCode":"c9.615","gcamValue":7},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":22},{"gcamCode":"c9.62","gcamValue":13},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":12},{"gcamCode":"c9.624","gcamValue":19},{"gcamCode":"c9.625","gcamValue":30},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":34},{"gcamCode":"c9.629","gcamValue":24},{"gcamCode":"c9.63","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":22},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":29},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.638","gcamValue":7},{"gcamCode":"c9.64","gcamValue":13},{"gcamCode":"c9.640","gcamValue":14},{"gcamCode":"c9.641","gcamValue":4},{"gcamCode":"c9.642","gcamValue":46},{"gcamCode":"c9.644","gcamValue":2},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":4},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":32},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.651","gcamValue":3},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":92},{"gcamCode":"c9.654","gcamValue":19},{"gcamCode":"c9.655","gcamValue":33},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":14},{"gcamCode":"c9.66","gcamValue":6},{"gcamCode":"c9.660","gcamValue":19},{"gcamCode":"c9.661","gcamValue":5},{"gcamCode":"c9.663","gcamValue":7},{"gcamCode":"c9.664","gcamValue":18},{"gcamCode":"c9.665","gcamValue":8},{"gcamCode":"c9.667","gcamValue":20},{"gcamCode":"c9.668","gcamValue":16},{"gcamCode":"c9.669","gcamValue":21},{"gcamCode":"c9.67","gcamValue":6},{"gcamCode":"c9.670","gcamValue":23},{"gcamCode":"c9.671","gcamValue":12},{"gcamCode":"c9.672","gcamValue":9},{"gcamCode":"c9.673","gcamValue":5},{"gcamCode":"c9.676","gcamValue":25},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.679","gcamValue":23},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.680","gcamValue":3},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":12},{"gcamCode":"c9.685","gcamValue":7},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":15},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":6},{"gcamCode":"c9.692","gcamValue":12},{"gcamCode":"c9.693","gcamValue":10},{"gcamCode":"c9.694","gcamValue":11},{"gcamCode":"c9.695","gcamValue":5},{"gcamCode":"c9.696","gcamValue":5},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":17},{"gcamCode":"c9.699","gcamValue":15},{"gcamCode":"c9.7","gcamValue":10},{"gcamCode":"c9.70","gcamValue":20},{"gcamCode":"c9.700","gcamValue":1},{"gcamCode":"c9.701","gcamValue":46},{"gcamCode":"c9.702","gcamValue":4},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":29},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.706","gcamValue":1},{"gcamCode":"c9.708","gcamValue":13},{"gcamCode":"c9.71","gcamValue":15},{"gcamCode":"c9.710","gcamValue":17},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":3},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":4},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.717","gcamValue":15},{"gcamCode":"c9.718","gcamValue":3},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.72","gcamValue":4},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":6},{"gcamCode":"c9.724","gcamValue":34},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":89},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.73","gcamValue":17},{"gcamCode":"c9.730","gcamValue":73},{"gcamCode":"c9.731","gcamValue":16},{"gcamCode":"c9.732","gcamValue":6},{"gcamCode":"c9.733","gcamValue":11},{"gcamCode":"c9.734","gcamValue":9},{"gcamCode":"c9.735","gcamValue":15},{"gcamCode":"c9.736","gcamValue":16},{"gcamCode":"c9.737","gcamValue":8},{"gcamCode":"c9.739","gcamValue":7},{"gcamCode":"c9.74","gcamValue":4},{"gcamCode":"c9.740","gcamValue":11},{"gcamCode":"c9.741","gcamValue":15},{"gcamCode":"c9.742","gcamValue":32},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":16},{"gcamCode":"c9.747","gcamValue":3},{"gcamCode":"c9.748","gcamValue":48},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.75","gcamValue":14},{"gcamCode":"c9.750","gcamValue":9},{"gcamCode":"c9.751","gcamValue":4},{"gcamCode":"c9.752","gcamValue":3},{"gcamCode":"c9.754","gcamValue":12},{"gcamCode":"c9.755","gcamValue":13},{"gcamCode":"c9.756","gcamValue":5},{"gcamCode":"c9.757","gcamValue":12},{"gcamCode":"c9.758","gcamValue":3},{"gcamCode":"c9.759","gcamValue":9},{"gcamCode":"c9.76","gcamValue":23},{"gcamCode":"c9.760","gcamValue":6},{"gcamCode":"c9.761","gcamValue":7},{"gcamCode":"c9.762","gcamValue":70},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":3},{"gcamCode":"c9.766","gcamValue":39},{"gcamCode":"c9.767","gcamValue":91},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.770","gcamValue":6},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":4},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":12},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":8},{"gcamCode":"c9.780","gcamValue":9},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":7},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.786","gcamValue":3},{"gcamCode":"c9.788","gcamValue":3},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":5},{"gcamCode":"c9.790","gcamValue":38},{"gcamCode":"c9.792","gcamValue":21},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.794","gcamValue":2},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":8},{"gcamCode":"c9.8","gcamValue":12},{"gcamCode":"c9.80","gcamValue":15},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.802","gcamValue":21},{"gcamCode":"c9.803","gcamValue":2},{"gcamCode":"c9.804","gcamValue":3},{"gcamCode":"c9.806","gcamValue":15},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":11},{"gcamCode":"c9.810","gcamValue":2},{"gcamCode":"c9.812","gcamValue":19},{"gcamCode":"c9.813","gcamValue":3},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.815","gcamValue":3},{"gcamCode":"c9.816","gcamValue":37},{"gcamCode":"c9.817","gcamValue":11},{"gcamCode":"c9.818","gcamValue":6},{"gcamCode":"c9.82","gcamValue":17},{"gcamCode":"c9.820","gcamValue":8},{"gcamCode":"c9.821","gcamValue":10},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":4},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.825","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":2},{"gcamCode":"c9.828","gcamValue":2},{"gcamCode":"c9.83","gcamValue":25},{"gcamCode":"c9.830","gcamValue":3},{"gcamCode":"c9.831","gcamValue":11},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":7},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":5},{"gcamCode":"c9.843","gcamValue":5},{"gcamCode":"c9.844","gcamValue":6},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.846","gcamValue":13},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":11},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":4},{"gcamCode":"c9.851","gcamValue":15},{"gcamCode":"c9.852","gcamValue":8},{"gcamCode":"c9.853","gcamValue":5},{"gcamCode":"c9.855","gcamValue":4},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":7},{"gcamCode":"c9.858","gcamValue":8},{"gcamCode":"c9.86","gcamValue":13},{"gcamCode":"c9.860","gcamValue":30},{"gcamCode":"c9.861","gcamValue":6},{"gcamCode":"c9.862","gcamValue":8},{"gcamCode":"c9.863","gcamValue":14},{"gcamCode":"c9.864","gcamValue":83},{"gcamCode":"c9.865","gcamValue":11},{"gcamCode":"c9.866","gcamValue":19},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":69},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.871","gcamValue":8},{"gcamCode":"c9.873","gcamValue":11},{"gcamCode":"c9.874","gcamValue":6},{"gcamCode":"c9.875","gcamValue":8},{"gcamCode":"c9.877","gcamValue":68},{"gcamCode":"c9.879","gcamValue":10},{"gcamCode":"c9.88","gcamValue":6},{"gcamCode":"c9.882","gcamValue":23},{"gcamCode":"c9.883","gcamValue":5},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.885","gcamValue":3},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":8},{"gcamCode":"c9.891","gcamValue":4},{"gcamCode":"c9.893","gcamValue":4},{"gcamCode":"c9.894","gcamValue":4},{"gcamCode":"c9.896","gcamValue":4},{"gcamCode":"c9.897","gcamValue":6},{"gcamCode":"c9.898","gcamValue":7},{"gcamCode":"c9.899","gcamValue":4},{"gcamCode":"c9.9","gcamValue":3},{"gcamCode":"c9.90","gcamValue":7},{"gcamCode":"c9.900","gcamValue":7},{"gcamCode":"c9.901","gcamValue":10},{"gcamCode":"c9.902","gcamValue":4},{"gcamCode":"c9.903","gcamValue":39},{"gcamCode":"c9.904","gcamValue":9},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":26},{"gcamCode":"c9.909","gcamValue":3},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":29},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.915","gcamValue":6},{"gcamCode":"c9.916","gcamValue":5},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":7},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":12},{"gcamCode":"c9.921","gcamValue":17},{"gcamCode":"c9.923","gcamValue":13},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":20},{"gcamCode":"c9.927","gcamValue":2},{"gcamCode":"c9.928","gcamValue":3},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":15},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":11},{"gcamCode":"c9.933","gcamValue":6},{"gcamCode":"c9.935","gcamValue":53},{"gcamCode":"c9.937","gcamValue":7},{"gcamCode":"c9.938","gcamValue":10},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.941","gcamValue":4},{"gcamCode":"c9.942","gcamValue":6},{"gcamCode":"c9.944","gcamValue":1},{"gcamCode":"c9.945","gcamValue":7},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.95","gcamValue":5},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":14},{"gcamCode":"c9.96","gcamValue":16},{"gcamCode":"c9.962","gcamValue":13},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.967","gcamValue":3},{"gcamCode":"c9.968","gcamValue":8},{"gcamCode":"c9.969","gcamValue":4},{"gcamCode":"c9.970","gcamValue":1},{"gcamCode":"c9.971","gcamValue":2},{"gcamCode":"c9.972","gcamValue":16},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.974","gcamValue":4},{"gcamCode":"c9.978","gcamValue":27},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":30},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":13},{"gcamCode":"c9.985","gcamValue":11},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.987","gcamValue":4},{"gcamCode":"c9.988","gcamValue":3},{"gcamCode":"c9.99","gcamValue":7},{"gcamCode":"c9.990","gcamValue":3},{"gcamCode":"c9.994","gcamValue":3},{"gcamCode":"c9.995","gcamValue":12},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":9},{"gcamCode":"v10.1","gcamValue":0.267414398341122},{"gcamCode":"v10.2","gcamValue":0.271476371735442},{"gcamCode":"v11.1","gcamValue":0.143685670955882},{"gcamCode":"v19.1","gcamValue":6.40819277108434},{"gcamCode":"v19.2","gcamValue":5.08728915662651},{"gcamCode":"v19.3","gcamValue":5.53704819277109},{"gcamCode":"v19.4","gcamValue":6.34984939759036},{"gcamCode":"v19.5","gcamValue":5.11512048192771},{"gcamCode":"v19.6","gcamValue":5.56734939759036},{"gcamCode":"v19.7","gcamValue":6.44412650602409},{"gcamCode":"v19.8","gcamValue":5.07454819277109},{"gcamCode":"v19.9","gcamValue":5.47753012048193},{"gcamCode":"v20.1","gcamValue":0.580181818181818},{"gcamCode":"v20.10","gcamValue":-0.744142857142857},{"gcamCode":"v20.11","gcamValue":0.597851851851852},{"gcamCode":"v20.12","gcamValue":-0.701058823529412},{"gcamCode":"v20.13","gcamValue":0.397191082802548},{"gcamCode":"v20.14","gcamValue":-0.573666666666667},{"gcamCode":"v20.15","gcamValue":0.359686274509804},{"gcamCode":"v20.16","gcamValue":-0.373084507042254},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.616615384615385},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.651066666666667},{"gcamCode":"v20.6","gcamValue":-0.742545454545455},{"gcamCode":"v20.7","gcamValue":0.651066666666667},{"gcamCode":"v20.8","gcamValue":-0.744142857142857},{"gcamCode":"v20.9","gcamValue":0.639052631578947},{"gcamCode":"v21.1","gcamValue":5.69080094228499},{"gcamCode":"v26.1","gcamValue":1.6016393442623}]https://www.gannett-cdn.com/authoring/2019/05/15/PCHH/e90b3425-615f-46a5-9ef3-8588626239f6-Ocean_CIty_Night_in_Venice_parade_cineoc_217.jpg?crop=1206,681,x0,y0&fit=bounds[""][""]["https://youtube.com/vrtuallythere","https://youtube.com/vrtuallythere\\"][][{"name":"Memorial Day","charOffset":64},{"name":"South Jersey","charOffset":602},{"name":"Summer Bucket List","charOffset":738},{"name":"South Jersey","charOffset":998},{"name":"Air Fest","charOffset":1046},{"name":"World War","charOffset":1158},{"name":"Naval Air Station Wildwood Aviation Museum","charOffset":1253},{"name":"Cape May Airport","charOffset":1335},{"name":"Sand Beer","charOffset":2047},{"name":"May County Park","charOffset":2354},{"name":"Cape May Courthouse","charOffset":2385},{"name":"Cape Park County Park","charOffset":2499},{"name":"Cape May Zoo","charOffset":2955},{"name":"Tree Adventure","charOffset":3013},{"name":"Mount Laurel","charOffset":3373},{"name":"Splashin' Speedway","charOffset":3729},{"name":"Burlington City","charOffset":4704},{"name":"Curtin Marina","charOffset":4780},{"name":"Delaware River","charOffset":4827},{"name":"Burlington City","charOffset":4846},{"name":"New Jersey","charOffset":4913},{"name":"Recreation Area","charOffset":5692},{"name":"Wharton State Forest","charOffset":5739},{"name":"Burlington County","charOffset":5794},{"name":"Memorial Day","charOffset":5879},{"name":"Labor Day","charOffset":5892},{"name":"Huber Prairie Warbler Preserve","charOffset":6483},{"name":"Walt Whitman","charOffset":7091},{"name":"Historic Crystal Spring","charOffset":7125},{"name":"Laurel Springs","charOffset":7143},{"name":"Tammy Paolino","charOffset":7252},{"name":"Cherry Hill","charOffset":7269},{"name":"Walt Whitman House","charOffset":7653},{"name":"Luther King","charOffset":7680},{"name":"Rutgers University-Camden","charOffset":7760},{"name":"Stedman Art Gallery","charOffset":7781},{"name":"Cold Spring Harbor","charOffset":8450},{"name":"Historic Cold Spring Village","charOffset":8718},{"name":"Ocean City","charOffset":9639},{"name":"Chubby Checker","charOffset":9805},{"name":"Ocean City Music","charOffset":9957},{"name":"Ocean City-Longport Bridge","charOffset":10125},{"name":"Wildwood Beer Fest","charOffset":10307},{"name":"Fox Park June","charOffset":10410},{"name":"Wildwood Beer","charOffset":10454},{"name":"Island Entertainment","charOffset":11198},{"name":"North Wildwood","charOffset":11354},{"name":"Island Entertainment","charOffset":11513},{"name":"Hawaiian Islands","charOffset":11679},{"name":"New Zealand","charOffset":11707},{"name":"Seaport Pier","charOffset":11742},{"name":"North Wildwood","charOffset":11760},{"name":"Seaport Pier","charOffset":11853},{"name":"Atlantic City Airshow","charOffset":12026},{"name":"Atlantic City","charOffset":12117},{"name":"Bayshore Center","charOffset":12406},{"name":"Bayshore Center","charOffset":12584},{"name":"Down Memory Lane","charOffset":13122},{"name":"Landis Avenue","charOffset":13204},{"name":"Cruise Down Memory Lane","charOffset":13237},{"name":"Street Vineland","charOffset":13553},{"name":"Cruise Down Memory Lane Committee","charOffset":13616},{"name":"City Blackjacks","charOffset":13974},{"name":"Atlantic City Blackjacks","charOffset":14097},{"name":"Arena Football League","charOffset":14128},{"name":"Boardwalk Hall","charOffset":14208},{"name":"Memorial Day","charOffset":14227},{"name":"Philadelphia Soul","charOffset":14280},{"name":"David Crosby","charOffset":14490},{"name":"Cooper River Park","charOffset":14571},{"name":"Wiggins Park","charOffset":15033},{"name":"Camden Waterfront","charOffset":15058},{"name":"Cumberland County Fair","charOffset":15639},{"name":"Burlington County Fair","charOffset":15712},{"name":"Springfield Township","charOffset":15738},{"name":"Gloucester County","charOffset":15791},{"name":"Peach Festival","charOffset":15821},{"name":"Mullica Hill","charOffset":15839},{"name":"Salem County Fair","charOffset":15888},{"name":"Crown Ice Cream","charOffset":15956},{"name":"Royale Crown Ice Cream","charOffset":16047},{"name":"White Horse Pike","charOffset":16104},{"name":"Blueberry Capital","charOffset":16355}][{"amount":500,"amountType":"Forrestal Road","charOffset":1048},{"amount":16,"amountType":"dollars for adults","charOffset":1148},{"amount":12,"amountType":"dollars for children ages 3","charOffset":1161},{"amount":8,"amountType":"Sand Beer Co","charOffset":1583},{"amount":323,"amountType":"is located at 115","charOffset":1744},{"amount":26,"amountType":"dollars ","charOffset":2926},{"amount":20,"amountType":"dollars ","charOffset":3207},{"amount":45,"amountType":"dollars ","charOffset":3212},{"amount":501,"amountType":"East Pearl Street","charOffset":4115},{"amount":206,"amountType":"South","charOffset":4475},{"amount":5,"amountType":"dollars ","charOffset":4818},{"amount":10,"amountType":"dollars a carload per day","charOffset":4823},{"amount":10,"amountType":"dollars ","charOffset":4855},{"amount":20,"amountType":"dollars on weekends","charOffset":4860},{"amount":715,"amountType":"Route 206","charOffset":4874},{"amount":449,"amountType":"Sooy Place Road","charOffset":5360},{"amount":328,"amountType":"Martin Luther King Drive","charOffset":5929},{"amount":15,"amountType":"with its military weekend","charOffset":7106},{"amount":14,"amountType":"dollars for adults","charOffset":7216},{"amount":12,"amountType":"dollars for children #xA0","charOffset":7231},{"amount":40,"amountType":"breweries will be on","charOffset":7973},{"amount":2,"amountType":"sessions","charOffset":8071},{"amount":100,"amountType":"beers","charOffset":8190},{"amount":40,"amountType":"dollars plus taxes","charOffset":8381},{"amount":45,"amountType":"dollars plus taxes","charOffset":8419},{"amount":3,"amountType":"times during the afternoon","charOffset":9859},{"amount":3,"amountType":"home games remaining at","charOffset":10962},{"amount":7,"amountType":"p m Visit the","charOffset":11077},{"amount":4,"amountType":"of July celebration","charOffset":11623}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://acblackjacks.com;http://curtinsmarina.net/;http://funplexmountlaurel.com/;http://www.camdencounty.com/enjoy-camden-county/entertainment/;http://www.ocnj.us/niv/;https://airshow.acchamber.com/;https://bayshorecenter.org/;https://capemaycountynj.gov/1008/Park-Zoo;https://hcsv.org/cold-spring-brewery/;https://seaportpier.com/;https://thefaf.net/events/;https://usnasw.org/;https://wildwoodbeerfest.com/;https://www.TheAve.biz;https://www.njconservation.org/preserve/franklin-parker-preserve/;https://www.njconservation.org/preserve/michael-huber-prairie-warbler-preserve/;https://www.visitnj.org/nj-parks-forests-nature/atsion-recreation-area;https://www.whitmanat200.org/events-by-month</PAGE_LINKS><PAGE_ALTURL_AMP>https://amp.thedailyjournal.com/amp/3744892002</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBottawasun.comhttps://ottawasun.com/pmn/press-releases-pmn/business-wire-news-releases-pmn/bermuda-team-connects-with-fintech-leaders-in-toronto/wcm/a758f520-be13-44ab-a836-381505e52a65[][]["SCIENCE","SOC_INNOVATION","ECON_ENTREPRENEURSHIP","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_REGULATION","EPU_CATS_REGULATION","TAX_ETHNICITY","TAX_ETHNICITY_CANADIAN","PROTEST","EPU_POLICY_WHITE_HOUSE","TAX_FNCACT","TAX_FNCACT_CORRESPONDENT","EPU_POLICY_REGULATORY","TAX_FNCACT_REGULATOR","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","EPU_ECONOMY_HISTORIC","SLFID_ECONOMIC_DEVELOPMENTAID","TAX_FNCACT_CHIEF","TAX_FNCACT_CEO","TAX_FNCACT_REPRESENTATIVES","SOC_EMERGINGTECH","MANMADE_DISASTER_IMPLIED","WB_728_PUBLIC_SERVICE_DELIVERY","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_723_PUBLIC_ADMINISTRATION","WB_2098_OUTSOURCING","TAX_ETHNICITY_AMERICAN","URBAN","TAX_FNCACT_EXECUTIVES","WB_1973_FINANCIAL_RISK_REDUCTION","WB_435_AGRICULTURE_AND_FOOD_SECURITY","WB_337_INSURANCE","WB_1967_AGRICULTURAL_RISK_AND_SECURITY","TAX_FNCACT_ENGINEER","WB_2409_COCREATION","WB_2399_ICT_INNOVATION_AND_TRANSFORMATION","WB_2401_ICT_INNOVATION_METHODOLOGIES","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","EDUCATION","WB_470_EDUCATION","WB_494_EDUCATION_AND_ICT","WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","TAX_ETHNICITY_BERMUDIAN","TAX_FNCACT_ENTREPRENEUR","TAX_FNCACT_FOUNDER","WB_2207_THEMATIC_BASED_PPPS","WB_2206_PUBLIC_PRIVATE_PARTNERSHIPS","WB_999_PPP_IN_IRRIGATION","TAX_FNCACT_OFFICIALS"][{"theme":"GENERAL_GOVERNMENT","charOffset":1433},{"theme":"GENERAL_GOVERNMENT","charOffset":2689},{"theme":"GENERAL_GOVERNMENT","charOffset":4159},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1433},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2689},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":4159},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1990},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3539},{"theme":"ECON_ENTREPRENEURSHIP","charOffset":153},{"theme":"ECON_ENTREPRENEURSHIP","charOffset":1741},{"theme":"WB_1973_FINANCIAL_RISK_REDUCTION","charOffset":2701},{"theme":"WB_435_AGRICULTURE_AND_FOOD_SECURITY","charOffset":2701},{"theme":"WB_337_INSURANCE","charOffset":2701},{"theme":"WB_1967_AGRICULTURAL_RISK_AND_SECURITY","charOffset":2701},{"theme":"TAX_FNCACT_CORRESPONDENT","charOffset":722},{"theme":"WB_2207_THEMATIC_BASED_PPPS","charOffset":4050},{"theme":"WB_2206_PUBLIC_PRIVATE_PARTNERSHIPS","charOffset":4050},{"theme":"WB_999_PPP_IN_IRRIGATION","charOffset":4050},{"theme":"SOC_EMERGINGTECH","charOffset":1794},{"theme":"TAX_FNCACT_REPRESENTATIVES","charOffset":1650},{"theme":"TAX_FNCACT_EXECUTIVES","charOffset":2530},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":2355},{"theme":"TAX_FNCACT_CHIEF","charOffset":1526},{"theme":"TAX_FNCACT_ENGINEER","charOffset":2840},{"theme":"EPU_POLICY_REGULATORY","charOffset":846},{"theme":"EPU_POLICY_REGULATORY","charOffset":4106},{"theme":"EDUCATION","charOffset":3573},{"theme":"WB_470_EDUCATION","charOffset":3573},{"theme":"WB_2409_COCREATION","charOffset":2934},{"theme":"WB_2399_ICT_INNOVATION_AND_TRANSFORMATION","charOffset":2934},{"theme":"WB_2401_ICT_INNOVATION_METHODOLOGIES","charOffset":2934},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":2934},{"theme":"TAX_FNCACT_REGULATOR","charOffset":1156},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1467},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1622},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":3176},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":3875},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4222},{"theme":"PROTEST","charOffset":614},{"theme":"TAX_FNCACT_ENTREPRENEUR","charOffset":3614},{"theme":"URBAN","charOffset":2454},{"theme":"SLFID_ECONOMIC_DEVELOPMENTAID","charOffset":1486},{"theme":"TAX_FNCACT_CEO","charOffset":1566},{"theme":"TAX_FNCACT_FOUNDER","charOffset":3636},{"theme":"TAX_ETHNICITY_BERMUDIAN","charOffset":3601},{"theme":"WB_494_EDUCATION_AND_ICT","charOffset":3584},{"theme":"WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","charOffset":3584},{"theme":"TAX_ETHNICITY_CANADIAN","charOffset":510},{"theme":"USPEC_POLICY1","charOffset":314},{"theme":"USPEC_POLICY1","charOffset":645},{"theme":"EPU_POLICY_REGULATION","charOffset":314},{"theme":"EPU_POLICY_REGULATION","charOffset":645},{"theme":"EPU_CATS_REGULATION","charOffset":314},{"theme":"EPU_CATS_REGULATION","charOffset":645},{"theme":"SCIENCE","charOffset":96},{"theme":"SCIENCE","charOffset":293},{"theme":"SCIENCE","charOffset":658},{"theme":"SCIENCE","charOffset":2776},{"theme":"SCIENCE","charOffset":2876},{"theme":"SOC_INNOVATION","charOffset":96},{"theme":"SOC_INNOVATION","charOffset":293},{"theme":"SOC_INNOVATION","charOffset":658},{"theme":"SOC_INNOVATION","charOffset":2776},{"theme":"SOC_INNOVATION","charOffset":2876},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":4116},{"theme":"WB_728_PUBLIC_SERVICE_DELIVERY","charOffset":2323},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":2323},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":2323},{"theme":"WB_2098_OUTSOURCING","charOffset":2323},{"theme":"EPU_POLICY_WHITE_HOUSE","charOffset":693}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"}][{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":7},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":164},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":340},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":1688},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":2462},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":3159},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":3210},{"location":{"geoType":"WORLDCITY","geoName":"Toronto, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12686","geoPoint":{"latitude":43.6667,"longitude":-79.4167},"featureId":"-574890"},"charOffset":3732},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":31},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":835},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1084},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1398},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1458},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":1925},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":2495},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":2992},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":3374},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":3791},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":3838},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":4148},{"location":{"geoType":"COUNTRY","geoName":"Bermuda","countryCode":"BD","adm1Code":"BD","adm2Code":"","geoPoint":{"latitude":32.333332,"longitude":-64.75},"featureId":"BD"},"charOffset":4233},{"location":{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":693},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":199},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2271},{"location":{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},"charOffset":678},{"location":{"geoType":"COUNTRY","geoName":"Canadian","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":510},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2355},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":15},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":172},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":348},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":2470},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":2546},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3167},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3218},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3285},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3740}]["andy burrows","mitch ocampo","philip crowther","david burt","adam hitchcock"][{"person":"Andy Burrows","charOffset":1579},{"person":"Mitch Ocampo","charOffset":2818},{"person":"Philip Crowther","charOffset":738},{"person":"David Burt","charOffset":50},{"person":"Adam Hitchcock","charOffset":772}]["bermuda business development agency","toronto finance international","white house","bermuda monetary authority","reinsurance group of america","toronto business development centre","enercare centre","team bermuda","berkshire hathaway","accenture","studio innovation lab"][{"organisation":"Bermuda Business Development Agency","charOffset":1486},{"organisation":"White House","charOffset":693},{"organisation":"Bermuda Monetary Authority","charOffset":1103},{"organisation":"Reinsurance Group Of America","charOffset":2271},{"organisation":"Enercare Centre","charOffset":493},{"organisation":"Team Bermuda","charOffset":2495},{"organisation":"Team Bermuda","charOffset":2992},{"organisation":"Team Bermuda","charOffset":3791},{"organisation":"Berkshire Hathaway","charOffset":2567},{"organisation":"Accenture","charOffset":3125},{"organisation":"Studio Innovation Lab","charOffset":2880}]{"tone":3.652968,"positiveScore":4.261796,"negativeScore":0.608828,"polarity":4.870624,"activityReferenceDensity":18.72146,"selfGroupReferenceDensity":2.130898,"wordCount":589}[][{"gcamCode":"wc","gcamValue":589},{"gcamCode":"c1.2","gcamValue":7},{"gcamCode":"c12.1","gcamValue":15},{"gcamCode":"c12.10","gcamValue":44},{"gcamCode":"c12.12","gcamValue":8},{"gcamCode":"c12.13","gcamValue":10},{"gcamCode":"c12.14","gcamValue":30},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":9},{"gcamCode":"c12.8","gcamValue":11},{"gcamCode":"c12.9","gcamValue":42},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c14.1","gcamValue":31},{"gcamCode":"c14.10","gcamValue":13},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":18},{"gcamCode":"c14.3","gcamValue":43},{"gcamCode":"c14.4","gcamValue":8},{"gcamCode":"c14.5","gcamValue":43},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.8","gcamValue":5},{"gcamCode":"c14.9","gcamValue":5},{"gcamCode":"c15.102","gcamValue":3},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.114","gcamValue":1},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.226","gcamValue":1},{"gcamCode":"c15.227","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":23},{"gcamCode":"c16.101","gcamValue":4},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":17},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":28},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":74},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":27},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":13},{"gcamCode":"c16.117","gcamValue":14},{"gcamCode":"c16.118","gcamValue":25},{"gcamCode":"c16.12","gcamValue":43},{"gcamCode":"c16.120","gcamValue":32},{"gcamCode":"c16.121","gcamValue":45},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":4},{"gcamCode":"c16.125","gcamValue":33},{"gcamCode":"c16.126","gcamValue":27},{"gcamCode":"c16.127","gcamValue":48},{"gcamCode":"c16.128","gcamValue":8},{"gcamCode":"c16.129","gcamValue":40},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":23},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":39},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":14},{"gcamCode":"c16.139","gcamValue":17},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":7},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":30},{"gcamCode":"c16.146","gcamValue":40},{"gcamCode":"c16.148","gcamValue":1},{"gcamCode":"c16.149","gcamValue":3},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.153","gcamValue":22},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":23},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":36},{"gcamCode":"c16.16","gcamValue":9},{"gcamCode":"c16.161","gcamValue":48},{"gcamCode":"c16.162","gcamValue":30},{"gcamCode":"c16.163","gcamValue":38},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":9},{"gcamCode":"c16.2","gcamValue":63},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":4},{"gcamCode":"c16.22","gcamValue":10},{"gcamCode":"c16.23","gcamValue":11},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":66},{"gcamCode":"c16.27","gcamValue":5},{"gcamCode":"c16.28","gcamValue":5},{"gcamCode":"c16.29","gcamValue":3},{"gcamCode":"c16.3","gcamValue":13},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":47},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":49},{"gcamCode":"c16.34","gcamValue":9},{"gcamCode":"c16.35","gcamValue":28},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":52},{"gcamCode":"c16.38","gcamValue":22},{"gcamCode":"c16.4","gcamValue":34},{"gcamCode":"c16.41","gcamValue":19},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":18},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":82},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":14},{"gcamCode":"c16.52","gcamValue":44},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":19},{"gcamCode":"c16.57","gcamValue":283},{"gcamCode":"c16.58","gcamValue":30},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":47},{"gcamCode":"c16.60","gcamValue":11},{"gcamCode":"c16.61","gcamValue":6},{"gcamCode":"c16.62","gcamValue":16},{"gcamCode":"c16.63","gcamValue":11},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":6},{"gcamCode":"c16.66","gcamValue":11},{"gcamCode":"c16.68","gcamValue":22},{"gcamCode":"c16.69","gcamValue":16},{"gcamCode":"c16.7","gcamValue":14},{"gcamCode":"c16.70","gcamValue":30},{"gcamCode":"c16.71","gcamValue":9},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":7},{"gcamCode":"c16.75","gcamValue":19},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":7},{"gcamCode":"c16.79","gcamValue":6},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.84","gcamValue":45},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":47},{"gcamCode":"c16.88","gcamValue":46},{"gcamCode":"c16.89","gcamValue":13},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":22},{"gcamCode":"c16.91","gcamValue":23},{"gcamCode":"c16.92","gcamValue":32},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":40},{"gcamCode":"c16.95","gcamValue":28},{"gcamCode":"c16.96","gcamValue":14},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":38},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":124},{"gcamCode":"c17.10","gcamValue":64},{"gcamCode":"c17.11","gcamValue":74},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":43},{"gcamCode":"c17.16","gcamValue":32},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":9},{"gcamCode":"c17.19","gcamValue":27},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":4},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":13},{"gcamCode":"c17.23","gcamValue":7},{"gcamCode":"c17.24","gcamValue":43},{"gcamCode":"c17.25","gcamValue":7},{"gcamCode":"c17.26","gcamValue":4},{"gcamCode":"c17.27","gcamValue":53},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":31},{"gcamCode":"c17.32","gcamValue":19},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":17},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":20},{"gcamCode":"c17.37","gcamValue":24},{"gcamCode":"c17.38","gcamValue":7},{"gcamCode":"c17.39","gcamValue":28},{"gcamCode":"c17.4","gcamValue":88},{"gcamCode":"c17.40","gcamValue":7},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":28},{"gcamCode":"c17.43","gcamValue":21},{"gcamCode":"c17.5","gcamValue":113},{"gcamCode":"c17.6","gcamValue":6},{"gcamCode":"c17.7","gcamValue":79},{"gcamCode":"c17.8","gcamValue":50},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.147","gcamValue":1},{"gcamCode":"c18.178","gcamValue":3},{"gcamCode":"c18.180","gcamValue":4},{"gcamCode":"c18.193","gcamValue":10},{"gcamCode":"c18.199","gcamValue":1},{"gcamCode":"c18.219","gcamValue":1},{"gcamCode":"c18.3","gcamValue":1},{"gcamCode":"c18.305","gcamValue":1},{"gcamCode":"c18.333","gcamValue":6},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.35","gcamValue":6},{"gcamCode":"c18.66","gcamValue":1},{"gcamCode":"c18.82","gcamValue":5},{"gcamCode":"c2.1","gcamValue":11},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":13},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":51},{"gcamCode":"c2.106","gcamValue":10},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":17},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":16},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":11},{"gcamCode":"c2.119","gcamValue":169},{"gcamCode":"c2.12","gcamValue":18},{"gcamCode":"c2.121","gcamValue":28},{"gcamCode":"c2.122","gcamValue":5},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.124","gcamValue":9},{"gcamCode":"c2.125","gcamValue":12},{"gcamCode":"c2.126","gcamValue":22},{"gcamCode":"c2.127","gcamValue":51},{"gcamCode":"c2.128","gcamValue":15},{"gcamCode":"c2.129","gcamValue":45},{"gcamCode":"c2.131","gcamValue":5},{"gcamCode":"c2.132","gcamValue":11},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":39},{"gcamCode":"c2.141","gcamValue":12},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":40},{"gcamCode":"c2.144","gcamValue":8},{"gcamCode":"c2.145","gcamValue":7},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":94},{"gcamCode":"c2.148","gcamValue":35},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":32},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":19},{"gcamCode":"c2.154","gcamValue":18},{"gcamCode":"c2.155","gcamValue":59},{"gcamCode":"c2.156","gcamValue":23},{"gcamCode":"c2.157","gcamValue":43},{"gcamCode":"c2.158","gcamValue":27},{"gcamCode":"c2.159","gcamValue":3},{"gcamCode":"c2.160","gcamValue":25},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.169","gcamValue":6},{"gcamCode":"c2.17","gcamValue":4},{"gcamCode":"c2.170","gcamValue":6},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":5},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":28},{"gcamCode":"c2.179","gcamValue":20},{"gcamCode":"c2.18","gcamValue":16},{"gcamCode":"c2.180","gcamValue":16},{"gcamCode":"c2.181","gcamValue":26},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":109},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":24},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.190","gcamValue":2},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":8},{"gcamCode":"c2.193","gcamValue":24},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":64},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":40},{"gcamCode":"c2.199","gcamValue":15},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":18},{"gcamCode":"c2.204","gcamValue":35},{"gcamCode":"c2.205","gcamValue":8},{"gcamCode":"c2.206","gcamValue":11},{"gcamCode":"c2.207","gcamValue":7},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":51},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":5},{"gcamCode":"c2.214","gcamValue":21},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":6},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":17},{"gcamCode":"c2.223","gcamValue":17},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":12},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":19},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":25},{"gcamCode":"c2.26","gcamValue":24},{"gcamCode":"c2.27","gcamValue":24},{"gcamCode":"c2.28","gcamValue":8},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":18},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":26},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":8},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":84},{"gcamCode":"c2.44","gcamValue":40},{"gcamCode":"c2.45","gcamValue":52},{"gcamCode":"c2.46","gcamValue":41},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":17},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":32},{"gcamCode":"c2.53","gcamValue":3},{"gcamCode":"c2.54","gcamValue":41},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.57","gcamValue":5},{"gcamCode":"c2.58","gcamValue":29},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":5},{"gcamCode":"c2.62","gcamValue":17},{"gcamCode":"c2.64","gcamValue":8},{"gcamCode":"c2.65","gcamValue":4},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.73","gcamValue":9},{"gcamCode":"c2.74","gcamValue":6},{"gcamCode":"c2.75","gcamValue":92},{"gcamCode":"c2.76","gcamValue":352},{"gcamCode":"c2.77","gcamValue":46},{"gcamCode":"c2.78","gcamValue":74},{"gcamCode":"c2.79","gcamValue":10},{"gcamCode":"c2.80","gcamValue":70},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":19},{"gcamCode":"c2.83","gcamValue":5},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":20},{"gcamCode":"c2.87","gcamValue":6},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":18},{"gcamCode":"c2.9","gcamValue":8},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":7},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":77},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":7},{"gcamCode":"c2.98","gcamValue":22},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":5},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":13},{"gcamCode":"c3.2","gcamValue":42},{"gcamCode":"c35.1","gcamValue":10},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":10},{"gcamCode":"c35.14","gcamValue":8},{"gcamCode":"c35.15","gcamValue":20},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":16},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.3","gcamValue":9},{"gcamCode":"c35.31","gcamValue":50},{"gcamCode":"c35.32","gcamValue":29},{"gcamCode":"c35.33","gcamValue":22},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":10},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.19","gcamValue":7},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.3","gcamValue":15},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":18},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":15},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":8},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.20","gcamValue":1},{"gcamCode":"c4.23","gcamValue":16},{"gcamCode":"c4.24","gcamValue":6},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":30},{"gcamCode":"c5.10","gcamValue":33},{"gcamCode":"c5.11","gcamValue":14},{"gcamCode":"c5.12","gcamValue":61},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":3},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":4},{"gcamCode":"c5.23","gcamValue":12},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.25","gcamValue":3},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":11},{"gcamCode":"c5.29","gcamValue":7},{"gcamCode":"c5.30","gcamValue":41},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":12},{"gcamCode":"c5.36","gcamValue":15},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.38","gcamValue":5},{"gcamCode":"c5.4","gcamValue":12},{"gcamCode":"c5.40","gcamValue":49},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":13},{"gcamCode":"c5.46","gcamValue":88},{"gcamCode":"c5.47","gcamValue":14},{"gcamCode":"c5.49","gcamValue":44},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":50},{"gcamCode":"c5.51","gcamValue":28},{"gcamCode":"c5.52","gcamValue":55},{"gcamCode":"c5.53","gcamValue":54},{"gcamCode":"c5.54","gcamValue":21},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":11},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":23},{"gcamCode":"c5.60","gcamValue":16},{"gcamCode":"c5.61","gcamValue":37},{"gcamCode":"c5.62","gcamValue":228},{"gcamCode":"c5.7","gcamValue":18},{"gcamCode":"c5.8","gcamValue":43},{"gcamCode":"c5.9","gcamValue":17},{"gcamCode":"c6.1","gcamValue":12},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":4},{"gcamCode":"c6.5","gcamValue":20},{"gcamCode":"c7.1","gcamValue":8},{"gcamCode":"c7.2","gcamValue":32},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.15","gcamValue":2},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":16},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":3},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":8},{"gcamCode":"c8.38","gcamValue":21},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":16},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.42","gcamValue":23},{"gcamCode":"c8.43","gcamValue":11},{"gcamCode":"c9.1","gcamValue":20},{"gcamCode":"c9.10","gcamValue":6},{"gcamCode":"c9.100","gcamValue":3},{"gcamCode":"c9.1005","gcamValue":5},{"gcamCode":"c9.1007","gcamValue":5},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.104","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.11","gcamValue":2},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":7},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":20},{"gcamCode":"c9.129","gcamValue":7},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":6},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":5},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":7},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":20},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":4},{"gcamCode":"c9.162","gcamValue":7},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":9},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":4},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":11},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.200","gcamValue":5},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":5},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.211","gcamValue":3},{"gcamCode":"c9.212","gcamValue":3},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.22","gcamValue":5},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":4},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.292","gcamValue":5},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":16},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.323","gcamValue":4},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":6},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":2},{"gcamCode":"c9.34","gcamValue":7},{"gcamCode":"c9.342","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.356","gcamValue":3},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":5},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.39","gcamValue":15},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.426","gcamValue":1},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":7},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":8},{"gcamCode":"c9.472","gcamValue":2},{"gcamCode":"c9.473","gcamValue":5},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.479","gcamValue":6},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":4},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.498","gcamValue":9},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":11},{"gcamCode":"c9.513","gcamValue":9},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.519","gcamValue":5},{"gcamCode":"c9.521","gcamValue":6},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.537","gcamValue":6},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":1},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.561","gcamValue":3},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":18},{"gcamCode":"c9.581","gcamValue":3},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.61","gcamValue":7},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.619","gcamValue":4},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":5},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.630","gcamValue":8},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":12},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":6},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.653","gcamValue":33},{"gcamCode":"c9.654","gcamValue":4},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":8},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":3},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":6},{"gcamCode":"c9.670","gcamValue":5},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":11},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.686","gcamValue":5},{"gcamCode":"c9.687","gcamValue":6},{"gcamCode":"c9.690","gcamValue":3},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.70","gcamValue":6},{"gcamCode":"c9.701","gcamValue":11},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":13},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":11},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.710","gcamValue":22},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.713","gcamValue":2},{"gcamCode":"c9.714","gcamValue":7},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.720","gcamValue":15},{"gcamCode":"c9.721","gcamValue":8},{"gcamCode":"c9.722","gcamValue":6},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":9},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":30},{"gcamCode":"c9.73","gcamValue":6},{"gcamCode":"c9.730","gcamValue":17},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.735","gcamValue":9},{"gcamCode":"c9.736","gcamValue":9},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":16},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":8},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":18},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":8},{"gcamCode":"c9.766","gcamValue":7},{"gcamCode":"c9.767","gcamValue":26},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":4},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":9},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.793","gcamValue":3},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.810","gcamValue":3},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.826","gcamValue":6},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":16},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":7},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.845","gcamValue":3},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.860","gcamValue":8},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":18},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":4},{"gcamCode":"c9.868","gcamValue":18},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":3},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.908","gcamValue":6},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":8},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.955","gcamValue":6},{"gcamCode":"c9.96","gcamValue":10},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.966","gcamValue":6},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.972","gcamValue":12},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.984","gcamValue":3},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":4},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.252272727272727},{"gcamCode":"v10.2","gcamValue":0.257329861111111},{"gcamCode":"v11.1","gcamValue":0.0943919028340081},{"gcamCode":"v19.1","gcamValue":6.12288888888889},{"gcamCode":"v19.2","gcamValue":5.08066666666667},{"gcamCode":"v19.3","gcamValue":5.38866666666667},{"gcamCode":"v19.4","gcamValue":6.11555555555556},{"gcamCode":"v19.5","gcamValue":5.12711111111111},{"gcamCode":"v19.6","gcamValue":5.50755555555556},{"gcamCode":"v19.7","gcamValue":6.16444444444444},{"gcamCode":"v19.8","gcamValue":5.03911111111111},{"gcamCode":"v19.9","gcamValue":5.31133333333333},{"gcamCode":"v20.1","gcamValue":0.439},{"gcamCode":"v20.11","gcamValue":0.6711},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.51209756097561},{"gcamCode":"v20.14","gcamValue":-0.4125},{"gcamCode":"v20.15","gcamValue":0.4291},{"gcamCode":"v20.16","gcamValue":-0.358333333333333},{"gcamCode":"v20.3","gcamValue":0.73975},{"gcamCode":"v20.5","gcamValue":0.838625},{"gcamCode":"v20.7","gcamValue":0.8209},{"gcamCode":"v20.9","gcamValue":0.785166666666667},{"gcamCode":"v21.1","gcamValue":5.55075431034483},{"gcamCode":"v26.1","gcamValue":1.10555555555556}]https://financialpostcom.files.wordpress.com/2019/05/bw20190523005286_collision.jpeg[""][""][""][][{"name":"Bermuda Premier David Burt","charOffset":40},{"name":"North America","charOffset":183},{"name":"Enercare Centre","charOffset":496},{"name":"Philip Crowther","charOffset":739},{"name":"Adam Hitchcock","charOffset":778},{"name":"Patch Capital Partners","charOffset":804},{"name":"Bermuda Monetary Authority","charOffset":1134},{"name":"Bermuda Business Development","charOffset":1540},{"name":"Chief Fintech Advisor Denis Pitcher","charOffset":1620},{"name":"Reinsurance Group","charOffset":2346},{"name":"North American","charOffset":2446},{"name":"Team Bermuda","charOffset":2581},{"name":"Berkshire Hathaway","charOffset":2657},{"name":"Mitch Ocampo","charOffset":2928},{"name":"Studio Innovation Lab","charOffset":2993},{"name":"Team Bermuda","charOffset":3111},{"name":"SparkLabs Foundry","charOffset":3269},{"name":"Toronto Business Development Centre","charOffset":3314},{"name":"Toronto Finance International","charOffset":3357},{"name":"Coral Wells","charOffset":3777},{"name":"Team Bermuda","charOffset":3946}][{"amount":24,"amountType":"White House correspondent Philip","charOffset":575}]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://ottawasun.com/pmn/press-releases-pmn/business-wire-news-releases-pmn/bermuda-team-connects-with-fintech-leaders-in-toronto/wcm/a758f520-be13-44ab-a836-381505e52a65/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":2}2019-05-23T12:15:00.000+0000WEBchattooga1180.comhttp://chattooga1180.com/trion-native-serves-aboard-virginia-class-submarine/[][]["EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","SOC_POINTSOFINTEREST_HIGH_SCHOOL","MILITARY","TAX_FNCACT","TAX_FNCACT_NAVY","TAX_WEAPONS","TAX_WEAPONS_SUBMARINE","TAX_FNCACT_TECHNICIAN","CRISISLEX_CRISISLEXREC","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_COMMANDERS","MARITIME","CRISISLEX_T11_UPDATESSYMPATHY","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_167_PORTS","ENV_NUCLEARPOWER","WB_137_WATER","TAX_FNCACT_CREW_MEMBERS","TAX_FNCACT_SAILORS","ARMEDCONFLICT","EPU_CATS_NATIONAL_SECURITY","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_DOLPHINS","SURVEILLANCE"][{"theme":"ARMEDCONFLICT","charOffset":1467},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":1467},{"theme":"EDUCATION","charOffset":22},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":22},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":861},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":202},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":303},{"theme":"MILITARY","charOffset":92},{"theme":"MILITARY","charOffset":472},{"theme":"MILITARY","charOffset":1448},{"theme":"TAX_FNCACT_NAVY","charOffset":92},{"theme":"TAX_FNCACT_NAVY","charOffset":472},{"theme":"TAX_FNCACT_NAVY","charOffset":1448},{"theme":"TAX_FNCACT_SAILORS","charOffset":1336},{"theme":"SURVEILLANCE","charOffset":1954},{"theme":"WB_135_TRANSPORT","charOffset":923},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":923},{"theme":"WB_167_PORTS","charOffset":923},{"theme":"TAX_FNCACT_COMMANDERS","charOffset":699},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":142},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":212},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":313},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":451},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":594},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":965},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":1308},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":1646},{"theme":"TAX_WEAPONS_SUBMARINE","charOffset":1795},{"theme":"ENV_NUCLEARPOWER","charOffset":1045},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":584},{"theme":"TAX_WORLDMAMMALS_DOLPHINS","charOffset":1624},{"theme":"WB_137_WATER","charOffset":1076},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":654},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":22},{"theme":"MARITIME","charOffset":776},{"theme":"MARITIME","charOffset":1062},{"theme":"TAX_FNCACT_CREW_MEMBERS","charOffset":1287},{"theme":"TAX_FNCACT_CREW_MEMBERS","charOffset":1410}][{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"}][{"location":{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"},"charOffset":255},{"location":{"geoType":"USSTATE","geoName":"New Hampshire, United States","countryCode":"US","adm1Code":"USNH","adm2Code":"","geoPoint":{"latitude":43.4108,"longitude":-71.5653},"featureId":"NH"},"charOffset":1694}]["treavor d flannigan"][]["a trion high school","u s navy virginia-class"][{"organisation":"A Trion High School","charOffset":22}]{"tone":0,"positiveScore":4.6153846,"negativeScore":4.6153846,"polarity":9.230769,"activityReferenceDensity":19.076923,"selfGroupReferenceDensity":0,"wordCount":288}[][{"gcamCode":"wc","gcamValue":288},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":12},{"gcamCode":"c12.10","gcamValue":34},{"gcamCode":"c12.12","gcamValue":15},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":16},{"gcamCode":"c12.3","gcamValue":4},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":7},{"gcamCode":"c12.7","gcamValue":17},{"gcamCode":"c12.8","gcamValue":7},{"gcamCode":"c12.9","gcamValue":22},{"gcamCode":"c13.7","gcamValue":12},{"gcamCode":"c14.1","gcamValue":17},{"gcamCode":"c14.10","gcamValue":7},{"gcamCode":"c14.11","gcamValue":29},{"gcamCode":"c14.2","gcamValue":11},{"gcamCode":"c14.3","gcamValue":14},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":34},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.124","gcamValue":1},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.158","gcamValue":1},{"gcamCode":"c15.168","gcamValue":3},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":30},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":14},{"gcamCode":"c16.106","gcamValue":11},{"gcamCode":"c16.109","gcamValue":21},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":43},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":16},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":17},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":22},{"gcamCode":"c16.12","gcamValue":19},{"gcamCode":"c16.120","gcamValue":29},{"gcamCode":"c16.121","gcamValue":32},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":20},{"gcamCode":"c16.126","gcamValue":17},{"gcamCode":"c16.127","gcamValue":18},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":32},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":4},{"gcamCode":"c16.131","gcamValue":14},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":30},{"gcamCode":"c16.138","gcamValue":16},{"gcamCode":"c16.139","gcamValue":11},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":6},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":18},{"gcamCode":"c16.146","gcamValue":32},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":19},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":27},{"gcamCode":"c16.16","gcamValue":16},{"gcamCode":"c16.161","gcamValue":24},{"gcamCode":"c16.162","gcamValue":8},{"gcamCode":"c16.163","gcamValue":42},{"gcamCode":"c16.164","gcamValue":5},{"gcamCode":"c16.165","gcamValue":8},{"gcamCode":"c16.168","gcamValue":2},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":9},{"gcamCode":"c16.19","gcamValue":9},{"gcamCode":"c16.2","gcamValue":20},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.26","gcamValue":39},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.30","gcamValue":4},{"gcamCode":"c16.31","gcamValue":25},{"gcamCode":"c16.33","gcamValue":32},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":13},{"gcamCode":"c16.36","gcamValue":4},{"gcamCode":"c16.37","gcamValue":27},{"gcamCode":"c16.38","gcamValue":18},{"gcamCode":"c16.4","gcamValue":21},{"gcamCode":"c16.41","gcamValue":11},{"gcamCode":"c16.42","gcamValue":2},{"gcamCode":"c16.45","gcamValue":12},{"gcamCode":"c16.46","gcamValue":5},{"gcamCode":"c16.47","gcamValue":47},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":24},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":4},{"gcamCode":"c16.56","gcamValue":3},{"gcamCode":"c16.57","gcamValue":179},{"gcamCode":"c16.58","gcamValue":23},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":35},{"gcamCode":"c16.60","gcamValue":9},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":12},{"gcamCode":"c16.63","gcamValue":10},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.65","gcamValue":5},{"gcamCode":"c16.66","gcamValue":5},{"gcamCode":"c16.68","gcamValue":25},{"gcamCode":"c16.69","gcamValue":11},{"gcamCode":"c16.7","gcamValue":6},{"gcamCode":"c16.70","gcamValue":18},{"gcamCode":"c16.71","gcamValue":8},{"gcamCode":"c16.72","gcamValue":8},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":11},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":14},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":4},{"gcamCode":"c16.84","gcamValue":27},{"gcamCode":"c16.87","gcamValue":38},{"gcamCode":"c16.88","gcamValue":35},{"gcamCode":"c16.89","gcamValue":6},{"gcamCode":"c16.90","gcamValue":6},{"gcamCode":"c16.91","gcamValue":24},{"gcamCode":"c16.92","gcamValue":16},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":44},{"gcamCode":"c16.95","gcamValue":57},{"gcamCode":"c16.96","gcamValue":14},{"gcamCode":"c16.97","gcamValue":4},{"gcamCode":"c16.98","gcamValue":26},{"gcamCode":"c16.99","gcamValue":6},{"gcamCode":"c17.1","gcamValue":85},{"gcamCode":"c17.10","gcamValue":34},{"gcamCode":"c17.11","gcamValue":40},{"gcamCode":"c17.12","gcamValue":7},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":17},{"gcamCode":"c17.15","gcamValue":32},{"gcamCode":"c17.16","gcamValue":9},{"gcamCode":"c17.18","gcamValue":12},{"gcamCode":"c17.19","gcamValue":15},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.22","gcamValue":7},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":21},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.27","gcamValue":24},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":9},{"gcamCode":"c17.3","gcamValue":6},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":12},{"gcamCode":"c17.32","gcamValue":8},{"gcamCode":"c17.33","gcamValue":14},{"gcamCode":"c17.34","gcamValue":25},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":27},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":27},{"gcamCode":"c17.4","gcamValue":59},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":7},{"gcamCode":"c17.42","gcamValue":16},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.5","gcamValue":62},{"gcamCode":"c17.6","gcamValue":3},{"gcamCode":"c17.7","gcamValue":66},{"gcamCode":"c17.8","gcamValue":36},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.169","gcamValue":1},{"gcamCode":"c18.193","gcamValue":9},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.7","gcamValue":1},{"gcamCode":"c18.72","gcamValue":3},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":18},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":3},{"gcamCode":"c2.102","gcamValue":10},{"gcamCode":"c2.103","gcamValue":26},{"gcamCode":"c2.104","gcamValue":56},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":8},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":4},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":26},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":21},{"gcamCode":"c2.119","gcamValue":106},{"gcamCode":"c2.12","gcamValue":15},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":38},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":15},{"gcamCode":"c2.126","gcamValue":16},{"gcamCode":"c2.127","gcamValue":34},{"gcamCode":"c2.128","gcamValue":18},{"gcamCode":"c2.129","gcamValue":35},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":27},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":28},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.143","gcamValue":45},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":42},{"gcamCode":"c2.148","gcamValue":24},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":7},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":27},{"gcamCode":"c2.156","gcamValue":9},{"gcamCode":"c2.157","gcamValue":26},{"gcamCode":"c2.158","gcamValue":17},{"gcamCode":"c2.159","gcamValue":8},{"gcamCode":"c2.16","gcamValue":2},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":6},{"gcamCode":"c2.177","gcamValue":17},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":11},{"gcamCode":"c2.180","gcamValue":11},{"gcamCode":"c2.181","gcamValue":13},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":15},{"gcamCode":"c2.185","gcamValue":51},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":16},{"gcamCode":"c2.188","gcamValue":12},{"gcamCode":"c2.189","gcamValue":12},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.195","gcamValue":57},{"gcamCode":"c2.196","gcamValue":4},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":27},{"gcamCode":"c2.199","gcamValue":7},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":7},{"gcamCode":"c2.204","gcamValue":24},{"gcamCode":"c2.205","gcamValue":11},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":22},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.212","gcamValue":12},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":12},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.218","gcamValue":2},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":8},{"gcamCode":"c2.223","gcamValue":8},{"gcamCode":"c2.225","gcamValue":5},{"gcamCode":"c2.226","gcamValue":14},{"gcamCode":"c2.23","gcamValue":15},{"gcamCode":"c2.25","gcamValue":18},{"gcamCode":"c2.26","gcamValue":13},{"gcamCode":"c2.27","gcamValue":13},{"gcamCode":"c2.28","gcamValue":9},{"gcamCode":"c2.30","gcamValue":14},{"gcamCode":"c2.31","gcamValue":12},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":6},{"gcamCode":"c2.36","gcamValue":5},{"gcamCode":"c2.37","gcamValue":5},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":40},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.41","gcamValue":2},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":14},{"gcamCode":"c2.45","gcamValue":28},{"gcamCode":"c2.46","gcamValue":22},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":10},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":27},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":30},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":13},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":12},{"gcamCode":"c2.64","gcamValue":11},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":8},{"gcamCode":"c2.75","gcamValue":36},{"gcamCode":"c2.76","gcamValue":207},{"gcamCode":"c2.77","gcamValue":30},{"gcamCode":"c2.78","gcamValue":37},{"gcamCode":"c2.79","gcamValue":16},{"gcamCode":"c2.80","gcamValue":28},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":7},{"gcamCode":"c2.83","gcamValue":4},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.85","gcamValue":2},{"gcamCode":"c2.86","gcamValue":6},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.9","gcamValue":3},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.93","gcamValue":8},{"gcamCode":"c2.95","gcamValue":54},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":19},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":15},{"gcamCode":"c3.2","gcamValue":26},{"gcamCode":"c35.1","gcamValue":7},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.24","gcamValue":18},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":16},{"gcamCode":"c35.32","gcamValue":7},{"gcamCode":"c35.33","gcamValue":29},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.6","gcamValue":3},{"gcamCode":"c35.7","gcamValue":2},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":4},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":16},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.35","gcamValue":1},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":10},{"gcamCode":"c39.38","gcamValue":3},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":12},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.10","gcamValue":1},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.17","gcamValue":4},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":11},{"gcamCode":"c4.8","gcamValue":2},{"gcamCode":"c40.3","gcamValue":2},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":19},{"gcamCode":"c5.11","gcamValue":4},{"gcamCode":"c5.12","gcamValue":41},{"gcamCode":"c5.13","gcamValue":4},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":7},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":8},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":22},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":8},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":20},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.40","gcamValue":10},{"gcamCode":"c5.43","gcamValue":7},{"gcamCode":"c5.45","gcamValue":10},{"gcamCode":"c5.46","gcamValue":33},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":22},{"gcamCode":"c5.50","gcamValue":25},{"gcamCode":"c5.51","gcamValue":16},{"gcamCode":"c5.52","gcamValue":30},{"gcamCode":"c5.53","gcamValue":26},{"gcamCode":"c5.54","gcamValue":8},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.59","gcamValue":12},{"gcamCode":"c5.6","gcamValue":15},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":22},{"gcamCode":"c5.62","gcamValue":110},{"gcamCode":"c5.7","gcamValue":11},{"gcamCode":"c5.8","gcamValue":11},{"gcamCode":"c5.9","gcamValue":16},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.4","gcamValue":6},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c7.1","gcamValue":12},{"gcamCode":"c7.2","gcamValue":18},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":10},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.18","gcamValue":3},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":7},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":11},{"gcamCode":"c8.40","gcamValue":6},{"gcamCode":"c8.42","gcamValue":7},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":15},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.128","gcamValue":12},{"gcamCode":"c9.129","gcamValue":4},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":3},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.146","gcamValue":1},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.160","gcamValue":5},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":6},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":5},{"gcamCode":"c9.169","gcamValue":7},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.177","gcamValue":9},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":13},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":3},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":4},{"gcamCode":"c9.229","gcamValue":5},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.262","gcamValue":10},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":7},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":4},{"gcamCode":"c9.277","gcamValue":3},{"gcamCode":"c9.279","gcamValue":3},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":4},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.283","gcamValue":19},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":14},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.358","gcamValue":4},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.456","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.485","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.5","gcamValue":3},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":10},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":9},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":3},{"gcamCode":"c9.533","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":4},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":4},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":7},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":5},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.570","gcamValue":8},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":12},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.59","gcamValue":2},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.604","gcamValue":3},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":3},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.63","gcamValue":4},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":3},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.641","gcamValue":3},{"gcamCode":"c9.642","gcamValue":10},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":4},{"gcamCode":"c9.653","gcamValue":16},{"gcamCode":"c9.654","gcamValue":12},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":8},{"gcamCode":"c9.667","gcamValue":8},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":4},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":9},{"gcamCode":"c9.690","gcamValue":3},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.726","gcamValue":19},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":14},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.735","gcamValue":6},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.744","gcamValue":9},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":3},{"gcamCode":"c9.748","gcamValue":10},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":10},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":19},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":6},{"gcamCode":"c9.762","gcamValue":13},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.79","gcamValue":3},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":3},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":13},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.868","gcamValue":12},{"gcamCode":"c9.87","gcamValue":3},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.9","gcamValue":3},{"gcamCode":"c9.902","gcamValue":4},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":7},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":4},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.994","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.275219298245614},{"gcamCode":"v10.2","gcamValue":0.20784257518797},{"gcamCode":"v11.1","gcamValue":0.101726222222222},{"gcamCode":"v19.1","gcamValue":5.80818181818182},{"gcamCode":"v19.2","gcamValue":4.96},{"gcamCode":"v19.3","gcamValue":5.38121212121212},{"gcamCode":"v19.4","gcamValue":5.84454545454545},{"gcamCode":"v19.5","gcamValue":4.99606060606061},{"gcamCode":"v19.6","gcamValue":5.4469696969697},{"gcamCode":"v19.7","gcamValue":5.77272727272727},{"gcamCode":"v19.8","gcamValue":4.95939393939394},{"gcamCode":"v19.9","gcamValue":5.32181818181818},{"gcamCode":"v20.1","gcamValue":0.471},{"gcamCode":"v20.11","gcamValue":0.667},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.421363636363636},{"gcamCode":"v20.14","gcamValue":-0.385166666666667},{"gcamCode":"v20.15","gcamValue":0.38},{"gcamCode":"v20.16","gcamValue":-0.307928571428571},{"gcamCode":"v20.3","gcamValue":0.74},{"gcamCode":"v20.5","gcamValue":0.764333333333333},{"gcamCode":"v20.7","gcamValue":0.764333333333333},{"gcamCode":"v20.9","gcamValue":0.70875},{"gcamCode":"v21.1","gcamValue":5.49792792792793},{"gcamCode":"v26.1","gcamValue":0.523076923076923}]http://chattooga1180.com/wp-content/uploads/2019/05/Flannigan.jpg[""][""]["https://youtube.com/channel/UCOq5wdEx8Q6ZZlP6vWXGG3Q"][][{"name":"Trion High School","charOffset":22},{"name":"Information System Technician","charOffset":211},{"name":"Information System Technician","charOffset":320},{"name":"Blue Jacket","charOffset":1688}][{"amount":362,"amountType":"feet long","charOffset":837},{"amount":32,"amountType":"feet wide","charOffset":850},{"amount":800,"amountType":"tons","charOffset":878},{"amount":30,"amountType":"knots while submerged","charOffset":952},{"amount":134,"amountType":"crew members aboard the","charOffset":1104},{"amount":7,"amountType":"core competencies of the","charOffset":1522}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Jimmy Holbrook</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBfirstthings.comhttps://www.firstthings.com/web-exclusives/2019/05/an-open-letter-to-georgetown-visitation[{"countType":"KILL","count":4,"objectType":"","location":{"geoType":"USCITY","geoName":"Washington, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}}][{"count":{"countType":"KILL","count":4,"objectType":"","location":{"geoType":"USCITY","geoName":"Washington, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}},"charOffset":650}]["EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_RELIGION","TAX_RELIGION_CATHOLIC","MEDIA_MSM","TAX_FNCACT","TAX_FNCACT_STUDENT","LGBT","ECON_UNIONS","TAX_FNCACT_STUDENTS","USPEC_POLICY1","EPU_POLICY","EPU_POLICY_POLICY","TAX_FNCACT_GUIDE","WB_1675_GRADUATION","WB_855_LABOR_MARKETS","WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_RELIGION_CHURCH","WB_2433_CONFLICT_AND_VIOLENCE","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","PERSECUTION","DISCRIMINATION","UNGP_FREEDOM_FROM_DISCRIMINATION","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_CHILDREN","TAX_FNCACT_WOMEN","IDEOLOGY","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","SOC_MARGINALIZE","UNGP_CRIME_VIOLENCE","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","WB_2089_ETHICS_AND_CODES_OF_CONDUCT","TAX_FNCACT_CHAMPIONS","RELIGION","TAX_FNCACT_EDUCATORS","TAX_FNCACT_FATHER","TAX_RELIGION_CATHOLICS","TAX_ETHNICITY","TAX_ETHNICITY_CATHOLICS","TAX_FNCACT_FOUNDERS","TAX_FNCACT_FOUNDER","CRISISLEX_T11_UPDATESSYMPATHY","TAX_FNCACT_AUTHOR","CRISISLEX_CRISISLEXREC","TAX_FNCACT_CRAFTSMAN","TAX_FNCACT_STAFF_MEMBER","BULLYING","EPU_CATS_MIGRATION_FEAR_FEAR","TAX_FNCACT_LEADERS"][{"theme":"TAX_FNCACT_GUIDE","charOffset":785},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":5600},{"theme":"EDUCATION","charOffset":40},{"theme":"EDUCATION","charOffset":80},{"theme":"EDUCATION","charOffset":392},{"theme":"EDUCATION","charOffset":649},{"theme":"EDUCATION","charOffset":1388},{"theme":"EDUCATION","charOffset":1508},{"theme":"EDUCATION","charOffset":3122},{"theme":"EDUCATION","charOffset":6699},{"theme":"EDUCATION","charOffset":7172},{"theme":"EDUCATION","charOffset":7284},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":40},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":80},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":392},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":649},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1388},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1508},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":3122},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":6699},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7172},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7284},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":40},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":80},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":392},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":649},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1388},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1508},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3122},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":6699},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7172},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7284},{"theme":"TAX_FNCACT_CHAMPIONS","charOffset":3920},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":3777},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":3777},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":3777},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":3777},{"theme":"WB_2089_ETHICS_AND_CODES_OF_CONDUCT","charOffset":3777},{"theme":"TAX_FNCACT_LEADERS","charOffset":6652},{"theme":"TAX_FNCACT_LEADERS","charOffset":7076},{"theme":"SOC_MARGINALIZE","charOffset":3668},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":3668},{"theme":"PERSECUTION","charOffset":1911},{"theme":"DISCRIMINATION","charOffset":1911},{"theme":"UNGP_FREEDOM_FROM_DISCRIMINATION","charOffset":1911},{"theme":"TAX_FNCACT_STUDENT","charOffset":278},{"theme":"TAX_FNCACT_STUDENT","charOffset":5925},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":1816},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":1816},{"theme":"TAX_FNCACT_AUTHOR","charOffset":5625},{"theme":"TAX_FNCACT_STAFF_MEMBER","charOffset":5959},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1942},{"theme":"TAX_FNCACT_FOUNDER","charOffset":5440},{"theme":"BULLYING","charOffset":6185},{"theme":"WB_1675_GRADUATION","charOffset":815},{"theme":"WB_855_LABOR_MARKETS","charOffset":815},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":815},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":815},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":5666},{"theme":"TAX_RELIGION_CATHOLICS","charOffset":5208},{"theme":"TAX_RELIGION_CATHOLICS","charOffset":6204},{"theme":"TAX_ETHNICITY_CATHOLICS","charOffset":5208},{"theme":"TAX_ETHNICITY_CATHOLICS","charOffset":6204},{"theme":"IDEOLOGY","charOffset":3492},{"theme":"ECON_UNIONS","charOffset":293},{"theme":"ECON_UNIONS","charOffset":1345},{"theme":"ECON_UNIONS","charOffset":3018},{"theme":"LGBT","charOffset":286},{"theme":"LGBT","charOffset":1338},{"theme":"LGBT","charOffset":2115},{"theme":"LGBT","charOffset":3011},{"theme":"LGBT","charOffset":4947},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":6629},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":3611},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":3866},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":4467},{"theme":"TAX_FNCACT_FATHER","charOffset":5188},{"theme":"TAX_FNCACT_EDUCATORS","charOffset":4614},{"theme":"TAX_FNCACT_STUDENTS","charOffset":401},{"theme":"TAX_FNCACT_STUDENTS","charOffset":6740},{"theme":"USPEC_POLICY1","charOffset":460},{"theme":"EPU_POLICY_POLICY","charOffset":460},{"theme":"RELIGION","charOffset":4563},{"theme":"TAX_FNCACT_WOMEN","charOffset":2433},{"theme":"TAX_FNCACT_WOMEN","charOffset":7021},{"theme":"TAX_FNCACT_CRAFTSMAN","charOffset":5790},{"theme":"TAX_RELIGION_CHURCH","charOffset":1046},{"theme":"TAX_RELIGION_CHURCH","charOffset":2067},{"theme":"TAX_RELIGION_CHURCH","charOffset":2079},{"theme":"TAX_RELIGION_CHURCH","charOffset":2576},{"theme":"TAX_RELIGION_CHURCH","charOffset":2626},{"theme":"TAX_RELIGION_CHURCH","charOffset":2741},{"theme":"TAX_RELIGION_CHURCH","charOffset":3361},{"theme":"TAX_RELIGION_CHURCH","charOffset":3530},{"theme":"TAX_RELIGION_CHURCH","charOffset":3910},{"theme":"TAX_RELIGION_CHURCH","charOffset":4211},{"theme":"TAX_RELIGION_CHURCH","charOffset":4637},{"theme":"TAX_RELIGION_CHURCH","charOffset":4927},{"theme":"TAX_RELIGION_CHURCH","charOffset":5047},{"theme":"TAX_RELIGION_CHURCH","charOffset":5368},{"theme":"TAX_RELIGION_CHURCH","charOffset":5544},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":68},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":915},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":1749},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":2060},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":3457},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":3483},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":3763},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":4604},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":6008},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":6541},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":6677},{"theme":"TAX_RELIGION_CATHOLIC","charOffset":7132},{"theme":"MEDIA_MSM","charOffset":235},{"theme":"MEDIA_MSM","charOffset":1405},{"theme":"MEDIA_MSM","charOffset":1663},{"theme":"MEDIA_MSM","charOffset":2965},{"theme":"TAX_FNCACT_FOUNDERS","charOffset":5254},{"theme":"TAX_FNCACT_CHILDREN","charOffset":2191}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Georgetown Visitation Preparatory School, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.9094,"longitude":-77.0694},"featureId":"530098"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}][{"location":{"geoType":"USCITY","geoName":"Georgetown Visitation Preparatory School, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.9094,"longitude":-77.0694},"featureId":"530098"},"charOffset":40},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4162},{"location":{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":166}]["francis de sales","james martin","molly gurdon pinkoski","jeanne marie hathway","flo mart"][{"person":"Francis De Sales","charOffset":5277},{"person":"James Martin","charOffset":4132},{"person":"Molly Gurdon Pinkoski","charOffset":7521},{"person":"Jeanne Marie Hathway","charOffset":7484},{"person":"Flo Mart","charOffset":7403}]["georgetown visitation preparatory school","catholic church"][{"organisation":"Georgetown Visitation Preparatory School","charOffset":40},{"organisation":"Catholic Church","charOffset":2067}]{"tone":1.9461077,"positiveScore":5.3892217,"negativeScore":3.4431138,"polarity":8.832335,"activityReferenceDensity":23.353292,"selfGroupReferenceDensity":4.1916165,"wordCount":1218}[{"dateResolution":4,"month":5,"day":3,"year":0,"charOffset":397},{"dateResolution":4,"month":5,"day":3,"year":0,"charOffset":1269},{"dateResolution":1,"month":0,"day":0,"year":2012,"charOffset":7546},{"dateResolution":1,"month":0,"day":0,"year":2012,"charOffset":7617}][{"gcamCode":"wc","gcamValue":1218},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":8},{"gcamCode":"c12.1","gcamValue":137},{"gcamCode":"c12.10","gcamValue":94},{"gcamCode":"c12.12","gcamValue":25},{"gcamCode":"c12.13","gcamValue":29},{"gcamCode":"c12.14","gcamValue":45},{"gcamCode":"c12.3","gcamValue":70},{"gcamCode":"c12.4","gcamValue":14},{"gcamCode":"c12.5","gcamValue":84},{"gcamCode":"c12.7","gcamValue":93},{"gcamCode":"c12.8","gcamValue":42},{"gcamCode":"c12.9","gcamValue":118},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":115},{"gcamCode":"c14.10","gcamValue":57},{"gcamCode":"c14.11","gcamValue":171},{"gcamCode":"c14.2","gcamValue":100},{"gcamCode":"c14.3","gcamValue":106},{"gcamCode":"c14.4","gcamValue":22},{"gcamCode":"c14.5","gcamValue":163},{"gcamCode":"c14.6","gcamValue":6},{"gcamCode":"c14.7","gcamValue":13},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":10},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.110","gcamValue":4},{"gcamCode":"c15.111","gcamValue":2},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":20},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.12","gcamValue":3},{"gcamCode":"c15.120","gcamValue":3},{"gcamCode":"c15.121","gcamValue":1},{"gcamCode":"c15.125","gcamValue":3},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.129","gcamValue":2},{"gcamCode":"c15.13","gcamValue":17},{"gcamCode":"c15.133","gcamValue":1},{"gcamCode":"c15.137","gcamValue":7},{"gcamCode":"c15.139","gcamValue":13},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.153","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.165","gcamValue":3},{"gcamCode":"c15.166","gcamValue":3},{"gcamCode":"c15.167","gcamValue":3},{"gcamCode":"c15.168","gcamValue":4},{"gcamCode":"c15.172","gcamValue":3},{"gcamCode":"c15.173","gcamValue":16},{"gcamCode":"c15.175","gcamValue":3},{"gcamCode":"c15.176","gcamValue":22},{"gcamCode":"c15.177","gcamValue":12},{"gcamCode":"c15.178","gcamValue":14},{"gcamCode":"c15.179","gcamValue":12},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.184","gcamValue":1},{"gcamCode":"c15.186","gcamValue":1},{"gcamCode":"c15.187","gcamValue":2},{"gcamCode":"c15.189","gcamValue":1},{"gcamCode":"c15.190","gcamValue":1},{"gcamCode":"c15.191","gcamValue":1},{"gcamCode":"c15.192","gcamValue":1},{"gcamCode":"c15.193","gcamValue":1},{"gcamCode":"c15.195","gcamValue":1},{"gcamCode":"c15.197","gcamValue":5},{"gcamCode":"c15.198","gcamValue":3},{"gcamCode":"c15.2","gcamValue":1},{"gcamCode":"c15.201","gcamValue":4},{"gcamCode":"c15.204","gcamValue":1},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.21","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.217","gcamValue":2},{"gcamCode":"c15.218","gcamValue":12},{"gcamCode":"c15.219","gcamValue":2},{"gcamCode":"c15.22","gcamValue":2},{"gcamCode":"c15.220","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.226","gcamValue":6},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.248","gcamValue":2},{"gcamCode":"c15.249","gcamValue":1},{"gcamCode":"c15.25","gcamValue":1},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.256","gcamValue":19},{"gcamCode":"c15.258","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.262","gcamValue":1},{"gcamCode":"c15.267","gcamValue":2},{"gcamCode":"c15.270","gcamValue":19},{"gcamCode":"c15.273","gcamValue":1},{"gcamCode":"c15.276","gcamValue":1},{"gcamCode":"c15.279","gcamValue":12},{"gcamCode":"c15.3","gcamValue":6},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.36","gcamValue":12},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.39","gcamValue":9},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":20},{"gcamCode":"c15.46","gcamValue":3},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.48","gcamValue":1},{"gcamCode":"c15.53","gcamValue":2},{"gcamCode":"c15.60","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.64","gcamValue":1},{"gcamCode":"c15.66","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.70","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.73","gcamValue":1},{"gcamCode":"c15.74","gcamValue":1},{"gcamCode":"c15.76","gcamValue":14},{"gcamCode":"c15.78","gcamValue":2},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.82","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":2},{"gcamCode":"c15.86","gcamValue":5},{"gcamCode":"c15.87","gcamValue":1},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.97","gcamValue":5},{"gcamCode":"c16.1","gcamValue":23},{"gcamCode":"c16.100","gcamValue":17},{"gcamCode":"c16.101","gcamValue":13},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":9},{"gcamCode":"c16.105","gcamValue":5},{"gcamCode":"c16.106","gcamValue":51},{"gcamCode":"c16.109","gcamValue":126},{"gcamCode":"c16.11","gcamValue":20},{"gcamCode":"c16.110","gcamValue":213},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":89},{"gcamCode":"c16.115","gcamValue":9},{"gcamCode":"c16.116","gcamValue":8},{"gcamCode":"c16.117","gcamValue":62},{"gcamCode":"c16.118","gcamValue":81},{"gcamCode":"c16.119","gcamValue":1},{"gcamCode":"c16.12","gcamValue":142},{"gcamCode":"c16.120","gcamValue":57},{"gcamCode":"c16.121","gcamValue":116},{"gcamCode":"c16.122","gcamValue":14},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":7},{"gcamCode":"c16.125","gcamValue":117},{"gcamCode":"c16.126","gcamValue":84},{"gcamCode":"c16.127","gcamValue":96},{"gcamCode":"c16.128","gcamValue":17},{"gcamCode":"c16.129","gcamValue":131},{"gcamCode":"c16.13","gcamValue":7},{"gcamCode":"c16.130","gcamValue":17},{"gcamCode":"c16.131","gcamValue":53},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":191},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":90},{"gcamCode":"c16.139","gcamValue":50},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":77},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":98},{"gcamCode":"c16.146","gcamValue":78},{"gcamCode":"c16.150","gcamValue":3},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":44},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":21},{"gcamCode":"c16.158","gcamValue":26},{"gcamCode":"c16.159","gcamValue":107},{"gcamCode":"c16.16","gcamValue":12},{"gcamCode":"c16.161","gcamValue":93},{"gcamCode":"c16.162","gcamValue":65},{"gcamCode":"c16.163","gcamValue":51},{"gcamCode":"c16.164","gcamValue":31},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.168","gcamValue":3},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":3},{"gcamCode":"c16.19","gcamValue":13},{"gcamCode":"c16.2","gcamValue":94},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":8},{"gcamCode":"c16.22","gcamValue":21},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":9},{"gcamCode":"c16.26","gcamValue":167},{"gcamCode":"c16.27","gcamValue":6},{"gcamCode":"c16.29","gcamValue":3},{"gcamCode":"c16.3","gcamValue":21},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":88},{"gcamCode":"c16.32","gcamValue":4},{"gcamCode":"c16.33","gcamValue":76},{"gcamCode":"c16.34","gcamValue":4},{"gcamCode":"c16.35","gcamValue":68},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":136},{"gcamCode":"c16.38","gcamValue":37},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":94},{"gcamCode":"c16.41","gcamValue":50},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":60},{"gcamCode":"c16.46","gcamValue":11},{"gcamCode":"c16.47","gcamValue":169},{"gcamCode":"c16.48","gcamValue":10},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":4},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":47},{"gcamCode":"c16.53","gcamValue":15},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":4},{"gcamCode":"c16.56","gcamValue":23},{"gcamCode":"c16.57","gcamValue":658},{"gcamCode":"c16.58","gcamValue":77},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":155},{"gcamCode":"c16.60","gcamValue":10},{"gcamCode":"c16.61","gcamValue":3},{"gcamCode":"c16.62","gcamValue":52},{"gcamCode":"c16.63","gcamValue":11},{"gcamCode":"c16.64","gcamValue":17},{"gcamCode":"c16.65","gcamValue":32},{"gcamCode":"c16.66","gcamValue":44},{"gcamCode":"c16.68","gcamValue":52},{"gcamCode":"c16.69","gcamValue":50},{"gcamCode":"c16.7","gcamValue":18},{"gcamCode":"c16.70","gcamValue":52},{"gcamCode":"c16.71","gcamValue":8},{"gcamCode":"c16.72","gcamValue":6},{"gcamCode":"c16.73","gcamValue":6},{"gcamCode":"c16.74","gcamValue":18},{"gcamCode":"c16.75","gcamValue":54},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":5},{"gcamCode":"c16.78","gcamValue":27},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":10},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":40},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":9},{"gcamCode":"c16.87","gcamValue":98},{"gcamCode":"c16.88","gcamValue":170},{"gcamCode":"c16.89","gcamValue":43},{"gcamCode":"c16.9","gcamValue":17},{"gcamCode":"c16.90","gcamValue":37},{"gcamCode":"c16.91","gcamValue":25},{"gcamCode":"c16.92","gcamValue":78},{"gcamCode":"c16.93","gcamValue":7},{"gcamCode":"c16.94","gcamValue":82},{"gcamCode":"c16.95","gcamValue":67},{"gcamCode":"c16.96","gcamValue":35},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":92},{"gcamCode":"c16.99","gcamValue":16},{"gcamCode":"c17.1","gcamValue":332},{"gcamCode":"c17.10","gcamValue":206},{"gcamCode":"c17.11","gcamValue":186},{"gcamCode":"c17.12","gcamValue":51},{"gcamCode":"c17.13","gcamValue":29},{"gcamCode":"c17.14","gcamValue":7},{"gcamCode":"c17.15","gcamValue":107},{"gcamCode":"c17.16","gcamValue":36},{"gcamCode":"c17.17","gcamValue":7},{"gcamCode":"c17.18","gcamValue":13},{"gcamCode":"c17.19","gcamValue":101},{"gcamCode":"c17.2","gcamValue":19},{"gcamCode":"c17.20","gcamValue":15},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":22},{"gcamCode":"c17.23","gcamValue":10},{"gcamCode":"c17.24","gcamValue":100},{"gcamCode":"c17.25","gcamValue":16},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":135},{"gcamCode":"c17.28","gcamValue":5},{"gcamCode":"c17.29","gcamValue":45},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":26},{"gcamCode":"c17.31","gcamValue":64},{"gcamCode":"c17.32","gcamValue":55},{"gcamCode":"c17.33","gcamValue":73},{"gcamCode":"c17.34","gcamValue":21},{"gcamCode":"c17.35","gcamValue":21},{"gcamCode":"c17.36","gcamValue":49},{"gcamCode":"c17.37","gcamValue":49},{"gcamCode":"c17.38","gcamValue":21},{"gcamCode":"c17.39","gcamValue":60},{"gcamCode":"c17.4","gcamValue":292},{"gcamCode":"c17.40","gcamValue":28},{"gcamCode":"c17.41","gcamValue":60},{"gcamCode":"c17.42","gcamValue":92},{"gcamCode":"c17.43","gcamValue":66},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":265},{"gcamCode":"c17.6","gcamValue":11},{"gcamCode":"c17.7","gcamValue":149},{"gcamCode":"c17.8","gcamValue":145},{"gcamCode":"c17.9","gcamValue":13},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.111","gcamValue":4},{"gcamCode":"c18.114","gcamValue":1},{"gcamCode":"c18.12","gcamValue":1},{"gcamCode":"c18.13","gcamValue":4},{"gcamCode":"c18.147","gcamValue":30},{"gcamCode":"c18.152","gcamValue":1},{"gcamCode":"c18.179","gcamValue":29},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":18},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.298","gcamValue":10},{"gcamCode":"c18.331","gcamValue":1},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.345","gcamValue":3},{"gcamCode":"c18.53","gcamValue":3},{"gcamCode":"c18.81","gcamValue":1},{"gcamCode":"c2.1","gcamValue":44},{"gcamCode":"c2.10","gcamValue":18},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":32},{"gcamCode":"c2.102","gcamValue":22},{"gcamCode":"c2.103","gcamValue":6},{"gcamCode":"c2.104","gcamValue":218},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":7},{"gcamCode":"c2.108","gcamValue":11},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":38},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":21},{"gcamCode":"c2.113","gcamValue":15},{"gcamCode":"c2.114","gcamValue":75},{"gcamCode":"c2.115","gcamValue":9},{"gcamCode":"c2.116","gcamValue":49},{"gcamCode":"c2.118","gcamValue":5},{"gcamCode":"c2.119","gcamValue":338},{"gcamCode":"c2.12","gcamValue":97},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":92},{"gcamCode":"c2.122","gcamValue":24},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":45},{"gcamCode":"c2.125","gcamValue":67},{"gcamCode":"c2.126","gcamValue":67},{"gcamCode":"c2.127","gcamValue":127},{"gcamCode":"c2.128","gcamValue":49},{"gcamCode":"c2.129","gcamValue":22},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":5},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":9},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":130},{"gcamCode":"c2.141","gcamValue":28},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":51},{"gcamCode":"c2.144","gcamValue":29},{"gcamCode":"c2.145","gcamValue":14},{"gcamCode":"c2.146","gcamValue":15},{"gcamCode":"c2.147","gcamValue":217},{"gcamCode":"c2.148","gcamValue":165},{"gcamCode":"c2.149","gcamValue":5},{"gcamCode":"c2.15","gcamValue":111},{"gcamCode":"c2.150","gcamValue":12},{"gcamCode":"c2.151","gcamValue":7},{"gcamCode":"c2.152","gcamValue":27},{"gcamCode":"c2.153","gcamValue":73},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":183},{"gcamCode":"c2.156","gcamValue":83},{"gcamCode":"c2.157","gcamValue":167},{"gcamCode":"c2.158","gcamValue":145},{"gcamCode":"c2.159","gcamValue":18},{"gcamCode":"c2.160","gcamValue":62},{"gcamCode":"c2.161","gcamValue":17},{"gcamCode":"c2.162","gcamValue":31},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.165","gcamValue":35},{"gcamCode":"c2.166","gcamValue":81},{"gcamCode":"c2.167","gcamValue":5},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":13},{"gcamCode":"c2.170","gcamValue":23},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":20},{"gcamCode":"c2.174","gcamValue":58},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":10},{"gcamCode":"c2.177","gcamValue":84},{"gcamCode":"c2.178","gcamValue":3},{"gcamCode":"c2.179","gcamValue":79},{"gcamCode":"c2.18","gcamValue":49},{"gcamCode":"c2.180","gcamValue":50},{"gcamCode":"c2.181","gcamValue":54},{"gcamCode":"c2.183","gcamValue":55},{"gcamCode":"c2.185","gcamValue":303},{"gcamCode":"c2.186","gcamValue":23},{"gcamCode":"c2.187","gcamValue":96},{"gcamCode":"c2.188","gcamValue":8},{"gcamCode":"c2.189","gcamValue":8},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.191","gcamValue":39},{"gcamCode":"c2.192","gcamValue":30},{"gcamCode":"c2.193","gcamValue":74},{"gcamCode":"c2.194","gcamValue":4},{"gcamCode":"c2.195","gcamValue":119},{"gcamCode":"c2.196","gcamValue":32},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":89},{"gcamCode":"c2.199","gcamValue":28},{"gcamCode":"c2.2","gcamValue":14},{"gcamCode":"c2.200","gcamValue":13},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.203","gcamValue":67},{"gcamCode":"c2.204","gcamValue":72},{"gcamCode":"c2.205","gcamValue":14},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.209","gcamValue":26},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":139},{"gcamCode":"c2.211","gcamValue":5},{"gcamCode":"c2.213","gcamValue":28},{"gcamCode":"c2.214","gcamValue":67},{"gcamCode":"c2.215","gcamValue":2},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.218","gcamValue":7},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":24},{"gcamCode":"c2.221","gcamValue":13},{"gcamCode":"c2.223","gcamValue":13},{"gcamCode":"c2.225","gcamValue":41},{"gcamCode":"c2.226","gcamValue":47},{"gcamCode":"c2.227","gcamValue":13},{"gcamCode":"c2.228","gcamValue":18},{"gcamCode":"c2.23","gcamValue":32},{"gcamCode":"c2.25","gcamValue":94},{"gcamCode":"c2.26","gcamValue":57},{"gcamCode":"c2.27","gcamValue":57},{"gcamCode":"c2.28","gcamValue":20},{"gcamCode":"c2.3","gcamValue":17},{"gcamCode":"c2.30","gcamValue":83},{"gcamCode":"c2.31","gcamValue":77},{"gcamCode":"c2.32","gcamValue":6},{"gcamCode":"c2.33","gcamValue":13},{"gcamCode":"c2.34","gcamValue":56},{"gcamCode":"c2.35","gcamValue":66},{"gcamCode":"c2.36","gcamValue":49},{"gcamCode":"c2.37","gcamValue":60},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":194},{"gcamCode":"c2.4","gcamValue":43},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":8},{"gcamCode":"c2.44","gcamValue":73},{"gcamCode":"c2.45","gcamValue":24},{"gcamCode":"c2.46","gcamValue":123},{"gcamCode":"c2.47","gcamValue":39},{"gcamCode":"c2.48","gcamValue":23},{"gcamCode":"c2.5","gcamValue":9},{"gcamCode":"c2.50","gcamValue":44},{"gcamCode":"c2.51","gcamValue":3},{"gcamCode":"c2.52","gcamValue":108},{"gcamCode":"c2.53","gcamValue":8},{"gcamCode":"c2.54","gcamValue":147},{"gcamCode":"c2.55","gcamValue":6},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.57","gcamValue":31},{"gcamCode":"c2.58","gcamValue":15},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":58},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":57},{"gcamCode":"c2.64","gcamValue":32},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":8},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":7},{"gcamCode":"c2.69","gcamValue":7},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":7},{"gcamCode":"c2.73","gcamValue":36},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":231},{"gcamCode":"c2.76","gcamValue":912},{"gcamCode":"c2.77","gcamValue":113},{"gcamCode":"c2.78","gcamValue":213},{"gcamCode":"c2.79","gcamValue":18},{"gcamCode":"c2.80","gcamValue":184},{"gcamCode":"c2.81","gcamValue":13},{"gcamCode":"c2.82","gcamValue":67},{"gcamCode":"c2.83","gcamValue":12},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.86","gcamValue":65},{"gcamCode":"c2.87","gcamValue":12},{"gcamCode":"c2.88","gcamValue":35},{"gcamCode":"c2.89","gcamValue":43},{"gcamCode":"c2.9","gcamValue":9},{"gcamCode":"c2.90","gcamValue":20},{"gcamCode":"c2.91","gcamValue":6},{"gcamCode":"c2.92","gcamValue":11},{"gcamCode":"c2.93","gcamValue":25},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":180},{"gcamCode":"c2.96","gcamValue":4},{"gcamCode":"c2.97","gcamValue":11},{"gcamCode":"c2.98","gcamValue":80},{"gcamCode":"c2.99","gcamValue":3},{"gcamCode":"c25.1","gcamValue":5},{"gcamCode":"c25.11","gcamValue":6},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":7},{"gcamCode":"c25.6","gcamValue":3},{"gcamCode":"c25.7","gcamValue":15},{"gcamCode":"c25.8","gcamValue":2},{"gcamCode":"c25.9","gcamValue":21},{"gcamCode":"c3.1","gcamValue":96},{"gcamCode":"c3.2","gcamValue":126},{"gcamCode":"c3.3","gcamValue":2},{"gcamCode":"c3.4","gcamValue":1},{"gcamCode":"c35.1","gcamValue":14},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.13","gcamValue":30},{"gcamCode":"c35.14","gcamValue":33},{"gcamCode":"c35.15","gcamValue":56},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":7},{"gcamCode":"c35.2","gcamValue":5},{"gcamCode":"c35.20","gcamValue":54},{"gcamCode":"c35.24","gcamValue":3},{"gcamCode":"c35.25","gcamValue":4},{"gcamCode":"c35.28","gcamValue":1},{"gcamCode":"c35.3","gcamValue":3},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":45},{"gcamCode":"c35.32","gcamValue":127},{"gcamCode":"c35.33","gcamValue":63},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c35.6","gcamValue":2},{"gcamCode":"c35.7","gcamValue":5},{"gcamCode":"c35.8","gcamValue":3},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":4},{"gcamCode":"c39.17","gcamValue":8},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":14},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.24","gcamValue":1},{"gcamCode":"c39.25","gcamValue":5},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":40},{"gcamCode":"c39.32","gcamValue":2},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":31},{"gcamCode":"c39.38","gcamValue":5},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":21},{"gcamCode":"c39.40","gcamValue":4},{"gcamCode":"c39.41","gcamValue":16},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.8","gcamValue":2},{"gcamCode":"c4.13","gcamValue":5},{"gcamCode":"c4.15","gcamValue":6},{"gcamCode":"c4.2","gcamValue":8},{"gcamCode":"c4.23","gcamValue":49},{"gcamCode":"c4.28","gcamValue":34},{"gcamCode":"c4.8","gcamValue":13},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":7},{"gcamCode":"c40.6","gcamValue":4},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":3},{"gcamCode":"c41.1","gcamValue":24},{"gcamCode":"c5.10","gcamValue":82},{"gcamCode":"c5.11","gcamValue":36},{"gcamCode":"c5.12","gcamValue":158},{"gcamCode":"c5.14","gcamValue":27},{"gcamCode":"c5.15","gcamValue":8},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":35},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":10},{"gcamCode":"c5.23","gcamValue":50},{"gcamCode":"c5.24","gcamValue":8},{"gcamCode":"c5.25","gcamValue":25},{"gcamCode":"c5.26","gcamValue":13},{"gcamCode":"c5.27","gcamValue":12},{"gcamCode":"c5.28","gcamValue":14},{"gcamCode":"c5.29","gcamValue":21},{"gcamCode":"c5.3","gcamValue":55},{"gcamCode":"c5.30","gcamValue":152},{"gcamCode":"c5.31","gcamValue":7},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":21},{"gcamCode":"c5.35","gcamValue":74},{"gcamCode":"c5.36","gcamValue":98},{"gcamCode":"c5.37","gcamValue":15},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.39","gcamValue":11},{"gcamCode":"c5.4","gcamValue":4},{"gcamCode":"c5.40","gcamValue":204},{"gcamCode":"c5.43","gcamValue":38},{"gcamCode":"c5.44","gcamValue":8},{"gcamCode":"c5.45","gcamValue":22},{"gcamCode":"c5.46","gcamValue":215},{"gcamCode":"c5.47","gcamValue":27},{"gcamCode":"c5.48","gcamValue":10},{"gcamCode":"c5.49","gcamValue":121},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":160},{"gcamCode":"c5.51","gcamValue":88},{"gcamCode":"c5.52","gcamValue":177},{"gcamCode":"c5.53","gcamValue":93},{"gcamCode":"c5.54","gcamValue":67},{"gcamCode":"c5.55","gcamValue":10},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":18},{"gcamCode":"c5.58","gcamValue":45},{"gcamCode":"c5.59","gcamValue":8},{"gcamCode":"c5.6","gcamValue":56},{"gcamCode":"c5.60","gcamValue":82},{"gcamCode":"c5.61","gcamValue":149},{"gcamCode":"c5.62","gcamValue":613},{"gcamCode":"c5.7","gcamValue":15},{"gcamCode":"c5.8","gcamValue":61},{"gcamCode":"c5.9","gcamValue":34},{"gcamCode":"c6.1","gcamValue":12},{"gcamCode":"c6.2","gcamValue":13},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":39},{"gcamCode":"c6.5","gcamValue":13},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":88},{"gcamCode":"c7.2","gcamValue":103},{"gcamCode":"c8.1","gcamValue":30},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":5},{"gcamCode":"c8.15","gcamValue":2},{"gcamCode":"c8.17","gcamValue":6},{"gcamCode":"c8.2","gcamValue":8},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.21","gcamValue":6},{"gcamCode":"c8.22","gcamValue":5},{"gcamCode":"c8.23","gcamValue":18},{"gcamCode":"c8.24","gcamValue":1},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":4},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.3","gcamValue":5},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":3},{"gcamCode":"c8.36","gcamValue":7},{"gcamCode":"c8.37","gcamValue":35},{"gcamCode":"c8.38","gcamValue":16},{"gcamCode":"c8.39","gcamValue":8},{"gcamCode":"c8.4","gcamValue":49},{"gcamCode":"c8.40","gcamValue":14},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":76},{"gcamCode":"c8.43","gcamValue":29},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c8.6","gcamValue":4},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":61},{"gcamCode":"c9.10","gcamValue":13},{"gcamCode":"c9.1000","gcamValue":3},{"gcamCode":"c9.1002","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":5},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":3},{"gcamCode":"c9.1012","gcamValue":2},{"gcamCode":"c9.1013","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":34},{"gcamCode":"c9.1021","gcamValue":31},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":19},{"gcamCode":"c9.1024","gcamValue":7},{"gcamCode":"c9.1025","gcamValue":1},{"gcamCode":"c9.1027","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":7},{"gcamCode":"c9.1030","gcamValue":8},{"gcamCode":"c9.1033","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":32},{"gcamCode":"c9.1035","gcamValue":13},{"gcamCode":"c9.1036","gcamValue":6},{"gcamCode":"c9.1038","gcamValue":21},{"gcamCode":"c9.1039","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":9},{"gcamCode":"c9.109","gcamValue":5},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":9},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":8},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":11},{"gcamCode":"c9.12","gcamValue":6},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":70},{"gcamCode":"c9.129","gcamValue":6},{"gcamCode":"c9.13","gcamValue":3},{"gcamCode":"c9.130","gcamValue":15},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":2},{"gcamCode":"c9.133","gcamValue":4},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.143","gcamValue":9},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":7},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":8},{"gcamCode":"c9.150","gcamValue":5},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":42},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":3},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":5},{"gcamCode":"c9.162","gcamValue":12},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.165","gcamValue":4},{"gcamCode":"c9.166","gcamValue":5},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":14},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.171","gcamValue":2},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":4},{"gcamCode":"c9.175","gcamValue":8},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":12},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.179","gcamValue":6},{"gcamCode":"c9.18","gcamValue":24},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":17},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":16},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":16},{"gcamCode":"c9.19","gcamValue":9},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":5},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":6},{"gcamCode":"c9.195","gcamValue":10},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":10},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":8},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.205","gcamValue":7},{"gcamCode":"c9.206","gcamValue":10},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.213","gcamValue":2},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.215","gcamValue":4},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":4},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":7},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.23","gcamValue":18},{"gcamCode":"c9.230","gcamValue":3},{"gcamCode":"c9.231","gcamValue":7},{"gcamCode":"c9.232","gcamValue":3},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":21},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":4},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.25","gcamValue":5},{"gcamCode":"c9.250","gcamValue":4},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.26","gcamValue":2},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.262","gcamValue":5},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":4},{"gcamCode":"c9.275","gcamValue":10},{"gcamCode":"c9.276","gcamValue":5},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.28","gcamValue":3},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":4},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":53},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":9},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":4},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.31","gcamValue":5},{"gcamCode":"c9.311","gcamValue":2},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.324","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.33","gcamValue":27},{"gcamCode":"c9.331","gcamValue":3},{"gcamCode":"c9.335","gcamValue":3},{"gcamCode":"c9.34","gcamValue":8},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":13},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":5},{"gcamCode":"c9.359","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":9},{"gcamCode":"c9.371","gcamValue":8},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.374","gcamValue":7},{"gcamCode":"c9.375","gcamValue":3},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":15},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.385","gcamValue":9},{"gcamCode":"c9.386","gcamValue":13},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":27},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.398","gcamValue":4},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.411","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":4},{"gcamCode":"c9.420","gcamValue":4},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":5},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":7},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.435","gcamValue":3},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":10},{"gcamCode":"c9.440","gcamValue":8},{"gcamCode":"c9.442","gcamValue":2},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.446","gcamValue":9},{"gcamCode":"c9.45","gcamValue":5},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.458","gcamValue":5},{"gcamCode":"c9.459","gcamValue":6},{"gcamCode":"c9.46","gcamValue":44},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.466","gcamValue":5},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":5},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.474","gcamValue":5},{"gcamCode":"c9.476","gcamValue":6},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.478","gcamValue":7},{"gcamCode":"c9.479","gcamValue":16},{"gcamCode":"c9.48","gcamValue":10},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.485","gcamValue":3},{"gcamCode":"c9.488","gcamValue":4},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":5},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":3},{"gcamCode":"c9.496","gcamValue":28},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":15},{"gcamCode":"c9.499","gcamValue":9},{"gcamCode":"c9.5","gcamValue":6},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":13},{"gcamCode":"c9.502","gcamValue":5},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":48},{"gcamCode":"c9.509","gcamValue":2},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.510","gcamValue":2},{"gcamCode":"c9.511","gcamValue":32},{"gcamCode":"c9.512","gcamValue":2},{"gcamCode":"c9.513","gcamValue":72},{"gcamCode":"c9.514","gcamValue":4},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":31},{"gcamCode":"c9.518","gcamValue":9},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":13},{"gcamCode":"c9.522","gcamValue":12},{"gcamCode":"c9.523","gcamValue":13},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.528","gcamValue":5},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":12},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":3},{"gcamCode":"c9.534","gcamValue":4},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":12},{"gcamCode":"c9.540","gcamValue":6},{"gcamCode":"c9.542","gcamValue":5},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":9},{"gcamCode":"c9.55","gcamValue":18},{"gcamCode":"c9.550","gcamValue":3},{"gcamCode":"c9.551","gcamValue":40},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":10},{"gcamCode":"c9.557","gcamValue":14},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.560","gcamValue":11},{"gcamCode":"c9.561","gcamValue":9},{"gcamCode":"c9.562","gcamValue":35},{"gcamCode":"c9.563","gcamValue":1},{"gcamCode":"c9.564","gcamValue":11},{"gcamCode":"c9.565","gcamValue":34},{"gcamCode":"c9.566","gcamValue":19},{"gcamCode":"c9.567","gcamValue":16},{"gcamCode":"c9.568","gcamValue":22},{"gcamCode":"c9.569","gcamValue":3},{"gcamCode":"c9.57","gcamValue":4},{"gcamCode":"c9.570","gcamValue":9},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.572","gcamValue":2},{"gcamCode":"c9.574","gcamValue":3},{"gcamCode":"c9.575","gcamValue":9},{"gcamCode":"c9.576","gcamValue":11},{"gcamCode":"c9.579","gcamValue":53},{"gcamCode":"c9.58","gcamValue":2},{"gcamCode":"c9.581","gcamValue":17},{"gcamCode":"c9.582","gcamValue":2},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":10},{"gcamCode":"c9.586","gcamValue":10},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":5},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.591","gcamValue":4},{"gcamCode":"c9.594","gcamValue":2},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.600","gcamValue":4},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.605","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":7},{"gcamCode":"c9.615","gcamValue":11},{"gcamCode":"c9.616","gcamValue":10},{"gcamCode":"c9.617","gcamValue":8},{"gcamCode":"c9.618","gcamValue":9},{"gcamCode":"c9.619","gcamValue":11},{"gcamCode":"c9.62","gcamValue":11},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":6},{"gcamCode":"c9.625","gcamValue":14},{"gcamCode":"c9.626","gcamValue":7},{"gcamCode":"c9.627","gcamValue":9},{"gcamCode":"c9.629","gcamValue":12},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":9},{"gcamCode":"c9.635","gcamValue":15},{"gcamCode":"c9.636","gcamValue":3},{"gcamCode":"c9.637","gcamValue":4},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":10},{"gcamCode":"c9.640","gcamValue":18},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":19},{"gcamCode":"c9.645","gcamValue":2},{"gcamCode":"c9.646","gcamValue":9},{"gcamCode":"c9.648","gcamValue":19},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.651","gcamValue":2},{"gcamCode":"c9.653","gcamValue":64},{"gcamCode":"c9.654","gcamValue":11},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":11},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":10},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":6},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":10},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":27},{"gcamCode":"c9.671","gcamValue":5},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":7},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":17},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.680","gcamValue":3},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":37},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.686","gcamValue":3},{"gcamCode":"c9.687","gcamValue":14},{"gcamCode":"c9.688","gcamValue":2},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.692","gcamValue":15},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":8},{"gcamCode":"c9.696","gcamValue":2},{"gcamCode":"c9.698","gcamValue":18},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":22},{"gcamCode":"c9.702","gcamValue":2},{"gcamCode":"c9.704","gcamValue":14},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":12},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":10},{"gcamCode":"c9.710","gcamValue":8},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":10},{"gcamCode":"c9.721","gcamValue":5},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":3},{"gcamCode":"c9.724","gcamValue":6},{"gcamCode":"c9.725","gcamValue":4},{"gcamCode":"c9.726","gcamValue":62},{"gcamCode":"c9.727","gcamValue":4},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":5},{"gcamCode":"c9.730","gcamValue":55},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.735","gcamValue":10},{"gcamCode":"c9.736","gcamValue":12},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":8},{"gcamCode":"c9.741","gcamValue":12},{"gcamCode":"c9.742","gcamValue":19},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.745","gcamValue":6},{"gcamCode":"c9.746","gcamValue":10},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":26},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.752","gcamValue":2},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":4},{"gcamCode":"c9.757","gcamValue":9},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":14},{"gcamCode":"c9.760","gcamValue":9},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":52},{"gcamCode":"c9.763","gcamValue":24},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.765","gcamValue":6},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":72},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.77","gcamValue":2},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":10},{"gcamCode":"c9.773","gcamValue":10},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":4},{"gcamCode":"c9.78","gcamValue":10},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.785","gcamValue":3},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":10},{"gcamCode":"c9.790","gcamValue":9},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":9},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.794","gcamValue":2},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.798","gcamValue":4},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":7},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":9},{"gcamCode":"c9.803","gcamValue":12},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":6},{"gcamCode":"c9.808","gcamValue":15},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.810","gcamValue":4},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":9},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.816","gcamValue":12},{"gcamCode":"c9.817","gcamValue":3},{"gcamCode":"c9.818","gcamValue":6},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":28},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.83","gcamValue":35},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.832","gcamValue":4},{"gcamCode":"c9.833","gcamValue":7},{"gcamCode":"c9.834","gcamValue":7},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":8},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.841","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.844","gcamValue":3},{"gcamCode":"c9.846","gcamValue":5},{"gcamCode":"c9.847","gcamValue":3},{"gcamCode":"c9.848","gcamValue":4},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":11},{"gcamCode":"c9.854","gcamValue":1},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.857","gcamValue":15},{"gcamCode":"c9.858","gcamValue":16},{"gcamCode":"c9.859","gcamValue":1},{"gcamCode":"c9.86","gcamValue":6},{"gcamCode":"c9.860","gcamValue":15},{"gcamCode":"c9.861","gcamValue":25},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":5},{"gcamCode":"c9.864","gcamValue":65},{"gcamCode":"c9.865","gcamValue":27},{"gcamCode":"c9.866","gcamValue":6},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":50},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.873","gcamValue":27},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.878","gcamValue":6},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.888","gcamValue":3},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":11},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":6},{"gcamCode":"c9.899","gcamValue":7},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":11},{"gcamCode":"c9.900","gcamValue":3},{"gcamCode":"c9.901","gcamValue":4},{"gcamCode":"c9.902","gcamValue":5},{"gcamCode":"c9.903","gcamValue":30},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":14},{"gcamCode":"c9.911","gcamValue":20},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.915","gcamValue":6},{"gcamCode":"c9.916","gcamValue":7},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.918","gcamValue":14},{"gcamCode":"c9.919","gcamValue":2},{"gcamCode":"c9.920","gcamValue":5},{"gcamCode":"c9.921","gcamValue":6},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":8},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":29},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.930","gcamValue":10},{"gcamCode":"c9.931","gcamValue":10},{"gcamCode":"c9.932","gcamValue":17},{"gcamCode":"c9.935","gcamValue":44},{"gcamCode":"c9.936","gcamValue":6},{"gcamCode":"c9.937","gcamValue":12},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.941","gcamValue":12},{"gcamCode":"c9.942","gcamValue":8},{"gcamCode":"c9.943","gcamValue":1},{"gcamCode":"c9.945","gcamValue":39},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.95","gcamValue":4},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":9},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":10},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":3},{"gcamCode":"c9.965","gcamValue":4},{"gcamCode":"c9.966","gcamValue":8},{"gcamCode":"c9.969","gcamValue":5},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":42},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.975","gcamValue":2},{"gcamCode":"c9.978","gcamValue":15},{"gcamCode":"c9.980","gcamValue":25},{"gcamCode":"c9.981","gcamValue":11},{"gcamCode":"c9.983","gcamValue":4},{"gcamCode":"c9.984","gcamValue":16},{"gcamCode":"c9.985","gcamValue":19},{"gcamCode":"c9.986","gcamValue":10},{"gcamCode":"c9.987","gcamValue":2},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.992","gcamValue":1},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"c9.998","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.309120221176673},{"gcamCode":"v10.2","gcamValue":0.262681892555091},{"gcamCode":"v11.1","gcamValue":0.0946882477924944},{"gcamCode":"v19.1","gcamValue":6.40815028901734},{"gcamCode":"v19.2","gcamValue":5.17994219653179},{"gcamCode":"v19.3","gcamValue":5.55936416184971},{"gcamCode":"v19.4","gcamValue":6.18595375722543},{"gcamCode":"v19.5","gcamValue":5.04815028901734},{"gcamCode":"v19.6","gcamValue":5.57208092485549},{"gcamCode":"v19.7","gcamValue":6.57982658959537},{"gcamCode":"v19.8","gcamValue":5.32323699421965},{"gcamCode":"v19.9","gcamValue":5.52612716763006},{"gcamCode":"v20.1","gcamValue":0.465052631578947},{"gcamCode":"v20.10","gcamValue":-0.688090909090909},{"gcamCode":"v20.11","gcamValue":0.583522388059702},{"gcamCode":"v20.12","gcamValue":-0.647785714285714},{"gcamCode":"v20.13","gcamValue":0.469570422535212},{"gcamCode":"v20.14","gcamValue":-0.588823529411765},{"gcamCode":"v20.15","gcamValue":0.401844919786096},{"gcamCode":"v20.16","gcamValue":-0.442518518518519},{"gcamCode":"v20.2","gcamValue":-0.433},{"gcamCode":"v20.3","gcamValue":0.50132},{"gcamCode":"v20.4","gcamValue":-0.602375},{"gcamCode":"v20.5","gcamValue":0.550285714285714},{"gcamCode":"v20.6","gcamValue":-0.6819},{"gcamCode":"v20.7","gcamValue":0.557172413793103},{"gcamCode":"v20.8","gcamValue":-0.688090909090909},{"gcamCode":"v20.9","gcamValue":0.595559322033898},{"gcamCode":"v21.1","gcamValue":5.62412199630313},{"gcamCode":"v26.1","gcamValue":1.1260162601626}]https://www.firstthings.com/uploads/article_5ce66a34c03dd.jpg[""][""][""][][{"name":"Georgetown Visitation Preparatory School","charOffset":41},{"name":"Salesian Sisters","charOffset":97},{"name":"Holy Mary","charOffset":141},{"name":"Mary Berchmans","charOffset":298},{"name":"Visitation Monastery","charOffset":349},{"name":"Thirty-fifth Street","charOffset":794},{"name":"Holy Spirit","charOffset":3027},{"name":"James Martin","charOffset":4407},{"name":"Holy Father","charOffset":5514},{"name":"Francis De Sales","charOffset":5618},{"name":"Master Craftsman","charOffset":6152}][{"amount":1000000,"amountType":"of Catholics around the","charOffset":4323}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Authors</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523000000</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBiheart.comhttps://933flz.iheart.com/featured/florida-news/content/2019-05-23-sheriffs-office-tweets-dont-shoot-guns-in-public/[][]["TAX_FNCACT","TAX_FNCACT_SHERIFF","CRISISLEX_C07_SAFETY","TAX_WEAPONS","TAX_WEAPONS_FIREARM","TAX_WEAPONS_GUNS"][{"theme":"TAX_WEAPONS_FIREARM","charOffset":101},{"theme":"TAX_FNCACT_SHERIFF","charOffset":29},{"theme":"CRISISLEX_C07_SAFETY","charOffset":29},{"theme":"TAX_WEAPONS_GUNS","charOffset":246}][{"geoType":"USSTATE","geoName":"Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":27.8333,"longitude":-81.717},"featureId":"FL"},{"geoType":"USCITY","geoName":"Royal Palm Beach, Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":26.7084,"longitude":-80.2306},"featureId":"302697"}][{"location":{"geoType":"USSTATE","geoName":"Floridians, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"","geoPoint":{"latitude":27.8333,"longitude":-81.717},"featureId":"FL"},"charOffset":169},{"location":{"geoType":"USCITY","geoName":"Royal Palm Beach, Florida, United States","countryCode":"US","adm1Code":"USFL","adm2Code":"FL099","geoPoint":{"latitude":26.7084,"longitude":-80.2306},"featureId":"302697"},"charOffset":318}][""][]["palm beach county sheriff office"][{"organisation":"Palm Beach County Sheriff Office","charOffset":36}]{"tone":-3.3333333,"positiveScore":0,"negativeScore":3.3333333,"polarity":3.3333333,"activityReferenceDensity":25,"selfGroupReferenceDensity":3.3333333,"wordCount":58}[][{"gcamCode":"wc","gcamValue":58},{"gcamCode":"c12.10","gcamValue":3},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.13","gcamValue":2},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.8","gcamValue":2},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":1},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":1},{"gcamCode":"c14.3","gcamValue":2},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":1},{"gcamCode":"c16.100","gcamValue":2},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":4},{"gcamCode":"c16.109","gcamValue":5},{"gcamCode":"c16.110","gcamValue":10},{"gcamCode":"c16.114","gcamValue":7},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":8},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":1},{"gcamCode":"c16.121","gcamValue":2},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.127","gcamValue":4},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":6},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":6},{"gcamCode":"c16.138","gcamValue":1},{"gcamCode":"c16.139","gcamValue":4},{"gcamCode":"c16.140","gcamValue":2},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":4},{"gcamCode":"c16.146","gcamValue":2},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":1},{"gcamCode":"c16.159","gcamValue":5},{"gcamCode":"c16.161","gcamValue":6},{"gcamCode":"c16.162","gcamValue":1},{"gcamCode":"c16.163","gcamValue":3},{"gcamCode":"c16.19","gcamValue":4},{"gcamCode":"c16.2","gcamValue":3},{"gcamCode":"c16.22","gcamValue":2},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":11},{"gcamCode":"c16.31","gcamValue":1},{"gcamCode":"c16.32","gcamValue":1},{"gcamCode":"c16.33","gcamValue":8},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.37","gcamValue":8},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":4},{"gcamCode":"c16.47","gcamValue":8},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.52","gcamValue":3},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":34},{"gcamCode":"c16.58","gcamValue":4},{"gcamCode":"c16.6","gcamValue":8},{"gcamCode":"c16.62","gcamValue":4},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":4},{"gcamCode":"c16.69","gcamValue":4},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.75","gcamValue":4},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.84","gcamValue":1},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":7},{"gcamCode":"c16.88","gcamValue":11},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.90","gcamValue":2},{"gcamCode":"c16.91","gcamValue":2},{"gcamCode":"c16.92","gcamValue":3},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":6},{"gcamCode":"c16.98","gcamValue":6},{"gcamCode":"c17.1","gcamValue":16},{"gcamCode":"c17.10","gcamValue":7},{"gcamCode":"c17.11","gcamValue":10},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.15","gcamValue":3},{"gcamCode":"c17.16","gcamValue":2},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":2},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":4},{"gcamCode":"c17.22","gcamValue":1},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":11},{"gcamCode":"c17.27","gcamValue":6},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":3},{"gcamCode":"c17.34","gcamValue":2},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":5},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":16},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.42","gcamValue":2},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":12},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":9},{"gcamCode":"c17.8","gcamValue":1},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.235","gcamValue":2},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":10},{"gcamCode":"c2.114","gcamValue":3},{"gcamCode":"c2.116","gcamValue":2},{"gcamCode":"c2.119","gcamValue":16},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":4},{"gcamCode":"c2.122","gcamValue":2},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":4},{"gcamCode":"c2.127","gcamValue":6},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":6},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.14","gcamValue":3},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":7},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":9},{"gcamCode":"c2.148","gcamValue":6},{"gcamCode":"c2.15","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":4},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":4},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":3},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":5},{"gcamCode":"c2.179","gcamValue":2},{"gcamCode":"c2.18","gcamValue":4},{"gcamCode":"c2.180","gcamValue":4},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":8},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":4},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.193","gcamValue":6},{"gcamCode":"c2.195","gcamValue":5},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.198","gcamValue":4},{"gcamCode":"c2.199","gcamValue":2},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":5},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":6},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.220","gcamValue":1},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":6},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":3},{"gcamCode":"c2.31","gcamValue":4},{"gcamCode":"c2.34","gcamValue":2},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":1},{"gcamCode":"c2.39","gcamValue":10},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":1},{"gcamCode":"c2.46","gcamValue":6},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":7},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.75","gcamValue":9},{"gcamCode":"c2.76","gcamValue":41},{"gcamCode":"c2.77","gcamValue":8},{"gcamCode":"c2.78","gcamValue":12},{"gcamCode":"c2.79","gcamValue":1},{"gcamCode":"c2.80","gcamValue":4},{"gcamCode":"c2.82","gcamValue":5},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":1},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":1},{"gcamCode":"c35.32","gcamValue":2},{"gcamCode":"c35.33","gcamValue":7},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.23","gcamValue":4},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":5},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":6},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":3},{"gcamCode":"c5.40","gcamValue":4},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":9},{"gcamCode":"c5.47","gcamValue":1},{"gcamCode":"c5.49","gcamValue":7},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":6},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":7},{"gcamCode":"c5.53","gcamValue":6},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":7},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":27},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.25","gcamValue":3},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":4},{"gcamCode":"c8.42","gcamValue":2},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c9.1","gcamValue":4},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.128","gcamValue":5},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.3","gcamValue":4},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.39","gcamValue":1},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.579","gcamValue":4},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":1},{"gcamCode":"c9.726","gcamValue":4},{"gcamCode":"c9.730","gcamValue":4},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":4},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":6},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":4},{"gcamCode":"c9.868","gcamValue":4},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":2},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.234375},{"gcamCode":"v10.2","gcamValue":0.215625},{"gcamCode":"v11.1","gcamValue":0.07280625},{"gcamCode":"v19.1","gcamValue":7.1},{"gcamCode":"v19.2","gcamValue":5.04666666666667},{"gcamCode":"v19.3","gcamValue":5.49},{"gcamCode":"v19.4","gcamValue":7.40666666666667},{"gcamCode":"v19.5","gcamValue":5.94666666666667},{"gcamCode":"v19.6","gcamValue":5.63333333333333},{"gcamCode":"v19.7","gcamValue":6.83},{"gcamCode":"v19.8","gcamValue":4.32666666666667},{"gcamCode":"v19.9","gcamValue":5.39333333333333},{"gcamCode":"v20.13","gcamValue":0.396},{"gcamCode":"v20.15","gcamValue":0.3595},{"gcamCode":"v20.16","gcamValue":-0.25},{"gcamCode":"v21.1","gcamValue":5.33137254901961},{"gcamCode":"v26.1","gcamValue":-0.733333333333333}]https://i.iheart.com/v3/re/new_assets/5cacb3ea049949b8c53687b7[""]["https://pic.twitter.com/VTVSJSFB9q"][""][][{"name":"Palm Beach County Sheriff","charOffset":30},{"name":"Shoot Guns In Public","charOffset":260},{"name":"Royal Palm Beach","charOffset":325}][]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523113700</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBktts.comhttps://www.ktts.com/2019/05/23/violent-tornado-touches-down-in-jefferson-city/[{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}}][{"count":{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1378},{"count":{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1378},{"count":{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}},"charOffset":3189}]["EPU_CATS_MIGRATION_FEAR_FEAR","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","KILL","CRISISLEX_T03_DEAD","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_SHERIFF","TAX_DISEASE","TAX_DISEASE_SHINGLES","SHORTAGE","MANMADE_DISASTER","MANMADE_DISASTER_POWER_OUTAGES","POWER_OUTAGE","NATURAL_DISASTER_SEVERE_WEATHER","NATURAL_DISASTER_TORNADOES","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","UNGP_CRIME_VIOLENCE","NATURAL_DISASTER_TWISTER","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_AIRPORT","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_1804_AIRPORTS","NATURAL_DISASTER_TORRENTIAL_RAINS","MARITIME_INCIDENT","MARITIME","MANMADE_DISASTER_IMPLIED","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_KANSAS","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_OFFICIALS","GOV_LOCALGOV","EVACUATION","CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","TAX_FNCACT_OFFICIAL","MEDIA_SOCIAL","AFFECT","NATURAL_DISASTER_DAM_BREAKS","MEDIA_MSM","TAX_FNCACT_WOMAN","NATURAL_DISASTER_HEAVY_RAIN","TRAFFIC","ROAD_INCIDENT","MANMADE_DISASTER_TRAFFIC_ACCIDENT","SOC_TRAFFICACCIDENT","WB_168_ROADS_AND_HIGHWAYS","WB_1809_HIGHWAYS","NATURAL_DISASTER_DROWNED","GENERAL_HEALTH","MEDICAL","CRISISLEX_C03_WELLBEING_HEALTH","TAX_FNCACT_EXAMINER","TAX_FNCACT_MEDICAL_EXAMINER","TAX_FNCACT_SPOKESWOMAN"][{"theme":"SHORTAGE","charOffset":948},{"theme":"TAX_FNCACT_WOMAN","charOffset":3036},{"theme":"TAX_FNCACT_WOMAN","charOffset":3438},{"theme":"TAX_FNCACT_WOMAN","charOffset":3601},{"theme":"EVACUATION","charOffset":2135},{"theme":"CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","charOffset":2135},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":1671},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":1954},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":2940},{"theme":"TAX_FNCACT_SHERIFF","charOffset":814},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":144},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":144},{"theme":"KILL","charOffset":493},{"theme":"CRISISLEX_T03_DEAD","charOffset":493},{"theme":"MANMADE_DISASTER_POWER_OUTAGES","charOffset":948},{"theme":"POWER_OUTAGE","charOffset":948},{"theme":"MARITIME_INCIDENT","charOffset":1723},{"theme":"MARITIME_INCIDENT","charOffset":2302},{"theme":"MARITIME_INCIDENT","charOffset":2388},{"theme":"MARITIME_INCIDENT","charOffset":2561},{"theme":"MARITIME","charOffset":1723},{"theme":"MARITIME","charOffset":2302},{"theme":"MARITIME","charOffset":2388},{"theme":"MARITIME","charOffset":2561},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1723},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2302},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2388},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2561},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":1134},{"theme":"AFFECT","charOffset":2335},{"theme":"NATURAL_DISASTER_DAM_BREAKS","charOffset":2462},{"theme":"SECURITY_SERVICES","charOffset":551},{"theme":"TAX_FNCACT_POLICE","charOffset":551},{"theme":"CRISISLEX_C07_SAFETY","charOffset":551},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":2245},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":1056},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":1056},{"theme":"TRAFFIC","charOffset":3291},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":3418},{"theme":"WB_1809_HIGHWAYS","charOffset":3418},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":3226},{"theme":"GOV_LOCALGOV","charOffset":2104},{"theme":"GENERAL_HEALTH","charOffset":3636},{"theme":"MEDICAL","charOffset":3636},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":3636},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":1607},{"theme":"TAX_FNCACT_EXAMINER","charOffset":3645},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":56},{"theme":"NATURAL_DISASTER_DROWNED","charOffset":3457},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1894},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":3210},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1894},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":3210},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1985},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2796},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":1021},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":2970},{"theme":"TAX_FNCACT_MEDICAL_EXAMINER","charOffset":3645},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":1311},{"theme":"MEDIA_SOCIAL","charOffset":2254},{"theme":"MEDIA_MSM","charOffset":2600},{"theme":"ROAD_INCIDENT","charOffset":3300},{"theme":"MANMADE_DISASTER_TRAFFIC_ACCIDENT","charOffset":3300},{"theme":"SOC_TRAFFICACCIDENT","charOffset":3300},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":64},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":267},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1324},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1413},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1461},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":3132},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":64},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":267},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1324},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1413},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1461},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3132},{"theme":"CRISISLEX_O01_WEATHER","charOffset":64},{"theme":"CRISISLEX_O01_WEATHER","charOffset":267},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1324},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1413},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1461},{"theme":"CRISISLEX_O01_WEATHER","charOffset":3132},{"theme":"SOC_POINTSOFINTEREST_AIRPORT","charOffset":1578},{"theme":"WB_135_TRANSPORT","charOffset":1578},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":1578},{"theme":"WB_1804_AIRPORTS","charOffset":1578},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":3739},{"theme":"TAX_DISEASE_SHINGLES","charOffset":874},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":2104},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":3085},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1039},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1211},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2879}][{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}][{"location":{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO077","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"},"charOffset":3325},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":1689},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":3074},{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":1645},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":1671},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":1954},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":2940},{"location":{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},"charOffset":2789},{"location":{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO001","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},"charOffset":3173},{"location":{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK109","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},"charOffset":3562},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":2044},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":2349},{"location":{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},"charOffset":791},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":121},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1120},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1376},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1700},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2775},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2931},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":3198},{"location":{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},"charOffset":1682},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1662},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1805},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1945},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":2070},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":2920},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3398},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3557},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3692},{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":1711},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":1509},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":95},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":297},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":529}]["keli cain","david williams"][{"person":"Keli Cain","charOffset":3749},{"person":"David Williams","charOffset":570}]["jefferson city police","facebook","national weather service","oklahoma department of emergency management"][{"organisation":"Facebook","charOffset":2254},{"organisation":"National Weather Service","charOffset":198},{"organisation":"National Weather Service","charOffset":1166},{"organisation":"Oklahoma Department Of Emergency Management","charOffset":3727}]{"tone":-6.6666665,"positiveScore":0.16260162,"negativeScore":6.8292685,"polarity":6.99187,"activityReferenceDensity":20.487804,"selfGroupReferenceDensity":0.16260162,"wordCount":568}[][{"gcamCode":"wc","gcamValue":568},{"gcamCode":"c12.1","gcamValue":24},{"gcamCode":"c12.10","gcamValue":45},{"gcamCode":"c12.12","gcamValue":23},{"gcamCode":"c12.13","gcamValue":14},{"gcamCode":"c12.14","gcamValue":13},{"gcamCode":"c12.3","gcamValue":16},{"gcamCode":"c12.4","gcamValue":4},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":35},{"gcamCode":"c12.8","gcamValue":17},{"gcamCode":"c12.9","gcamValue":16},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c13.3","gcamValue":9},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":28},{"gcamCode":"c14.10","gcamValue":19},{"gcamCode":"c14.11","gcamValue":50},{"gcamCode":"c14.2","gcamValue":25},{"gcamCode":"c14.3","gcamValue":27},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":61},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.48","gcamValue":2},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":18},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":20},{"gcamCode":"c16.109","gcamValue":30},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":71},{"gcamCode":"c16.111","gcamValue":11},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":32},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":18},{"gcamCode":"c16.117","gcamValue":19},{"gcamCode":"c16.118","gcamValue":36},{"gcamCode":"c16.12","gcamValue":45},{"gcamCode":"c16.120","gcamValue":22},{"gcamCode":"c16.121","gcamValue":47},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.125","gcamValue":23},{"gcamCode":"c16.126","gcamValue":20},{"gcamCode":"c16.127","gcamValue":35},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":74},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":21},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":62},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":19},{"gcamCode":"c16.140","gcamValue":29},{"gcamCode":"c16.143","gcamValue":3},{"gcamCode":"c16.145","gcamValue":30},{"gcamCode":"c16.146","gcamValue":28},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":3},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":16},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":7},{"gcamCode":"c16.159","gcamValue":44},{"gcamCode":"c16.16","gcamValue":7},{"gcamCode":"c16.161","gcamValue":58},{"gcamCode":"c16.162","gcamValue":41},{"gcamCode":"c16.163","gcamValue":46},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":12},{"gcamCode":"c16.2","gcamValue":54},{"gcamCode":"c16.20","gcamValue":3},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":9},{"gcamCode":"c16.26","gcamValue":55},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":5},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":25},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":53},{"gcamCode":"c16.35","gcamValue":27},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":42},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":36},{"gcamCode":"c16.41","gcamValue":21},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":20},{"gcamCode":"c16.46","gcamValue":8},{"gcamCode":"c16.47","gcamValue":53},{"gcamCode":"c16.48","gcamValue":5},{"gcamCode":"c16.49","gcamValue":4},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.52","gcamValue":33},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.55","gcamValue":9},{"gcamCode":"c16.56","gcamValue":6},{"gcamCode":"c16.57","gcamValue":305},{"gcamCode":"c16.58","gcamValue":29},{"gcamCode":"c16.6","gcamValue":57},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.62","gcamValue":20},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":8},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":21},{"gcamCode":"c16.69","gcamValue":19},{"gcamCode":"c16.7","gcamValue":11},{"gcamCode":"c16.70","gcamValue":60},{"gcamCode":"c16.71","gcamValue":23},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":20},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":28},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":18},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":50},{"gcamCode":"c16.88","gcamValue":78},{"gcamCode":"c16.89","gcamValue":12},{"gcamCode":"c16.9","gcamValue":8},{"gcamCode":"c16.90","gcamValue":12},{"gcamCode":"c16.91","gcamValue":15},{"gcamCode":"c16.92","gcamValue":43},{"gcamCode":"c16.93","gcamValue":19},{"gcamCode":"c16.94","gcamValue":42},{"gcamCode":"c16.95","gcamValue":49},{"gcamCode":"c16.96","gcamValue":5},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":29},{"gcamCode":"c16.99","gcamValue":12},{"gcamCode":"c17.1","gcamValue":155},{"gcamCode":"c17.10","gcamValue":35},{"gcamCode":"c17.11","gcamValue":63},{"gcamCode":"c17.12","gcamValue":24},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":48},{"gcamCode":"c17.16","gcamValue":39},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":15},{"gcamCode":"c17.19","gcamValue":28},{"gcamCode":"c17.2","gcamValue":9},{"gcamCode":"c17.20","gcamValue":20},{"gcamCode":"c17.21","gcamValue":7},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":3},{"gcamCode":"c17.24","gcamValue":44},{"gcamCode":"c17.25","gcamValue":9},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":51},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":18},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":7},{"gcamCode":"c17.31","gcamValue":34},{"gcamCode":"c17.32","gcamValue":12},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":8},{"gcamCode":"c17.35","gcamValue":9},{"gcamCode":"c17.36","gcamValue":29},{"gcamCode":"c17.37","gcamValue":11},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":21},{"gcamCode":"c17.4","gcamValue":141},{"gcamCode":"c17.40","gcamValue":9},{"gcamCode":"c17.41","gcamValue":14},{"gcamCode":"c17.42","gcamValue":24},{"gcamCode":"c17.43","gcamValue":25},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":100},{"gcamCode":"c17.6","gcamValue":5},{"gcamCode":"c17.7","gcamValue":69},{"gcamCode":"c17.8","gcamValue":43},{"gcamCode":"c17.9","gcamValue":11},{"gcamCode":"c18.1","gcamValue":6},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.156","gcamValue":27},{"gcamCode":"c18.159","gcamValue":1},{"gcamCode":"c18.162","gcamValue":2},{"gcamCode":"c18.163","gcamValue":1},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":13},{"gcamCode":"c18.245","gcamValue":1},{"gcamCode":"c18.257","gcamValue":1},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":15},{"gcamCode":"c18.50","gcamValue":1},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.83","gcamValue":2},{"gcamCode":"c2.1","gcamValue":30},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":13},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.103","gcamValue":4},{"gcamCode":"c2.104","gcamValue":68},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":10},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":5},{"gcamCode":"c2.112","gcamValue":12},{"gcamCode":"c2.113","gcamValue":5},{"gcamCode":"c2.114","gcamValue":29},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":26},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":169},{"gcamCode":"c2.12","gcamValue":23},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":32},{"gcamCode":"c2.122","gcamValue":10},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":27},{"gcamCode":"c2.126","gcamValue":23},{"gcamCode":"c2.127","gcamValue":58},{"gcamCode":"c2.128","gcamValue":51},{"gcamCode":"c2.129","gcamValue":55},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.132","gcamValue":6},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":4},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":37},{"gcamCode":"c2.141","gcamValue":12},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":31},{"gcamCode":"c2.144","gcamValue":12},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":9},{"gcamCode":"c2.147","gcamValue":81},{"gcamCode":"c2.148","gcamValue":37},{"gcamCode":"c2.15","gcamValue":8},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":11},{"gcamCode":"c2.155","gcamValue":28},{"gcamCode":"c2.156","gcamValue":23},{"gcamCode":"c2.157","gcamValue":27},{"gcamCode":"c2.158","gcamValue":36},{"gcamCode":"c2.159","gcamValue":7},{"gcamCode":"c2.16","gcamValue":6},{"gcamCode":"c2.160","gcamValue":28},{"gcamCode":"c2.162","gcamValue":9},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":10},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":11},{"gcamCode":"c2.173","gcamValue":7},{"gcamCode":"c2.174","gcamValue":3},{"gcamCode":"c2.175","gcamValue":4},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":25},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":16},{"gcamCode":"c2.18","gcamValue":19},{"gcamCode":"c2.180","gcamValue":19},{"gcamCode":"c2.181","gcamValue":20},{"gcamCode":"c2.183","gcamValue":20},{"gcamCode":"c2.185","gcamValue":101},{"gcamCode":"c2.186","gcamValue":6},{"gcamCode":"c2.187","gcamValue":34},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.190","gcamValue":5},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":9},{"gcamCode":"c2.193","gcamValue":48},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":48},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":19},{"gcamCode":"c2.198","gcamValue":74},{"gcamCode":"c2.199","gcamValue":12},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.201","gcamValue":10},{"gcamCode":"c2.203","gcamValue":18},{"gcamCode":"c2.204","gcamValue":51},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.208","gcamValue":17},{"gcamCode":"c2.209","gcamValue":16},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":44},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":15},{"gcamCode":"c2.214","gcamValue":13},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.220","gcamValue":16},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":17},{"gcamCode":"c2.226","gcamValue":10},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":36},{"gcamCode":"c2.25","gcamValue":30},{"gcamCode":"c2.26","gcamValue":21},{"gcamCode":"c2.27","gcamValue":21},{"gcamCode":"c2.28","gcamValue":9},{"gcamCode":"c2.30","gcamValue":21},{"gcamCode":"c2.31","gcamValue":22},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":41},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":7},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":80},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":24},{"gcamCode":"c2.45","gcamValue":39},{"gcamCode":"c2.46","gcamValue":55},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":15},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":36},{"gcamCode":"c2.54","gcamValue":44},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":10},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":19},{"gcamCode":"c2.64","gcamValue":15},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":5},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":5},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":62},{"gcamCode":"c2.76","gcamValue":361},{"gcamCode":"c2.77","gcamValue":45},{"gcamCode":"c2.78","gcamValue":63},{"gcamCode":"c2.79","gcamValue":14},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":40},{"gcamCode":"c2.81","gcamValue":15},{"gcamCode":"c2.82","gcamValue":15},{"gcamCode":"c2.83","gcamValue":5},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":15},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":7},{"gcamCode":"c2.89","gcamValue":12},{"gcamCode":"c2.9","gcamValue":17},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":12},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":80},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":9},{"gcamCode":"c2.98","gcamValue":37},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":6},{"gcamCode":"c25.5","gcamValue":13},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":54},{"gcamCode":"c3.2","gcamValue":23},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":21},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":11},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":6},{"gcamCode":"c35.32","gcamValue":8},{"gcamCode":"c35.33","gcamValue":34},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":3},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":23},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":7},{"gcamCode":"c39.37","gcamValue":22},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":6},{"gcamCode":"c39.4","gcamValue":31},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":8},{"gcamCode":"c39.5","gcamValue":18},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.9","gcamValue":3},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":3},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":19},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.3","gcamValue":7},{"gcamCode":"c40.4","gcamValue":8},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c41.1","gcamValue":25},{"gcamCode":"c5.10","gcamValue":63},{"gcamCode":"c5.11","gcamValue":14},{"gcamCode":"c5.12","gcamValue":108},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":5},{"gcamCode":"c5.19","gcamValue":11},{"gcamCode":"c5.2","gcamValue":9},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":17},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.26","gcamValue":12},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":6},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":33},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":7},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":17},{"gcamCode":"c5.35","gcamValue":1},{"gcamCode":"c5.36","gcamValue":19},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.40","gcamValue":32},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":13},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.45","gcamValue":8},{"gcamCode":"c5.46","gcamValue":77},{"gcamCode":"c5.47","gcamValue":23},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":37},{"gcamCode":"c5.5","gcamValue":5},{"gcamCode":"c5.50","gcamValue":49},{"gcamCode":"c5.51","gcamValue":39},{"gcamCode":"c5.52","gcamValue":63},{"gcamCode":"c5.53","gcamValue":55},{"gcamCode":"c5.54","gcamValue":13},{"gcamCode":"c5.55","gcamValue":5},{"gcamCode":"c5.56","gcamValue":2},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":22},{"gcamCode":"c5.60","gcamValue":8},{"gcamCode":"c5.61","gcamValue":21},{"gcamCode":"c5.62","gcamValue":221},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":14},{"gcamCode":"c5.9","gcamValue":29},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":3},{"gcamCode":"c6.3","gcamValue":7},{"gcamCode":"c6.4","gcamValue":20},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":9},{"gcamCode":"c7.1","gcamValue":36},{"gcamCode":"c7.2","gcamValue":9},{"gcamCode":"c8.10","gcamValue":7},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":4},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":15},{"gcamCode":"c8.2","gcamValue":24},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":15},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.28","gcamValue":4},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":4},{"gcamCode":"c8.37","gcamValue":10},{"gcamCode":"c8.38","gcamValue":3},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":19},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":16},{"gcamCode":"c8.43","gcamValue":15},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":23},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":5},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.104","gcamValue":4},{"gcamCode":"c9.1040","gcamValue":5},{"gcamCode":"c9.1041","gcamValue":4},{"gcamCode":"c9.107","gcamValue":7},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":9},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":8},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":12},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":31},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":4},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.138","gcamValue":5},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":7},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":6},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":8},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":10},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.179","gcamValue":2},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.180","gcamValue":3},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":5},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":11},{"gcamCode":"c9.197","gcamValue":5},{"gcamCode":"c9.198","gcamValue":14},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":7},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.215","gcamValue":6},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":5},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":5},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":3},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.289","gcamValue":2},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":20},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.318","gcamValue":3},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.322","gcamValue":7},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.330","gcamValue":3},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.34","gcamValue":10},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.348","gcamValue":4},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":5},{"gcamCode":"c9.358","gcamValue":10},{"gcamCode":"c9.359","gcamValue":11},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.360","gcamValue":4},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":6},{"gcamCode":"c9.372","gcamValue":3},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.383","gcamValue":11},{"gcamCode":"c9.385","gcamValue":5},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.4","gcamValue":4},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":6},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":8},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.489","gcamValue":7},{"gcamCode":"c9.49","gcamValue":11},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":4},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":6},{"gcamCode":"c9.513","gcamValue":8},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":10},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.54","gcamValue":7},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":8},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.560","gcamValue":11},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":20},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.642","gcamValue":9},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":3},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":29},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":9},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.667","gcamValue":7},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.677","gcamValue":5},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":10},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":9},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":6},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":7},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":3},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.724","gcamValue":13},{"gcamCode":"c9.726","gcamValue":22},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.730","gcamValue":19},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.734","gcamValue":8},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":11},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":3},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":2},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.762","gcamValue":19},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":16},{"gcamCode":"c9.767","gcamValue":32},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":3},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":19},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":6},{"gcamCode":"c9.868","gcamValue":19},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.880","gcamValue":2},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":5},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.897","gcamValue":4},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":7},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":5},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.948","gcamValue":2},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":6},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":3},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.257770065240479},{"gcamCode":"v10.2","gcamValue":0.287880378720896},{"gcamCode":"v11.1","gcamValue":0.000950626477541364},{"gcamCode":"v19.1","gcamValue":5.08208955223881},{"gcamCode":"v19.2","gcamValue":5.3476119402985},{"gcamCode":"v19.3","gcamValue":5.02029850746268},{"gcamCode":"v19.4","gcamValue":5.16537313432836},{"gcamCode":"v19.5","gcamValue":5.01805970149254},{"gcamCode":"v19.6","gcamValue":4.9920895522388},{"gcamCode":"v19.7","gcamValue":5.02686567164179},{"gcamCode":"v19.8","gcamValue":5.6176119402985},{"gcamCode":"v19.9","gcamValue":5.02880597014925},{"gcamCode":"v20.1","gcamValue":0.5915},{"gcamCode":"v20.10","gcamValue":-0.579916666666667},{"gcamCode":"v20.11","gcamValue":0.5366},{"gcamCode":"v20.12","gcamValue":-0.563933333333333},{"gcamCode":"v20.13","gcamValue":0.380826086956522},{"gcamCode":"v20.14","gcamValue":-0.506952380952381},{"gcamCode":"v20.15","gcamValue":0.352672413793103},{"gcamCode":"v20.16","gcamValue":-0.429866666666667},{"gcamCode":"v20.2","gcamValue":-0.271},{"gcamCode":"v20.3","gcamValue":0.5915},{"gcamCode":"v20.4","gcamValue":-0.271},{"gcamCode":"v20.5","gcamValue":0.5915},{"gcamCode":"v20.6","gcamValue":-0.493166666666667},{"gcamCode":"v20.7","gcamValue":0.5915},{"gcamCode":"v20.8","gcamValue":-0.557375},{"gcamCode":"v20.9","gcamValue":0.5915},{"gcamCode":"v21.1","gcamValue":5.24369696969697},{"gcamCode":"v26.1","gcamValue":-0.918181818181818}]https://dehayf5mhw1h7.cloudfront.net/wp-content/uploads/sites/1028/2019/05/23073005/Jefferson-City-5-5-23-19.jpg[""][""][""][{"charLength":39,"verb":"","quote":"confirmed large and destructive tornado","charOffset":256},{"charLength":165,"verb":"","quote":"Evacuate Webbers Falls immediately. The barges are loose and has the potential to hit the lock and dam 16. If the dam breaks , it will be catastrophic!! Leave now!!","charOffset":2531}][{"name":"Jefferson City","charOffset":82},{"name":"National Weather","charOffset":171},{"name":"Jefferson City","charOffset":284},{"name":"Jefferson City Police","charOffset":541},{"name":"David Williams","charOffset":560},{"name":"Cole County Sheriff","charOffset":806},{"name":"Missouri Public","charOffset":1135},{"name":"National Weather Service","charOffset":1173},{"name":"Carl Junction","charOffset":1545},{"name":"Arkansas River","charOffset":1847},{"name":"Arkansas River","charOffset":2089},{"name":"Webbers Falls","charOffset":2111},{"name":"Webbers Falls","charOffset":2419},{"name":"Arkansas River","charOffset":2779},{"name":"Mississippi Rivers","charOffset":2870},{"name":"Highway Patrol","charOffset":3497},{"name":"Emergency Management","charOffset":3805},{"name":"Keli Cain","charOffset":3827}][{"amount":130,"amountType":"miles","charOffset":341},{"amount":209,"amountType":"kilometers","charOffset":350},{"amount":22,"amountType":"reports of tornadoes by","charOffset":961},{"amount":161,"amountType":"people","charOffset":1174},{"amount":4,"amountType":"miles","charOffset":1246},{"amount":44,"amountType":"kilometers","charOffset":1255},{"amount":2,"amountType":"barges broke loose","charOffset":1407},{"amount":600,"amountType":"residents","charOffset":1900},{"amount":12,"amountType":"of tornadoes","charOffset":2358},{"amount":2,"amountType":"people","charOffset":2693},{"amount":4,"amountType":"weather","charOffset":2748},{"amount":45,"amountType":"miles","charOffset":2896},{"amount":72,"amountType":"kilometers","charOffset":2904}]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://www.ktts.com/2019/05/23/violent-tornado-touches-down-in-jefferson-city/amp/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBgwdtoday.comhttp://gwdtoday.com/main.asp?SectionID=2&TM=28816.37[][]["TAX_WORLDINSECTS","TAX_WORLDINSECTS_BEE","USPEC_POLITICS_GENERAL1","GENERAL_HEALTH","MEDICAL","TAX_FNCACT","TAX_FNCACT_NURSES","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","MANMADE_DISASTER_IMPLIED","PUBLIC_TRANSPORT","TAX_FNCACT_NURSE","TAX_FNCACT_LEADERS","TAX_FNCACT_EMPLOYEES","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_STAFF_MEMBERS","TAX_FNCACT_STUDENTS","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","UNGP_FORESTS_RIVERS_OCEANS","WB_841_JUSTICE_SYSTEM_ADMINISTRATION","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1211_HUMAN_RESOURCES","TAX_FNCACT_COORDINATOR","LEADER","TAX_FNCACT_PRESIDENT","AGRICULTURE","TAX_FNCACT_FARMER","WB_644_NUTRITION","WB_621_HEALTH_NUTRITION_AND_POPULATION","CRISISLEX_T11_UPDATESSYMPATHY","TAX_FNCACT_FARMERS","WB_2141_EDUCATION_DISTRICTS","WB_1502_EDUCATIONAL_DECENTRALIZATION","WB_470_EDUCATION","WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_SUPERINTENDENT","TAX_FNCACT_SUPERINTENDENT","SOC_POINTSOFINTEREST_COLLEGE","WB_1606_SCHOLARSHIPS","WB_1608_CASH_TRANSFERS","WB_1466_SOCIAL_ASSISTANCE","WB_1603_FEE_WAIVERS","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_RELIGION","TAX_RELIGION_METHODIST","TAX_RELIGION_CHURCH","SOC_POINTSOFINTEREST_HIGH_SCHOOL","WB_482_TERTIARY_EDUCATION","WB_478_LEVELS_OF_EDUCATION","TAX_FNCACT_STUDENT","TAX_FNCACT_SPEAKER","TAX_FNCACT_FOUNDER","TAX_FNCACT_TECHNICIAN","SCIENCE","SOC_POINTSOFINTEREST_COLLEGES","SOC_POINTSOFINTEREST_UNIVERSITIES","TAX_FNCACT_MAN","SOC_GENERALCRIME","TAX_FNCACT_SOLICITOR","ARREST","SOC_POINTSOFINTEREST_JAIL","TAX_MILITARY_TITLE_OFFICERS","TAX_FNCACT_OFFICERS","TAX_DISEASE","TAX_DISEASE_LACERATIONS","TAX_FNCACT_VICTIM","WB_135_TRANSPORT","CRISISLEX_CRISISLEXREC","AFFECT","POVERTY","CRISISLEX_C05_NEED_OF_SHELTERS","MEDIA_SOCIAL","WB_1921_PRIVATE_SECTOR_DEVELOPMENT","WB_346_COMPETITIVE_INDUSTRIES","WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","WB_1281_MANUFACTURING","TAX_FNCACT_GUARD","SECURITY_SERVICES","SOC_USSECURITYAGENCIES","TAX_FNCACT_VETERANS","TAX_FNCACT_LIBRARIAN","TAX_FNCACT_DIRECTOR","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_SHERIFF","TAX_FNCACT_FACULTY","TAX_FNCACT_ADJUNCT_FACULTY","TAX_FNCACT_REPRESENTATIVES","TAX_FNCACT_SUPPORTER","TAX_FNCACT_REPRESENTATIVE","TAX_FNCACT_FACULTY_MEMBER","EPU_ECONOMY_HISTORIC","USPEC_UNCERTAINTY1","TAX_FNCACT_VICE_PRESIDENT","WB_2937_SILVER","WB_507_ENERGY_AND_EXTRACTIVES","WB_895_MINING_SYSTEMS","WB_1699_METAL_ORE_MINING","TAX_FNCACT_EXECUTIVE","GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_GOVERNMENT","TAX_FNCACT_VOLUNTEER","TAX_FNCACT_CHILDREN","DISABILITY","WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","WB_635_PUBLIC_HEALTH","WB_1464_HEALTH_OF_THE_DISABLED"][{"theme":"TAX_FNCACT_VICE_PRESIDENT","charOffset":11901},{"theme":"SOC_POINTSOFINTEREST_COLLEGES","charOffset":4601},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":1422},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":2552},{"theme":"TAX_FNCACT_LIBRARIAN","charOffset":9588},{"theme":"TAX_FNCACT_STUDENT","charOffset":3764},{"theme":"TAX_FNCACT_STUDENT","charOffset":4575},{"theme":"TAX_FNCACT_STUDENT","charOffset":5917},{"theme":"TAX_FNCACT_STUDENT","charOffset":6488},{"theme":"TAX_FNCACT_STUDENT","charOffset":7189},{"theme":"TAX_FNCACT_STUDENT","charOffset":11451},{"theme":"TAX_FNCACT_STUDENT","charOffset":13559},{"theme":"TAX_FNCACT_STUDENT","charOffset":13797},{"theme":"TAX_FNCACT_FARMERS","charOffset":1451},{"theme":"GENERAL_HEALTH","charOffset":377},{"theme":"MEDICAL","charOffset":377},{"theme":"TAX_FNCACT_NURSES","charOffset":377},{"theme":"TAX_FNCACT_VOLUNTEER","charOffset":13229},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":11861},{"theme":"TAX_MILITARY_TITLE_OFFICERS","charOffset":5199},{"theme":"TAX_FNCACT_OFFICERS","charOffset":5199},{"theme":"TAX_FNCACT_FOUNDER","charOffset":3995},{"theme":"TAX_FNCACT_STAFF_MEMBERS","charOffset":724},{"theme":"TAX_FNCACT_POLICE","charOffset":9631},{"theme":"TAX_FNCACT_POLICE","charOffset":9958},{"theme":"CRISISLEX_C07_SAFETY","charOffset":9631},{"theme":"CRISISLEX_C07_SAFETY","charOffset":9958},{"theme":"TAX_FNCACT_FACULTY_MEMBER","charOffset":11806},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1117},{"theme":"GENERAL_GOVERNMENT","charOffset":13103},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":13103},{"theme":"ARREST","charOffset":5129},{"theme":"SOC_POINTSOFINTEREST_JAIL","charOffset":5129},{"theme":"TAX_FNCACT_DIRECTOR","charOffset":9614},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":13051},{"theme":"TAX_FNCACT_SOLICITOR","charOffset":5061},{"theme":"TAX_FNCACT_SOLICITOR","charOffset":9522},{"theme":"WB_2937_SILVER","charOffset":12380},{"theme":"WB_507_ENERGY_AND_EXTRACTIVES","charOffset":12380},{"theme":"WB_895_MINING_SYSTEMS","charOffset":12380},{"theme":"WB_1699_METAL_ORE_MINING","charOffset":12380},{"theme":"SOC_GENERALCRIME","charOffset":4969},{"theme":"SOC_GENERALCRIME","charOffset":9430},{"theme":"WB_644_NUTRITION","charOffset":1280},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1280},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1076},{"theme":"TAX_FNCACT_STUDENTS","charOffset":2107},{"theme":"TAX_FNCACT_STUDENTS","charOffset":2514},{"theme":"TAX_FNCACT_STUDENTS","charOffset":3508},{"theme":"TAX_FNCACT_STUDENTS","charOffset":4231},{"theme":"TAX_FNCACT_STUDENTS","charOffset":7022},{"theme":"TAX_FNCACT_STUDENTS","charOffset":8279},{"theme":"TAX_FNCACT_STUDENTS","charOffset":11985},{"theme":"TAX_FNCACT_VICTIM","charOffset":5376},{"theme":"USPEC_UNCERTAINTY1","charOffset":11884},{"theme":"AFFECT","charOffset":5643},{"theme":"POVERTY","charOffset":5643},{"theme":"CRISISLEX_C05_NEED_OF_SHELTERS","charOffset":5643},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":256},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":517},{"theme":"PUBLIC_TRANSPORT","charOffset":517},{"theme":"TAX_RELIGION_CHURCH","charOffset":3089},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":3499},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":3808},{"theme":"TAX_FNCACT_MAN","charOffset":4918},{"theme":"TAX_FNCACT_MAN","charOffset":5118},{"theme":"TAX_FNCACT_MAN","charOffset":5297},{"theme":"TAX_FNCACT_MAN","charOffset":9379},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":5471},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":637},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1848},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3499},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3808},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITIES","charOffset":4616},{"theme":"TAX_FNCACT_FACULTY","charOffset":10290},{"theme":"TAX_FNCACT_FACULTY","charOffset":10534},{"theme":"TAX_FNCACT_FACULTY","charOffset":11799},{"theme":"TAX_FNCACT_FACULTY","charOffset":12013},{"theme":"TAX_FNCACT_LEADERS","charOffset":541},{"theme":"TAX_FNCACT_LEADERS","charOffset":12213},{"theme":"WB_841_JUSTICE_SYSTEM_ADMINISTRATION","charOffset":1117},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1117},{"theme":"WB_840_JUSTICE","charOffset":1117},{"theme":"WB_1211_HUMAN_RESOURCES","charOffset":1117},{"theme":"TAX_MILITARY_TITLE_SUPERINTENDENT","charOffset":1909},{"theme":"TAX_FNCACT_SUPERINTENDENT","charOffset":1909},{"theme":"TAX_FNCACT_SHERIFF","charOffset":10009},{"theme":"TAX_FNCACT_GUARD","charOffset":8356},{"theme":"TAX_FNCACT_VETERANS","charOffset":8451},{"theme":"TAX_FNCACT_REPRESENTATIVES","charOffset":10838},{"theme":"SECURITY_SERVICES","charOffset":8356},{"theme":"SOC_USSECURITYAGENCIES","charOffset":8356},{"theme":"TAX_RELIGION_METHODIST","charOffset":3082},{"theme":"TAX_DISEASE_LACERATIONS","charOffset":5364},{"theme":"DISABILITY","charOffset":13376},{"theme":"WB_1458_HEALTH_PROMOTION_AND_DISEASE_PREVENTION","charOffset":13376},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":13376},{"theme":"WB_1464_HEALTH_OF_THE_DISABLED","charOffset":13376},{"theme":"WB_482_TERTIARY_EDUCATION","charOffset":3548},{"theme":"WB_478_LEVELS_OF_EDUCATION","charOffset":3548},{"theme":"TAX_FNCACT_SPEAKER","charOffset":3928},{"theme":"LEADER","charOffset":1218},{"theme":"LEADER","charOffset":9802},{"theme":"LEADER","charOffset":11057},{"theme":"LEADER","charOffset":11901},{"theme":"LEADER","charOffset":12149},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":1218},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":9802},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":11057},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":11901},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":12149},{"theme":"TAX_FNCACT_ADJUNCT_FACULTY","charOffset":10290},{"theme":"TAX_FNCACT_ADJUNCT_FACULTY","charOffset":10534},{"theme":"TAX_FNCACT_COORDINATOR","charOffset":1129},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2439},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2539},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":3689},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":3823},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":5840},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":6411},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":6882},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":7112},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":9710},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":9791},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":11374},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":11821},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12120},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12182},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12259},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":12373},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":13482},{"theme":"TAX_FNCACT_SUPPORTER","charOffset":11127},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":1107},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":7730},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":4008},{"theme":"TAX_FNCACT_TECHNICIAN","charOffset":4048},{"theme":"SCIENCE","charOffset":4587},{"theme":"TAX_WORLDINSECTS_BEE","charOffset":3},{"theme":"TAX_WORLDINSECTS_BEE","charOffset":177},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":7641},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":10978},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":11084},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":7641},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":10978},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":11084},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":7641},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":10978},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":11084},{"theme":"WB_1281_MANUFACTURING","charOffset":7641},{"theme":"WB_1281_MANUFACTURING","charOffset":10978},{"theme":"WB_1281_MANUFACTURING","charOffset":11084},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":608},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":917},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":6941},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":9850},{"theme":"MEDIA_SOCIAL","charOffset":5774},{"theme":"AGRICULTURE","charOffset":1263},{"theme":"AGRICULTURE","charOffset":1583},{"theme":"TAX_FNCACT_FARMER","charOffset":1263},{"theme":"TAX_FNCACT_FARMER","charOffset":1583},{"theme":"TAX_FNCACT_REPRESENTATIVE","charOffset":11704},{"theme":"TAX_FNCACT_REPRESENTATIVE","charOffset":13926},{"theme":"TAX_FNCACT_REPRESENTATIVE","charOffset":13983},{"theme":"EDUCATION","charOffset":508},{"theme":"EDUCATION","charOffset":598},{"theme":"EDUCATION","charOffset":3280},{"theme":"EDUCATION","charOffset":4222},{"theme":"EDUCATION","charOffset":4492},{"theme":"EDUCATION","charOffset":8263},{"theme":"EDUCATION","charOffset":10321},{"theme":"EDUCATION","charOffset":10433},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":508},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":598},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":3280},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":4222},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":4492},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":8263},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":10321},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":10433},{"theme":"TAX_FNCACT_NURSE","charOffset":533},{"theme":"WB_135_TRANSPORT","charOffset":5404},{"theme":"TAX_FNCACT_CHILDREN","charOffset":13342},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":2874},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":2894},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5887},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6024},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6282},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6316},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6458},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6611},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6792},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6997},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7159},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7318},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7434},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7697},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":11421},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":11583},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":11746},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":12074},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":13529},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":13686},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":13771},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":2874},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":2894},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5887},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6024},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6282},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6316},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6458},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6611},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6792},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6997},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7159},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7318},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7434},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7697},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":11421},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":11583},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":11746},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":12074},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":13529},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":13686},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":13771},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2874},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":2894},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5887},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6024},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6282},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6316},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6458},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6611},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6792},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6997},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7159},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7318},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7434},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7697},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":11421},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":11583},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":11746},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":12074},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":13529},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":13686},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":13771},{"theme":"WB_1603_FEE_WAIVERS","charOffset":2874},{"theme":"WB_1603_FEE_WAIVERS","charOffset":2894},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5887},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6024},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6282},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6316},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6458},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6611},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6792},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6997},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7159},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7318},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7434},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7697},{"theme":"WB_1603_FEE_WAIVERS","charOffset":11421},{"theme":"WB_1603_FEE_WAIVERS","charOffset":11583},{"theme":"WB_1603_FEE_WAIVERS","charOffset":11746},{"theme":"WB_1603_FEE_WAIVERS","charOffset":12074},{"theme":"WB_1603_FEE_WAIVERS","charOffset":13529},{"theme":"WB_1603_FEE_WAIVERS","charOffset":13686},{"theme":"WB_1603_FEE_WAIVERS","charOffset":13771},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2874},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":2894},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5887},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6024},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6282},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6316},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6458},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6611},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6792},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6997},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7159},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7318},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7434},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7697},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":11421},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":11583},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":11746},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":12074},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":13529},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":13686},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":13771},{"theme":"WB_2141_EDUCATION_DISTRICTS","charOffset":1857},{"theme":"WB_1502_EDUCATIONAL_DECENTRALIZATION","charOffset":1857},{"theme":"WB_470_EDUCATION","charOffset":1857},{"theme":"WB_1497_EDUCATION_MANAGEMENT_AND_ADMINISTRATION","charOffset":1857}][{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},{"geoType":"USCITY","geoName":"Leesville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.9165,"longitude":-81.5134},"featureId":"1223870"},{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},{"geoType":"USCITY","geoName":"Trinity United Methodist Church, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.2957,"longitude":-81.0315},"featureId":"1230987"},{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"}][{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":6083},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":6726},{"location":{"geoType":"USCITY","geoName":"Leesville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC063","geoPoint":{"latitude":33.9165,"longitude":-81.5134},"featureId":"1223870"},"charOffset":4741},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":22},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2038},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2454},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":2993},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3104},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3704},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4117},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4756},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":5028},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":5686},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":5855},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6098},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6212},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6426},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6741},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6897},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":7127},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":7844},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":9489},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":9725},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":10001},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":10992},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":11098},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":11389},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":12135},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13497},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":67},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":1437},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":7627},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":8341},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":12701},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":13092},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":2439},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":3689},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":5840},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":6411},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":6882},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":7112},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":9710},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":11374},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":12120},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":13482},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":5013},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":5671},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":9474},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":9986},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":2978},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":4102},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":7829},{"location":{"geoType":"USCITY","geoName":"Trinity United Methodist Church, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC009","geoPoint":{"latitude":33.2957,"longitude":-81.0315},"featureId":"1230987"},"charOffset":3089},{"location":{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},"charOffset":6197},{"location":{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC077","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},"charOffset":2023}]["ashlee riley","michelle freeman","jeff wilson","amber christine lee","david m stumbo","tlaysha creswell","carl brock","sally baumeister","zelea james","kurstin lacoste","perrin rickenbaker","linh nguyen","terry ledford","doug timmerman","marquel evans","richard gregory","sarah foster","ray brooks","dylan antone","daniel johnson","bianca earl","dorothy holmes","yvonne hudgens","andrea pozo","todd croker","mac francisco","kendall adams"][{"person":"Ashlee Riley","charOffset":7334},{"person":"Michelle Freeman","charOffset":6659},{"person":"Jeff Wilson","charOffset":4145},{"person":"Amber Christine Lee","charOffset":4694},{"person":"Tlaysha Creswell","charOffset":3752},{"person":"Carl Brock","charOffset":7280},{"person":"Carl Brock","charOffset":7487},{"person":"Sally Baumeister","charOffset":11721},{"person":"Zelea James","charOffset":6711},{"person":"Kurstin Lacoste","charOffset":1099},{"person":"Perrin Rickenbaker","charOffset":4657},{"person":"Linh Nguyen","charOffset":11635},{"person":"Terry Ledford","charOffset":9656},{"person":"Doug Timmerman","charOffset":13941},{"person":"Marquel Evans","charOffset":6629},{"person":"Richard Gregory","charOffset":6116},{"person":"Sarah Foster","charOffset":6068},{"person":"Ray Brooks","charOffset":9813},{"person":"Ray Brooks","charOffset":12164},{"person":"Dylan Antone","charOffset":4061},{"person":"Daniel Johnson","charOffset":13704},{"person":"Daniel Johnson","charOffset":13958},{"person":"Bianca Earl","charOffset":6040},{"person":"Dorothy Holmes","charOffset":11602},{"person":"Yvonne Hudgens","charOffset":9603},{"person":"Andrea Pozo","charOffset":6181},{"person":"Todd Croker","charOffset":11045},{"person":"Mac Francisco","charOffset":13997},{"person":"Kendall Adams","charOffset":8914}]["warner lambert company","university legion hall","lander university","greenwood city police","national conference on undergraduate research","carolina national guard","burton center","office of academic affairs","mccormick high school middle college","campus police","greenwood county sheriff office","genesis education center","sterilite corporation","greenwood miracle league","arts center","kennesaw state university in marietta","greenwood school district","sterilite corporation endowed scholarship","human services","greenwood corvette club automotive scholarship","educational affairs","piedmont technical college spring commencement","humane society of greenwood","piedmont technical college","automotive technology","trinity united methodist church","senior farmer market nutrition program"][{"organisation":"Warner Lambert Company","charOffset":6242},{"organisation":"University Legion Hall","charOffset":10445},{"organisation":"Lander University","charOffset":508},{"organisation":"Lander University","charOffset":598},{"organisation":"Lander University","charOffset":3280},{"organisation":"Lander University","charOffset":4222},{"organisation":"Lander University","charOffset":8263},{"organisation":"Lander University","charOffset":10321},{"organisation":"Greenwood City Police","charOffset":9958},{"organisation":"National Conference On Undergraduate Research","charOffset":4348},{"organisation":"Carolina National Guard","charOffset":8356},{"organisation":"Burton Center","charOffset":13325},{"organisation":"Office Of Academic Affairs","charOffset":10363},{"organisation":"Mccormick High School Middle College","charOffset":3823},{"organisation":"Campus Police","charOffset":9631},{"organisation":"Genesis Education Center","charOffset":1982},{"organisation":"Sterilite Corporation","charOffset":6591},{"organisation":"Sterilite Corporation","charOffset":6766},{"organisation":"Greenwood Miracle League","charOffset":13258},{"organisation":"Arts Center","charOffset":7928},{"organisation":"Kennesaw State University In Marietta","charOffset":4504},{"organisation":"Greenwood School District","charOffset":1857},{"organisation":"Sterilite Corporation Endowed Scholarship","charOffset":6611},{"organisation":"Human Services","charOffset":7739},{"organisation":"Greenwood Corvette Club Automotive Scholarship","charOffset":13686},{"organisation":"Greenwood Corvette Club Automotive Scholarship","charOffset":13771},{"organisation":"Educational Affairs","charOffset":11925},{"organisation":"Humane Society Of Greenwood","charOffset":5521},{"organisation":"Piedmont Technical College","charOffset":2439},{"organisation":"Piedmont Technical College","charOffset":3689},{"organisation":"Piedmont Technical College","charOffset":5840},{"organisation":"Piedmont Technical College","charOffset":6411},{"organisation":"Piedmont Technical College","charOffset":6882},{"organisation":"Piedmont Technical College","charOffset":7112},{"organisation":"Piedmont Technical College","charOffset":9710},{"organisation":"Piedmont Technical College","charOffset":11374},{"organisation":"Piedmont Technical College","charOffset":12120},{"organisation":"Piedmont Technical College","charOffset":13482},{"organisation":"Automotive Technology","charOffset":13835},{"organisation":"Trinity United Methodist Church","charOffset":3089},{"organisation":"Senior Farmer Market Nutrition Program","charOffset":1288}]{"tone":3.6023712,"positiveScore":4.6511626,"negativeScore":1.0487916,"polarity":5.6999545,"activityReferenceDensity":19.972641,"selfGroupReferenceDensity":0.09119927,"wordCount":1907}[{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":636},{"dateResolution":1,"month":0,"day":0,"year":2001,"charOffset":718},{"dateResolution":4,"month":10,"day":15,"year":0,"charOffset":1724},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":2013},{"dateResolution":4,"month":5,"day":22,"year":0,"charOffset":2037},{"dateResolution":4,"month":4,"day":28,"year":0,"charOffset":2797},{"dateResolution":4,"month":5,"day":18,"year":0,"charOffset":2829},{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":3458},{"dateResolution":4,"month":5,"day":18,"year":0,"charOffset":5652},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":6338},{"dateResolution":1,"month":0,"day":0,"year":2010,"charOffset":6833},{"dateResolution":1,"month":0,"day":0,"year":2000,"charOffset":7468},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":10469},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":11832},{"dateResolution":1,"month":0,"day":0,"year":1991,"charOffset":12427}][{"gcamCode":"wc","gcamValue":1907},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":103},{"gcamCode":"c12.10","gcamValue":117},{"gcamCode":"c12.12","gcamValue":20},{"gcamCode":"c12.13","gcamValue":39},{"gcamCode":"c12.14","gcamValue":69},{"gcamCode":"c12.3","gcamValue":24},{"gcamCode":"c12.4","gcamValue":11},{"gcamCode":"c12.5","gcamValue":78},{"gcamCode":"c12.7","gcamValue":42},{"gcamCode":"c12.8","gcamValue":42},{"gcamCode":"c12.9","gcamValue":136},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.6","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":97},{"gcamCode":"c14.10","gcamValue":63},{"gcamCode":"c14.11","gcamValue":145},{"gcamCode":"c14.2","gcamValue":86},{"gcamCode":"c14.3","gcamValue":103},{"gcamCode":"c14.4","gcamValue":8},{"gcamCode":"c14.5","gcamValue":171},{"gcamCode":"c14.6","gcamValue":5},{"gcamCode":"c14.7","gcamValue":21},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":14},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.102","gcamValue":4},{"gcamCode":"c15.107","gcamValue":2},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.112","gcamValue":5},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.123","gcamValue":2},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.135","gcamValue":2},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.15","gcamValue":2},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.156","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.171","gcamValue":2},{"gcamCode":"c15.172","gcamValue":2},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":4},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.233","gcamValue":2},{"gcamCode":"c15.241","gcamValue":3},{"gcamCode":"c15.242","gcamValue":2},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.272","gcamValue":1},{"gcamCode":"c15.277","gcamValue":2},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.32","gcamValue":2},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.97","gcamValue":2},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":39},{"gcamCode":"c16.101","gcamValue":14},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":7},{"gcamCode":"c16.105","gcamValue":22},{"gcamCode":"c16.106","gcamValue":68},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":159},{"gcamCode":"c16.11","gcamValue":14},{"gcamCode":"c16.110","gcamValue":276},{"gcamCode":"c16.111","gcamValue":6},{"gcamCode":"c16.113","gcamValue":9},{"gcamCode":"c16.114","gcamValue":122},{"gcamCode":"c16.115","gcamValue":17},{"gcamCode":"c16.116","gcamValue":53},{"gcamCode":"c16.117","gcamValue":44},{"gcamCode":"c16.118","gcamValue":111},{"gcamCode":"c16.12","gcamValue":149},{"gcamCode":"c16.120","gcamValue":84},{"gcamCode":"c16.121","gcamValue":154},{"gcamCode":"c16.122","gcamValue":6},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":10},{"gcamCode":"c16.125","gcamValue":94},{"gcamCode":"c16.126","gcamValue":108},{"gcamCode":"c16.127","gcamValue":130},{"gcamCode":"c16.128","gcamValue":16},{"gcamCode":"c16.129","gcamValue":183},{"gcamCode":"c16.13","gcamValue":10},{"gcamCode":"c16.130","gcamValue":43},{"gcamCode":"c16.131","gcamValue":68},{"gcamCode":"c16.132","gcamValue":6},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":216},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":2},{"gcamCode":"c16.137","gcamValue":3},{"gcamCode":"c16.138","gcamValue":120},{"gcamCode":"c16.139","gcamValue":59},{"gcamCode":"c16.14","gcamValue":6},{"gcamCode":"c16.140","gcamValue":71},{"gcamCode":"c16.141","gcamValue":2},{"gcamCode":"c16.142","gcamValue":8},{"gcamCode":"c16.143","gcamValue":6},{"gcamCode":"c16.145","gcamValue":181},{"gcamCode":"c16.146","gcamValue":143},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.15","gcamValue":19},{"gcamCode":"c16.150","gcamValue":7},{"gcamCode":"c16.151","gcamValue":5},{"gcamCode":"c16.152","gcamValue":17},{"gcamCode":"c16.153","gcamValue":77},{"gcamCode":"c16.155","gcamValue":7},{"gcamCode":"c16.156","gcamValue":9},{"gcamCode":"c16.157","gcamValue":34},{"gcamCode":"c16.158","gcamValue":7},{"gcamCode":"c16.159","gcamValue":149},{"gcamCode":"c16.16","gcamValue":39},{"gcamCode":"c16.161","gcamValue":131},{"gcamCode":"c16.162","gcamValue":108},{"gcamCode":"c16.163","gcamValue":109},{"gcamCode":"c16.164","gcamValue":77},{"gcamCode":"c16.165","gcamValue":12},{"gcamCode":"c16.167","gcamValue":1},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":5},{"gcamCode":"c16.19","gcamValue":33},{"gcamCode":"c16.2","gcamValue":160},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":9},{"gcamCode":"c16.22","gcamValue":34},{"gcamCode":"c16.23","gcamValue":31},{"gcamCode":"c16.24","gcamValue":13},{"gcamCode":"c16.26","gcamValue":190},{"gcamCode":"c16.27","gcamValue":5},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":9},{"gcamCode":"c16.3","gcamValue":30},{"gcamCode":"c16.30","gcamValue":5},{"gcamCode":"c16.31","gcamValue":106},{"gcamCode":"c16.32","gcamValue":12},{"gcamCode":"c16.33","gcamValue":130},{"gcamCode":"c16.34","gcamValue":13},{"gcamCode":"c16.35","gcamValue":88},{"gcamCode":"c16.36","gcamValue":6},{"gcamCode":"c16.37","gcamValue":152},{"gcamCode":"c16.38","gcamValue":57},{"gcamCode":"c16.39","gcamValue":6},{"gcamCode":"c16.4","gcamValue":110},{"gcamCode":"c16.41","gcamValue":63},{"gcamCode":"c16.42","gcamValue":6},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":78},{"gcamCode":"c16.46","gcamValue":16},{"gcamCode":"c16.47","gcamValue":280},{"gcamCode":"c16.48","gcamValue":12},{"gcamCode":"c16.49","gcamValue":8},{"gcamCode":"c16.5","gcamValue":8},{"gcamCode":"c16.50","gcamValue":10},{"gcamCode":"c16.51","gcamValue":25},{"gcamCode":"c16.52","gcamValue":113},{"gcamCode":"c16.53","gcamValue":15},{"gcamCode":"c16.54","gcamValue":5},{"gcamCode":"c16.55","gcamValue":6},{"gcamCode":"c16.56","gcamValue":45},{"gcamCode":"c16.57","gcamValue":977},{"gcamCode":"c16.58","gcamValue":103},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":176},{"gcamCode":"c16.60","gcamValue":22},{"gcamCode":"c16.61","gcamValue":4},{"gcamCode":"c16.62","gcamValue":60},{"gcamCode":"c16.63","gcamValue":24},{"gcamCode":"c16.64","gcamValue":33},{"gcamCode":"c16.65","gcamValue":52},{"gcamCode":"c16.66","gcamValue":32},{"gcamCode":"c16.68","gcamValue":84},{"gcamCode":"c16.69","gcamValue":57},{"gcamCode":"c16.7","gcamValue":37},{"gcamCode":"c16.70","gcamValue":139},{"gcamCode":"c16.71","gcamValue":27},{"gcamCode":"c16.72","gcamValue":10},{"gcamCode":"c16.73","gcamValue":10},{"gcamCode":"c16.74","gcamValue":19},{"gcamCode":"c16.75","gcamValue":63},{"gcamCode":"c16.76","gcamValue":7},{"gcamCode":"c16.77","gcamValue":5},{"gcamCode":"c16.78","gcamValue":35},{"gcamCode":"c16.79","gcamValue":20},{"gcamCode":"c16.8","gcamValue":6},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.81","gcamValue":13},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":91},{"gcamCode":"c16.85","gcamValue":11},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":179},{"gcamCode":"c16.88","gcamValue":179},{"gcamCode":"c16.89","gcamValue":43},{"gcamCode":"c16.9","gcamValue":9},{"gcamCode":"c16.90","gcamValue":36},{"gcamCode":"c16.91","gcamValue":47},{"gcamCode":"c16.92","gcamValue":116},{"gcamCode":"c16.93","gcamValue":14},{"gcamCode":"c16.94","gcamValue":133},{"gcamCode":"c16.95","gcamValue":141},{"gcamCode":"c16.96","gcamValue":34},{"gcamCode":"c16.97","gcamValue":5},{"gcamCode":"c16.98","gcamValue":115},{"gcamCode":"c16.99","gcamValue":5},{"gcamCode":"c17.1","gcamValue":479},{"gcamCode":"c17.10","gcamValue":216},{"gcamCode":"c17.11","gcamValue":214},{"gcamCode":"c17.12","gcamValue":50},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":33},{"gcamCode":"c17.15","gcamValue":182},{"gcamCode":"c17.16","gcamValue":75},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":78},{"gcamCode":"c17.19","gcamValue":118},{"gcamCode":"c17.2","gcamValue":60},{"gcamCode":"c17.20","gcamValue":14},{"gcamCode":"c17.21","gcamValue":12},{"gcamCode":"c17.22","gcamValue":69},{"gcamCode":"c17.23","gcamValue":13},{"gcamCode":"c17.24","gcamValue":133},{"gcamCode":"c17.25","gcamValue":26},{"gcamCode":"c17.26","gcamValue":6},{"gcamCode":"c17.27","gcamValue":165},{"gcamCode":"c17.28","gcamValue":18},{"gcamCode":"c17.29","gcamValue":65},{"gcamCode":"c17.3","gcamValue":12},{"gcamCode":"c17.30","gcamValue":26},{"gcamCode":"c17.31","gcamValue":83},{"gcamCode":"c17.32","gcamValue":75},{"gcamCode":"c17.33","gcamValue":98},{"gcamCode":"c17.34","gcamValue":43},{"gcamCode":"c17.35","gcamValue":36},{"gcamCode":"c17.36","gcamValue":53},{"gcamCode":"c17.37","gcamValue":50},{"gcamCode":"c17.38","gcamValue":10},{"gcamCode":"c17.39","gcamValue":61},{"gcamCode":"c17.4","gcamValue":348},{"gcamCode":"c17.40","gcamValue":37},{"gcamCode":"c17.41","gcamValue":64},{"gcamCode":"c17.42","gcamValue":112},{"gcamCode":"c17.43","gcamValue":90},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":386},{"gcamCode":"c17.6","gcamValue":21},{"gcamCode":"c17.7","gcamValue":239},{"gcamCode":"c17.8","gcamValue":155},{"gcamCode":"c17.9","gcamValue":21},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.110","gcamValue":1},{"gcamCode":"c18.136","gcamValue":1},{"gcamCode":"c18.139","gcamValue":5},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.147","gcamValue":37},{"gcamCode":"c18.149","gcamValue":4},{"gcamCode":"c18.179","gcamValue":2},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.186","gcamValue":1},{"gcamCode":"c18.193","gcamValue":69},{"gcamCode":"c18.269","gcamValue":2},{"gcamCode":"c18.298","gcamValue":42},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":16},{"gcamCode":"c18.345","gcamValue":2},{"gcamCode":"c18.347","gcamValue":2},{"gcamCode":"c18.35","gcamValue":2},{"gcamCode":"c18.365","gcamValue":1},{"gcamCode":"c18.52","gcamValue":4},{"gcamCode":"c18.71","gcamValue":3},{"gcamCode":"c18.73","gcamValue":2},{"gcamCode":"c18.77","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.82","gcamValue":1},{"gcamCode":"c2.1","gcamValue":91},{"gcamCode":"c2.10","gcamValue":4},{"gcamCode":"c2.100","gcamValue":8},{"gcamCode":"c2.101","gcamValue":22},{"gcamCode":"c2.102","gcamValue":42},{"gcamCode":"c2.103","gcamValue":7},{"gcamCode":"c2.104","gcamValue":215},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":4},{"gcamCode":"c2.11","gcamValue":35},{"gcamCode":"c2.110","gcamValue":15},{"gcamCode":"c2.111","gcamValue":4},{"gcamCode":"c2.112","gcamValue":19},{"gcamCode":"c2.113","gcamValue":15},{"gcamCode":"c2.114","gcamValue":56},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":39},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":7},{"gcamCode":"c2.119","gcamValue":565},{"gcamCode":"c2.12","gcamValue":152},{"gcamCode":"c2.120","gcamValue":4},{"gcamCode":"c2.121","gcamValue":110},{"gcamCode":"c2.122","gcamValue":29},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":62},{"gcamCode":"c2.126","gcamValue":76},{"gcamCode":"c2.127","gcamValue":163},{"gcamCode":"c2.128","gcamValue":84},{"gcamCode":"c2.129","gcamValue":112},{"gcamCode":"c2.13","gcamValue":1},{"gcamCode":"c2.130","gcamValue":11},{"gcamCode":"c2.131","gcamValue":11},{"gcamCode":"c2.132","gcamValue":25},{"gcamCode":"c2.133","gcamValue":17},{"gcamCode":"c2.134","gcamValue":4},{"gcamCode":"c2.135","gcamValue":5},{"gcamCode":"c2.136","gcamValue":11},{"gcamCode":"c2.137","gcamValue":2},{"gcamCode":"c2.138","gcamValue":5},{"gcamCode":"c2.139","gcamValue":7},{"gcamCode":"c2.14","gcamValue":137},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":42},{"gcamCode":"c2.142","gcamValue":13},{"gcamCode":"c2.143","gcamValue":122},{"gcamCode":"c2.144","gcamValue":17},{"gcamCode":"c2.145","gcamValue":7},{"gcamCode":"c2.146","gcamValue":10},{"gcamCode":"c2.147","gcamValue":299},{"gcamCode":"c2.148","gcamValue":81},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":83},{"gcamCode":"c2.150","gcamValue":11},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.152","gcamValue":12},{"gcamCode":"c2.153","gcamValue":31},{"gcamCode":"c2.154","gcamValue":49},{"gcamCode":"c2.155","gcamValue":209},{"gcamCode":"c2.156","gcamValue":82},{"gcamCode":"c2.157","gcamValue":179},{"gcamCode":"c2.158","gcamValue":122},{"gcamCode":"c2.159","gcamValue":10},{"gcamCode":"c2.160","gcamValue":46},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":25},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":28},{"gcamCode":"c2.167","gcamValue":4},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":15},{"gcamCode":"c2.170","gcamValue":22},{"gcamCode":"c2.171","gcamValue":2},{"gcamCode":"c2.172","gcamValue":18},{"gcamCode":"c2.173","gcamValue":25},{"gcamCode":"c2.174","gcamValue":5},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":31},{"gcamCode":"c2.177","gcamValue":125},{"gcamCode":"c2.178","gcamValue":4},{"gcamCode":"c2.179","gcamValue":47},{"gcamCode":"c2.18","gcamValue":56},{"gcamCode":"c2.180","gcamValue":61},{"gcamCode":"c2.181","gcamValue":79},{"gcamCode":"c2.182","gcamValue":4},{"gcamCode":"c2.183","gcamValue":86},{"gcamCode":"c2.184","gcamValue":2},{"gcamCode":"c2.185","gcamValue":323},{"gcamCode":"c2.186","gcamValue":15},{"gcamCode":"c2.187","gcamValue":77},{"gcamCode":"c2.19","gcamValue":17},{"gcamCode":"c2.191","gcamValue":49},{"gcamCode":"c2.192","gcamValue":22},{"gcamCode":"c2.193","gcamValue":97},{"gcamCode":"c2.194","gcamValue":5},{"gcamCode":"c2.195","gcamValue":145},{"gcamCode":"c2.196","gcamValue":50},{"gcamCode":"c2.197","gcamValue":54},{"gcamCode":"c2.198","gcamValue":169},{"gcamCode":"c2.199","gcamValue":34},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":14},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":56},{"gcamCode":"c2.204","gcamValue":156},{"gcamCode":"c2.205","gcamValue":12},{"gcamCode":"c2.206","gcamValue":25},{"gcamCode":"c2.207","gcamValue":10},{"gcamCode":"c2.208","gcamValue":6},{"gcamCode":"c2.209","gcamValue":25},{"gcamCode":"c2.21","gcamValue":4},{"gcamCode":"c2.210","gcamValue":136},{"gcamCode":"c2.211","gcamValue":11},{"gcamCode":"c2.212","gcamValue":4},{"gcamCode":"c2.213","gcamValue":18},{"gcamCode":"c2.214","gcamValue":75},{"gcamCode":"c2.215","gcamValue":7},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":12},{"gcamCode":"c2.218","gcamValue":8},{"gcamCode":"c2.219","gcamValue":3},{"gcamCode":"c2.220","gcamValue":30},{"gcamCode":"c2.221","gcamValue":24},{"gcamCode":"c2.222","gcamValue":5},{"gcamCode":"c2.223","gcamValue":32},{"gcamCode":"c2.224","gcamValue":3},{"gcamCode":"c2.225","gcamValue":33},{"gcamCode":"c2.226","gcamValue":40},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":4},{"gcamCode":"c2.23","gcamValue":70},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":95},{"gcamCode":"c2.26","gcamValue":51},{"gcamCode":"c2.27","gcamValue":51},{"gcamCode":"c2.28","gcamValue":12},{"gcamCode":"c2.30","gcamValue":57},{"gcamCode":"c2.31","gcamValue":80},{"gcamCode":"c2.32","gcamValue":7},{"gcamCode":"c2.33","gcamValue":22},{"gcamCode":"c2.34","gcamValue":61},{"gcamCode":"c2.35","gcamValue":21},{"gcamCode":"c2.36","gcamValue":12},{"gcamCode":"c2.37","gcamValue":16},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":217},{"gcamCode":"c2.4","gcamValue":8},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.41","gcamValue":2},{"gcamCode":"c2.42","gcamValue":10},{"gcamCode":"c2.44","gcamValue":130},{"gcamCode":"c2.45","gcamValue":131},{"gcamCode":"c2.46","gcamValue":116},{"gcamCode":"c2.47","gcamValue":18},{"gcamCode":"c2.48","gcamValue":49},{"gcamCode":"c2.49","gcamValue":3},{"gcamCode":"c2.5","gcamValue":8},{"gcamCode":"c2.50","gcamValue":25},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":171},{"gcamCode":"c2.53","gcamValue":18},{"gcamCode":"c2.54","gcamValue":201},{"gcamCode":"c2.55","gcamValue":7},{"gcamCode":"c2.56","gcamValue":6},{"gcamCode":"c2.57","gcamValue":28},{"gcamCode":"c2.58","gcamValue":65},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":17},{"gcamCode":"c2.60","gcamValue":7},{"gcamCode":"c2.61","gcamValue":8},{"gcamCode":"c2.62","gcamValue":72},{"gcamCode":"c2.64","gcamValue":36},{"gcamCode":"c2.65","gcamValue":26},{"gcamCode":"c2.66","gcamValue":6},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":11},{"gcamCode":"c2.69","gcamValue":2},{"gcamCode":"c2.70","gcamValue":8},{"gcamCode":"c2.71","gcamValue":6},{"gcamCode":"c2.72","gcamValue":9},{"gcamCode":"c2.73","gcamValue":22},{"gcamCode":"c2.74","gcamValue":6},{"gcamCode":"c2.75","gcamValue":234},{"gcamCode":"c2.76","gcamValue":1166},{"gcamCode":"c2.77","gcamValue":186},{"gcamCode":"c2.78","gcamValue":196},{"gcamCode":"c2.79","gcamValue":20},{"gcamCode":"c2.80","gcamValue":204},{"gcamCode":"c2.81","gcamValue":14},{"gcamCode":"c2.82","gcamValue":38},{"gcamCode":"c2.83","gcamValue":11},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":40},{"gcamCode":"c2.87","gcamValue":10},{"gcamCode":"c2.88","gcamValue":31},{"gcamCode":"c2.89","gcamValue":53},{"gcamCode":"c2.9","gcamValue":19},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":31},{"gcamCode":"c2.95","gcamValue":198},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":34},{"gcamCode":"c2.98","gcamValue":54},{"gcamCode":"c2.99","gcamValue":8},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.5","gcamValue":41},{"gcamCode":"c25.7","gcamValue":13},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":33},{"gcamCode":"c3.2","gcamValue":166},{"gcamCode":"c35.1","gcamValue":53},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":7},{"gcamCode":"c35.13","gcamValue":3},{"gcamCode":"c35.14","gcamValue":29},{"gcamCode":"c35.15","gcamValue":55},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":9},{"gcamCode":"c35.20","gcamValue":43},{"gcamCode":"c35.21","gcamValue":3},{"gcamCode":"c35.22","gcamValue":4},{"gcamCode":"c35.25","gcamValue":31},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.27","gcamValue":1},{"gcamCode":"c35.3","gcamValue":4},{"gcamCode":"c35.31","gcamValue":133},{"gcamCode":"c35.32","gcamValue":88},{"gcamCode":"c35.33","gcamValue":83},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":32},{"gcamCode":"c35.7","gcamValue":22},{"gcamCode":"c39.1","gcamValue":6},{"gcamCode":"c39.10","gcamValue":3},{"gcamCode":"c39.12","gcamValue":3},{"gcamCode":"c39.13","gcamValue":7},{"gcamCode":"c39.14","gcamValue":8},{"gcamCode":"c39.17","gcamValue":22},{"gcamCode":"c39.18","gcamValue":12},{"gcamCode":"c39.19","gcamValue":6},{"gcamCode":"c39.2","gcamValue":33},{"gcamCode":"c39.20","gcamValue":4},{"gcamCode":"c39.21","gcamValue":2},{"gcamCode":"c39.23","gcamValue":1},{"gcamCode":"c39.24","gcamValue":2},{"gcamCode":"c39.25","gcamValue":4},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.28","gcamValue":5},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":95},{"gcamCode":"c39.30","gcamValue":5},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":4},{"gcamCode":"c39.36","gcamValue":24},{"gcamCode":"c39.37","gcamValue":95},{"gcamCode":"c39.38","gcamValue":5},{"gcamCode":"c39.39","gcamValue":34},{"gcamCode":"c39.4","gcamValue":95},{"gcamCode":"c39.40","gcamValue":8},{"gcamCode":"c39.41","gcamValue":26},{"gcamCode":"c39.5","gcamValue":52},{"gcamCode":"c39.6","gcamValue":4},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":4},{"gcamCode":"c4.15","gcamValue":5},{"gcamCode":"c4.16","gcamValue":4},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":2},{"gcamCode":"c4.23","gcamValue":59},{"gcamCode":"c4.28","gcamValue":2},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.6","gcamValue":2},{"gcamCode":"c4.8","gcamValue":36},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c40.5","gcamValue":5},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c40.7","gcamValue":2},{"gcamCode":"c41.1","gcamValue":44},{"gcamCode":"c5.10","gcamValue":132},{"gcamCode":"c5.11","gcamValue":38},{"gcamCode":"c5.12","gcamValue":289},{"gcamCode":"c5.13","gcamValue":13},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":12},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":27},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.20","gcamValue":38},{"gcamCode":"c5.21","gcamValue":45},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":28},{"gcamCode":"c5.24","gcamValue":11},{"gcamCode":"c5.25","gcamValue":9},{"gcamCode":"c5.26","gcamValue":18},{"gcamCode":"c5.27","gcamValue":13},{"gcamCode":"c5.28","gcamValue":26},{"gcamCode":"c5.29","gcamValue":17},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":121},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.33","gcamValue":3},{"gcamCode":"c5.34","gcamValue":13},{"gcamCode":"c5.35","gcamValue":74},{"gcamCode":"c5.36","gcamValue":94},{"gcamCode":"c5.37","gcamValue":25},{"gcamCode":"c5.38","gcamValue":4},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":37},{"gcamCode":"c5.40","gcamValue":122},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":29},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":298},{"gcamCode":"c5.47","gcamValue":27},{"gcamCode":"c5.48","gcamValue":14},{"gcamCode":"c5.49","gcamValue":103},{"gcamCode":"c5.5","gcamValue":9},{"gcamCode":"c5.50","gcamValue":132},{"gcamCode":"c5.51","gcamValue":83},{"gcamCode":"c5.52","gcamValue":149},{"gcamCode":"c5.53","gcamValue":150},{"gcamCode":"c5.54","gcamValue":45},{"gcamCode":"c5.55","gcamValue":17},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.57","gcamValue":4},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.6","gcamValue":83},{"gcamCode":"c5.60","gcamValue":25},{"gcamCode":"c5.61","gcamValue":70},{"gcamCode":"c5.62","gcamValue":653},{"gcamCode":"c5.7","gcamValue":72},{"gcamCode":"c5.8","gcamValue":219},{"gcamCode":"c5.9","gcamValue":111},{"gcamCode":"c6.1","gcamValue":13},{"gcamCode":"c6.2","gcamValue":16},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":24},{"gcamCode":"c6.5","gcamValue":39},{"gcamCode":"c6.6","gcamValue":7},{"gcamCode":"c7.1","gcamValue":40},{"gcamCode":"c7.2","gcamValue":108},{"gcamCode":"c8.1","gcamValue":4},{"gcamCode":"c8.10","gcamValue":5},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":3},{"gcamCode":"c8.13","gcamValue":7},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":3},{"gcamCode":"c8.17","gcamValue":8},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":9},{"gcamCode":"c8.20","gcamValue":13},{"gcamCode":"c8.22","gcamValue":6},{"gcamCode":"c8.23","gcamValue":54},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":3},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.36","gcamValue":47},{"gcamCode":"c8.37","gcamValue":38},{"gcamCode":"c8.38","gcamValue":66},{"gcamCode":"c8.39","gcamValue":9},{"gcamCode":"c8.4","gcamValue":59},{"gcamCode":"c8.40","gcamValue":7},{"gcamCode":"c8.41","gcamValue":6},{"gcamCode":"c8.42","gcamValue":64},{"gcamCode":"c8.43","gcamValue":47},{"gcamCode":"c8.5","gcamValue":7},{"gcamCode":"c8.6","gcamValue":8},{"gcamCode":"c9.1","gcamValue":67},{"gcamCode":"c9.10","gcamValue":17},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":6},{"gcamCode":"c9.1005","gcamValue":2},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":6},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1013","gcamValue":5},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":4},{"gcamCode":"c9.1018","gcamValue":7},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":14},{"gcamCode":"c9.1025","gcamValue":3},{"gcamCode":"c9.1027","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":12},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":8},{"gcamCode":"c9.1039","gcamValue":3},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":5},{"gcamCode":"c9.1041","gcamValue":13},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.107","gcamValue":10},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":7},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.111","gcamValue":19},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.113","gcamValue":17},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":7},{"gcamCode":"c9.117","gcamValue":4},{"gcamCode":"c9.118","gcamValue":9},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.12","gcamValue":3},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":8},{"gcamCode":"c9.123","gcamValue":11},{"gcamCode":"c9.124","gcamValue":6},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":73},{"gcamCode":"c9.129","gcamValue":10},{"gcamCode":"c9.130","gcamValue":15},{"gcamCode":"c9.131","gcamValue":7},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.133","gcamValue":3},{"gcamCode":"c9.134","gcamValue":10},{"gcamCode":"c9.135","gcamValue":4},{"gcamCode":"c9.137","gcamValue":5},{"gcamCode":"c9.138","gcamValue":9},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":19},{"gcamCode":"c9.142","gcamValue":5},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":24},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":9},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.150","gcamValue":3},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.154","gcamValue":3},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":12},{"gcamCode":"c9.158","gcamValue":23},{"gcamCode":"c9.159","gcamValue":5},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":17},{"gcamCode":"c9.161","gcamValue":6},{"gcamCode":"c9.162","gcamValue":32},{"gcamCode":"c9.164","gcamValue":10},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":10},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":12},{"gcamCode":"c9.169","gcamValue":7},{"gcamCode":"c9.170","gcamValue":2},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.173","gcamValue":6},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":7},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":16},{"gcamCode":"c9.178","gcamValue":6},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.180","gcamValue":6},{"gcamCode":"c9.182","gcamValue":13},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":37},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":18},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.190","gcamValue":14},{"gcamCode":"c9.191","gcamValue":2},{"gcamCode":"c9.192","gcamValue":7},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":10},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":19},{"gcamCode":"c9.2","gcamValue":4},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":12},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":8},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":14},{"gcamCode":"c9.21","gcamValue":3},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":4},{"gcamCode":"c9.215","gcamValue":8},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.218","gcamValue":2},{"gcamCode":"c9.219","gcamValue":6},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.220","gcamValue":12},{"gcamCode":"c9.223","gcamValue":3},{"gcamCode":"c9.224","gcamValue":26},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":4},{"gcamCode":"c9.232","gcamValue":4},{"gcamCode":"c9.233","gcamValue":6},{"gcamCode":"c9.235","gcamValue":10},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.240","gcamValue":2},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.244","gcamValue":3},{"gcamCode":"c9.245","gcamValue":5},{"gcamCode":"c9.246","gcamValue":3},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.248","gcamValue":2},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.25","gcamValue":4},{"gcamCode":"c9.250","gcamValue":4},{"gcamCode":"c9.251","gcamValue":2},{"gcamCode":"c9.252","gcamValue":6},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":3},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":8},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.27","gcamValue":5},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":8},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":4},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.284","gcamValue":11},{"gcamCode":"c9.285","gcamValue":3},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.287","gcamValue":6},{"gcamCode":"c9.288","gcamValue":13},{"gcamCode":"c9.289","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":11},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":57},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":8},{"gcamCode":"c9.303","gcamValue":8},{"gcamCode":"c9.304","gcamValue":5},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":3},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":14},{"gcamCode":"c9.309","gcamValue":2},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":2},{"gcamCode":"c9.312","gcamValue":3},{"gcamCode":"c9.315","gcamValue":2},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.319","gcamValue":6},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.321","gcamValue":2},{"gcamCode":"c9.324","gcamValue":3},{"gcamCode":"c9.328","gcamValue":3},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":21},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":2},{"gcamCode":"c9.333","gcamValue":3},{"gcamCode":"c9.335","gcamValue":8},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":9},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":15},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":12},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":2},{"gcamCode":"c9.367","gcamValue":1},{"gcamCode":"c9.37","gcamValue":3},{"gcamCode":"c9.370","gcamValue":3},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":8},{"gcamCode":"c9.375","gcamValue":2},{"gcamCode":"c9.377","gcamValue":3},{"gcamCode":"c9.378","gcamValue":40},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":6},{"gcamCode":"c9.383","gcamValue":26},{"gcamCode":"c9.384","gcamValue":7},{"gcamCode":"c9.385","gcamValue":2},{"gcamCode":"c9.386","gcamValue":3},{"gcamCode":"c9.387","gcamValue":2},{"gcamCode":"c9.389","gcamValue":3},{"gcamCode":"c9.39","gcamValue":29},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":4},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.4","gcamValue":6},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.405","gcamValue":6},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.41","gcamValue":5},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.417","gcamValue":1},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.426","gcamValue":2},{"gcamCode":"c9.427","gcamValue":2},{"gcamCode":"c9.428","gcamValue":3},{"gcamCode":"c9.430","gcamValue":14},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.434","gcamValue":2},{"gcamCode":"c9.437","gcamValue":7},{"gcamCode":"c9.438","gcamValue":2},{"gcamCode":"c9.44","gcamValue":16},{"gcamCode":"c9.440","gcamValue":13},{"gcamCode":"c9.443","gcamValue":2},{"gcamCode":"c9.445","gcamValue":2},{"gcamCode":"c9.446","gcamValue":3},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.448","gcamValue":2},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":10},{"gcamCode":"c9.46","gcamValue":7},{"gcamCode":"c9.461","gcamValue":3},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":4},{"gcamCode":"c9.464","gcamValue":3},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":6},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":8},{"gcamCode":"c9.47","gcamValue":6},{"gcamCode":"c9.470","gcamValue":11},{"gcamCode":"c9.471","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":4},{"gcamCode":"c9.476","gcamValue":17},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":2},{"gcamCode":"c9.479","gcamValue":32},{"gcamCode":"c9.48","gcamValue":18},{"gcamCode":"c9.480","gcamValue":19},{"gcamCode":"c9.482","gcamValue":6},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":7},{"gcamCode":"c9.487","gcamValue":8},{"gcamCode":"c9.488","gcamValue":5},{"gcamCode":"c9.489","gcamValue":19},{"gcamCode":"c9.49","gcamValue":28},{"gcamCode":"c9.491","gcamValue":6},{"gcamCode":"c9.493","gcamValue":4},{"gcamCode":"c9.494","gcamValue":6},{"gcamCode":"c9.496","gcamValue":7},{"gcamCode":"c9.498","gcamValue":36},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":9},{"gcamCode":"c9.500","gcamValue":6},{"gcamCode":"c9.501","gcamValue":7},{"gcamCode":"c9.502","gcamValue":8},{"gcamCode":"c9.503","gcamValue":7},{"gcamCode":"c9.504","gcamValue":5},{"gcamCode":"c9.507","gcamValue":16},{"gcamCode":"c9.509","gcamValue":2},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":23},{"gcamCode":"c9.513","gcamValue":63},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.518","gcamValue":4},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.520","gcamValue":3},{"gcamCode":"c9.521","gcamValue":11},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":4},{"gcamCode":"c9.525","gcamValue":4},{"gcamCode":"c9.528","gcamValue":19},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":9},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":2},{"gcamCode":"c9.534","gcamValue":12},{"gcamCode":"c9.537","gcamValue":16},{"gcamCode":"c9.538","gcamValue":1},{"gcamCode":"c9.539","gcamValue":5},{"gcamCode":"c9.54","gcamValue":16},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":3},{"gcamCode":"c9.545","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.548","gcamValue":1},{"gcamCode":"c9.549","gcamValue":21},{"gcamCode":"c9.55","gcamValue":11},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":13},{"gcamCode":"c9.554","gcamValue":4},{"gcamCode":"c9.556","gcamValue":9},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":3},{"gcamCode":"c9.560","gcamValue":12},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":20},{"gcamCode":"c9.564","gcamValue":38},{"gcamCode":"c9.565","gcamValue":6},{"gcamCode":"c9.566","gcamValue":20},{"gcamCode":"c9.567","gcamValue":45},{"gcamCode":"c9.568","gcamValue":3},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.57","gcamValue":5},{"gcamCode":"c9.570","gcamValue":8},{"gcamCode":"c9.571","gcamValue":5},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.575","gcamValue":8},{"gcamCode":"c9.576","gcamValue":20},{"gcamCode":"c9.579","gcamValue":64},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.581","gcamValue":11},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":3},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":21},{"gcamCode":"c9.586","gcamValue":5},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":4},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.590","gcamValue":2},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":5},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":4},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":5},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":15},{"gcamCode":"c9.62","gcamValue":6},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":3},{"gcamCode":"c9.624","gcamValue":12},{"gcamCode":"c9.625","gcamValue":16},{"gcamCode":"c9.626","gcamValue":6},{"gcamCode":"c9.627","gcamValue":14},{"gcamCode":"c9.629","gcamValue":18},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":14},{"gcamCode":"c9.635","gcamValue":15},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":9},{"gcamCode":"c9.640","gcamValue":32},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":45},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":4},{"gcamCode":"c9.648","gcamValue":37},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":7},{"gcamCode":"c9.653","gcamValue":81},{"gcamCode":"c9.654","gcamValue":7},{"gcamCode":"c9.655","gcamValue":10},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.657","gcamValue":2},{"gcamCode":"c9.658","gcamValue":7},{"gcamCode":"c9.659","gcamValue":8},{"gcamCode":"c9.66","gcamValue":8},{"gcamCode":"c9.660","gcamValue":22},{"gcamCode":"c9.661","gcamValue":8},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":7},{"gcamCode":"c9.665","gcamValue":3},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":5},{"gcamCode":"c9.668","gcamValue":9},{"gcamCode":"c9.669","gcamValue":22},{"gcamCode":"c9.67","gcamValue":7},{"gcamCode":"c9.670","gcamValue":18},{"gcamCode":"c9.671","gcamValue":5},{"gcamCode":"c9.672","gcamValue":11},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":15},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":9},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":8},{"gcamCode":"c9.682","gcamValue":6},{"gcamCode":"c9.683","gcamValue":8},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.686","gcamValue":5},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.688","gcamValue":6},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":10},{"gcamCode":"c9.692","gcamValue":11},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.695","gcamValue":3},{"gcamCode":"c9.696","gcamValue":4},{"gcamCode":"c9.698","gcamValue":11},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":9},{"gcamCode":"c9.70","gcamValue":17},{"gcamCode":"c9.700","gcamValue":2},{"gcamCode":"c9.701","gcamValue":59},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":39},{"gcamCode":"c9.705","gcamValue":7},{"gcamCode":"c9.708","gcamValue":10},{"gcamCode":"c9.71","gcamValue":8},{"gcamCode":"c9.710","gcamValue":16},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":6},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.718","gcamValue":10},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.72","gcamValue":4},{"gcamCode":"c9.720","gcamValue":7},{"gcamCode":"c9.721","gcamValue":5},{"gcamCode":"c9.722","gcamValue":16},{"gcamCode":"c9.723","gcamValue":11},{"gcamCode":"c9.724","gcamValue":60},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":95},{"gcamCode":"c9.727","gcamValue":6},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":13},{"gcamCode":"c9.730","gcamValue":57},{"gcamCode":"c9.731","gcamValue":5},{"gcamCode":"c9.732","gcamValue":4},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":4},{"gcamCode":"c9.735","gcamValue":18},{"gcamCode":"c9.736","gcamValue":18},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":11},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":30},{"gcamCode":"c9.741","gcamValue":15},{"gcamCode":"c9.742","gcamValue":30},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":55},{"gcamCode":"c9.75","gcamValue":5},{"gcamCode":"c9.750","gcamValue":5},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":2},{"gcamCode":"c9.754","gcamValue":16},{"gcamCode":"c9.755","gcamValue":9},{"gcamCode":"c9.756","gcamValue":6},{"gcamCode":"c9.757","gcamValue":7},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":8},{"gcamCode":"c9.76","gcamValue":21},{"gcamCode":"c9.760","gcamValue":6},{"gcamCode":"c9.761","gcamValue":11},{"gcamCode":"c9.762","gcamValue":56},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.765","gcamValue":3},{"gcamCode":"c9.766","gcamValue":39},{"gcamCode":"c9.767","gcamValue":84},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.773","gcamValue":3},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":15},{"gcamCode":"c9.776","gcamValue":18},{"gcamCode":"c9.777","gcamValue":6},{"gcamCode":"c9.778","gcamValue":7},{"gcamCode":"c9.779","gcamValue":7},{"gcamCode":"c9.78","gcamValue":5},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":4},{"gcamCode":"c9.783","gcamValue":2},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":12},{"gcamCode":"c9.789","gcamValue":5},{"gcamCode":"c9.79","gcamValue":6},{"gcamCode":"c9.790","gcamValue":18},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":16},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.797","gcamValue":2},{"gcamCode":"c9.798","gcamValue":7},{"gcamCode":"c9.8","gcamValue":18},{"gcamCode":"c9.80","gcamValue":8},{"gcamCode":"c9.800","gcamValue":5},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":18},{"gcamCode":"c9.803","gcamValue":3},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.805","gcamValue":2},{"gcamCode":"c9.806","gcamValue":11},{"gcamCode":"c9.808","gcamValue":16},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":17},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.815","gcamValue":2},{"gcamCode":"c9.816","gcamValue":32},{"gcamCode":"c9.817","gcamValue":14},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":6},{"gcamCode":"c9.820","gcamValue":4},{"gcamCode":"c9.821","gcamValue":7},{"gcamCode":"c9.822","gcamValue":4},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":4},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":34},{"gcamCode":"c9.830","gcamValue":4},{"gcamCode":"c9.831","gcamValue":9},{"gcamCode":"c9.832","gcamValue":2},{"gcamCode":"c9.833","gcamValue":4},{"gcamCode":"c9.834","gcamValue":21},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.838","gcamValue":5},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":3},{"gcamCode":"c9.842","gcamValue":2},{"gcamCode":"c9.843","gcamValue":6},{"gcamCode":"c9.844","gcamValue":10},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":2},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":7},{"gcamCode":"c9.86","gcamValue":18},{"gcamCode":"c9.860","gcamValue":36},{"gcamCode":"c9.861","gcamValue":7},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":11},{"gcamCode":"c9.864","gcamValue":58},{"gcamCode":"c9.865","gcamValue":8},{"gcamCode":"c9.866","gcamValue":13},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":56},{"gcamCode":"c9.87","gcamValue":7},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.875","gcamValue":5},{"gcamCode":"c9.877","gcamValue":23},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":3},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":14},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.885","gcamValue":2},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.888","gcamValue":2},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":6},{"gcamCode":"c9.893","gcamValue":3},{"gcamCode":"c9.895","gcamValue":1},{"gcamCode":"c9.896","gcamValue":13},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":16},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":16},{"gcamCode":"c9.900","gcamValue":6},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":5},{"gcamCode":"c9.903","gcamValue":21},{"gcamCode":"c9.904","gcamValue":3},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":21},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":7},{"gcamCode":"c9.916","gcamValue":7},{"gcamCode":"c9.917","gcamValue":6},{"gcamCode":"c9.918","gcamValue":5},{"gcamCode":"c9.919","gcamValue":3},{"gcamCode":"c9.920","gcamValue":19},{"gcamCode":"c9.921","gcamValue":12},{"gcamCode":"c9.923","gcamValue":7},{"gcamCode":"c9.924","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":17},{"gcamCode":"c9.928","gcamValue":8},{"gcamCode":"c9.93","gcamValue":4},{"gcamCode":"c9.930","gcamValue":18},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":11},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":51},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":5},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":12},{"gcamCode":"c9.943","gcamValue":2},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":3},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.955","gcamValue":15},{"gcamCode":"c9.959","gcamValue":1},{"gcamCode":"c9.96","gcamValue":28},{"gcamCode":"c9.962","gcamValue":10},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":7},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":14},{"gcamCode":"c9.967","gcamValue":2},{"gcamCode":"c9.969","gcamValue":9},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.976","gcamValue":4},{"gcamCode":"c9.978","gcamValue":34},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":15},{"gcamCode":"c9.981","gcamValue":4},{"gcamCode":"c9.983","gcamValue":6},{"gcamCode":"c9.984","gcamValue":9},{"gcamCode":"c9.985","gcamValue":10},{"gcamCode":"c9.986","gcamValue":6},{"gcamCode":"c9.987","gcamValue":2},{"gcamCode":"c9.988","gcamValue":6},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.991","gcamValue":4},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"c9.999","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.288582575782918},{"gcamCode":"v10.2","gcamValue":0.26438022516699},{"gcamCode":"v11.1","gcamValue":0.132462627595917},{"gcamCode":"v19.1","gcamValue":6.15229166666667},{"gcamCode":"v19.2","gcamValue":5.23541666666667},{"gcamCode":"v19.3","gcamValue":5.50635416666666},{"gcamCode":"v19.4","gcamValue":6.05692708333333},{"gcamCode":"v19.5","gcamValue":5.16192708333333},{"gcamCode":"v19.6","gcamValue":5.56895833333333},{"gcamCode":"v19.7","gcamValue":6.24192708333333},{"gcamCode":"v19.8","gcamValue":5.32208333333334},{"gcamCode":"v19.9","gcamValue":5.43359375},{"gcamCode":"v20.1","gcamValue":0.572},{"gcamCode":"v20.10","gcamValue":-0.656},{"gcamCode":"v20.11","gcamValue":0.62827027027027},{"gcamCode":"v20.12","gcamValue":-0.589142857142857},{"gcamCode":"v20.13","gcamValue":0.43225641025641},{"gcamCode":"v20.14","gcamValue":-0.473384615384615},{"gcamCode":"v20.15","gcamValue":0.374695067264574},{"gcamCode":"v20.16","gcamValue":-0.376260869565217},{"gcamCode":"v20.3","gcamValue":0.579571428571429},{"gcamCode":"v20.4","gcamValue":-0.312},{"gcamCode":"v20.5","gcamValue":0.749642857142857},{"gcamCode":"v20.6","gcamValue":-0.656},{"gcamCode":"v20.7","gcamValue":0.749666666666667},{"gcamCode":"v20.8","gcamValue":-0.656},{"gcamCode":"v20.9","gcamValue":0.678888888888889},{"gcamCode":"v21.1","gcamValue":5.63623216601813},{"gcamCode":"v26.1","gcamValue":1.53636363636364}][""][""][""][][{"name":"Bee City United States","charOffset":23},{"name":"South Carolina","charOffset":72},{"name":"Bee City Greenwood","charOffset":206},{"name":"Self Regional Healthcare","charOffset":448},{"name":"Self Regional","charOffset":523},{"name":"Lander University","charOffset":545},{"name":"Certified Nurse Leaders","charOffset":578},{"name":"Staff Excellence Awards","charOffset":736},{"name":"Kurstin LaCoste","charOffset":1193},{"name":"Human Resources","charOffset":1214},{"name":"Senior Farmer Market Nutrition Program","charOffset":1408},{"name":"South Carolina","charOffset":1565},{"name":"School District","charOffset":2027},{"name":"Superintendent Finalists","charOffset":2093},{"name":"Genesis Education Center","charOffset":2176},{"name":"Board Room","charOffset":2196},{"name":"Piedmont Technical College","charOffset":2667},{"name":"Greenwood Alumnae Chapter","charOffset":2894},{"name":"Delta Sigma Theta Sorority","charOffset":2924},{"name":"May Week Celebration","charOffset":3327},{"name":"Trinity United Methodist Church","charOffset":3378},{"name":"Finis Horne Arena","charOffset":3514},{"name":"Lander University","charOffset":3599},{"name":"Piedmont Technical College","charOffset":4056},{"name":"Spring Commencement","charOffset":4077},{"name":"T'Laysha Creswell","charOffset":4106},{"name":"McCormick High School","charOffset":4165},{"name":"Middle College","charOffset":4181},{"name":"Cooling Founder","charOffset":4382},{"name":"Technician Chip Rush","charOffset":4407},{"name":"Lead Maintenance Technician Dylan Antone","charOffset":4452},{"name":"Abbeville Promise","charOffset":4506},{"name":"Jeff Wilson","charOffset":4527},{"name":"Lander University","charOffset":4621},{"name":"Undergraduate Research","charOffset":4749},{"name":"Kennesaw State University","charOffset":4900},{"name":"Amber Christine Lee","charOffset":5117},{"name":"Autumn Wofford","charOffset":5153},{"name":"Skyler Aldrich","charOffset":5193},{"name":"Greenwood County Courthouse","charOffset":5473},{"name":"Circuit Solicitor David","charOffset":5508},{"name":"Lanham Street","charOffset":5717},{"name":"Self Regional Healthcare","charOffset":5899},{"name":"Humane Society","charOffset":5991},{"name":"Technical College","charOffset":6355},{"name":"Scholarship Luncheon","charOffset":6400},{"name":"Lonza Endowed Scholarship","charOffset":6531},{"name":"Bianca Earl","charOffset":6547},{"name":"Sarah Foster","charOffset":6578},{"name":"Ware Shoals","charOffset":6593},{"name":"Richard Gregory","charOffset":6614},{"name":"Rock Hill","charOffset":6627},{"name":"Andrea Pozo","charOffset":6690},{"name":"Warner Lambert Company","charOffset":6735},{"name":"Technical College","charOffset":6921},{"name":"Scholarship Luncheon","charOffset":6966},{"name":"Sterilite Corporation Endowed Scholarship","charOffset":7113},{"name":"Marquel Evans","charOffset":7131},{"name":"Michelle Freeman","charOffset":7164},{"name":"Hailey Fuller","charOffset":7196},{"name":"Ninety Six","charOffset":7210},{"name":"Zelea James","charOffset":7231},{"name":"Piedmont Technical","charOffset":7384},{"name":"Technical College","charOffset":7626},{"name":"Scholarship Luncheon","charOffset":7671},{"name":"Carl Brock Vocational Rehabilitation Scholarship","charOffset":7824},{"name":"Ashlee Riley","charOffset":7840},{"name":"Carl Brock","charOffset":7999},{"name":"South Carolina Manufacturing","charOffset":8152},{"name":"Human Services","charOffset":8254},{"name":"Arts Center","charOffset":8450},{"name":"South Carolina National Guard","charOffset":8913},{"name":"Veterans Day","charOffset":9014},{"name":"Photography Exhibition","charOffset":9128},{"name":"Exhibition Chair Kendall","charOffset":9504},{"name":"Greenwood County Courthouse","charOffset":10146},{"name":"Circuit Solicitor David","charOffset":10181},{"name":"Yvonne Hudgens","charOffset":10267},{"name":"Campus Police","charOffset":10297},{"name":"Security Terry Ledford","charOffset":10324},{"name":"Piedmont Technical College","charOffset":10378},{"name":"Ray Brooks","charOffset":10477},{"name":"City Police","charOffset":10641},{"name":"Greenwood County Sheriff","charOffset":10677},{"name":"Kirksey Drive","charOffset":10712},{"name":"Academic Affairs","charOffset":11057},{"name":"Legion Hall","charOffset":11162},{"name":"Greenwood Promise","charOffset":11625},{"name":"Fuji Film Manufacturing United States","charOffset":11741},{"name":"Fuji Film Manufacturing United States","charOffset":11849},{"name":"Greenwood Promise","charOffset":11906},{"name":"Technical College","charOffset":12155},{"name":"Scholarship Luncheon","charOffset":12200},{"name":"Charles Baumeister Memorial Endowed Scholarship","charOffset":12356},{"name":"Dorothy Holmes","charOffset":12375},{"name":"Linh Nguyen","charOffset":12416},{"name":"Donor Representative Sally","charOffset":12497},{"name":"Industrial Divisions","charOffset":12681},{"name":"Technical College","charOffset":12944},{"name":"Ray Brooks","charOffset":12977},{"name":"Presidential Medallion","charOffset":13064},{"name":"Girl Power","charOffset":13474},{"name":"State Museum","charOffset":13538},{"name":"State House","charOffset":13895},{"name":"South Carolina","charOffset":13979},{"name":"Greenwood Capital","charOffset":14077},{"name":"Greenwood Miracle League","charOffset":14171},{"name":"Burton Center","charOffset":14240},{"name":"Technical College","charOffset":14417},{"name":"Scholarship Luncheon","charOffset":14462},{"name":"Greenwood Corvette Club Automotive Scholarship","charOffset":14613},{"name":"Daniel Johnson","charOffset":14631},{"name":"Greenwood Corvette Club Automotive Scholarship","charOffset":14697},{"name":"Automotive Technology","charOffset":14761},{"name":"Donor Representative Doug Timmerman","charOffset":14869},{"name":"Daniel Johnson","charOffset":14889},{"name":"Donor Representative Mac","charOffset":14923}][{"amount":10,"amountType":"graduate nurses employed by","charOffset":323},{"amount":200,"amountType":"Lander University employees were","charOffset":520},{"amount":25,"amountType":"dollars ","charOffset":1513},{"amount":5,"amountType":"checks of $5","charOffset":1528},{"amount":5,"amountType":"dollars ","charOffset":1538},{"amount":50,"amountType":"will host public forums","charOffset":1665},{"amount":400,"amountType":"Glenwood St","charOffset":1804},{"amount":7,"amountType":"supporting counties were honored","charOffset":2235},{"amount":547,"amountType":"Maxwell Avenue at 12","charOffset":2722},{"amount":500,"amountType":"people packed Finis Horne","charOffset":2780},{"amount":343,"amountType":"graduates receive degrees at","charOffset":2828},{"amount":5,"amountType":"dollars ","charOffset":3571},{"amount":5,"amountType":"am where they located","charOffset":4562},{"amount":7,"amountType":"am on race day","charOffset":4928},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":5121},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":5584},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":6173},{"amount":2,"amountType":"categories","charOffset":7647},{"amount":20,"amountType":"dollars for submission of up","charOffset":7971},{"amount":4,"amountType":"prints","charOffset":7991},{"amount":30,"amountType":"pm today after receiving","charOffset":8627},{"amount":806,"amountType":"Calhoun Avenue near Uptown","charOffset":8970},{"amount":100,"amountType":"dollars ","charOffset":9582},{"amount":20,"amountType":"dollars ","charOffset":9617},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":9835},{"amount":8,"amountType":"college associates","charOffset":10448},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":11674}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://r20.rs6.net/tn.jsp?f=001NNdHQ6RXozJpIfCcSXDetNSdJ1xF9IeLmU5rOyUOYOe3bSDHs8WU3rXSRfYTZmIT6x45U0wFHrnc-L_Dq5pgJMtadLEgtDEOGW5AYUjlXhPpgOQPm5r4Wlof4N4mHZrJgpCqNgoiaFY=;http://www.facebook.com/RunToTheRescue5K</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBottawasun.comhttps://ottawasun.com/opinion/letters/you-said-it-a-crime-is-a-crime[][]["SOC_GENERALCRIME","EPU_CATS_MIGRATION_FEAR_FEAR","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_OFFICIAL","UNREST_SELF_IDENTIFIED_HATE_CRIME","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","DISCRIMINATION","DISCRIMINATION_RACE","DISCRIMINATION_RACE_RACISM","UNGP_FREEDOM_FROM_DISCRIMINATION","RELIGION","TAX_FNCACT_CRIMINAL","GENERAL_HEALTH","MEDICAL","UNGP_HEALTHCARE","TAX_DISEASE","TAX_DISEASE_MEASLES","TAX_DISEASE_OUTBREAK","WB_635_PUBLIC_HEALTH","WB_2165_HEALTH_EMERGENCIES","WB_2166_HEALTH_EMERGENCY_PREPAREDNESS_AND_DISASTER_RESPONSE","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_2167_PANDEMICS","BORDER","IMMIGRATION","TAX_FNCACT_IMMIGRANTS","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_DOG","TAX_FNCACT_VETERINARIAN","HEALTH_VACCINATION","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","TAX_FNCACT_CHILDREN","TAX_WORLDMAMMALS_DOGS","CRISISLEX_T06_SUPPLIES","INFRASTRUCTURE_BAD_ROADS","CRISISLEX_C04_LOGISTICS_TRANSPORT","UNGP_TRANSPORTATION_ROADS","LEADER","TAX_FNCACT_MAYOR","TAX_FNCACT_POPE"][{"theme":"GENERAL_GOVERNMENT","charOffset":1582},{"theme":"GENERAL_GOVERNMENT","charOffset":1626},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1582},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":1626},{"theme":"UNGP_HEALTHCARE","charOffset":869},{"theme":"UNGP_HEALTHCARE","charOffset":1829},{"theme":"HEALTH_VACCINATION","charOffset":1448},{"theme":"HEALTH_VACCINATION","charOffset":1478},{"theme":"IMMIGRATION","charOffset":1240},{"theme":"IMMIGRATION","charOffset":1535},{"theme":"IMMIGRATION","charOffset":1673},{"theme":"IMMIGRATION","charOffset":1948},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1240},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1535},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1673},{"theme":"TAX_FNCACT_IMMIGRANTS","charOffset":1948},{"theme":"DISCRIMINATION","charOffset":327},{"theme":"DISCRIMINATION_RACE_RACISM","charOffset":327},{"theme":"UNGP_FREEDOM_FROM_DISCRIMINATION","charOffset":327},{"theme":"INFRASTRUCTURE_BAD_ROADS","charOffset":1998},{"theme":"INFRASTRUCTURE_BAD_ROADS","charOffset":2194},{"theme":"INFRASTRUCTURE_BAD_ROADS","charOffset":2313},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":1998},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2194},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2313},{"theme":"UNGP_TRANSPORTATION_ROADS","charOffset":1998},{"theme":"UNGP_TRANSPORTATION_ROADS","charOffset":2194},{"theme":"UNGP_TRANSPORTATION_ROADS","charOffset":2313},{"theme":"BORDER","charOffset":979},{"theme":"TAX_DISEASE_MEASLES","charOffset":904},{"theme":"SOC_GENERALCRIME","charOffset":7},{"theme":"SOC_GENERALCRIME","charOffset":18},{"theme":"SOC_GENERALCRIME","charOffset":227},{"theme":"SOC_GENERALCRIME","charOffset":238},{"theme":"SOC_GENERALCRIME","charOffset":830},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":7},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":18},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":227},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":238},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":830},{"theme":"RELIGION","charOffset":354},{"theme":"GENERAL_HEALTH","charOffset":864},{"theme":"GENERAL_HEALTH","charOffset":1824},{"theme":"MEDICAL","charOffset":864},{"theme":"MEDICAL","charOffset":1824},{"theme":"TAX_DISEASE_OUTBREAK","charOffset":913},{"theme":"WB_635_PUBLIC_HEALTH","charOffset":913},{"theme":"WB_2165_HEALTH_EMERGENCIES","charOffset":913},{"theme":"WB_2166_HEALTH_EMERGENCY_PREPAREDNESS_AND_DISASTER_RESPONSE","charOffset":913},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":913},{"theme":"WB_2167_PANDEMICS","charOffset":913},{"theme":"TAX_WORLDMAMMALS_DOGS","charOffset":1956},{"theme":"CRISISLEX_T06_SUPPLIES","charOffset":2032},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":462},{"theme":"TAX_FNCACT_POPE","charOffset":2864},{"theme":"UNREST_SELF_IDENTIFIED_HATE_CRIME","charOffset":202},{"theme":"SECURITY_SERVICES","charOffset":129},{"theme":"TAX_FNCACT_POLICE","charOffset":129},{"theme":"CRISISLEX_C07_SAFETY","charOffset":129},{"theme":"LEADER","charOffset":2568},{"theme":"TAX_FNCACT_MAYOR","charOffset":2568},{"theme":"LEGISLATION","charOffset":309},{"theme":"EPU_POLICY_LAW","charOffset":309},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":1344},{"theme":"TAX_FNCACT_CHILDREN","charOffset":1724},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":138},{"theme":"TAX_FNCACT_VETERINARIAN","charOffset":1395}][{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"WORLDCITY","geoName":"Montreal, Quebec, Canada","countryCode":"CA","adm1Code":"CA10","adm2Code":"","geoPoint":{"latitude":45.5,"longitude":-73.5833},"featureId":"-569541"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"}][{"location":{"geoType":"WORLDCITY","geoName":"Montreal, Quebec, Canada","countryCode":"CA","adm1Code":"CA10","adm2Code":"12713","geoPoint":{"latitude":45.5,"longitude":-73.5833},"featureId":"-569541"},"charOffset":1125},{"location":{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},"charOffset":998},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":151},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":733},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":1896},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":2248},{"location":{"geoType":"WORLDCITY","geoName":"Ottawa, Ontario, Canada","countryCode":"CA","adm1Code":"CA08","adm2Code":"12755","geoPoint":{"latitude":45.4167,"longitude":-75.7},"featureId":"-570760"},"charOffset":3017},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":159},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":477},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":741},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":940},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":1114},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":1133},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":1904},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":2256},{"location":{"geoType":"COUNTRY","geoName":"Canada","countryCode":"CA","adm1Code":"CA","adm2Code":"","geoPoint":{"latitude":60,"longitude":-96},"featureId":"CA"},"charOffset":3025},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":967}]["jim watson","dalton mcguinty","kathleen wynne"][{"person":"Jim Watson","charOffset":2579},{"person":"Dalton Mcguinty","charOffset":2350},{"person":"Kathleen Wynne","charOffset":2912}]["united states"][{"organisation":"United States","charOffset":967}]{"tone":-4.255319,"positiveScore":2.1276596,"negativeScore":6.382979,"polarity":8.510638,"activityReferenceDensity":24.371374,"selfGroupReferenceDensity":2.321083,"wordCount":466}[][{"gcamCode":"wc","gcamValue":466},{"gcamCode":"c1.4","gcamValue":2},{"gcamCode":"c12.1","gcamValue":48},{"gcamCode":"c12.10","gcamValue":60},{"gcamCode":"c12.11","gcamValue":2},{"gcamCode":"c12.12","gcamValue":24},{"gcamCode":"c12.13","gcamValue":26},{"gcamCode":"c12.14","gcamValue":13},{"gcamCode":"c12.2","gcamValue":1},{"gcamCode":"c12.3","gcamValue":20},{"gcamCode":"c12.4","gcamValue":11},{"gcamCode":"c12.5","gcamValue":20},{"gcamCode":"c12.6","gcamValue":2},{"gcamCode":"c12.7","gcamValue":42},{"gcamCode":"c12.8","gcamValue":35},{"gcamCode":"c12.9","gcamValue":29},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.12","gcamValue":5},{"gcamCode":"c13.3","gcamValue":2},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":31},{"gcamCode":"c14.10","gcamValue":22},{"gcamCode":"c14.11","gcamValue":44},{"gcamCode":"c14.2","gcamValue":31},{"gcamCode":"c14.3","gcamValue":31},{"gcamCode":"c14.4","gcamValue":6},{"gcamCode":"c14.5","gcamValue":56},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":6},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.110","gcamValue":5},{"gcamCode":"c15.116","gcamValue":2},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":2},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.132","gcamValue":3},{"gcamCode":"c15.135","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.139","gcamValue":4},{"gcamCode":"c15.144","gcamValue":1},{"gcamCode":"c15.150","gcamValue":3},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":5},{"gcamCode":"c15.176","gcamValue":6},{"gcamCode":"c15.177","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.179","gcamValue":1},{"gcamCode":"c15.181","gcamValue":4},{"gcamCode":"c15.182","gcamValue":3},{"gcamCode":"c15.186","gcamValue":3},{"gcamCode":"c15.189","gcamValue":3},{"gcamCode":"c15.190","gcamValue":3},{"gcamCode":"c15.191","gcamValue":3},{"gcamCode":"c15.192","gcamValue":3},{"gcamCode":"c15.193","gcamValue":3},{"gcamCode":"c15.195","gcamValue":3},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.2","gcamValue":3},{"gcamCode":"c15.211","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.226","gcamValue":3},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.236","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.242","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.279","gcamValue":1},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.59","gcamValue":1},{"gcamCode":"c15.60","gcamValue":2},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.74","gcamValue":3},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.83","gcamValue":3},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.93","gcamValue":3},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":15},{"gcamCode":"c16.101","gcamValue":7},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":24},{"gcamCode":"c16.109","gcamValue":31},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":73},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":40},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":14},{"gcamCode":"c16.117","gcamValue":18},{"gcamCode":"c16.118","gcamValue":35},{"gcamCode":"c16.12","gcamValue":52},{"gcamCode":"c16.120","gcamValue":20},{"gcamCode":"c16.121","gcamValue":36},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":36},{"gcamCode":"c16.126","gcamValue":23},{"gcamCode":"c16.127","gcamValue":49},{"gcamCode":"c16.128","gcamValue":10},{"gcamCode":"c16.129","gcamValue":73},{"gcamCode":"c16.13","gcamValue":3},{"gcamCode":"c16.130","gcamValue":8},{"gcamCode":"c16.131","gcamValue":23},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":50},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":12},{"gcamCode":"c16.139","gcamValue":24},{"gcamCode":"c16.140","gcamValue":17},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":35},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":18},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":6},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":44},{"gcamCode":"c16.16","gcamValue":6},{"gcamCode":"c16.161","gcamValue":48},{"gcamCode":"c16.162","gcamValue":22},{"gcamCode":"c16.163","gcamValue":33},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":7},{"gcamCode":"c16.2","gcamValue":31},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":5},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":58},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.29","gcamValue":2},{"gcamCode":"c16.3","gcamValue":7},{"gcamCode":"c16.31","gcamValue":31},{"gcamCode":"c16.32","gcamValue":5},{"gcamCode":"c16.33","gcamValue":44},{"gcamCode":"c16.35","gcamValue":26},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":48},{"gcamCode":"c16.38","gcamValue":14},{"gcamCode":"c16.4","gcamValue":40},{"gcamCode":"c16.41","gcamValue":24},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":25},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":66},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":24},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.55","gcamValue":5},{"gcamCode":"c16.56","gcamValue":11},{"gcamCode":"c16.57","gcamValue":263},{"gcamCode":"c16.58","gcamValue":37},{"gcamCode":"c16.6","gcamValue":56},{"gcamCode":"c16.60","gcamValue":6},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":24},{"gcamCode":"c16.63","gcamValue":7},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":10},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":19},{"gcamCode":"c16.69","gcamValue":25},{"gcamCode":"c16.7","gcamValue":10},{"gcamCode":"c16.70","gcamValue":31},{"gcamCode":"c16.71","gcamValue":10},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":24},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":12},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":2},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":18},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":45},{"gcamCode":"c16.88","gcamValue":71},{"gcamCode":"c16.89","gcamValue":12},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":12},{"gcamCode":"c16.91","gcamValue":17},{"gcamCode":"c16.92","gcamValue":39},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":53},{"gcamCode":"c16.95","gcamValue":22},{"gcamCode":"c16.96","gcamValue":9},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":46},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":116},{"gcamCode":"c17.10","gcamValue":54},{"gcamCode":"c17.11","gcamValue":62},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":24},{"gcamCode":"c17.16","gcamValue":24},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":12},{"gcamCode":"c17.19","gcamValue":23},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.21","gcamValue":5},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":4},{"gcamCode":"c17.24","gcamValue":53},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":60},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":6},{"gcamCode":"c17.31","gcamValue":29},{"gcamCode":"c17.32","gcamValue":18},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":10},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":26},{"gcamCode":"c17.37","gcamValue":11},{"gcamCode":"c17.38","gcamValue":12},{"gcamCode":"c17.39","gcamValue":15},{"gcamCode":"c17.4","gcamValue":105},{"gcamCode":"c17.40","gcamValue":12},{"gcamCode":"c17.41","gcamValue":22},{"gcamCode":"c17.42","gcamValue":35},{"gcamCode":"c17.43","gcamValue":31},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":91},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":58},{"gcamCode":"c17.8","gcamValue":63},{"gcamCode":"c17.9","gcamValue":6},{"gcamCode":"c18.101","gcamValue":4},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.149","gcamValue":2},{"gcamCode":"c18.152","gcamValue":1},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.181","gcamValue":2},{"gcamCode":"c18.185","gcamValue":2},{"gcamCode":"c18.191","gcamValue":2},{"gcamCode":"c18.193","gcamValue":12},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.269","gcamValue":5},{"gcamCode":"c18.34","gcamValue":4},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.345","gcamValue":2},{"gcamCode":"c18.35","gcamValue":4},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.81","gcamValue":1},{"gcamCode":"c18.92","gcamValue":1},{"gcamCode":"c2.1","gcamValue":8},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":18},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":72},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.107","gcamValue":4},{"gcamCode":"c2.108","gcamValue":5},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":6},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":37},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":25},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":135},{"gcamCode":"c2.12","gcamValue":28},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":37},{"gcamCode":"c2.122","gcamValue":18},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":8},{"gcamCode":"c2.125","gcamValue":20},{"gcamCode":"c2.126","gcamValue":26},{"gcamCode":"c2.127","gcamValue":50},{"gcamCode":"c2.128","gcamValue":17},{"gcamCode":"c2.129","gcamValue":27},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":3},{"gcamCode":"c2.132","gcamValue":6},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":4},{"gcamCode":"c2.14","gcamValue":31},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":9},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":30},{"gcamCode":"c2.144","gcamValue":15},{"gcamCode":"c2.145","gcamValue":8},{"gcamCode":"c2.146","gcamValue":7},{"gcamCode":"c2.147","gcamValue":67},{"gcamCode":"c2.148","gcamValue":51},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":27},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":9},{"gcamCode":"c2.155","gcamValue":55},{"gcamCode":"c2.156","gcamValue":23},{"gcamCode":"c2.157","gcamValue":52},{"gcamCode":"c2.158","gcamValue":44},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":34},{"gcamCode":"c2.161","gcamValue":4},{"gcamCode":"c2.162","gcamValue":12},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.165","gcamValue":4},{"gcamCode":"c2.166","gcamValue":21},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":7},{"gcamCode":"c2.17","gcamValue":12},{"gcamCode":"c2.170","gcamValue":9},{"gcamCode":"c2.172","gcamValue":5},{"gcamCode":"c2.173","gcamValue":13},{"gcamCode":"c2.174","gcamValue":4},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":34},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":23},{"gcamCode":"c2.180","gcamValue":23},{"gcamCode":"c2.181","gcamValue":27},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":121},{"gcamCode":"c2.186","gcamValue":8},{"gcamCode":"c2.187","gcamValue":42},{"gcamCode":"c2.188","gcamValue":3},{"gcamCode":"c2.189","gcamValue":3},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":29},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":49},{"gcamCode":"c2.196","gcamValue":8},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":47},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.200","gcamValue":6},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":23},{"gcamCode":"c2.204","gcamValue":41},{"gcamCode":"c2.205","gcamValue":9},{"gcamCode":"c2.206","gcamValue":11},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":24},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":69},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":13},{"gcamCode":"c2.214","gcamValue":13},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":6},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":14},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":32},{"gcamCode":"c2.26","gcamValue":21},{"gcamCode":"c2.27","gcamValue":21},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":17},{"gcamCode":"c2.31","gcamValue":27},{"gcamCode":"c2.32","gcamValue":8},{"gcamCode":"c2.33","gcamValue":6},{"gcamCode":"c2.34","gcamValue":26},{"gcamCode":"c2.35","gcamValue":17},{"gcamCode":"c2.36","gcamValue":10},{"gcamCode":"c2.37","gcamValue":12},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":80},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":20},{"gcamCode":"c2.46","gcamValue":56},{"gcamCode":"c2.47","gcamValue":13},{"gcamCode":"c2.48","gcamValue":10},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":7},{"gcamCode":"c2.52","gcamValue":40},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":46},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":11},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":25},{"gcamCode":"c2.64","gcamValue":10},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":13},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":85},{"gcamCode":"c2.76","gcamValue":324},{"gcamCode":"c2.77","gcamValue":40},{"gcamCode":"c2.78","gcamValue":82},{"gcamCode":"c2.79","gcamValue":14},{"gcamCode":"c2.80","gcamValue":69},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":25},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":24},{"gcamCode":"c2.87","gcamValue":5},{"gcamCode":"c2.88","gcamValue":13},{"gcamCode":"c2.89","gcamValue":17},{"gcamCode":"c2.9","gcamValue":5},{"gcamCode":"c2.90","gcamValue":8},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":6},{"gcamCode":"c2.95","gcamValue":85},{"gcamCode":"c2.96","gcamValue":6},{"gcamCode":"c2.97","gcamValue":13},{"gcamCode":"c2.98","gcamValue":26},{"gcamCode":"c2.99","gcamValue":9},{"gcamCode":"c25.11","gcamValue":3},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c25.6","gcamValue":4},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c25.9","gcamValue":3},{"gcamCode":"c3.1","gcamValue":34},{"gcamCode":"c3.2","gcamValue":27},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.13","gcamValue":2},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":6},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":13},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.31","gcamValue":18},{"gcamCode":"c35.32","gcamValue":12},{"gcamCode":"c35.33","gcamValue":19},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":3},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":4},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.27","gcamValue":1},{"gcamCode":"c39.3","gcamValue":11},{"gcamCode":"c39.35","gcamValue":1},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":9},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":3},{"gcamCode":"c39.4","gcamValue":12},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":3},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":7},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":23},{"gcamCode":"c4.24","gcamValue":3},{"gcamCode":"c4.28","gcamValue":3},{"gcamCode":"c4.3","gcamValue":2},{"gcamCode":"c4.7","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":3},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":30},{"gcamCode":"c5.11","gcamValue":13},{"gcamCode":"c5.12","gcamValue":60},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":7},{"gcamCode":"c5.18","gcamValue":4},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":11},{"gcamCode":"c5.23","gcamValue":7},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":16},{"gcamCode":"c5.27","gcamValue":18},{"gcamCode":"c5.28","gcamValue":4},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.3","gcamValue":4},{"gcamCode":"c5.30","gcamValue":59},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.33","gcamValue":3},{"gcamCode":"c5.34","gcamValue":15},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":25},{"gcamCode":"c5.37","gcamValue":3},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.40","gcamValue":40},{"gcamCode":"c5.41","gcamValue":1},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":21},{"gcamCode":"c5.44","gcamValue":6},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":61},{"gcamCode":"c5.47","gcamValue":19},{"gcamCode":"c5.48","gcamValue":8},{"gcamCode":"c5.49","gcamValue":64},{"gcamCode":"c5.50","gcamValue":56},{"gcamCode":"c5.51","gcamValue":55},{"gcamCode":"c5.52","gcamValue":79},{"gcamCode":"c5.53","gcamValue":44},{"gcamCode":"c5.54","gcamValue":20},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.56","gcamValue":9},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":9},{"gcamCode":"c5.59","gcamValue":4},{"gcamCode":"c5.6","gcamValue":26},{"gcamCode":"c5.60","gcamValue":26},{"gcamCode":"c5.61","gcamValue":46},{"gcamCode":"c5.62","gcamValue":238},{"gcamCode":"c5.7","gcamValue":6},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":15},{"gcamCode":"c6.1","gcamValue":15},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":25},{"gcamCode":"c6.5","gcamValue":7},{"gcamCode":"c6.6","gcamValue":6},{"gcamCode":"c7.1","gcamValue":41},{"gcamCode":"c7.2","gcamValue":25},{"gcamCode":"c8.1","gcamValue":3},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.12","gcamValue":4},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.17","gcamValue":3},{"gcamCode":"c8.2","gcamValue":6},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":12},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":5},{"gcamCode":"c8.37","gcamValue":8},{"gcamCode":"c8.38","gcamValue":8},{"gcamCode":"c8.39","gcamValue":6},{"gcamCode":"c8.4","gcamValue":23},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":9},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":25},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":3},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1019","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1022","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1033","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":4},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":3},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":6},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":5},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":4},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":31},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.132","gcamValue":2},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":2},{"gcamCode":"c9.14","gcamValue":4},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.146","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.156","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":11},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":4},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":9},{"gcamCode":"c9.189","gcamValue":2},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":5},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":2},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":5},{"gcamCode":"c9.237","gcamValue":4},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.243","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":3},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.270","gcamValue":5},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.28","gcamValue":5},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.293","gcamValue":4},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":25},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":4},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.326","gcamValue":2},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":14},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.335","gcamValue":2},{"gcamCode":"c9.34","gcamValue":11},{"gcamCode":"c9.340","gcamValue":5},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.377","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":3},{"gcamCode":"c9.384","gcamValue":9},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.39","gcamValue":8},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.405","gcamValue":3},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.417","gcamValue":1},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.420","gcamValue":4},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.446","gcamValue":4},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.460","gcamValue":4},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":3},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":5},{"gcamCode":"c9.513","gcamValue":7},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":5},{"gcamCode":"c9.522","gcamValue":9},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":7},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":5},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":4},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":5},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":24},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":4},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.62","gcamValue":4},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":4},{"gcamCode":"c9.629","gcamValue":9},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":6},{"gcamCode":"c9.635","gcamValue":3},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":6},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":6},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":27},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":6},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.683","gcamValue":5},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":6},{"gcamCode":"c9.695","gcamValue":4},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":7},{"gcamCode":"c9.701","gcamValue":10},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":7},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.720","gcamValue":5},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.725","gcamValue":3},{"gcamCode":"c9.726","gcamValue":24},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":6},{"gcamCode":"c9.742","gcamValue":4},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.757","gcamValue":5},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":24},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":10},{"gcamCode":"c9.767","gcamValue":33},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.772","gcamValue":2},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":6},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":3},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":3},{"gcamCode":"c9.790","gcamValue":4},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.802","gcamValue":4},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":8},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":11},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":4},{"gcamCode":"c9.864","gcamValue":27},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":24},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.873","gcamValue":3},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":3},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":7},{"gcamCode":"c9.905","gcamValue":3},{"gcamCode":"c9.906","gcamValue":2},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.911","gcamValue":6},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.927","gcamValue":2},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":6},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.936","gcamValue":3},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":5},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":3},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.969","gcamValue":6},{"gcamCode":"c9.972","gcamValue":7},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":5},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":8},{"gcamCode":"c9.982","gcamValue":1},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":3},{"gcamCode":"c9.985","gcamValue":9},{"gcamCode":"c9.986","gcamValue":13},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":5},{"gcamCode":"c9.989","gcamValue":2},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.996","gcamValue":2},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.291619769119769},{"gcamCode":"v10.2","gcamValue":0.277432735742518},{"gcamCode":"v11.1","gcamValue":0.0383875287356322},{"gcamCode":"v19.1","gcamValue":5.20216666666667},{"gcamCode":"v19.2","gcamValue":5.30433333333333},{"gcamCode":"v19.3","gcamValue":5.098},{"gcamCode":"v19.4","gcamValue":5.24216666666667},{"gcamCode":"v19.5","gcamValue":5.212},{"gcamCode":"v19.6","gcamValue":5.1735},{"gcamCode":"v19.7","gcamValue":5.2},{"gcamCode":"v19.8","gcamValue":5.396},{"gcamCode":"v19.9","gcamValue":5.02733333333333},{"gcamCode":"v20.1","gcamValue":0.498666666666667},{"gcamCode":"v20.10","gcamValue":-0.729166666666667},{"gcamCode":"v20.11","gcamValue":0.640769230769231},{"gcamCode":"v20.12","gcamValue":-0.671875},{"gcamCode":"v20.13","gcamValue":0.426553191489361},{"gcamCode":"v20.14","gcamValue":-0.489444444444444},{"gcamCode":"v20.15","gcamValue":0.387457627118644},{"gcamCode":"v20.16","gcamValue":-0.41408},{"gcamCode":"v20.2","gcamValue":-0.375},{"gcamCode":"v20.3","gcamValue":0.5615},{"gcamCode":"v20.4","gcamValue":-0.6875},{"gcamCode":"v20.5","gcamValue":0.731571428571429},{"gcamCode":"v20.6","gcamValue":-0.75},{"gcamCode":"v20.7","gcamValue":0.731571428571429},{"gcamCode":"v20.8","gcamValue":-0.75},{"gcamCode":"v20.9","gcamValue":0.683},{"gcamCode":"v21.1","gcamValue":5.27328537170264},{"gcamCode":"v26.1","gcamValue":-0.592307692307692}]https://postmediaottawasun.files.wordpress.com/2019/03/77260946-2.jpg[""][""][""][][{"name":"Criminal Code","charOffset":468},{"name":"New York","charOffset":970},{"name":"Mayor Jim","charOffset":2526},{"name":"Kathleen Wynne","charOffset":2882}][]{"SRCLC":"","ENG":""}<PAGE_ALTURL_AMP>https://ottawasun.com/opinion/letters/you-said-it-a-crime-is-a-crime/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":6}2019-05-23T12:15:00.000+0000WEBavclub.comhttps://film.avclub.com/kaitlyn-dever-and-beanie-feldstein-on-becoming-real-lif-1834900941[{"countType":"PROTEST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},{"countType":"MOVEMENT_GENERAL","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},{"countType":"TAX_FNCACT_ACTIVIST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}}][{"count":{"countType":"PROTEST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},"charOffset":11290},{"count":{"countType":"MOVEMENT_GENERAL","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},"charOffset":11290},{"count":{"countType":"TAX_FNCACT_ACTIVIST","count":2014,"objectType":"","location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}},"charOffset":11290}]["EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","SOC_POINTSOFINTEREST_HIGH_SCHOOL","TAX_FNCACT","TAX_FNCACT_MAN","WB_1675_GRADUATION","WB_855_LABOR_MARKETS","WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_FNCACT_TEACHER","AFFECT","SOC_POINTSOFINTEREST_COLLEGE","CRISISLEX_T11_UPDATESSYMPATHY","USPEC_POLITICS_GENERAL1","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_MANDARIN","TAX_FNCACT_WOMAN","TAX_FNCACT_DIRECTORS","TAX_FNCACT_WOMEN","TAX_FNCACT_LADY","TAX_FNCACT_ACTOR","PROTEST","MOVEMENT_GENERAL","TAX_FNCACT_ACTIVIST","KILL"][{"theme":"TAX_FNCACT_WOMAN","charOffset":9064},{"theme":"TAX_FNCACT_WOMAN","charOffset":9455},{"theme":"TAX_FNCACT_WOMAN","charOffset":11237},{"theme":"TAX_FNCACT_WOMAN","charOffset":11329},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2538},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2612},{"theme":"EDUCATION","charOffset":289},{"theme":"EDUCATION","charOffset":876},{"theme":"EDUCATION","charOffset":1053},{"theme":"EDUCATION","charOffset":1258},{"theme":"EDUCATION","charOffset":1356},{"theme":"EDUCATION","charOffset":1537},{"theme":"EDUCATION","charOffset":1788},{"theme":"EDUCATION","charOffset":1915},{"theme":"EDUCATION","charOffset":1969},{"theme":"EDUCATION","charOffset":2019},{"theme":"EDUCATION","charOffset":2163},{"theme":"EDUCATION","charOffset":2371},{"theme":"EDUCATION","charOffset":2438},{"theme":"EDUCATION","charOffset":6618},{"theme":"EDUCATION","charOffset":7077},{"theme":"EDUCATION","charOffset":7757},{"theme":"EDUCATION","charOffset":9842},{"theme":"EDUCATION","charOffset":9876},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":289},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":876},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1053},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1258},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1356},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1537},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1788},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1915},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1969},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2019},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2163},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2371},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2438},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":6618},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7077},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":7757},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":9842},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":9876},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":289},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":876},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1053},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1258},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1356},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1537},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1788},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1915},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":1969},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2019},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2163},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2371},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2438},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":6618},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7077},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":7757},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":9842},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":9876},{"theme":"TAX_FNCACT_ACTOR","charOffset":11265},{"theme":"TAX_FNCACT_TEACHER","charOffset":1389},{"theme":"TAX_FNCACT_LADY","charOffset":10581},{"theme":"TAX_FNCACT_LADY","charOffset":10750},{"theme":"PROTEST","charOffset":11302},{"theme":"MOVEMENT_GENERAL","charOffset":11302},{"theme":"TAX_FNCACT_ACTIVIST","charOffset":11302},{"theme":"TAX_FNCACT_DIRECTORS","charOffset":9937},{"theme":"TAX_FNCACT_DIRECTORS","charOffset":10966},{"theme":"TAX_FNCACT_DIRECTORS","charOffset":11031},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":2579},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3334},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3968},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":4506},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":5996},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":6423},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":6839},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":7028},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":7478},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":7549},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":8176},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":8746},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":9257},{"theme":"TAX_FNCACT_WOMEN","charOffset":10526},{"theme":"KILL","charOffset":11364},{"theme":"WB_1675_GRADUATION","charOffset":1155},{"theme":"WB_855_LABOR_MARKETS","charOffset":1155},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":1155},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":1155},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":289},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":876},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1053},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1258},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1356},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1537},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1915},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":1969},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":2163},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":2371},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":6618},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":7077},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":7757},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":9842},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":9876},{"theme":"AFFECT","charOffset":2286},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":2714},{"theme":"TAX_FNCACT_MAN","charOffset":950},{"theme":"TAX_FNCACT_MAN","charOffset":9054},{"theme":"TAX_WORLDLANGUAGES_MANDARIN","charOffset":5692}][{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}][{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":470}]["olivia wilde","kathryn bigelow","kaitlyn dever","katie silberman","lynn shelton","bffs amy"][{"person":"Olivia Wilde","charOffset":12},{"person":"Kathryn Bigelow","charOffset":11581},{"person":"Kathryn Bigelow","charOffset":11671},{"person":"Kaitlyn Dever","charOffset":195},{"person":"Kaitlyn Dever","charOffset":992},{"person":"Katie Silberman","charOffset":3036},{"person":"Katie Silberman","charOffset":3321},{"person":"Katie Silberman","charOffset":5441},{"person":"Lynn Shelton","charOffset":11383},{"person":"Bffs Amy","charOffset":298}]["a v club","breakfast club"][{"organisation":"Breakfast Club","charOffset":7983}]{"tone":2.910959,"positiveScore":3.8955479,"negativeScore":0.98458904,"polarity":4.880137,"activityReferenceDensity":22.55993,"selfGroupReferenceDensity":3.296233,"wordCount":1995}[{"dateResolution":4,"month":5,"day":24,"year":0,"charOffset":12117}][{"gcamCode":"wc","gcamValue":1995},{"gcamCode":"c1.1","gcamValue":5},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c1.4","gcamValue":2},{"gcamCode":"c12.1","gcamValue":207},{"gcamCode":"c12.10","gcamValue":254},{"gcamCode":"c12.12","gcamValue":40},{"gcamCode":"c12.13","gcamValue":142},{"gcamCode":"c12.14","gcamValue":76},{"gcamCode":"c12.3","gcamValue":37},{"gcamCode":"c12.4","gcamValue":65},{"gcamCode":"c12.5","gcamValue":118},{"gcamCode":"c12.7","gcamValue":71},{"gcamCode":"c12.8","gcamValue":185},{"gcamCode":"c12.9","gcamValue":167},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.14","gcamValue":4},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.4","gcamValue":2},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":192},{"gcamCode":"c14.10","gcamValue":101},{"gcamCode":"c14.11","gcamValue":280},{"gcamCode":"c14.2","gcamValue":130},{"gcamCode":"c14.3","gcamValue":185},{"gcamCode":"c14.4","gcamValue":47},{"gcamCode":"c14.5","gcamValue":268},{"gcamCode":"c14.6","gcamValue":30},{"gcamCode":"c14.7","gcamValue":36},{"gcamCode":"c14.8","gcamValue":5},{"gcamCode":"c14.9","gcamValue":47},{"gcamCode":"c15.10","gcamValue":23},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.103","gcamValue":11},{"gcamCode":"c15.105","gcamValue":7},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.110","gcamValue":20},{"gcamCode":"c15.112","gcamValue":8},{"gcamCode":"c15.115","gcamValue":7},{"gcamCode":"c15.116","gcamValue":24},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":14},{"gcamCode":"c15.122","gcamValue":2},{"gcamCode":"c15.123","gcamValue":2},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.13","gcamValue":8},{"gcamCode":"c15.131","gcamValue":5},{"gcamCode":"c15.132","gcamValue":6},{"gcamCode":"c15.137","gcamValue":6},{"gcamCode":"c15.139","gcamValue":5},{"gcamCode":"c15.147","gcamValue":7},{"gcamCode":"c15.15","gcamValue":9},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.152","gcamValue":5},{"gcamCode":"c15.154","gcamValue":3},{"gcamCode":"c15.159","gcamValue":5},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":2},{"gcamCode":"c15.167","gcamValue":10},{"gcamCode":"c15.168","gcamValue":10},{"gcamCode":"c15.170","gcamValue":2},{"gcamCode":"c15.171","gcamValue":8},{"gcamCode":"c15.172","gcamValue":4},{"gcamCode":"c15.173","gcamValue":25},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":28},{"gcamCode":"c15.177","gcamValue":5},{"gcamCode":"c15.178","gcamValue":7},{"gcamCode":"c15.179","gcamValue":5},{"gcamCode":"c15.18","gcamValue":8},{"gcamCode":"c15.181","gcamValue":1},{"gcamCode":"c15.182","gcamValue":1},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.197","gcamValue":3},{"gcamCode":"c15.201","gcamValue":9},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.206","gcamValue":2},{"gcamCode":"c15.209","gcamValue":4},{"gcamCode":"c15.212","gcamValue":12},{"gcamCode":"c15.215","gcamValue":13},{"gcamCode":"c15.217","gcamValue":2},{"gcamCode":"c15.218","gcamValue":6},{"gcamCode":"c15.22","gcamValue":2},{"gcamCode":"c15.221","gcamValue":10},{"gcamCode":"c15.222","gcamValue":10},{"gcamCode":"c15.227","gcamValue":6},{"gcamCode":"c15.233","gcamValue":4},{"gcamCode":"c15.24","gcamValue":5},{"gcamCode":"c15.241","gcamValue":5},{"gcamCode":"c15.251","gcamValue":10},{"gcamCode":"c15.252","gcamValue":7},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.255","gcamValue":7},{"gcamCode":"c15.256","gcamValue":10},{"gcamCode":"c15.257","gcamValue":11},{"gcamCode":"c15.26","gcamValue":13},{"gcamCode":"c15.260","gcamValue":5},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.267","gcamValue":2},{"gcamCode":"c15.27","gcamValue":5},{"gcamCode":"c15.270","gcamValue":10},{"gcamCode":"c15.279","gcamValue":5},{"gcamCode":"c15.29","gcamValue":10},{"gcamCode":"c15.3","gcamValue":13},{"gcamCode":"c15.31","gcamValue":7},{"gcamCode":"c15.34","gcamValue":4},{"gcamCode":"c15.35","gcamValue":1},{"gcamCode":"c15.36","gcamValue":8},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":5},{"gcamCode":"c15.42","gcamValue":10},{"gcamCode":"c15.43","gcamValue":22},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.50","gcamValue":6},{"gcamCode":"c15.51","gcamValue":5},{"gcamCode":"c15.53","gcamValue":11},{"gcamCode":"c15.58","gcamValue":3},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":2},{"gcamCode":"c15.69","gcamValue":6},{"gcamCode":"c15.72","gcamValue":5},{"gcamCode":"c15.76","gcamValue":6},{"gcamCode":"c15.83","gcamValue":18},{"gcamCode":"c15.84","gcamValue":2},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.9","gcamValue":5},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.92","gcamValue":3},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c15.94","gcamValue":5},{"gcamCode":"c15.97","gcamValue":17},{"gcamCode":"c15.99","gcamValue":3},{"gcamCode":"c16.1","gcamValue":33},{"gcamCode":"c16.100","gcamValue":22},{"gcamCode":"c16.101","gcamValue":23},{"gcamCode":"c16.102","gcamValue":5},{"gcamCode":"c16.103","gcamValue":7},{"gcamCode":"c16.105","gcamValue":26},{"gcamCode":"c16.106","gcamValue":102},{"gcamCode":"c16.108","gcamValue":21},{"gcamCode":"c16.109","gcamValue":195},{"gcamCode":"c16.11","gcamValue":7},{"gcamCode":"c16.110","gcamValue":292},{"gcamCode":"c16.111","gcamValue":10},{"gcamCode":"c16.113","gcamValue":22},{"gcamCode":"c16.114","gcamValue":158},{"gcamCode":"c16.115","gcamValue":53},{"gcamCode":"c16.116","gcamValue":38},{"gcamCode":"c16.117","gcamValue":85},{"gcamCode":"c16.118","gcamValue":129},{"gcamCode":"c16.12","gcamValue":316},{"gcamCode":"c16.120","gcamValue":83},{"gcamCode":"c16.121","gcamValue":102},{"gcamCode":"c16.122","gcamValue":10},{"gcamCode":"c16.123","gcamValue":7},{"gcamCode":"c16.124","gcamValue":25},{"gcamCode":"c16.125","gcamValue":197},{"gcamCode":"c16.126","gcamValue":177},{"gcamCode":"c16.127","gcamValue":185},{"gcamCode":"c16.128","gcamValue":30},{"gcamCode":"c16.129","gcamValue":288},{"gcamCode":"c16.13","gcamValue":12},{"gcamCode":"c16.130","gcamValue":58},{"gcamCode":"c16.131","gcamValue":127},{"gcamCode":"c16.133","gcamValue":4},{"gcamCode":"c16.134","gcamValue":224},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":4},{"gcamCode":"c16.137","gcamValue":2},{"gcamCode":"c16.138","gcamValue":116},{"gcamCode":"c16.139","gcamValue":101},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":96},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":6},{"gcamCode":"c16.145","gcamValue":157},{"gcamCode":"c16.146","gcamValue":115},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":5},{"gcamCode":"c16.151","gcamValue":5},{"gcamCode":"c16.152","gcamValue":3},{"gcamCode":"c16.153","gcamValue":96},{"gcamCode":"c16.155","gcamValue":13},{"gcamCode":"c16.156","gcamValue":9},{"gcamCode":"c16.157","gcamValue":47},{"gcamCode":"c16.158","gcamValue":6},{"gcamCode":"c16.159","gcamValue":189},{"gcamCode":"c16.16","gcamValue":28},{"gcamCode":"c16.161","gcamValue":210},{"gcamCode":"c16.162","gcamValue":118},{"gcamCode":"c16.163","gcamValue":145},{"gcamCode":"c16.164","gcamValue":57},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.17","gcamValue":4},{"gcamCode":"c16.18","gcamValue":12},{"gcamCode":"c16.19","gcamValue":34},{"gcamCode":"c16.2","gcamValue":61},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":14},{"gcamCode":"c16.22","gcamValue":41},{"gcamCode":"c16.23","gcamValue":9},{"gcamCode":"c16.24","gcamValue":18},{"gcamCode":"c16.26","gcamValue":288},{"gcamCode":"c16.27","gcamValue":11},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":6},{"gcamCode":"c16.3","gcamValue":19},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":130},{"gcamCode":"c16.32","gcamValue":16},{"gcamCode":"c16.33","gcamValue":161},{"gcamCode":"c16.34","gcamValue":7},{"gcamCode":"c16.35","gcamValue":158},{"gcamCode":"c16.36","gcamValue":4},{"gcamCode":"c16.37","gcamValue":178},{"gcamCode":"c16.38","gcamValue":59},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":158},{"gcamCode":"c16.41","gcamValue":110},{"gcamCode":"c16.42","gcamValue":3},{"gcamCode":"c16.43","gcamValue":7},{"gcamCode":"c16.45","gcamValue":103},{"gcamCode":"c16.46","gcamValue":23},{"gcamCode":"c16.47","gcamValue":279},{"gcamCode":"c16.48","gcamValue":5},{"gcamCode":"c16.49","gcamValue":9},{"gcamCode":"c16.5","gcamValue":10},{"gcamCode":"c16.50","gcamValue":16},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":89},{"gcamCode":"c16.53","gcamValue":17},{"gcamCode":"c16.55","gcamValue":6},{"gcamCode":"c16.56","gcamValue":35},{"gcamCode":"c16.57","gcamValue":1068},{"gcamCode":"c16.58","gcamValue":171},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":238},{"gcamCode":"c16.60","gcamValue":13},{"gcamCode":"c16.61","gcamValue":7},{"gcamCode":"c16.62","gcamValue":101},{"gcamCode":"c16.63","gcamValue":35},{"gcamCode":"c16.64","gcamValue":25},{"gcamCode":"c16.65","gcamValue":49},{"gcamCode":"c16.66","gcamValue":31},{"gcamCode":"c16.68","gcamValue":110},{"gcamCode":"c16.69","gcamValue":98},{"gcamCode":"c16.7","gcamValue":32},{"gcamCode":"c16.70","gcamValue":86},{"gcamCode":"c16.71","gcamValue":26},{"gcamCode":"c16.72","gcamValue":10},{"gcamCode":"c16.73","gcamValue":15},{"gcamCode":"c16.74","gcamValue":27},{"gcamCode":"c16.75","gcamValue":101},{"gcamCode":"c16.76","gcamValue":15},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":48},{"gcamCode":"c16.79","gcamValue":5},{"gcamCode":"c16.8","gcamValue":9},{"gcamCode":"c16.80","gcamValue":11},{"gcamCode":"c16.81","gcamValue":12},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":4},{"gcamCode":"c16.84","gcamValue":111},{"gcamCode":"c16.85","gcamValue":6},{"gcamCode":"c16.86","gcamValue":12},{"gcamCode":"c16.87","gcamValue":102},{"gcamCode":"c16.88","gcamValue":377},{"gcamCode":"c16.89","gcamValue":118},{"gcamCode":"c16.90","gcamValue":65},{"gcamCode":"c16.91","gcamValue":94},{"gcamCode":"c16.92","gcamValue":132},{"gcamCode":"c16.93","gcamValue":28},{"gcamCode":"c16.94","gcamValue":180},{"gcamCode":"c16.95","gcamValue":105},{"gcamCode":"c16.96","gcamValue":51},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":258},{"gcamCode":"c16.99","gcamValue":14},{"gcamCode":"c17.1","gcamValue":530},{"gcamCode":"c17.10","gcamValue":310},{"gcamCode":"c17.11","gcamValue":326},{"gcamCode":"c17.12","gcamValue":83},{"gcamCode":"c17.13","gcamValue":57},{"gcamCode":"c17.14","gcamValue":14},{"gcamCode":"c17.15","gcamValue":125},{"gcamCode":"c17.16","gcamValue":76},{"gcamCode":"c17.17","gcamValue":6},{"gcamCode":"c17.18","gcamValue":30},{"gcamCode":"c17.19","gcamValue":108},{"gcamCode":"c17.2","gcamValue":5},{"gcamCode":"c17.20","gcamValue":13},{"gcamCode":"c17.21","gcamValue":8},{"gcamCode":"c17.22","gcamValue":41},{"gcamCode":"c17.23","gcamValue":12},{"gcamCode":"c17.24","gcamValue":212},{"gcamCode":"c17.25","gcamValue":23},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":264},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":92},{"gcamCode":"c17.3","gcamValue":5},{"gcamCode":"c17.30","gcamValue":46},{"gcamCode":"c17.31","gcamValue":139},{"gcamCode":"c17.32","gcamValue":126},{"gcamCode":"c17.33","gcamValue":88},{"gcamCode":"c17.34","gcamValue":53},{"gcamCode":"c17.35","gcamValue":52},{"gcamCode":"c17.36","gcamValue":102},{"gcamCode":"c17.37","gcamValue":98},{"gcamCode":"c17.38","gcamValue":63},{"gcamCode":"c17.39","gcamValue":89},{"gcamCode":"c17.4","gcamValue":550},{"gcamCode":"c17.40","gcamValue":58},{"gcamCode":"c17.41","gcamValue":67},{"gcamCode":"c17.42","gcamValue":131},{"gcamCode":"c17.43","gcamValue":104},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":382},{"gcamCode":"c17.6","gcamValue":22},{"gcamCode":"c17.7","gcamValue":321},{"gcamCode":"c17.8","gcamValue":252},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.113","gcamValue":1},{"gcamCode":"c18.147","gcamValue":38},{"gcamCode":"c18.180","gcamValue":19},{"gcamCode":"c18.193","gcamValue":14},{"gcamCode":"c18.298","gcamValue":35},{"gcamCode":"c18.3","gcamValue":1},{"gcamCode":"c18.342","gcamValue":40},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c2.1","gcamValue":61},{"gcamCode":"c2.10","gcamValue":36},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":53},{"gcamCode":"c2.102","gcamValue":56},{"gcamCode":"c2.103","gcamValue":14},{"gcamCode":"c2.104","gcamValue":374},{"gcamCode":"c2.106","gcamValue":3},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":15},{"gcamCode":"c2.109","gcamValue":8},{"gcamCode":"c2.11","gcamValue":42},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":10},{"gcamCode":"c2.112","gcamValue":19},{"gcamCode":"c2.113","gcamValue":19},{"gcamCode":"c2.114","gcamValue":92},{"gcamCode":"c2.115","gcamValue":22},{"gcamCode":"c2.116","gcamValue":76},{"gcamCode":"c2.117","gcamValue":3},{"gcamCode":"c2.118","gcamValue":3},{"gcamCode":"c2.119","gcamValue":502},{"gcamCode":"c2.12","gcamValue":144},{"gcamCode":"c2.120","gcamValue":8},{"gcamCode":"c2.121","gcamValue":181},{"gcamCode":"c2.122","gcamValue":86},{"gcamCode":"c2.123","gcamValue":6},{"gcamCode":"c2.124","gcamValue":26},{"gcamCode":"c2.125","gcamValue":214},{"gcamCode":"c2.126","gcamValue":135},{"gcamCode":"c2.127","gcamValue":268},{"gcamCode":"c2.128","gcamValue":90},{"gcamCode":"c2.129","gcamValue":14},{"gcamCode":"c2.13","gcamValue":2},{"gcamCode":"c2.130","gcamValue":28},{"gcamCode":"c2.131","gcamValue":28},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":18},{"gcamCode":"c2.136","gcamValue":9},{"gcamCode":"c2.139","gcamValue":19},{"gcamCode":"c2.14","gcamValue":189},{"gcamCode":"c2.140","gcamValue":5},{"gcamCode":"c2.141","gcamValue":21},{"gcamCode":"c2.142","gcamValue":9},{"gcamCode":"c2.143","gcamValue":76},{"gcamCode":"c2.144","gcamValue":73},{"gcamCode":"c2.145","gcamValue":31},{"gcamCode":"c2.146","gcamValue":42},{"gcamCode":"c2.147","gcamValue":310},{"gcamCode":"c2.148","gcamValue":423},{"gcamCode":"c2.149","gcamValue":9},{"gcamCode":"c2.15","gcamValue":108},{"gcamCode":"c2.150","gcamValue":13},{"gcamCode":"c2.151","gcamValue":18},{"gcamCode":"c2.152","gcamValue":9},{"gcamCode":"c2.153","gcamValue":130},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":252},{"gcamCode":"c2.156","gcamValue":75},{"gcamCode":"c2.157","gcamValue":237},{"gcamCode":"c2.158","gcamValue":217},{"gcamCode":"c2.159","gcamValue":38},{"gcamCode":"c2.160","gcamValue":191},{"gcamCode":"c2.162","gcamValue":40},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.166","gcamValue":44},{"gcamCode":"c2.167","gcamValue":8},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":29},{"gcamCode":"c2.17","gcamValue":29},{"gcamCode":"c2.170","gcamValue":38},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":58},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":14},{"gcamCode":"c2.177","gcamValue":134},{"gcamCode":"c2.178","gcamValue":12},{"gcamCode":"c2.179","gcamValue":142},{"gcamCode":"c2.18","gcamValue":96},{"gcamCode":"c2.180","gcamValue":102},{"gcamCode":"c2.181","gcamValue":111},{"gcamCode":"c2.183","gcamValue":115},{"gcamCode":"c2.185","gcamValue":526},{"gcamCode":"c2.186","gcamValue":61},{"gcamCode":"c2.187","gcamValue":201},{"gcamCode":"c2.188","gcamValue":81},{"gcamCode":"c2.189","gcamValue":81},{"gcamCode":"c2.19","gcamValue":15},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":60},{"gcamCode":"c2.192","gcamValue":75},{"gcamCode":"c2.193","gcamValue":152},{"gcamCode":"c2.194","gcamValue":5},{"gcamCode":"c2.195","gcamValue":218},{"gcamCode":"c2.196","gcamValue":19},{"gcamCode":"c2.197","gcamValue":23},{"gcamCode":"c2.198","gcamValue":219},{"gcamCode":"c2.199","gcamValue":35},{"gcamCode":"c2.2","gcamValue":20},{"gcamCode":"c2.20","gcamValue":4},{"gcamCode":"c2.200","gcamValue":23},{"gcamCode":"c2.201","gcamValue":11},{"gcamCode":"c2.202","gcamValue":3},{"gcamCode":"c2.203","gcamValue":175},{"gcamCode":"c2.204","gcamValue":208},{"gcamCode":"c2.205","gcamValue":37},{"gcamCode":"c2.206","gcamValue":42},{"gcamCode":"c2.207","gcamValue":23},{"gcamCode":"c2.209","gcamValue":87},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":263},{"gcamCode":"c2.211","gcamValue":17},{"gcamCode":"c2.212","gcamValue":2},{"gcamCode":"c2.213","gcamValue":37},{"gcamCode":"c2.214","gcamValue":111},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.218","gcamValue":12},{"gcamCode":"c2.220","gcamValue":31},{"gcamCode":"c2.221","gcamValue":32},{"gcamCode":"c2.223","gcamValue":32},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":37},{"gcamCode":"c2.226","gcamValue":96},{"gcamCode":"c2.227","gcamValue":48},{"gcamCode":"c2.228","gcamValue":36},{"gcamCode":"c2.23","gcamValue":27},{"gcamCode":"c2.25","gcamValue":164},{"gcamCode":"c2.26","gcamValue":187},{"gcamCode":"c2.27","gcamValue":187},{"gcamCode":"c2.28","gcamValue":61},{"gcamCode":"c2.3","gcamValue":8},{"gcamCode":"c2.30","gcamValue":72},{"gcamCode":"c2.31","gcamValue":126},{"gcamCode":"c2.32","gcamValue":36},{"gcamCode":"c2.33","gcamValue":25},{"gcamCode":"c2.34","gcamValue":129},{"gcamCode":"c2.35","gcamValue":200},{"gcamCode":"c2.36","gcamValue":158},{"gcamCode":"c2.37","gcamValue":168},{"gcamCode":"c2.38","gcamValue":19},{"gcamCode":"c2.39","gcamValue":348},{"gcamCode":"c2.4","gcamValue":17},{"gcamCode":"c2.40","gcamValue":28},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":100},{"gcamCode":"c2.45","gcamValue":41},{"gcamCode":"c2.46","gcamValue":274},{"gcamCode":"c2.47","gcamValue":34},{"gcamCode":"c2.48","gcamValue":46},{"gcamCode":"c2.49","gcamValue":4},{"gcamCode":"c2.5","gcamValue":4},{"gcamCode":"c2.50","gcamValue":67},{"gcamCode":"c2.52","gcamValue":212},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":227},{"gcamCode":"c2.55","gcamValue":36},{"gcamCode":"c2.56","gcamValue":22},{"gcamCode":"c2.57","gcamValue":58},{"gcamCode":"c2.58","gcamValue":33},{"gcamCode":"c2.59","gcamValue":11},{"gcamCode":"c2.6","gcamValue":37},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":18},{"gcamCode":"c2.62","gcamValue":131},{"gcamCode":"c2.64","gcamValue":43},{"gcamCode":"c2.65","gcamValue":18},{"gcamCode":"c2.66","gcamValue":12},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.69","gcamValue":32},{"gcamCode":"c2.7","gcamValue":2},{"gcamCode":"c2.70","gcamValue":11},{"gcamCode":"c2.71","gcamValue":17},{"gcamCode":"c2.72","gcamValue":3},{"gcamCode":"c2.73","gcamValue":44},{"gcamCode":"c2.74","gcamValue":4},{"gcamCode":"c2.75","gcamValue":402},{"gcamCode":"c2.76","gcamValue":1531},{"gcamCode":"c2.77","gcamValue":150},{"gcamCode":"c2.78","gcamValue":466},{"gcamCode":"c2.79","gcamValue":49},{"gcamCode":"c2.80","gcamValue":302},{"gcamCode":"c2.81","gcamValue":43},{"gcamCode":"c2.82","gcamValue":174},{"gcamCode":"c2.83","gcamValue":36},{"gcamCode":"c2.84","gcamValue":34},{"gcamCode":"c2.86","gcamValue":163},{"gcamCode":"c2.87","gcamValue":16},{"gcamCode":"c2.88","gcamValue":24},{"gcamCode":"c2.89","gcamValue":75},{"gcamCode":"c2.9","gcamValue":15},{"gcamCode":"c2.90","gcamValue":82},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":83},{"gcamCode":"c2.94","gcamValue":3},{"gcamCode":"c2.95","gcamValue":462},{"gcamCode":"c2.96","gcamValue":15},{"gcamCode":"c2.97","gcamValue":22},{"gcamCode":"c2.98","gcamValue":118},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.11","gcamValue":9},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":5},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c3.1","gcamValue":54},{"gcamCode":"c3.2","gcamValue":121},{"gcamCode":"c3.4","gcamValue":1},{"gcamCode":"c35.1","gcamValue":11},{"gcamCode":"c35.12","gcamValue":9},{"gcamCode":"c35.13","gcamValue":10},{"gcamCode":"c35.14","gcamValue":17},{"gcamCode":"c35.15","gcamValue":18},{"gcamCode":"c35.16","gcamValue":1},{"gcamCode":"c35.17","gcamValue":3},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.19","gcamValue":2},{"gcamCode":"c35.2","gcamValue":10},{"gcamCode":"c35.20","gcamValue":24},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.3","gcamValue":3},{"gcamCode":"c35.31","gcamValue":71},{"gcamCode":"c35.32","gcamValue":55},{"gcamCode":"c35.33","gcamValue":27},{"gcamCode":"c35.4","gcamValue":5},{"gcamCode":"c35.5","gcamValue":22},{"gcamCode":"c35.6","gcamValue":5},{"gcamCode":"c35.7","gcamValue":6},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":6},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.15","gcamValue":2},{"gcamCode":"c39.17","gcamValue":3},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":57},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.24","gcamValue":1},{"gcamCode":"c39.25","gcamValue":3},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.3","gcamValue":113},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":2},{"gcamCode":"c39.36","gcamValue":24},{"gcamCode":"c39.37","gcamValue":30},{"gcamCode":"c39.38","gcamValue":3},{"gcamCode":"c39.39","gcamValue":16},{"gcamCode":"c39.4","gcamValue":77},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":14},{"gcamCode":"c39.6","gcamValue":9},{"gcamCode":"c39.7","gcamValue":8},{"gcamCode":"c39.8","gcamValue":3},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":125},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":21},{"gcamCode":"c40.1","gcamValue":2},{"gcamCode":"c40.4","gcamValue":18},{"gcamCode":"c40.5","gcamValue":22},{"gcamCode":"c40.6","gcamValue":4},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c41.1","gcamValue":33},{"gcamCode":"c5.1","gcamValue":2},{"gcamCode":"c5.10","gcamValue":130},{"gcamCode":"c5.11","gcamValue":32},{"gcamCode":"c5.12","gcamValue":270},{"gcamCode":"c5.13","gcamValue":2},{"gcamCode":"c5.14","gcamValue":15},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":24},{"gcamCode":"c5.18","gcamValue":15},{"gcamCode":"c5.19","gcamValue":10},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":10},{"gcamCode":"c5.21","gcamValue":42},{"gcamCode":"c5.22","gcamValue":50},{"gcamCode":"c5.23","gcamValue":70},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":36},{"gcamCode":"c5.26","gcamValue":49},{"gcamCode":"c5.27","gcamValue":34},{"gcamCode":"c5.28","gcamValue":32},{"gcamCode":"c5.29","gcamValue":61},{"gcamCode":"c5.30","gcamValue":328},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":15},{"gcamCode":"c5.35","gcamValue":105},{"gcamCode":"c5.36","gcamValue":117},{"gcamCode":"c5.37","gcamValue":33},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":210},{"gcamCode":"c5.41","gcamValue":2},{"gcamCode":"c5.42","gcamValue":6},{"gcamCode":"c5.43","gcamValue":90},{"gcamCode":"c5.44","gcamValue":34},{"gcamCode":"c5.45","gcamValue":81},{"gcamCode":"c5.46","gcamValue":260},{"gcamCode":"c5.47","gcamValue":151},{"gcamCode":"c5.48","gcamValue":9},{"gcamCode":"c5.49","gcamValue":331},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":324},{"gcamCode":"c5.51","gcamValue":235},{"gcamCode":"c5.52","gcamValue":416},{"gcamCode":"c5.53","gcamValue":136},{"gcamCode":"c5.54","gcamValue":180},{"gcamCode":"c5.55","gcamValue":23},{"gcamCode":"c5.56","gcamValue":22},{"gcamCode":"c5.57","gcamValue":42},{"gcamCode":"c5.58","gcamValue":30},{"gcamCode":"c5.59","gcamValue":87},{"gcamCode":"c5.6","gcamValue":153},{"gcamCode":"c5.60","gcamValue":204},{"gcamCode":"c5.61","gcamValue":384},{"gcamCode":"c5.62","gcamValue":1223},{"gcamCode":"c5.7","gcamValue":38},{"gcamCode":"c5.8","gcamValue":61},{"gcamCode":"c5.9","gcamValue":107},{"gcamCode":"c6.1","gcamValue":3},{"gcamCode":"c6.2","gcamValue":34},{"gcamCode":"c6.3","gcamValue":10},{"gcamCode":"c6.4","gcamValue":20},{"gcamCode":"c6.5","gcamValue":46},{"gcamCode":"c6.6","gcamValue":11},{"gcamCode":"c7.1","gcamValue":61},{"gcamCode":"c7.2","gcamValue":131},{"gcamCode":"c8.1","gcamValue":26},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":3},{"gcamCode":"c8.17","gcamValue":19},{"gcamCode":"c8.2","gcamValue":9},{"gcamCode":"c8.20","gcamValue":5},{"gcamCode":"c8.21","gcamValue":3},{"gcamCode":"c8.22","gcamValue":5},{"gcamCode":"c8.23","gcamValue":30},{"gcamCode":"c8.24","gcamValue":3},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":4},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":8},{"gcamCode":"c8.3","gcamValue":2},{"gcamCode":"c8.30","gcamValue":4},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":38},{"gcamCode":"c8.37","gcamValue":81},{"gcamCode":"c8.38","gcamValue":26},{"gcamCode":"c8.39","gcamValue":2},{"gcamCode":"c8.4","gcamValue":100},{"gcamCode":"c8.40","gcamValue":9},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":28},{"gcamCode":"c8.43","gcamValue":74},{"gcamCode":"c8.5","gcamValue":9},{"gcamCode":"c8.6","gcamValue":8},{"gcamCode":"c8.9","gcamValue":2},{"gcamCode":"c9.1","gcamValue":105},{"gcamCode":"c9.10","gcamValue":24},{"gcamCode":"c9.1000","gcamValue":17},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":33},{"gcamCode":"c9.1021","gcamValue":18},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":13},{"gcamCode":"c9.1030","gcamValue":13},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":5},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":12},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":22},{"gcamCode":"c9.109","gcamValue":8},{"gcamCode":"c9.11","gcamValue":9},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":33},{"gcamCode":"c9.112","gcamValue":5},{"gcamCode":"c9.113","gcamValue":8},{"gcamCode":"c9.115","gcamValue":5},{"gcamCode":"c9.116","gcamValue":7},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":16},{"gcamCode":"c9.119","gcamValue":11},{"gcamCode":"c9.12","gcamValue":10},{"gcamCode":"c9.122","gcamValue":10},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":8},{"gcamCode":"c9.125","gcamValue":22},{"gcamCode":"c9.126","gcamValue":4},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":134},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.13","gcamValue":3},{"gcamCode":"c9.130","gcamValue":12},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.133","gcamValue":5},{"gcamCode":"c9.134","gcamValue":15},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":8},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":15},{"gcamCode":"c9.141","gcamValue":16},{"gcamCode":"c9.142","gcamValue":10},{"gcamCode":"c9.143","gcamValue":17},{"gcamCode":"c9.144","gcamValue":3},{"gcamCode":"c9.145","gcamValue":11},{"gcamCode":"c9.147","gcamValue":3},{"gcamCode":"c9.148","gcamValue":5},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":38},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":8},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":7},{"gcamCode":"c9.158","gcamValue":118},{"gcamCode":"c9.159","gcamValue":6},{"gcamCode":"c9.16","gcamValue":7},{"gcamCode":"c9.160","gcamValue":15},{"gcamCode":"c9.161","gcamValue":8},{"gcamCode":"c9.162","gcamValue":25},{"gcamCode":"c9.163","gcamValue":4},{"gcamCode":"c9.164","gcamValue":5},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":21},{"gcamCode":"c9.167","gcamValue":11},{"gcamCode":"c9.168","gcamValue":24},{"gcamCode":"c9.169","gcamValue":22},{"gcamCode":"c9.170","gcamValue":6},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":6},{"gcamCode":"c9.175","gcamValue":7},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":39},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.179","gcamValue":3},{"gcamCode":"c9.18","gcamValue":23},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.181","gcamValue":6},{"gcamCode":"c9.182","gcamValue":13},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":21},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":24},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":4},{"gcamCode":"c9.192","gcamValue":11},{"gcamCode":"c9.193","gcamValue":6},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":28},{"gcamCode":"c9.196","gcamValue":26},{"gcamCode":"c9.197","gcamValue":12},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.2","gcamValue":11},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":15},{"gcamCode":"c9.201","gcamValue":17},{"gcamCode":"c9.202","gcamValue":3},{"gcamCode":"c9.203","gcamValue":6},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":8},{"gcamCode":"c9.206","gcamValue":19},{"gcamCode":"c9.207","gcamValue":7},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":8},{"gcamCode":"c9.210","gcamValue":3},{"gcamCode":"c9.212","gcamValue":25},{"gcamCode":"c9.213","gcamValue":19},{"gcamCode":"c9.214","gcamValue":13},{"gcamCode":"c9.215","gcamValue":25},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":18},{"gcamCode":"c9.22","gcamValue":1},{"gcamCode":"c9.221","gcamValue":2},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.223","gcamValue":5},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.227","gcamValue":4},{"gcamCode":"c9.229","gcamValue":6},{"gcamCode":"c9.23","gcamValue":21},{"gcamCode":"c9.230","gcamValue":6},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.232","gcamValue":3},{"gcamCode":"c9.233","gcamValue":5},{"gcamCode":"c9.234","gcamValue":3},{"gcamCode":"c9.235","gcamValue":42},{"gcamCode":"c9.237","gcamValue":18},{"gcamCode":"c9.238","gcamValue":2},{"gcamCode":"c9.24","gcamValue":5},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.25","gcamValue":8},{"gcamCode":"c9.250","gcamValue":5},{"gcamCode":"c9.252","gcamValue":4},{"gcamCode":"c9.253","gcamValue":7},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":3},{"gcamCode":"c9.258","gcamValue":15},{"gcamCode":"c9.259","gcamValue":13},{"gcamCode":"c9.26","gcamValue":2},{"gcamCode":"c9.260","gcamValue":3},{"gcamCode":"c9.261","gcamValue":3},{"gcamCode":"c9.262","gcamValue":13},{"gcamCode":"c9.263","gcamValue":6},{"gcamCode":"c9.265","gcamValue":8},{"gcamCode":"c9.266","gcamValue":4},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.27","gcamValue":9},{"gcamCode":"c9.270","gcamValue":26},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":15},{"gcamCode":"c9.275","gcamValue":5},{"gcamCode":"c9.276","gcamValue":8},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.279","gcamValue":4},{"gcamCode":"c9.28","gcamValue":16},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":7},{"gcamCode":"c9.283","gcamValue":4},{"gcamCode":"c9.284","gcamValue":5},{"gcamCode":"c9.285","gcamValue":13},{"gcamCode":"c9.286","gcamValue":5},{"gcamCode":"c9.288","gcamValue":6},{"gcamCode":"c9.289","gcamValue":16},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":6},{"gcamCode":"c9.291","gcamValue":11},{"gcamCode":"c9.292","gcamValue":3},{"gcamCode":"c9.293","gcamValue":13},{"gcamCode":"c9.294","gcamValue":6},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":109},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":15},{"gcamCode":"c9.303","gcamValue":3},{"gcamCode":"c9.304","gcamValue":12},{"gcamCode":"c9.305","gcamValue":13},{"gcamCode":"c9.307","gcamValue":7},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.309","gcamValue":2},{"gcamCode":"c9.31","gcamValue":4},{"gcamCode":"c9.310","gcamValue":2},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":6},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":8},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.319","gcamValue":2},{"gcamCode":"c9.32","gcamValue":7},{"gcamCode":"c9.321","gcamValue":3},{"gcamCode":"c9.322","gcamValue":6},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.324","gcamValue":4},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":8},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":75},{"gcamCode":"c9.330","gcamValue":5},{"gcamCode":"c9.331","gcamValue":7},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":4},{"gcamCode":"c9.334","gcamValue":4},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":53},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.342","gcamValue":1},{"gcamCode":"c9.343","gcamValue":1},{"gcamCode":"c9.344","gcamValue":1},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.346","gcamValue":3},{"gcamCode":"c9.348","gcamValue":1},{"gcamCode":"c9.35","gcamValue":47},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":4},{"gcamCode":"c9.358","gcamValue":5},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":10},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.370","gcamValue":8},{"gcamCode":"c9.371","gcamValue":15},{"gcamCode":"c9.372","gcamValue":6},{"gcamCode":"c9.373","gcamValue":13},{"gcamCode":"c9.377","gcamValue":2},{"gcamCode":"c9.378","gcamValue":13},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":21},{"gcamCode":"c9.384","gcamValue":3},{"gcamCode":"c9.385","gcamValue":31},{"gcamCode":"c9.386","gcamValue":12},{"gcamCode":"c9.387","gcamValue":5},{"gcamCode":"c9.388","gcamValue":4},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":34},{"gcamCode":"c9.390","gcamValue":6},{"gcamCode":"c9.391","gcamValue":5},{"gcamCode":"c9.394","gcamValue":5},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":6},{"gcamCode":"c9.397","gcamValue":2},{"gcamCode":"c9.398","gcamValue":3},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.4","gcamValue":9},{"gcamCode":"c9.40","gcamValue":9},{"gcamCode":"c9.405","gcamValue":17},{"gcamCode":"c9.409","gcamValue":17},{"gcamCode":"c9.410","gcamValue":1},{"gcamCode":"c9.412","gcamValue":2},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":16},{"gcamCode":"c9.419","gcamValue":4},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.420","gcamValue":23},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":16},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":7},{"gcamCode":"c9.432","gcamValue":6},{"gcamCode":"c9.433","gcamValue":3},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":5},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":15},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.443","gcamValue":17},{"gcamCode":"c9.445","gcamValue":17},{"gcamCode":"c9.446","gcamValue":21},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.458","gcamValue":6},{"gcamCode":"c9.459","gcamValue":10},{"gcamCode":"c9.46","gcamValue":24},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":3},{"gcamCode":"c9.463","gcamValue":3},{"gcamCode":"c9.464","gcamValue":4},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":11},{"gcamCode":"c9.467","gcamValue":11},{"gcamCode":"c9.468","gcamValue":26},{"gcamCode":"c9.469","gcamValue":2},{"gcamCode":"c9.47","gcamValue":9},{"gcamCode":"c9.470","gcamValue":21},{"gcamCode":"c9.471","gcamValue":3},{"gcamCode":"c9.472","gcamValue":21},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":13},{"gcamCode":"c9.476","gcamValue":31},{"gcamCode":"c9.477","gcamValue":7},{"gcamCode":"c9.478","gcamValue":12},{"gcamCode":"c9.479","gcamValue":20},{"gcamCode":"c9.48","gcamValue":18},{"gcamCode":"c9.480","gcamValue":29},{"gcamCode":"c9.481","gcamValue":8},{"gcamCode":"c9.482","gcamValue":6},{"gcamCode":"c9.485","gcamValue":9},{"gcamCode":"c9.488","gcamValue":8},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":4},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":3},{"gcamCode":"c9.493","gcamValue":4},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":4},{"gcamCode":"c9.496","gcamValue":10},{"gcamCode":"c9.497","gcamValue":2},{"gcamCode":"c9.498","gcamValue":24},{"gcamCode":"c9.499","gcamValue":4},{"gcamCode":"c9.5","gcamValue":11},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":11},{"gcamCode":"c9.502","gcamValue":11},{"gcamCode":"c9.503","gcamValue":3},{"gcamCode":"c9.504","gcamValue":8},{"gcamCode":"c9.507","gcamValue":54},{"gcamCode":"c9.508","gcamValue":4},{"gcamCode":"c9.509","gcamValue":3},{"gcamCode":"c9.511","gcamValue":68},{"gcamCode":"c9.513","gcamValue":72},{"gcamCode":"c9.514","gcamValue":4},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":46},{"gcamCode":"c9.518","gcamValue":9},{"gcamCode":"c9.519","gcamValue":6},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":51},{"gcamCode":"c9.522","gcamValue":48},{"gcamCode":"c9.523","gcamValue":16},{"gcamCode":"c9.524","gcamValue":4},{"gcamCode":"c9.525","gcamValue":2},{"gcamCode":"c9.526","gcamValue":4},{"gcamCode":"c9.527","gcamValue":2},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":14},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.532","gcamValue":1},{"gcamCode":"c9.533","gcamValue":4},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.537","gcamValue":30},{"gcamCode":"c9.539","gcamValue":37},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":6},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":9},{"gcamCode":"c9.543","gcamValue":4},{"gcamCode":"c9.546","gcamValue":5},{"gcamCode":"c9.549","gcamValue":10},{"gcamCode":"c9.55","gcamValue":31},{"gcamCode":"c9.550","gcamValue":10},{"gcamCode":"c9.551","gcamValue":12},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":20},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":5},{"gcamCode":"c9.56","gcamValue":12},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":12},{"gcamCode":"c9.562","gcamValue":28},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.565","gcamValue":21},{"gcamCode":"c9.566","gcamValue":24},{"gcamCode":"c9.567","gcamValue":38},{"gcamCode":"c9.568","gcamValue":26},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":17},{"gcamCode":"c9.571","gcamValue":6},{"gcamCode":"c9.573","gcamValue":2},{"gcamCode":"c9.574","gcamValue":5},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":5},{"gcamCode":"c9.579","gcamValue":124},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":29},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.586","gcamValue":8},{"gcamCode":"c9.588","gcamValue":14},{"gcamCode":"c9.589","gcamValue":3},{"gcamCode":"c9.59","gcamValue":4},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.595","gcamValue":3},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":2},{"gcamCode":"c9.598","gcamValue":7},{"gcamCode":"c9.600","gcamValue":5},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":22},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.604","gcamValue":3},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.606","gcamValue":2},{"gcamCode":"c9.607","gcamValue":8},{"gcamCode":"c9.609","gcamValue":2},{"gcamCode":"c9.61","gcamValue":6},{"gcamCode":"c9.610","gcamValue":3},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":5},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":5},{"gcamCode":"c9.618","gcamValue":12},{"gcamCode":"c9.619","gcamValue":17},{"gcamCode":"c9.62","gcamValue":9},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":40},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":15},{"gcamCode":"c9.629","gcamValue":8},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":4},{"gcamCode":"c9.631","gcamValue":2},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.634","gcamValue":2},{"gcamCode":"c9.635","gcamValue":14},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.639","gcamValue":3},{"gcamCode":"c9.64","gcamValue":6},{"gcamCode":"c9.640","gcamValue":39},{"gcamCode":"c9.642","gcamValue":29},{"gcamCode":"c9.644","gcamValue":2},{"gcamCode":"c9.646","gcamValue":9},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":35},{"gcamCode":"c9.649","gcamValue":11},{"gcamCode":"c9.650","gcamValue":8},{"gcamCode":"c9.653","gcamValue":111},{"gcamCode":"c9.654","gcamValue":18},{"gcamCode":"c9.655","gcamValue":19},{"gcamCode":"c9.656","gcamValue":3},{"gcamCode":"c9.658","gcamValue":14},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":8},{"gcamCode":"c9.660","gcamValue":25},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":4},{"gcamCode":"c9.664","gcamValue":13},{"gcamCode":"c9.665","gcamValue":5},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":20},{"gcamCode":"c9.668","gcamValue":12},{"gcamCode":"c9.669","gcamValue":15},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":37},{"gcamCode":"c9.671","gcamValue":17},{"gcamCode":"c9.672","gcamValue":8},{"gcamCode":"c9.673","gcamValue":18},{"gcamCode":"c9.674","gcamValue":4},{"gcamCode":"c9.675","gcamValue":3},{"gcamCode":"c9.676","gcamValue":48},{"gcamCode":"c9.677","gcamValue":11},{"gcamCode":"c9.678","gcamValue":8},{"gcamCode":"c9.679","gcamValue":11},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":19},{"gcamCode":"c9.682","gcamValue":5},{"gcamCode":"c9.683","gcamValue":13},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":5},{"gcamCode":"c9.686","gcamValue":10},{"gcamCode":"c9.687","gcamValue":48},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.692","gcamValue":15},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.695","gcamValue":1},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.698","gcamValue":15},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":16},{"gcamCode":"c9.70","gcamValue":19},{"gcamCode":"c9.701","gcamValue":54},{"gcamCode":"c9.702","gcamValue":6},{"gcamCode":"c9.703","gcamValue":4},{"gcamCode":"c9.704","gcamValue":15},{"gcamCode":"c9.705","gcamValue":12},{"gcamCode":"c9.708","gcamValue":33},{"gcamCode":"c9.71","gcamValue":12},{"gcamCode":"c9.710","gcamValue":21},{"gcamCode":"c9.713","gcamValue":8},{"gcamCode":"c9.714","gcamValue":10},{"gcamCode":"c9.716","gcamValue":6},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.718","gcamValue":3},{"gcamCode":"c9.719","gcamValue":8},{"gcamCode":"c9.72","gcamValue":5},{"gcamCode":"c9.720","gcamValue":16},{"gcamCode":"c9.721","gcamValue":4},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":10},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":138},{"gcamCode":"c9.727","gcamValue":8},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":7},{"gcamCode":"c9.730","gcamValue":106},{"gcamCode":"c9.731","gcamValue":7},{"gcamCode":"c9.732","gcamValue":9},{"gcamCode":"c9.733","gcamValue":4},{"gcamCode":"c9.734","gcamValue":9},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":18},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.74","gcamValue":13},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":15},{"gcamCode":"c9.742","gcamValue":7},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":12},{"gcamCode":"c9.745","gcamValue":9},{"gcamCode":"c9.746","gcamValue":32},{"gcamCode":"c9.748","gcamValue":35},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":16},{"gcamCode":"c9.751","gcamValue":4},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":9},{"gcamCode":"c9.755","gcamValue":6},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":29},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":6},{"gcamCode":"c9.76","gcamValue":43},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":99},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.765","gcamValue":4},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":136},{"gcamCode":"c9.768","gcamValue":5},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.770","gcamValue":11},{"gcamCode":"c9.771","gcamValue":8},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":8},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.778","gcamValue":6},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":3},{"gcamCode":"c9.780","gcamValue":4},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.782","gcamValue":6},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":17},{"gcamCode":"c9.790","gcamValue":3},{"gcamCode":"c9.793","gcamValue":5},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.8","gcamValue":6},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":16},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":14},{"gcamCode":"c9.809","gcamValue":3},{"gcamCode":"c9.812","gcamValue":22},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":4},{"gcamCode":"c9.818","gcamValue":7},{"gcamCode":"c9.819","gcamValue":2},{"gcamCode":"c9.82","gcamValue":20},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":10},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.828","gcamValue":2},{"gcamCode":"c9.83","gcamValue":97},{"gcamCode":"c9.830","gcamValue":6},{"gcamCode":"c9.831","gcamValue":5},{"gcamCode":"c9.833","gcamValue":4},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.837","gcamValue":6},{"gcamCode":"c9.838","gcamValue":9},{"gcamCode":"c9.839","gcamValue":2},{"gcamCode":"c9.84","gcamValue":3},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.846","gcamValue":12},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":4},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":16},{"gcamCode":"c9.851","gcamValue":3},{"gcamCode":"c9.853","gcamValue":11},{"gcamCode":"c9.856","gcamValue":4},{"gcamCode":"c9.857","gcamValue":15},{"gcamCode":"c9.858","gcamValue":26},{"gcamCode":"c9.86","gcamValue":20},{"gcamCode":"c9.860","gcamValue":22},{"gcamCode":"c9.861","gcamValue":34},{"gcamCode":"c9.862","gcamValue":33},{"gcamCode":"c9.863","gcamValue":15},{"gcamCode":"c9.864","gcamValue":118},{"gcamCode":"c9.865","gcamValue":13},{"gcamCode":"c9.866","gcamValue":20},{"gcamCode":"c9.867","gcamValue":6},{"gcamCode":"c9.868","gcamValue":99},{"gcamCode":"c9.87","gcamValue":15},{"gcamCode":"c9.873","gcamValue":17},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":15},{"gcamCode":"c9.878","gcamValue":4},{"gcamCode":"c9.879","gcamValue":15},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.882","gcamValue":31},{"gcamCode":"c9.883","gcamValue":10},{"gcamCode":"c9.884","gcamValue":12},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.889","gcamValue":3},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":15},{"gcamCode":"c9.891","gcamValue":9},{"gcamCode":"c9.893","gcamValue":8},{"gcamCode":"c9.894","gcamValue":1},{"gcamCode":"c9.895","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":11},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":22},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":7},{"gcamCode":"c9.900","gcamValue":15},{"gcamCode":"c9.901","gcamValue":5},{"gcamCode":"c9.902","gcamValue":7},{"gcamCode":"c9.903","gcamValue":55},{"gcamCode":"c9.904","gcamValue":4},{"gcamCode":"c9.906","gcamValue":2},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":76},{"gcamCode":"c9.909","gcamValue":4},{"gcamCode":"c9.911","gcamValue":27},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.913","gcamValue":22},{"gcamCode":"c9.914","gcamValue":7},{"gcamCode":"c9.915","gcamValue":19},{"gcamCode":"c9.916","gcamValue":17},{"gcamCode":"c9.917","gcamValue":2},{"gcamCode":"c9.918","gcamValue":21},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":24},{"gcamCode":"c9.921","gcamValue":3},{"gcamCode":"c9.923","gcamValue":27},{"gcamCode":"c9.924","gcamValue":5},{"gcamCode":"c9.926","gcamValue":33},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.93","gcamValue":6},{"gcamCode":"c9.930","gcamValue":10},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":11},{"gcamCode":"c9.933","gcamValue":18},{"gcamCode":"c9.935","gcamValue":66},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.937","gcamValue":7},{"gcamCode":"c9.938","gcamValue":12},{"gcamCode":"c9.939","gcamValue":5},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.941","gcamValue":5},{"gcamCode":"c9.942","gcamValue":8},{"gcamCode":"c9.945","gcamValue":28},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.953","gcamValue":6},{"gcamCode":"c9.955","gcamValue":15},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":18},{"gcamCode":"c9.962","gcamValue":18},{"gcamCode":"c9.963","gcamValue":3},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.965","gcamValue":10},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.969","gcamValue":8},{"gcamCode":"c9.97","gcamValue":3},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":86},{"gcamCode":"c9.973","gcamValue":6},{"gcamCode":"c9.974","gcamValue":18},{"gcamCode":"c9.975","gcamValue":3},{"gcamCode":"c9.976","gcamValue":3},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":17},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":51},{"gcamCode":"c9.981","gcamValue":6},{"gcamCode":"c9.983","gcamValue":21},{"gcamCode":"c9.984","gcamValue":18},{"gcamCode":"c9.985","gcamValue":44},{"gcamCode":"c9.986","gcamValue":27},{"gcamCode":"c9.987","gcamValue":14},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":5},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.996","gcamValue":1},{"gcamCode":"c9.997","gcamValue":4},{"gcamCode":"c9.998","gcamValue":4},{"gcamCode":"v10.1","gcamValue":0.300254109801489},{"gcamCode":"v10.2","gcamValue":0.234159377659024},{"gcamCode":"v11.1","gcamValue":0.125861279443254},{"gcamCode":"v19.1","gcamValue":6.472688172043},{"gcamCode":"v19.2","gcamValue":5.32967741935484},{"gcamCode":"v19.3","gcamValue":5.59193548387097},{"gcamCode":"v19.4","gcamValue":6.29910394265233},{"gcamCode":"v19.5","gcamValue":5.21146953405018},{"gcamCode":"v19.6","gcamValue":5.56430107526881},{"gcamCode":"v19.7","gcamValue":6.64200716845878},{"gcamCode":"v19.8","gcamValue":5.46448028673835},{"gcamCode":"v19.9","gcamValue":5.61605734767025},{"gcamCode":"v20.1","gcamValue":0.58825},{"gcamCode":"v20.10","gcamValue":-0.4939},{"gcamCode":"v20.11","gcamValue":0.622217948717949},{"gcamCode":"v20.12","gcamValue":-0.495307692307692},{"gcamCode":"v20.13","gcamValue":0.451669902912622},{"gcamCode":"v20.14","gcamValue":-0.358448275862069},{"gcamCode":"v20.15","gcamValue":0.396119133574007},{"gcamCode":"v20.16","gcamValue":-0.305925925925926},{"gcamCode":"v20.2","gcamValue":-0.28675},{"gcamCode":"v20.3","gcamValue":0.606972972972973},{"gcamCode":"v20.4","gcamValue":-0.28675},{"gcamCode":"v20.5","gcamValue":0.672},{"gcamCode":"v20.6","gcamValue":-0.28675},{"gcamCode":"v20.7","gcamValue":0.673625},{"gcamCode":"v20.8","gcamValue":-0.28675},{"gcamCode":"v20.9","gcamValue":0.65627868852459},{"gcamCode":"v21.1","gcamValue":5.56461959496442},{"gcamCode":"v26.1","gcamValue":1.42}]https://i.kinja-img.com/gawker-media/image/upload/s--hHjEm-Vo--/c_fill,fl_progressive,g_center,h_900,q_80,w_1600/psibe8iijy5cyfmv76ue.jpg[""][""]["https://youtube.com/user/theavclub"][][{"name":"Olivia Wilde","charOffset":13},{"name":"Kaitlyn Dever","charOffset":212},{"name":"Beanie Feldstein","charOffset":233},{"name":"Magnificent Mile","charOffset":525},{"name":"Last Man Standing","charOffset":1003},{"name":"Katie Silberman","charOffset":3241},{"name":"Katie Silberman","charOffset":5818},{"name":"Liz Lemon","charOffset":7764},{"name":"Breakfast Club","charOffset":8529},{"name":"Fast Times At Ridgemont","charOffset":8582},{"name":"Lady Bird","charOffset":11302},{"name":"Lady Bird","charOffset":11476},{"name":"Kathryn Bigelow","charOffset":12466}][{"amount":13,"amountType":"when I started doing","charOffset":822},{"amount":2,"amountType":"girls who do a","charOffset":3972},{"amount":2,"amountType":"girls going on a","charOffset":4208},{"amount":2,"amountType":"such funny moments","charOffset":4791},{"amount":2,"amountType":"central characters","charOffset":5905},{"amount":30,"amountType":"Rock","charOffset":5950},{"amount":2,"amountType":"girls","charOffset":7455},{"amount":2,"amountType":"girls","charOffset":9137}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://tv.avclub.com/30-rock-reunion-1798205434</PAGE_LINKS><PAGE_AUTHORS>Katie Rife</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523110000</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://film.avclub.com/kaitlyn-dever-and-beanie-feldstein-on-becoming-real-lif-1834900941/amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBktar.comhttps://ktar.com/story/2584983/churroholic-opens-2nd-arizona-location-in-tempe-marketplace/[][]["MEDIA_SOCIAL","NATURAL_DISASTER","NATURAL_DISASTER_ICE"][{"theme":"MEDIA_SOCIAL","charOffset":9},{"theme":"NATURAL_DISASTER_ICE","charOffset":295}][{"geoType":"USCITY","geoName":"Phoenix, Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"","geoPoint":{"latitude":33.4484,"longitude":-112.074},"featureId":"44784"},{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"}][{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":594},{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":553},{"location":{"geoType":"USCITY","geoName":"Phoenix, Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"AZ013","geoPoint":{"latitude":33.4484,"longitude":-112.074},"featureId":"44784"},"charOffset":25}][""][][""][]{"tone":1.0416666,"positiveScore":1.0416666,"negativeScore":0,"polarity":1.0416666,"activityReferenceDensity":22.916666,"selfGroupReferenceDensity":0,"wordCount":85}[][{"gcamCode":"wc","gcamValue":85},{"gcamCode":"c12.1","gcamValue":1},{"gcamCode":"c12.10","gcamValue":3},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.7","gcamValue":1},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":3},{"gcamCode":"c14.10","gcamValue":4},{"gcamCode":"c14.11","gcamValue":9},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":4},{"gcamCode":"c14.4","gcamValue":2},{"gcamCode":"c14.5","gcamValue":6},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.104","gcamValue":1},{"gcamCode":"c16.106","gcamValue":2},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.110","gcamValue":12},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":4},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":1},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":8},{"gcamCode":"c16.12","gcamValue":5},{"gcamCode":"c16.120","gcamValue":5},{"gcamCode":"c16.121","gcamValue":6},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":5},{"gcamCode":"c16.126","gcamValue":4},{"gcamCode":"c16.127","gcamValue":4},{"gcamCode":"c16.129","gcamValue":8},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":2},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.134","gcamValue":9},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":2},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.145","gcamValue":10},{"gcamCode":"c16.146","gcamValue":5},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":4},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":9},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":15},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":5},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":3},{"gcamCode":"c16.26","gcamValue":13},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":11},{"gcamCode":"c16.33","gcamValue":9},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":3},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":10},{"gcamCode":"c16.38","gcamValue":5},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":8},{"gcamCode":"c16.41","gcamValue":2},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":11},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":8},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":42},{"gcamCode":"c16.58","gcamValue":8},{"gcamCode":"c16.6","gcamValue":11},{"gcamCode":"c16.62","gcamValue":2},{"gcamCode":"c16.63","gcamValue":6},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":12},{"gcamCode":"c16.69","gcamValue":2},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":9},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":6},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":6},{"gcamCode":"c16.88","gcamValue":12},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":4},{"gcamCode":"c16.91","gcamValue":3},{"gcamCode":"c16.92","gcamValue":5},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":11},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c17.1","gcamValue":24},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":12},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":7},{"gcamCode":"c17.16","gcamValue":5},{"gcamCode":"c17.18","gcamValue":4},{"gcamCode":"c17.19","gcamValue":3},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":2},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":8},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":8},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":4},{"gcamCode":"c17.32","gcamValue":2},{"gcamCode":"c17.33","gcamValue":7},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":9},{"gcamCode":"c17.37","gcamValue":5},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":7},{"gcamCode":"c17.4","gcamValue":17},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":4},{"gcamCode":"c17.42","gcamValue":6},{"gcamCode":"c17.43","gcamValue":2},{"gcamCode":"c17.5","gcamValue":21},{"gcamCode":"c17.7","gcamValue":21},{"gcamCode":"c17.8","gcamValue":10},{"gcamCode":"c17.9","gcamValue":2},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.156","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":12},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.114","gcamValue":4},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.119","gcamValue":29},{"gcamCode":"c2.12","gcamValue":2},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":8},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.126","gcamValue":2},{"gcamCode":"c2.127","gcamValue":9},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":5},{"gcamCode":"c2.130","gcamValue":4},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.14","gcamValue":13},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":3},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":10},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.15","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":2},{"gcamCode":"c2.156","gcamValue":3},{"gcamCode":"c2.157","gcamValue":2},{"gcamCode":"c2.158","gcamValue":3},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":3},{"gcamCode":"c2.178","gcamValue":4},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":2},{"gcamCode":"c2.180","gcamValue":2},{"gcamCode":"c2.181","gcamValue":2},{"gcamCode":"c2.183","gcamValue":2},{"gcamCode":"c2.185","gcamValue":17},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":3},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.193","gcamValue":12},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.197","gcamValue":4},{"gcamCode":"c2.198","gcamValue":13},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.203","gcamValue":2},{"gcamCode":"c2.204","gcamValue":7},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":3},{"gcamCode":"c2.210","gcamValue":5},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.214","gcamValue":1},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":1},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":2},{"gcamCode":"c2.25","gcamValue":4},{"gcamCode":"c2.26","gcamValue":2},{"gcamCode":"c2.27","gcamValue":2},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":3},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":7},{"gcamCode":"c2.35","gcamValue":1},{"gcamCode":"c2.39","gcamValue":10},{"gcamCode":"c2.44","gcamValue":2},{"gcamCode":"c2.45","gcamValue":6},{"gcamCode":"c2.46","gcamValue":6},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.52","gcamValue":2},{"gcamCode":"c2.54","gcamValue":4},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.58","gcamValue":2},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.62","gcamValue":2},{"gcamCode":"c2.63","gcamValue":2},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.72","gcamValue":5},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":6},{"gcamCode":"c2.76","gcamValue":51},{"gcamCode":"c2.77","gcamValue":5},{"gcamCode":"c2.78","gcamValue":10},{"gcamCode":"c2.79","gcamValue":2},{"gcamCode":"c2.80","gcamValue":8},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.82","gcamValue":3},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.89","gcamValue":2},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.93","gcamValue":1},{"gcamCode":"c2.95","gcamValue":17},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c3.1","gcamValue":1},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.31","gcamValue":3},{"gcamCode":"c35.33","gcamValue":2},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":4},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":4},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.23","gcamValue":2},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":14},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":22},{"gcamCode":"c5.13","gcamValue":7},{"gcamCode":"c5.17","gcamValue":7},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.30","gcamValue":4},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":1},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":10},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.49","gcamValue":5},{"gcamCode":"c5.50","gcamValue":6},{"gcamCode":"c5.51","gcamValue":4},{"gcamCode":"c5.52","gcamValue":7},{"gcamCode":"c5.53","gcamValue":6},{"gcamCode":"c5.54","gcamValue":2},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":7},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":3},{"gcamCode":"c5.62","gcamValue":28},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":6},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":2},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.20","gcamValue":8},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.4","gcamValue":2},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c9.1","gcamValue":2},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":4},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.246","gcamValue":3},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":2},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":6},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.34","gcamValue":3},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.362","gcamValue":1},{"gcamCode":"c9.366","gcamValue":1},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.411","gcamValue":2},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":3},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":5},{"gcamCode":"c9.657","gcamValue":1},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.726","gcamValue":2},{"gcamCode":"c9.730","gcamValue":2},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.762","gcamValue":2},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":5},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":2},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.856","gcamValue":3},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.864","gcamValue":2},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":2},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.222222222222222},{"gcamCode":"v10.2","gcamValue":0.277232142857143},{"gcamCode":"v11.1","gcamValue":0.14333},{"gcamCode":"v19.1","gcamValue":5.95181818181818},{"gcamCode":"v19.2","gcamValue":4.76},{"gcamCode":"v19.3","gcamValue":5.51545454545454},{"gcamCode":"v19.4","gcamValue":5.85363636363636},{"gcamCode":"v19.5","gcamValue":4.80818181818182},{"gcamCode":"v19.6","gcamValue":5.38727272727273},{"gcamCode":"v19.7","gcamValue":6.03909090909091},{"gcamCode":"v19.8","gcamValue":4.73090909090909},{"gcamCode":"v19.9","gcamValue":5.65636363636364},{"gcamCode":"v20.13","gcamValue":0.375},{"gcamCode":"v20.15","gcamValue":0.3},{"gcamCode":"v21.1","gcamValue":5.76246153846154},{"gcamCode":"v26.1","gcamValue":1.8}]https://ktar.com/wp-content/uploads/2019/05/churroholic-sandwiches.jpg[""]["https://instagram.com/p/BxfQgzvh0C7"][""][][{"name":"Facebook Photo","charOffset":18},{"name":"Tempe Marketplace","charOffset":193},{"name":"Rio Salado Parkway","charOffset":226},{"name":"Northern Avenue","charOffset":419},{"name":"Bell Road","charOffset":507}][]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>KTAR.com</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190522235500</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://ktar.com/story/2584983/churroholic-opens-2nd-arizona-location-in-tempe-marketplace/amp/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBgwdtoday.comhttp://gwdtoday.com/main.asp?SectionID=2&SubSectionID=131&TM=28816.37[][]["TAX_FNCACT","TAX_FNCACT_NURSES","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","TAX_FNCACT_NURSE","TAX_FNCACT_LEADERS","LEADER","WB_1606_SCHOLARSHIPS","WB_1608_CASH_TRANSFERS","WB_1466_SOCIAL_ASSISTANCE","WB_1603_FEE_WAIVERS","WB_697_SOCIAL_PROTECTION_AND_LABOR"][{"theme":"LEADER","charOffset":1676},{"theme":"LEADER","charOffset":6361},{"theme":"LEADER","charOffset":8328},{"theme":"LEADER","charOffset":8576},{"theme":"TAX_FNCACT_NURSES","charOffset":18},{"theme":"TAX_FNCACT_LEADERS","charOffset":182},{"theme":"TAX_FNCACT_LEADERS","charOffset":8640},{"theme":"TAX_FNCACT_LEADERS","charOffset":13332},{"theme":"TAX_FNCACT_NURSE","charOffset":174},{"theme":"EDUCATION","charOffset":149},{"theme":"EDUCATION","charOffset":292},{"theme":"EDUCATION","charOffset":1056},{"theme":"EDUCATION","charOffset":2410},{"theme":"EDUCATION","charOffset":2827},{"theme":"EDUCATION","charOffset":5902},{"theme":"EDUCATION","charOffset":6791},{"theme":"EDUCATION","charOffset":10227},{"theme":"EDUCATION","charOffset":13427},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":149},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":292},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":1056},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":2410},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":2827},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":5902},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":6791},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":10227},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":13427},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":3745},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":3867},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4004},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4262},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4296},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4438},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4591},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4787},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":4992},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5154},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5313},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5429},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":5692},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":6659},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":7848},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":8010},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":8173},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":8501},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":9636},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":9799},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":9873},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":12293},{"theme":"WB_1606_SCHOLARSHIPS","charOffset":12430},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":3745},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":3867},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4004},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4262},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4296},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4438},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4591},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4787},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":4992},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5154},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5313},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5429},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":5692},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":6659},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":7848},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":8010},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":8173},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":8501},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":9636},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":9799},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":9873},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":12293},{"theme":"WB_1608_CASH_TRANSFERS","charOffset":12430},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":3745},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":3867},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4004},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4262},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4296},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4438},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4591},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4787},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":4992},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5154},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5313},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5429},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":5692},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":6659},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":7848},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":8010},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":8173},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":8501},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":9636},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":9799},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":9873},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":12293},{"theme":"WB_1466_SOCIAL_ASSISTANCE","charOffset":12430},{"theme":"WB_1603_FEE_WAIVERS","charOffset":3745},{"theme":"WB_1603_FEE_WAIVERS","charOffset":3867},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4004},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4262},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4296},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4438},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4591},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4787},{"theme":"WB_1603_FEE_WAIVERS","charOffset":4992},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5154},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5313},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5429},{"theme":"WB_1603_FEE_WAIVERS","charOffset":5692},{"theme":"WB_1603_FEE_WAIVERS","charOffset":6659},{"theme":"WB_1603_FEE_WAIVERS","charOffset":7848},{"theme":"WB_1603_FEE_WAIVERS","charOffset":8010},{"theme":"WB_1603_FEE_WAIVERS","charOffset":8173},{"theme":"WB_1603_FEE_WAIVERS","charOffset":8501},{"theme":"WB_1603_FEE_WAIVERS","charOffset":9636},{"theme":"WB_1603_FEE_WAIVERS","charOffset":9799},{"theme":"WB_1603_FEE_WAIVERS","charOffset":9873},{"theme":"WB_1603_FEE_WAIVERS","charOffset":12293},{"theme":"WB_1603_FEE_WAIVERS","charOffset":12430},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3745},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3867},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4004},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4262},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4296},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4438},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4591},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4787},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4992},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5154},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5313},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5429},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":5692},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":6659},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":7848},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":8010},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":8173},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":8501},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":9636},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":9799},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":9873},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":12293},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":12430}][{"geoType":"USSTATE","geoName":"Montana, United States","countryCode":"US","adm1Code":"USMT","adm2Code":"","geoPoint":{"latitude":46.9048,"longitude":-110.326},"featureId":"MT"},{"geoType":"USCITY","geoName":"Erskine College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3304,"longitude":-82.3907},"featureId":"1247684"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"Ninety Six High School, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1648,"longitude":-82.0204},"featureId":"1234185"},{"geoType":"USCITY","geoName":"Ninety Six, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1751,"longitude":-82.024},"featureId":"1249874"},{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},{"geoType":"COUNTRY","geoName":"Jordan","countryCode":"JO","adm1Code":"JO","adm2Code":"","geoPoint":{"latitude":31,"longitude":36},"featureId":"JO"},{"geoType":"USCITY","geoName":"Greenville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.8526,"longitude":-82.394},"featureId":"1245842"},{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},{"geoType":"USCITY","geoName":"Honea Path, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.4465,"longitude":-82.3915},"featureId":"1246035"},{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},{"geoType":"USCITY","geoName":"Cheraw, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":34.6977,"longitude":-79.8834},"featureId":"1247267"},{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"}][{"location":{"geoType":"USSTATE","geoName":"Montana, United States","countryCode":"US","adm1Code":"USMT","adm2Code":"","geoPoint":{"latitude":46.9048,"longitude":-110.326},"featureId":"MT"},"charOffset":7247},{"location":{"geoType":"COUNTRY","geoName":"Jordan","countryCode":"JO","adm1Code":"JO","adm2Code":"","geoPoint":{"latitude":31,"longitude":36},"featureId":"JO"},"charOffset":7226},{"location":{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"},"charOffset":11310},{"location":{"geoType":"COUNTRY","geoName":"Turkey","countryCode":"TU","adm1Code":"TU","adm2Code":"","geoPoint":{"latitude":39.059013,"longitude":34.911545},"featureId":"TU"},"charOffset":11572},{"location":{"geoType":"USCITY","geoName":"Cheraw, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC025","geoPoint":{"latitude":34.6977,"longitude":-79.8834},"featureId":"1247267"},"charOffset":989},{"location":{"geoType":"USCITY","geoName":"Honea Path, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC007","geoPoint":{"latitude":34.4465,"longitude":-82.3915},"featureId":"1246035"},"charOffset":584},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":655},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":879},{"location":{"geoType":"USCITY","geoName":"Abbeville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.1782,"longitude":-82.379},"featureId":"1244839"},"charOffset":5824},{"location":{"geoType":"USCITY","geoName":"Greenville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.8526,"longitude":-82.394},"featureId":"1245842"},"charOffset":774},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":532},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":4063},{"location":{"geoType":"USCITY","geoName":"Ware Shoals, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.3985,"longitude":-82.2468},"featureId":"1251323"},"charOffset":4721},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":5622},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":5980},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":9128},{"location":{"geoType":"USSTATE","geoName":"South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"","geoPoint":{"latitude":33.8191,"longitude":-80.9066},"featureId":"SC"},"charOffset":9519},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":2533},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":3236},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":3820},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":4391},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":4877},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":5107},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":6269},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":7801},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":8547},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":9589},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":12246},{"location":{"geoType":"USCITY","geoName":"Piedmont Technical College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.2079,"longitude":-82.1204},"featureId":"1225411"},"charOffset":13241},{"location":{"geoType":"USCITY","geoName":"Erskine College, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC001","geoPoint":{"latitude":34.3304,"longitude":-82.3907},"featureId":"1247684"},"charOffset":10985},{"location":{"geoType":"USCITY","geoName":"Greenwood County, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC047","geoPoint":{"latitude":34.1668,"longitude":-82.1165},"featureId":"1248003"},"charOffset":9947},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3598},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6578},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6841},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13055},{"location":{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},"charOffset":455},{"location":{"geoType":"USCITY","geoName":"Simpsonville, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC045","geoPoint":{"latitude":34.7371,"longitude":-82.2543},"featureId":"1250898"},"charOffset":4177},{"location":{"geoType":"USCITY","geoName":"Glenwood, South Carolina, United States","countryCode":"US","adm1Code":"USSC","adm2Code":"SC077","geoPoint":{"latitude":34.8318,"longitude":-82.5812},"featureId":"1231322"},"charOffset":1895}]["van taylor","haley giles","ashlee riley","emily brantley","michelle freeman","aubrey holland","tlaysha creswell","savannah malphrus","amanda cleveland","sally baumeister","macie smiley","kurstin lacoste","daniel grubbs","elena worthing","richard gregory","marquel evans","catherine smithdeal","sarah foster","dorothy holmes","danielle greer","zoey montgomery","reagan davis","john g panagiotou","carl brock","zelea james","taylor freeman","linh nguyen","terry ledford","anna smith","ray brooks","bianca earl","yvonne hudgens","andrew brunson","andrea pozo","whitney moore","kasey wood","taylor simmons"][{"person":"Van Taylor","charOffset":10155},{"person":"Haley Giles","charOffset":805},{"person":"Ashlee Riley","charOffset":5329},{"person":"Emily Brantley","charOffset":640},{"person":"Michelle Freeman","charOffset":4639},{"person":"Aubrey Holland","charOffset":7354},{"person":"Tlaysha Creswell","charOffset":3299},{"person":"Savannah Malphrus","charOffset":944},{"person":"Amanda Cleveland","charOffset":568},{"person":"Sally Baumeister","charOffset":8148},{"person":"Macie Smiley","charOffset":716},{"person":"Kurstin Lacoste","charOffset":1557},{"person":"Daniel Grubbs","charOffset":12525},{"person":"Elena Worthing","charOffset":9834},{"person":"Elena Worthing","charOffset":10121},{"person":"Richard Gregory","charOffset":4096},{"person":"Marquel Evans","charOffset":4609},{"person":"Catherine Smithdeal","charOffset":12453},{"person":"Sarah Foster","charOffset":4048},{"person":"Dorothy Holmes","charOffset":8029},{"person":"Danielle Greer","charOffset":752},{"person":"Zoey Montgomery","charOffset":7372},{"person":"Reagan Davis","charOffset":2325},{"person":"Carl Brock","charOffset":5275},{"person":"Carl Brock","charOffset":5482},{"person":"Zelea James","charOffset":4706},{"person":"Taylor Freeman","charOffset":977},{"person":"Linh Nguyen","charOffset":8062},{"person":"Terry Ledford","charOffset":6215},{"person":"Anna Smith","charOffset":437},{"person":"Ray Brooks","charOffset":6372},{"person":"Ray Brooks","charOffset":8591},{"person":"Bianca Earl","charOffset":4020},{"person":"Yvonne Hudgens","charOffset":6162},{"person":"Andrew Brunson","charOffset":11214},{"person":"Andrea Pozo","charOffset":4161},{"person":"Whitney Moore","charOffset":9817},{"person":"Whitney Moore","charOffset":10191},{"person":"Kasey Wood","charOffset":515},{"person":"Taylor Simmons","charOffset":487}]["warner lambert company","anna clark early childhood center","masonic lodge","carolina national guard","honor roll at ninety six high school","genesis education center","commerce community scholarship","american legion","johnnie tolbert brewer middle school","margaret nettles early childhood center","greenwood school district","sterilite corporation endowed scholarship","anderson university","educational affairs","piedmont technical college spring commencement","six lion club","piedmont technical college","greenwood chamber","employee of the year program","lander human resources department","recognition program","john louden g frank russell technology center","lander university","young","lander university college of behavioral","mccormick high school middle college","campus police","amy fennell brewer middle school","meredith schwendemann emerald high school","sterilite corporation","american cancer society","chip whitt g frank russell technology center","human services","rhonda donaldson emerald high school","softball national championship","six high school","bettye smoot district office","biola university","erskine college"][{"organisation":"Warner Lambert Company","charOffset":4222},{"organisation":"Anna Clark Early Childhood Center","charOffset":12800},{"organisation":"Masonic Lodge","charOffset":6912},{"organisation":"Carolina National Guard","charOffset":5995},{"organisation":"Genesis Education Center","charOffset":1854},{"organisation":"Commerce Community Scholarship","charOffset":9799},{"organisation":"American Legion","charOffset":3605},{"organisation":"American Legion","charOffset":6585},{"organisation":"American Legion","charOffset":6848},{"organisation":"Johnnie Tolbert Brewer Middle School","charOffset":11960},{"organisation":"Margaret Nettles Early Childhood Center","charOffset":12033},{"organisation":"Greenwood School District","charOffset":1729},{"organisation":"Sterilite Corporation Endowed Scholarship","charOffset":4591},{"organisation":"Anderson University","charOffset":6791},{"organisation":"Educational Affairs","charOffset":8352},{"organisation":"Piedmont Technical College","charOffset":2533},{"organisation":"Piedmont Technical College","charOffset":3236},{"organisation":"Piedmont Technical College","charOffset":3820},{"organisation":"Piedmont Technical College","charOffset":4391},{"organisation":"Piedmont Technical College","charOffset":4877},{"organisation":"Piedmont Technical College","charOffset":5107},{"organisation":"Piedmont Technical College","charOffset":6269},{"organisation":"Piedmont Technical College","charOffset":7801},{"organisation":"Piedmont Technical College","charOffset":8547},{"organisation":"Piedmont Technical College","charOffset":9589},{"organisation":"Piedmont Technical College","charOffset":12246},{"organisation":"Piedmont Technical College","charOffset":13241},{"organisation":"Greenwood Chamber","charOffset":9765},{"organisation":"Employee Of The Year Program","charOffset":11640},{"organisation":"Lander Human Resources Department","charOffset":10728},{"organisation":"Recognition Program","charOffset":13392},{"organisation":"Lander University","charOffset":149},{"organisation":"Lander University","charOffset":292},{"organisation":"Lander University","charOffset":1056},{"organisation":"Lander University","charOffset":2827},{"organisation":"Lander University","charOffset":5902},{"organisation":"Lander University","charOffset":10227},{"organisation":"Lander University","charOffset":13427},{"organisation":"Young","charOffset":3034},{"organisation":"Young","charOffset":3172},{"organisation":"Young","charOffset":3392},{"organisation":"Young","charOffset":3680},{"organisation":"Young","charOffset":6534},{"organisation":"Young","charOffset":6603},{"organisation":"Young","charOffset":6736},{"organisation":"Young","charOffset":6810},{"organisation":"Lander University College Of Behavioral","charOffset":13449},{"organisation":"Mccormick High School Middle College","charOffset":3370},{"organisation":"Campus Police","charOffset":6190},{"organisation":"Amy Fennell Brewer Middle School","charOffset":12764},{"organisation":"Meredith Schwendemann Emerald High School","charOffset":12844},{"organisation":"Sterilite Corporation","charOffset":4571},{"organisation":"Sterilite Corporation","charOffset":4761},{"organisation":"American Cancer Society","charOffset":13070},{"organisation":"Human Services","charOffset":5734},{"organisation":"Rhonda Donaldson Emerald High School","charOffset":12072},{"organisation":"Softball National Championship","charOffset":2486},{"organisation":"Bettye Smoot District Office","charOffset":11991},{"organisation":"Biola University","charOffset":2410},{"organisation":"Erskine College","charOffset":10985}]{"tone":3.8015764,"positiveScore":4.4042654,"negativeScore":0.6026889,"polarity":5.006954,"activityReferenceDensity":19.239685,"selfGroupReferenceDensity":0.09272137,"wordCount":1876}[{"dateResolution":4,"month":5,"day":14,"year":0,"charOffset":284},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":978},{"dateResolution":1,"month":0,"day":0,"year":2001,"charOffset":1060},{"dateResolution":4,"month":5,"day":21,"year":0,"charOffset":1737},{"dateResolution":4,"month":5,"day":22,"year":0,"charOffset":1761},{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":2892},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":4203},{"dateResolution":1,"month":0,"day":0,"year":2010,"charOffset":4698},{"dateResolution":1,"month":0,"day":0,"year":2000,"charOffset":5333},{"dateResolution":1,"month":0,"day":0,"year":1992,"charOffset":8164},{"dateResolution":1,"month":0,"day":0,"year":1991,"charOffset":8759},{"dateResolution":1,"month":0,"day":0,"year":2013,"charOffset":10351},{"dateResolution":4,"month":5,"day":4,"year":0,"charOffset":11047}][{"gcamCode":"wc","gcamValue":1876},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.2","gcamValue":2},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":91},{"gcamCode":"c12.10","gcamValue":116},{"gcamCode":"c12.12","gcamValue":20},{"gcamCode":"c12.13","gcamValue":36},{"gcamCode":"c12.14","gcamValue":67},{"gcamCode":"c12.3","gcamValue":15},{"gcamCode":"c12.4","gcamValue":9},{"gcamCode":"c12.5","gcamValue":74},{"gcamCode":"c12.7","gcamValue":32},{"gcamCode":"c12.8","gcamValue":40},{"gcamCode":"c12.9","gcamValue":120},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.6","gcamValue":2},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":102},{"gcamCode":"c14.10","gcamValue":54},{"gcamCode":"c14.11","gcamValue":155},{"gcamCode":"c14.2","gcamValue":79},{"gcamCode":"c14.3","gcamValue":107},{"gcamCode":"c14.4","gcamValue":9},{"gcamCode":"c14.5","gcamValue":172},{"gcamCode":"c14.6","gcamValue":12},{"gcamCode":"c14.7","gcamValue":16},{"gcamCode":"c14.9","gcamValue":11},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.110","gcamValue":14},{"gcamCode":"c15.112","gcamValue":5},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.126","gcamValue":1},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.15","gcamValue":2},{"gcamCode":"c15.154","gcamValue":3},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.181","gcamValue":2},{"gcamCode":"c15.182","gcamValue":2},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":2},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":3},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.265","gcamValue":1},{"gcamCode":"c15.272","gcamValue":1},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.35","gcamValue":2},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.50","gcamValue":3},{"gcamCode":"c15.52","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.97","gcamValue":9},{"gcamCode":"c15.99","gcamValue":2},{"gcamCode":"c16.1","gcamValue":14},{"gcamCode":"c16.100","gcamValue":46},{"gcamCode":"c16.101","gcamValue":20},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":6},{"gcamCode":"c16.105","gcamValue":20},{"gcamCode":"c16.106","gcamValue":62},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":172},{"gcamCode":"c16.11","gcamValue":19},{"gcamCode":"c16.110","gcamValue":263},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":9},{"gcamCode":"c16.114","gcamValue":127},{"gcamCode":"c16.115","gcamValue":12},{"gcamCode":"c16.116","gcamValue":42},{"gcamCode":"c16.117","gcamValue":46},{"gcamCode":"c16.118","gcamValue":102},{"gcamCode":"c16.12","gcamValue":146},{"gcamCode":"c16.120","gcamValue":96},{"gcamCode":"c16.121","gcamValue":147},{"gcamCode":"c16.122","gcamValue":11},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":15},{"gcamCode":"c16.125","gcamValue":102},{"gcamCode":"c16.126","gcamValue":130},{"gcamCode":"c16.127","gcamValue":113},{"gcamCode":"c16.128","gcamValue":13},{"gcamCode":"c16.129","gcamValue":208},{"gcamCode":"c16.13","gcamValue":7},{"gcamCode":"c16.130","gcamValue":33},{"gcamCode":"c16.131","gcamValue":56},{"gcamCode":"c16.132","gcamValue":5},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":211},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.136","gcamValue":7},{"gcamCode":"c16.138","gcamValue":175},{"gcamCode":"c16.139","gcamValue":56},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":89},{"gcamCode":"c16.141","gcamValue":4},{"gcamCode":"c16.142","gcamValue":5},{"gcamCode":"c16.143","gcamValue":8},{"gcamCode":"c16.145","gcamValue":201},{"gcamCode":"c16.146","gcamValue":160},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.15","gcamValue":19},{"gcamCode":"c16.150","gcamValue":7},{"gcamCode":"c16.151","gcamValue":3},{"gcamCode":"c16.152","gcamValue":18},{"gcamCode":"c16.153","gcamValue":64},{"gcamCode":"c16.155","gcamValue":8},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":36},{"gcamCode":"c16.158","gcamValue":12},{"gcamCode":"c16.159","gcamValue":148},{"gcamCode":"c16.16","gcamValue":28},{"gcamCode":"c16.161","gcamValue":126},{"gcamCode":"c16.162","gcamValue":144},{"gcamCode":"c16.163","gcamValue":142},{"gcamCode":"c16.164","gcamValue":106},{"gcamCode":"c16.165","gcamValue":12},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":12},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":43},{"gcamCode":"c16.2","gcamValue":166},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":53},{"gcamCode":"c16.23","gcamValue":28},{"gcamCode":"c16.24","gcamValue":15},{"gcamCode":"c16.26","gcamValue":205},{"gcamCode":"c16.27","gcamValue":14},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":29},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":129},{"gcamCode":"c16.32","gcamValue":10},{"gcamCode":"c16.33","gcamValue":133},{"gcamCode":"c16.34","gcamValue":5},{"gcamCode":"c16.35","gcamValue":77},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":168},{"gcamCode":"c16.38","gcamValue":40},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":118},{"gcamCode":"c16.41","gcamValue":52},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":3},{"gcamCode":"c16.45","gcamValue":66},{"gcamCode":"c16.46","gcamValue":11},{"gcamCode":"c16.47","gcamValue":273},{"gcamCode":"c16.48","gcamValue":13},{"gcamCode":"c16.49","gcamValue":9},{"gcamCode":"c16.5","gcamValue":10},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":28},{"gcamCode":"c16.52","gcamValue":127},{"gcamCode":"c16.53","gcamValue":18},{"gcamCode":"c16.54","gcamValue":5},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":41},{"gcamCode":"c16.57","gcamValue":956},{"gcamCode":"c16.58","gcamValue":100},{"gcamCode":"c16.6","gcamValue":207},{"gcamCode":"c16.60","gcamValue":22},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":61},{"gcamCode":"c16.63","gcamValue":27},{"gcamCode":"c16.64","gcamValue":27},{"gcamCode":"c16.65","gcamValue":37},{"gcamCode":"c16.66","gcamValue":35},{"gcamCode":"c16.68","gcamValue":99},{"gcamCode":"c16.69","gcamValue":53},{"gcamCode":"c16.7","gcamValue":34},{"gcamCode":"c16.70","gcamValue":125},{"gcamCode":"c16.71","gcamValue":24},{"gcamCode":"c16.72","gcamValue":16},{"gcamCode":"c16.73","gcamValue":8},{"gcamCode":"c16.74","gcamValue":9},{"gcamCode":"c16.75","gcamValue":57},{"gcamCode":"c16.76","gcamValue":8},{"gcamCode":"c16.77","gcamValue":6},{"gcamCode":"c16.78","gcamValue":40},{"gcamCode":"c16.79","gcamValue":17},{"gcamCode":"c16.8","gcamValue":2},{"gcamCode":"c16.80","gcamValue":5},{"gcamCode":"c16.81","gcamValue":16},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":91},{"gcamCode":"c16.85","gcamValue":7},{"gcamCode":"c16.86","gcamValue":12},{"gcamCode":"c16.87","gcamValue":180},{"gcamCode":"c16.88","gcamValue":183},{"gcamCode":"c16.89","gcamValue":48},{"gcamCode":"c16.9","gcamValue":6},{"gcamCode":"c16.90","gcamValue":40},{"gcamCode":"c16.91","gcamValue":57},{"gcamCode":"c16.92","gcamValue":103},{"gcamCode":"c16.93","gcamValue":20},{"gcamCode":"c16.94","gcamValue":128},{"gcamCode":"c16.95","gcamValue":151},{"gcamCode":"c16.96","gcamValue":50},{"gcamCode":"c16.97","gcamValue":10},{"gcamCode":"c16.98","gcamValue":116},{"gcamCode":"c16.99","gcamValue":7},{"gcamCode":"c17.1","gcamValue":468},{"gcamCode":"c17.10","gcamValue":230},{"gcamCode":"c17.11","gcamValue":201},{"gcamCode":"c17.12","gcamValue":49},{"gcamCode":"c17.13","gcamValue":12},{"gcamCode":"c17.14","gcamValue":35},{"gcamCode":"c17.15","gcamValue":208},{"gcamCode":"c17.16","gcamValue":90},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":50},{"gcamCode":"c17.19","gcamValue":120},{"gcamCode":"c17.2","gcamValue":53},{"gcamCode":"c17.20","gcamValue":13},{"gcamCode":"c17.21","gcamValue":7},{"gcamCode":"c17.22","gcamValue":63},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":125},{"gcamCode":"c17.25","gcamValue":25},{"gcamCode":"c17.26","gcamValue":7},{"gcamCode":"c17.27","gcamValue":155},{"gcamCode":"c17.28","gcamValue":19},{"gcamCode":"c17.29","gcamValue":77},{"gcamCode":"c17.3","gcamValue":16},{"gcamCode":"c17.30","gcamValue":27},{"gcamCode":"c17.31","gcamValue":68},{"gcamCode":"c17.32","gcamValue":70},{"gcamCode":"c17.33","gcamValue":101},{"gcamCode":"c17.34","gcamValue":33},{"gcamCode":"c17.35","gcamValue":42},{"gcamCode":"c17.36","gcamValue":71},{"gcamCode":"c17.37","gcamValue":47},{"gcamCode":"c17.38","gcamValue":14},{"gcamCode":"c17.39","gcamValue":71},{"gcamCode":"c17.4","gcamValue":331},{"gcamCode":"c17.40","gcamValue":47},{"gcamCode":"c17.41","gcamValue":62},{"gcamCode":"c17.42","gcamValue":122},{"gcamCode":"c17.43","gcamValue":89},{"gcamCode":"c17.44","gcamValue":3},{"gcamCode":"c17.5","gcamValue":389},{"gcamCode":"c17.6","gcamValue":21},{"gcamCode":"c17.7","gcamValue":269},{"gcamCode":"c17.8","gcamValue":167},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":4},{"gcamCode":"c18.147","gcamValue":66},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.165","gcamValue":1},{"gcamCode":"c18.179","gcamValue":6},{"gcamCode":"c18.180","gcamValue":8},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.186","gcamValue":1},{"gcamCode":"c18.193","gcamValue":66},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.298","gcamValue":66},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":22},{"gcamCode":"c18.345","gcamValue":7},{"gcamCode":"c18.35","gcamValue":2},{"gcamCode":"c18.352","gcamValue":2},{"gcamCode":"c18.365","gcamValue":1},{"gcamCode":"c18.71","gcamValue":2},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c18.77","gcamValue":2},{"gcamCode":"c18.82","gcamValue":4},{"gcamCode":"c2.1","gcamValue":82},{"gcamCode":"c2.100","gcamValue":10},{"gcamCode":"c2.101","gcamValue":19},{"gcamCode":"c2.102","gcamValue":36},{"gcamCode":"c2.103","gcamValue":12},{"gcamCode":"c2.104","gcamValue":231},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":6},{"gcamCode":"c2.11","gcamValue":42},{"gcamCode":"c2.110","gcamValue":20},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":14},{"gcamCode":"c2.113","gcamValue":18},{"gcamCode":"c2.114","gcamValue":40},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":27},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":9},{"gcamCode":"c2.119","gcamValue":546},{"gcamCode":"c2.12","gcamValue":176},{"gcamCode":"c2.120","gcamValue":6},{"gcamCode":"c2.121","gcamValue":97},{"gcamCode":"c2.122","gcamValue":41},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":57},{"gcamCode":"c2.126","gcamValue":79},{"gcamCode":"c2.127","gcamValue":161},{"gcamCode":"c2.128","gcamValue":106},{"gcamCode":"c2.129","gcamValue":104},{"gcamCode":"c2.13","gcamValue":2},{"gcamCode":"c2.130","gcamValue":25},{"gcamCode":"c2.131","gcamValue":16},{"gcamCode":"c2.132","gcamValue":23},{"gcamCode":"c2.133","gcamValue":17},{"gcamCode":"c2.134","gcamValue":5},{"gcamCode":"c2.135","gcamValue":6},{"gcamCode":"c2.136","gcamValue":8},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":4},{"gcamCode":"c2.139","gcamValue":14},{"gcamCode":"c2.14","gcamValue":138},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":24},{"gcamCode":"c2.142","gcamValue":16},{"gcamCode":"c2.143","gcamValue":113},{"gcamCode":"c2.144","gcamValue":18},{"gcamCode":"c2.145","gcamValue":8},{"gcamCode":"c2.146","gcamValue":10},{"gcamCode":"c2.147","gcamValue":279},{"gcamCode":"c2.148","gcamValue":103},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":60},{"gcamCode":"c2.150","gcamValue":21},{"gcamCode":"c2.151","gcamValue":6},{"gcamCode":"c2.152","gcamValue":6},{"gcamCode":"c2.153","gcamValue":37},{"gcamCode":"c2.154","gcamValue":40},{"gcamCode":"c2.155","gcamValue":198},{"gcamCode":"c2.156","gcamValue":93},{"gcamCode":"c2.157","gcamValue":170},{"gcamCode":"c2.158","gcamValue":122},{"gcamCode":"c2.159","gcamValue":10},{"gcamCode":"c2.16","gcamValue":1},{"gcamCode":"c2.160","gcamValue":59},{"gcamCode":"c2.162","gcamValue":27},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.165","gcamValue":10},{"gcamCode":"c2.166","gcamValue":39},{"gcamCode":"c2.167","gcamValue":8},{"gcamCode":"c2.168","gcamValue":2},{"gcamCode":"c2.169","gcamValue":19},{"gcamCode":"c2.17","gcamValue":6},{"gcamCode":"c2.170","gcamValue":24},{"gcamCode":"c2.172","gcamValue":9},{"gcamCode":"c2.173","gcamValue":26},{"gcamCode":"c2.174","gcamValue":14},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":13},{"gcamCode":"c2.177","gcamValue":121},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":54},{"gcamCode":"c2.18","gcamValue":52},{"gcamCode":"c2.180","gcamValue":55},{"gcamCode":"c2.181","gcamValue":67},{"gcamCode":"c2.182","gcamValue":3},{"gcamCode":"c2.183","gcamValue":73},{"gcamCode":"c2.185","gcamValue":320},{"gcamCode":"c2.186","gcamValue":17},{"gcamCode":"c2.187","gcamValue":76},{"gcamCode":"c2.188","gcamValue":2},{"gcamCode":"c2.189","gcamValue":2},{"gcamCode":"c2.19","gcamValue":14},{"gcamCode":"c2.191","gcamValue":78},{"gcamCode":"c2.192","gcamValue":28},{"gcamCode":"c2.193","gcamValue":101},{"gcamCode":"c2.194","gcamValue":7},{"gcamCode":"c2.195","gcamValue":167},{"gcamCode":"c2.196","gcamValue":51},{"gcamCode":"c2.197","gcamValue":39},{"gcamCode":"c2.198","gcamValue":150},{"gcamCode":"c2.199","gcamValue":28},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.20","gcamValue":5},{"gcamCode":"c2.200","gcamValue":16},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":68},{"gcamCode":"c2.204","gcamValue":142},{"gcamCode":"c2.205","gcamValue":16},{"gcamCode":"c2.206","gcamValue":24},{"gcamCode":"c2.207","gcamValue":7},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":19},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":127},{"gcamCode":"c2.211","gcamValue":5},{"gcamCode":"c2.212","gcamValue":2},{"gcamCode":"c2.213","gcamValue":17},{"gcamCode":"c2.214","gcamValue":77},{"gcamCode":"c2.215","gcamValue":7},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.218","gcamValue":7},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":27},{"gcamCode":"c2.221","gcamValue":24},{"gcamCode":"c2.222","gcamValue":3},{"gcamCode":"c2.223","gcamValue":28},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":40},{"gcamCode":"c2.226","gcamValue":50},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.23","gcamValue":63},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":93},{"gcamCode":"c2.26","gcamValue":58},{"gcamCode":"c2.27","gcamValue":58},{"gcamCode":"c2.28","gcamValue":17},{"gcamCode":"c2.30","gcamValue":66},{"gcamCode":"c2.31","gcamValue":64},{"gcamCode":"c2.32","gcamValue":8},{"gcamCode":"c2.33","gcamValue":18},{"gcamCode":"c2.34","gcamValue":62},{"gcamCode":"c2.35","gcamValue":37},{"gcamCode":"c2.36","gcamValue":27},{"gcamCode":"c2.37","gcamValue":33},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":199},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":12},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.43","gcamValue":2},{"gcamCode":"c2.44","gcamValue":144},{"gcamCode":"c2.45","gcamValue":139},{"gcamCode":"c2.46","gcamValue":123},{"gcamCode":"c2.47","gcamValue":10},{"gcamCode":"c2.48","gcamValue":41},{"gcamCode":"c2.5","gcamValue":8},{"gcamCode":"c2.50","gcamValue":39},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":200},{"gcamCode":"c2.53","gcamValue":21},{"gcamCode":"c2.54","gcamValue":229},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":7},{"gcamCode":"c2.57","gcamValue":25},{"gcamCode":"c2.58","gcamValue":59},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":15},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":9},{"gcamCode":"c2.62","gcamValue":67},{"gcamCode":"c2.64","gcamValue":45},{"gcamCode":"c2.65","gcamValue":22},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":4},{"gcamCode":"c2.68","gcamValue":5},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":4},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.72","gcamValue":10},{"gcamCode":"c2.73","gcamValue":22},{"gcamCode":"c2.74","gcamValue":7},{"gcamCode":"c2.75","gcamValue":239},{"gcamCode":"c2.76","gcamValue":1143},{"gcamCode":"c2.77","gcamValue":177},{"gcamCode":"c2.78","gcamValue":211},{"gcamCode":"c2.79","gcamValue":17},{"gcamCode":"c2.80","gcamValue":200},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":41},{"gcamCode":"c2.83","gcamValue":20},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":40},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":30},{"gcamCode":"c2.89","gcamValue":48},{"gcamCode":"c2.9","gcamValue":16},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.91","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":29},{"gcamCode":"c2.95","gcamValue":193},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":17},{"gcamCode":"c2.98","gcamValue":64},{"gcamCode":"c2.99","gcamValue":13},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.11","gcamValue":4},{"gcamCode":"c25.4","gcamValue":1},{"gcamCode":"c25.5","gcamValue":50},{"gcamCode":"c25.7","gcamValue":10},{"gcamCode":"c3.1","gcamValue":23},{"gcamCode":"c3.2","gcamValue":178},{"gcamCode":"c35.1","gcamValue":57},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.11","gcamValue":2},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":23},{"gcamCode":"c35.15","gcamValue":37},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":6},{"gcamCode":"c35.20","gcamValue":43},{"gcamCode":"c35.22","gcamValue":3},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":40},{"gcamCode":"c35.26","gcamValue":5},{"gcamCode":"c35.27","gcamValue":3},{"gcamCode":"c35.3","gcamValue":3},{"gcamCode":"c35.31","gcamValue":126},{"gcamCode":"c35.32","gcamValue":63},{"gcamCode":"c35.33","gcamValue":95},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":26},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.7","gcamValue":22},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":8},{"gcamCode":"c39.12","gcamValue":4},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.17","gcamValue":10},{"gcamCode":"c39.18","gcamValue":13},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":33},{"gcamCode":"c39.20","gcamValue":3},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.23","gcamValue":2},{"gcamCode":"c39.24","gcamValue":1},{"gcamCode":"c39.25","gcamValue":11},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.28","gcamValue":7},{"gcamCode":"c39.3","gcamValue":87},{"gcamCode":"c39.30","gcamValue":2},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.36","gcamValue":19},{"gcamCode":"c39.37","gcamValue":75},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":32},{"gcamCode":"c39.4","gcamValue":75},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":10},{"gcamCode":"c39.5","gcamValue":39},{"gcamCode":"c39.7","gcamValue":3},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.15","gcamValue":3},{"gcamCode":"c4.16","gcamValue":3},{"gcamCode":"c4.2","gcamValue":2},{"gcamCode":"c4.22","gcamValue":2},{"gcamCode":"c4.23","gcamValue":52},{"gcamCode":"c4.28","gcamValue":2},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.5","gcamValue":1},{"gcamCode":"c4.6","gcamValue":4},{"gcamCode":"c4.8","gcamValue":51},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.4","gcamValue":9},{"gcamCode":"c40.5","gcamValue":7},{"gcamCode":"c40.7","gcamValue":4},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":41},{"gcamCode":"c5.10","gcamValue":113},{"gcamCode":"c5.11","gcamValue":40},{"gcamCode":"c5.12","gcamValue":256},{"gcamCode":"c5.13","gcamValue":12},{"gcamCode":"c5.15","gcamValue":14},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":27},{"gcamCode":"c5.18","gcamValue":6},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.20","gcamValue":22},{"gcamCode":"c5.21","gcamValue":32},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":20},{"gcamCode":"c5.24","gcamValue":16},{"gcamCode":"c5.25","gcamValue":9},{"gcamCode":"c5.26","gcamValue":14},{"gcamCode":"c5.27","gcamValue":11},{"gcamCode":"c5.28","gcamValue":27},{"gcamCode":"c5.29","gcamValue":18},{"gcamCode":"c5.3","gcamValue":16},{"gcamCode":"c5.30","gcamValue":115},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.34","gcamValue":5},{"gcamCode":"c5.35","gcamValue":73},{"gcamCode":"c5.36","gcamValue":79},{"gcamCode":"c5.37","gcamValue":26},{"gcamCode":"c5.38","gcamValue":3},{"gcamCode":"c5.39","gcamValue":2},{"gcamCode":"c5.4","gcamValue":29},{"gcamCode":"c5.40","gcamValue":122},{"gcamCode":"c5.42","gcamValue":6},{"gcamCode":"c5.43","gcamValue":34},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":19},{"gcamCode":"c5.46","gcamValue":277},{"gcamCode":"c5.47","gcamValue":22},{"gcamCode":"c5.48","gcamValue":5},{"gcamCode":"c5.49","gcamValue":115},{"gcamCode":"c5.5","gcamValue":10},{"gcamCode":"c5.50","gcamValue":137},{"gcamCode":"c5.51","gcamValue":78},{"gcamCode":"c5.52","gcamValue":148},{"gcamCode":"c5.53","gcamValue":128},{"gcamCode":"c5.54","gcamValue":54},{"gcamCode":"c5.55","gcamValue":24},{"gcamCode":"c5.56","gcamValue":8},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":69},{"gcamCode":"c5.60","gcamValue":35},{"gcamCode":"c5.61","gcamValue":89},{"gcamCode":"c5.62","gcamValue":629},{"gcamCode":"c5.7","gcamValue":88},{"gcamCode":"c5.8","gcamValue":243},{"gcamCode":"c5.9","gcamValue":95},{"gcamCode":"c6.1","gcamValue":8},{"gcamCode":"c6.2","gcamValue":17},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":10},{"gcamCode":"c6.5","gcamValue":54},{"gcamCode":"c6.6","gcamValue":2},{"gcamCode":"c7.1","gcamValue":32},{"gcamCode":"c7.2","gcamValue":110},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.10","gcamValue":3},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":3},{"gcamCode":"c8.13","gcamValue":4},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":5},{"gcamCode":"c8.17","gcamValue":18},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":4},{"gcamCode":"c8.20","gcamValue":13},{"gcamCode":"c8.22","gcamValue":2},{"gcamCode":"c8.23","gcamValue":45},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":3},{"gcamCode":"c8.30","gcamValue":3},{"gcamCode":"c8.32","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":29},{"gcamCode":"c8.37","gcamValue":45},{"gcamCode":"c8.38","gcamValue":71},{"gcamCode":"c8.39","gcamValue":17},{"gcamCode":"c8.4","gcamValue":54},{"gcamCode":"c8.40","gcamValue":12},{"gcamCode":"c8.41","gcamValue":7},{"gcamCode":"c8.42","gcamValue":46},{"gcamCode":"c8.43","gcamValue":47},{"gcamCode":"c8.5","gcamValue":7},{"gcamCode":"c8.6","gcamValue":4},{"gcamCode":"c9.1","gcamValue":57},{"gcamCode":"c9.10","gcamValue":10},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":13},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":6},{"gcamCode":"c9.1008","gcamValue":3},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":4},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":8},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1024","gcamValue":13},{"gcamCode":"c9.1025","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":5},{"gcamCode":"c9.1033","gcamValue":3},{"gcamCode":"c9.1034","gcamValue":4},{"gcamCode":"c9.1035","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1039","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":10},{"gcamCode":"c9.1042","gcamValue":1},{"gcamCode":"c9.107","gcamValue":10},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":6},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.111","gcamValue":25},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.113","gcamValue":18},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":5},{"gcamCode":"c9.118","gcamValue":7},{"gcamCode":"c9.119","gcamValue":8},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":7},{"gcamCode":"c9.123","gcamValue":5},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":6},{"gcamCode":"c9.126","gcamValue":3},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":71},{"gcamCode":"c9.129","gcamValue":11},{"gcamCode":"c9.130","gcamValue":19},{"gcamCode":"c9.131","gcamValue":5},{"gcamCode":"c9.133","gcamValue":10},{"gcamCode":"c9.134","gcamValue":11},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":7},{"gcamCode":"c9.138","gcamValue":6},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":11},{"gcamCode":"c9.142","gcamValue":3},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":19},{"gcamCode":"c9.148","gcamValue":9},{"gcamCode":"c9.149","gcamValue":5},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.154","gcamValue":4},{"gcamCode":"c9.157","gcamValue":15},{"gcamCode":"c9.158","gcamValue":14},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":19},{"gcamCode":"c9.161","gcamValue":6},{"gcamCode":"c9.162","gcamValue":28},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":4},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":12},{"gcamCode":"c9.167","gcamValue":8},{"gcamCode":"c9.168","gcamValue":11},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.173","gcamValue":4},{"gcamCode":"c9.174","gcamValue":4},{"gcamCode":"c9.175","gcamValue":5},{"gcamCode":"c9.177","gcamValue":15},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":5},{"gcamCode":"c9.180","gcamValue":4},{"gcamCode":"c9.182","gcamValue":19},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":29},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.188","gcamValue":17},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":13},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":4},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.195","gcamValue":12},{"gcamCode":"c9.196","gcamValue":4},{"gcamCode":"c9.197","gcamValue":8},{"gcamCode":"c9.198","gcamValue":15},{"gcamCode":"c9.2","gcamValue":5},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":21},{"gcamCode":"c9.201","gcamValue":8},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":12},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":14},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.213","gcamValue":3},{"gcamCode":"c9.214","gcamValue":5},{"gcamCode":"c9.215","gcamValue":16},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.218","gcamValue":3},{"gcamCode":"c9.219","gcamValue":14},{"gcamCode":"c9.220","gcamValue":17},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":30},{"gcamCode":"c9.227","gcamValue":4},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.230","gcamValue":4},{"gcamCode":"c9.231","gcamValue":6},{"gcamCode":"c9.232","gcamValue":9},{"gcamCode":"c9.233","gcamValue":8},{"gcamCode":"c9.235","gcamValue":14},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.244","gcamValue":3},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.248","gcamValue":3},{"gcamCode":"c9.249","gcamValue":4},{"gcamCode":"c9.25","gcamValue":5},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.252","gcamValue":4},{"gcamCode":"c9.253","gcamValue":3},{"gcamCode":"c9.256","gcamValue":2},{"gcamCode":"c9.258","gcamValue":3},{"gcamCode":"c9.259","gcamValue":2},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.260","gcamValue":5},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.270","gcamValue":4},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":9},{"gcamCode":"c9.276","gcamValue":9},{"gcamCode":"c9.277","gcamValue":4},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.28","gcamValue":4},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.281","gcamValue":7},{"gcamCode":"c9.282","gcamValue":5},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.284","gcamValue":9},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.287","gcamValue":4},{"gcamCode":"c9.288","gcamValue":11},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":7},{"gcamCode":"c9.291","gcamValue":10},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":52},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.300","gcamValue":2},{"gcamCode":"c9.302","gcamValue":8},{"gcamCode":"c9.303","gcamValue":5},{"gcamCode":"c9.304","gcamValue":5},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":3},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":13},{"gcamCode":"c9.31","gcamValue":3},{"gcamCode":"c9.312","gcamValue":4},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":2},{"gcamCode":"c9.316","gcamValue":4},{"gcamCode":"c9.317","gcamValue":2},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.319","gcamValue":5},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.322","gcamValue":4},{"gcamCode":"c9.323","gcamValue":1},{"gcamCode":"c9.324","gcamValue":3},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":30},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":4},{"gcamCode":"c9.333","gcamValue":5},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":12},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":9},{"gcamCode":"c9.35","gcamValue":26},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.354","gcamValue":3},{"gcamCode":"c9.358","gcamValue":7},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.37","gcamValue":4},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.375","gcamValue":6},{"gcamCode":"c9.378","gcamValue":20},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":27},{"gcamCode":"c9.384","gcamValue":11},{"gcamCode":"c9.385","gcamValue":4},{"gcamCode":"c9.386","gcamValue":4},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.388","gcamValue":2},{"gcamCode":"c9.389","gcamValue":8},{"gcamCode":"c9.39","gcamValue":22},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.405","gcamValue":11},{"gcamCode":"c9.409","gcamValue":3},{"gcamCode":"c9.41","gcamValue":1},{"gcamCode":"c9.412","gcamValue":2},{"gcamCode":"c9.416","gcamValue":9},{"gcamCode":"c9.417","gcamValue":1},{"gcamCode":"c9.42","gcamValue":5},{"gcamCode":"c9.420","gcamValue":11},{"gcamCode":"c9.422","gcamValue":3},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.427","gcamValue":9},{"gcamCode":"c9.428","gcamValue":6},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":15},{"gcamCode":"c9.432","gcamValue":5},{"gcamCode":"c9.434","gcamValue":2},{"gcamCode":"c9.435","gcamValue":4},{"gcamCode":"c9.437","gcamValue":4},{"gcamCode":"c9.44","gcamValue":9},{"gcamCode":"c9.440","gcamValue":5},{"gcamCode":"c9.446","gcamValue":11},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":3},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.453","gcamValue":2},{"gcamCode":"c9.458","gcamValue":7},{"gcamCode":"c9.459","gcamValue":14},{"gcamCode":"c9.46","gcamValue":9},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":3},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":5},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.470","gcamValue":13},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":20},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":27},{"gcamCode":"c9.48","gcamValue":17},{"gcamCode":"c9.480","gcamValue":22},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.485","gcamValue":8},{"gcamCode":"c9.487","gcamValue":11},{"gcamCode":"c9.488","gcamValue":5},{"gcamCode":"c9.489","gcamValue":20},{"gcamCode":"c9.49","gcamValue":41},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.493","gcamValue":3},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":29},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":8},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.501","gcamValue":10},{"gcamCode":"c9.502","gcamValue":4},{"gcamCode":"c9.503","gcamValue":8},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":26},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":23},{"gcamCode":"c9.513","gcamValue":88},{"gcamCode":"c9.515","gcamValue":3},{"gcamCode":"c9.517","gcamValue":8},{"gcamCode":"c9.518","gcamValue":5},{"gcamCode":"c9.519","gcamValue":5},{"gcamCode":"c9.520","gcamValue":2},{"gcamCode":"c9.521","gcamValue":8},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":4},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.525","gcamValue":2},{"gcamCode":"c9.528","gcamValue":18},{"gcamCode":"c9.53","gcamValue":7},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":4},{"gcamCode":"c9.534","gcamValue":4},{"gcamCode":"c9.537","gcamValue":13},{"gcamCode":"c9.538","gcamValue":1},{"gcamCode":"c9.539","gcamValue":4},{"gcamCode":"c9.54","gcamValue":9},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.548","gcamValue":1},{"gcamCode":"c9.549","gcamValue":10},{"gcamCode":"c9.55","gcamValue":12},{"gcamCode":"c9.551","gcamValue":11},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":6},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":12},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":32},{"gcamCode":"c9.564","gcamValue":34},{"gcamCode":"c9.565","gcamValue":21},{"gcamCode":"c9.566","gcamValue":26},{"gcamCode":"c9.567","gcamValue":68},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":8},{"gcamCode":"c9.571","gcamValue":6},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":11},{"gcamCode":"c9.576","gcamValue":19},{"gcamCode":"c9.579","gcamValue":59},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":17},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.585","gcamValue":23},{"gcamCode":"c9.586","gcamValue":6},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":6},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.602","gcamValue":9},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":3},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":18},{"gcamCode":"c9.62","gcamValue":8},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":12},{"gcamCode":"c9.625","gcamValue":11},{"gcamCode":"c9.626","gcamValue":3},{"gcamCode":"c9.627","gcamValue":8},{"gcamCode":"c9.629","gcamValue":12},{"gcamCode":"c9.630","gcamValue":6},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":8},{"gcamCode":"c9.635","gcamValue":12},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":8},{"gcamCode":"c9.640","gcamValue":37},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":33},{"gcamCode":"c9.646","gcamValue":6},{"gcamCode":"c9.648","gcamValue":28},{"gcamCode":"c9.649","gcamValue":4},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.653","gcamValue":72},{"gcamCode":"c9.654","gcamValue":8},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.656","gcamValue":3},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":7},{"gcamCode":"c9.660","gcamValue":16},{"gcamCode":"c9.661","gcamValue":13},{"gcamCode":"c9.663","gcamValue":2},{"gcamCode":"c9.664","gcamValue":8},{"gcamCode":"c9.665","gcamValue":7},{"gcamCode":"c9.667","gcamValue":6},{"gcamCode":"c9.668","gcamValue":10},{"gcamCode":"c9.669","gcamValue":14},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":17},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.672","gcamValue":9},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":23},{"gcamCode":"c9.677","gcamValue":5},{"gcamCode":"c9.678","gcamValue":3},{"gcamCode":"c9.679","gcamValue":12},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":10},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":14},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.688","gcamValue":3},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":13},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":10},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.694","gcamValue":8},{"gcamCode":"c9.695","gcamValue":4},{"gcamCode":"c9.696","gcamValue":5},{"gcamCode":"c9.698","gcamValue":14},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":11},{"gcamCode":"c9.70","gcamValue":22},{"gcamCode":"c9.701","gcamValue":66},{"gcamCode":"c9.704","gcamValue":29},{"gcamCode":"c9.705","gcamValue":6},{"gcamCode":"c9.708","gcamValue":9},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":8},{"gcamCode":"c9.710","gcamValue":17},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":4},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":9},{"gcamCode":"c9.718","gcamValue":5},{"gcamCode":"c9.719","gcamValue":5},{"gcamCode":"c9.72","gcamValue":9},{"gcamCode":"c9.720","gcamValue":7},{"gcamCode":"c9.721","gcamValue":8},{"gcamCode":"c9.722","gcamValue":18},{"gcamCode":"c9.723","gcamValue":7},{"gcamCode":"c9.724","gcamValue":63},{"gcamCode":"c9.726","gcamValue":88},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.729","gcamValue":1},{"gcamCode":"c9.73","gcamValue":14},{"gcamCode":"c9.730","gcamValue":54},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":6},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":21},{"gcamCode":"c9.736","gcamValue":9},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.739","gcamValue":6},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":31},{"gcamCode":"c9.741","gcamValue":12},{"gcamCode":"c9.742","gcamValue":37},{"gcamCode":"c9.744","gcamValue":5},{"gcamCode":"c9.745","gcamValue":16},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":41},{"gcamCode":"c9.75","gcamValue":4},{"gcamCode":"c9.750","gcamValue":6},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":15},{"gcamCode":"c9.755","gcamValue":7},{"gcamCode":"c9.756","gcamValue":8},{"gcamCode":"c9.757","gcamValue":6},{"gcamCode":"c9.759","gcamValue":5},{"gcamCode":"c9.76","gcamValue":27},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.761","gcamValue":10},{"gcamCode":"c9.762","gcamValue":53},{"gcamCode":"c9.765","gcamValue":8},{"gcamCode":"c9.766","gcamValue":33},{"gcamCode":"c9.767","gcamValue":80},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.770","gcamValue":4},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.775","gcamValue":16},{"gcamCode":"c9.776","gcamValue":19},{"gcamCode":"c9.777","gcamValue":8},{"gcamCode":"c9.778","gcamValue":4},{"gcamCode":"c9.779","gcamValue":7},{"gcamCode":"c9.78","gcamValue":6},{"gcamCode":"c9.781","gcamValue":4},{"gcamCode":"c9.782","gcamValue":6},{"gcamCode":"c9.783","gcamValue":3},{"gcamCode":"c9.784","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.788","gcamValue":19},{"gcamCode":"c9.789","gcamValue":10},{"gcamCode":"c9.79","gcamValue":8},{"gcamCode":"c9.790","gcamValue":12},{"gcamCode":"c9.791","gcamValue":2},{"gcamCode":"c9.792","gcamValue":4},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.8","gcamValue":11},{"gcamCode":"c9.80","gcamValue":6},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":6},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":11},{"gcamCode":"c9.808","gcamValue":19},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":32},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":15},{"gcamCode":"c9.817","gcamValue":10},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":11},{"gcamCode":"c9.821","gcamValue":4},{"gcamCode":"c9.822","gcamValue":3},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":29},{"gcamCode":"c9.830","gcamValue":5},{"gcamCode":"c9.831","gcamValue":5},{"gcamCode":"c9.832","gcamValue":2},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":10},{"gcamCode":"c9.837","gcamValue":5},{"gcamCode":"c9.838","gcamValue":4},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":2},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":6},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":5},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.850","gcamValue":9},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.855","gcamValue":2},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":9},{"gcamCode":"c9.86","gcamValue":20},{"gcamCode":"c9.860","gcamValue":28},{"gcamCode":"c9.861","gcamValue":15},{"gcamCode":"c9.862","gcamValue":9},{"gcamCode":"c9.863","gcamValue":15},{"gcamCode":"c9.864","gcamValue":57},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":10},{"gcamCode":"c9.867","gcamValue":5},{"gcamCode":"c9.868","gcamValue":52},{"gcamCode":"c9.87","gcamValue":4},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":4},{"gcamCode":"c9.875","gcamValue":2},{"gcamCode":"c9.877","gcamValue":13},{"gcamCode":"c9.878","gcamValue":3},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.881","gcamValue":1},{"gcamCode":"c9.882","gcamValue":14},{"gcamCode":"c9.883","gcamValue":5},{"gcamCode":"c9.884","gcamValue":5},{"gcamCode":"c9.885","gcamValue":3},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.893","gcamValue":2},{"gcamCode":"c9.896","gcamValue":13},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.899","gcamValue":20},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":24},{"gcamCode":"c9.900","gcamValue":4},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":27},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":38},{"gcamCode":"c9.912","gcamValue":4},{"gcamCode":"c9.913","gcamValue":14},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.915","gcamValue":20},{"gcamCode":"c9.916","gcamValue":13},{"gcamCode":"c9.917","gcamValue":3},{"gcamCode":"c9.918","gcamValue":11},{"gcamCode":"c9.919","gcamValue":2},{"gcamCode":"c9.920","gcamValue":20},{"gcamCode":"c9.921","gcamValue":8},{"gcamCode":"c9.923","gcamValue":12},{"gcamCode":"c9.924","gcamValue":2},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":10},{"gcamCode":"c9.928","gcamValue":4},{"gcamCode":"c9.930","gcamValue":10},{"gcamCode":"c9.932","gcamValue":13},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":37},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":5},{"gcamCode":"c9.941","gcamValue":3},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.943","gcamValue":2},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.95","gcamValue":3},{"gcamCode":"c9.951","gcamValue":1},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.955","gcamValue":9},{"gcamCode":"c9.956","gcamValue":3},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":20},{"gcamCode":"c9.962","gcamValue":14},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":8},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":9},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.969","gcamValue":17},{"gcamCode":"c9.97","gcamValue":4},{"gcamCode":"c9.972","gcamValue":14},{"gcamCode":"c9.973","gcamValue":5},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":32},{"gcamCode":"c9.98","gcamValue":4},{"gcamCode":"c9.980","gcamValue":23},{"gcamCode":"c9.981","gcamValue":4},{"gcamCode":"c9.983","gcamValue":11},{"gcamCode":"c9.984","gcamValue":8},{"gcamCode":"c9.985","gcamValue":12},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":4},{"gcamCode":"c9.99","gcamValue":2},{"gcamCode":"c9.991","gcamValue":3},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.999","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.295676766976841},{"gcamCode":"v10.2","gcamValue":0.260309976402936},{"gcamCode":"v11.1","gcamValue":0.135223593355001},{"gcamCode":"v19.1","gcamValue":6.24091370558375},{"gcamCode":"v19.2","gcamValue":5.26365482233502},{"gcamCode":"v19.3","gcamValue":5.65370558375635},{"gcamCode":"v19.4","gcamValue":6.14842639593908},{"gcamCode":"v19.5","gcamValue":5.188730964467},{"gcamCode":"v19.6","gcamValue":5.72243654822335},{"gcamCode":"v19.7","gcamValue":6.33467005076142},{"gcamCode":"v19.8","gcamValue":5.3666497461929},{"gcamCode":"v19.9","gcamValue":5.57796954314721},{"gcamCode":"v20.1","gcamValue":0.584875},{"gcamCode":"v20.10","gcamValue":-0.6875},{"gcamCode":"v20.11","gcamValue":0.622808510638298},{"gcamCode":"v20.12","gcamValue":-0.59375},{"gcamCode":"v20.13","gcamValue":0.438872832369942},{"gcamCode":"v20.14","gcamValue":-0.410933333333333},{"gcamCode":"v20.15","gcamValue":0.385495762711865},{"gcamCode":"v20.16","gcamValue":-0.377052631578947},{"gcamCode":"v20.3","gcamValue":0.644888888888889},{"gcamCode":"v20.4","gcamValue":-0.375},{"gcamCode":"v20.5","gcamValue":0.771588235294118},{"gcamCode":"v20.6","gcamValue":-0.6875},{"gcamCode":"v20.7","gcamValue":0.770388888888889},{"gcamCode":"v20.8","gcamValue":-0.6875},{"gcamCode":"v20.9","gcamValue":0.692967741935484},{"gcamCode":"v21.1","gcamValue":5.68157825802223},{"gcamCode":"v26.1","gcamValue":1.68409090909091}][""][""][""][][{"name":"Self Regional Healthcare","charOffset":57},{"name":"Self Regional","charOffset":132},{"name":"Lander University","charOffset":154},{"name":"Certified Nurse Leaders","charOffset":187},{"name":"Elementary Education","charOffset":427},{"name":"Anna Smith","charOffset":482},{"name":"Taylor Simmons","charOffset":521},{"name":"Kasey Wood","charOffset":553},{"name":"Ware Shoals","charOffset":573},{"name":"Amanda Cleveland","charOffset":597},{"name":"Emily Brantley","charOffset":663},{"name":"Kristin Bridges","charOffset":700},{"name":"Macie Smiley","charOffset":732},{"name":"Danielle Greer","charOffset":775},{"name":"Haley Giles","charOffset":823},{"name":"Anne Marie New","charOffset":900},{"name":"Kensley Ward","charOffset":934},{"name":"Savannah Malphrus","charOffset":973},{"name":"Taylor Freeman","charOffset":1012},{"name":"Staff Excellence Awards","charOffset":1176},{"name":"Kurstin LaCoste","charOffset":1633},{"name":"Human Resources","charOffset":1654},{"name":"School District","charOffset":1831},{"name":"Superintendent Finalists","charOffset":1897},{"name":"Genesis Education Center","charOffset":1980},{"name":"Board Room","charOffset":2000},{"name":"Biola University","charOffset":2591},{"name":"Piedmont Technical College","charOffset":2726},{"name":"Finis Horne Arena","charOffset":2974},{"name":"Lander University","charOffset":3059},{"name":"Piedmont Technical College","charOffset":3516},{"name":"Spring Commencement","charOffset":3537},{"name":"T'Laysha Creswell","charOffset":3566},{"name":"McCormick High School","charOffset":3625},{"name":"Middle College","charOffset":3641},{"name":"Six High School","charOffset":3832},{"name":"American Legion Auxiliary Palmetto Girls State","charOffset":3911},{"name":"Technical College","charOffset":4119},{"name":"Scholarship Luncheon","charOffset":4164},{"name":"Lonza Endowed Scholarship","charOffset":4295},{"name":"Bianca Earl","charOffset":4311},{"name":"Sarah Foster","charOffset":4342},{"name":"Ware Shoals","charOffset":4357},{"name":"Richard Gregory","charOffset":4378},{"name":"Rock Hill","charOffset":4391},{"name":"Andrea Pozo","charOffset":4454},{"name":"Warner Lambert Company","charOffset":4499},{"name":"Technical College","charOffset":4685},{"name":"Scholarship Luncheon","charOffset":4730},{"name":"Sterilite Corporation Endowed Scholarship","charOffset":4877},{"name":"Marquel Evans","charOffset":4895},{"name":"Michelle Freeman","charOffset":4928},{"name":"Hailey Fuller","charOffset":4960},{"name":"Ninety Six","charOffset":4974},{"name":"Zelea James","charOffset":4995},{"name":"Piedmont Technical","charOffset":5148},{"name":"Technical College","charOffset":5390},{"name":"Scholarship Luncheon","charOffset":5435},{"name":"Carl Brock Vocational Rehabilitation Scholarship","charOffset":5588},{"name":"Ashlee Riley","charOffset":5604},{"name":"Carl Brock","charOffset":5763},{"name":"South Carolina Manufacturing","charOffset":5916},{"name":"Human Services","charOffset":6018},{"name":"South Carolina National Guard","charOffset":6286},{"name":"Veterans Day","charOffset":6387},{"name":"Yvonne Hudgens","charOffset":6465},{"name":"Campus Police","charOffset":6495},{"name":"Security Terry Ledford","charOffset":6522},{"name":"Piedmont Technical College","charOffset":6576},{"name":"Ray Brooks","charOffset":6675},{"name":"American Legion Boys","charOffset":6912},{"name":"American Legion Post","charOffset":7212},{"name":"Ninety Six Lion","charOffset":7241},{"name":"Masonic Lodge","charOffset":7269},{"name":"Orthodox Christian","charOffset":7376},{"name":"Erskine Theological Seminary","charOffset":7442},{"name":"Greenwood High Softball","charOffset":7721},{"name":"Base Percentage","charOffset":8040},{"name":"Technical College","charOffset":8291},{"name":"Scholarship Luncheon","charOffset":8336},{"name":"Charles Baumeister Memorial Endowed Scholarship","charOffset":8492},{"name":"Dorothy Holmes","charOffset":8511},{"name":"Linh Nguyen","charOffset":8552},{"name":"Donor Representative Sally","charOffset":8633},{"name":"Industrial Divisions","charOffset":8817},{"name":"Technical College","charOffset":9080},{"name":"Ray Brooks","charOffset":9113},{"name":"Presidential Medallion","charOffset":9200},{"name":"Girl Power","charOffset":9610},{"name":"State Museum","charOffset":9674},{"name":"State House","charOffset":10031},{"name":"South Carolina","charOffset":10115},{"name":"Technical College","charOffset":10207},{"name":"Scholarship Luncheon","charOffset":10252},{"name":"Greenwood Chamber","charOffset":10375},{"name":"Commerce Community Scholarship","charOffset":10409},{"name":"Whitney Moore","charOffset":10427},{"name":"Elena Worthing","charOffset":10446},{"name":"Greenwood County","charOffset":10561},{"name":"Elena Worthing","charOffset":10728},{"name":"Donor Representative Van","charOffset":10757},{"name":"London Goode Thomas","charOffset":10908},{"name":"Interim Director","charOffset":11134},{"name":"Human Resource","charOffset":11152},{"name":"Human Resources","charOffset":11386},{"name":"Theological Seminary","charOffset":11711},{"name":"Erskine Seminary","charOffset":11881},{"name":"Andrew Brunson","charOffset":11909},{"name":"Associate Reformed Presbyterian","charOffset":12103},{"name":"Support Employee","charOffset":12348},{"name":"Year Program","charOffset":12368},{"name":"Brewer Middle","charOffset":12691},{"name":"Early Childhood","charOffset":12766},{"name":"Emerald High","charOffset":12806},{"name":"Russell Technology","charOffset":12857},{"name":"Technical College","charOffset":13002},{"name":"Scholarship Luncheon","charOffset":13047},{"name":"Catherine Smithdeal","charOffset":13205},{"name":"Donor Representative Daniel","charOffset":13276},{"name":"Brewer Middle","charOffset":13546},{"name":"Early Childhood","charOffset":13583},{"name":"Emerald High","charOffset":13628},{"name":"Russell Technology","charOffset":13678},{"name":"Six High School","charOffset":13775},{"name":"American Cancer","charOffset":13848},{"name":"Ninety Six High School","charOffset":13890},{"name":"Technical College","charOffset":14019},{"name":"Annual Student Awards","charOffset":14152},{"name":"Social Sciences","charOffset":14268},{"name":"Honor Roll","charOffset":14587},{"name":"Ninety Six High","charOffset":14606}][{"amount":10,"amountType":"graduate nurses employed by","charOffset":3},{"amount":200,"amountType":"Lander University employees were","charOffset":800},{"amount":50,"amountType":"will host public forums","charOffset":1416},{"amount":400,"amountType":"Glenwood St","charOffset":1555},{"amount":7,"amountType":"supporting counties were honored","charOffset":2186},{"amount":500,"amountType":"people packed Finis Horne","charOffset":2276},{"amount":343,"amountType":"graduates receive degrees at","charOffset":2324},{"amount":90,"amountType":"Six High School students","charOffset":2967},{"amount":6,"amountType":"High School students selected","charOffset":2970},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":3287},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":3750},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":4339},{"amount":90,"amountType":"Six Lion Club","charOffset":5783},{"amount":6,"amountType":"Lion Club","charOffset":5786},{"amount":47,"amountType":"of Ninety Six","charOffset":5814},{"amount":2,"amountType":"seventh graders have recently","charOffset":6238},{"amount":455,"amountType":"On Base Percentage","charOffset":6393},{"amount":28,"amountType":"bases while only getting","charOffset":6521},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":6672},{"amount":8,"amountType":"college associates","charOffset":7285},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":8225},{"amount":2,"amountType":"comments","charOffset":9306},{"amount":50,"amountType":"many exceptional support employees","charOffset":9961},{"amount":20,"amountType":"support employees have been","charOffset":10037},{"amount":12,"amountType":"of PTC Foundation scholarships","charOffset":10504},{"amount":8,"amountType":"Nursing Scholarship is Catherine","charOffset":10564},{"amount":16,"amountType":"teachers #xA0","charOffset":10748},{"amount":90,"amountType":"Six High School is","charOffset":11041},{"amount":6,"amountType":"High School is a","charOffset":11044},{"amount":90,"amountType":"Six High School they","charOffset":11132},{"amount":6,"amountType":"High School they raised","charOffset":11135},{"amount":2,"amountType":"dollars ","charOffset":11157},{"amount":40,"amountType":"conscientious student leaders at","charOffset":11293},{"amount":90,"amountType":"Six High School","charOffset":11704},{"amount":6,"amountType":"High School","charOffset":11707}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://r20.rs6.net/tn.jsp?f=001NNdHQ6RXozJpIfCcSXDetNSdJ1xF9IeLmU5rOyUOYOe3bSDHs8WU3rXSRfYTZmIT6x45U0wFHrnc-L_Dq5pgJMtadLEgtDEOGW5AYUjlXhPpgOQPm5r4Wlof4N4mHZrJgpCqNgoiaFY=</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBwrex.comhttps://wrex.com/category/2019/05/23/census-bureau-estimates-show-chicago-population-declining/[][]["EDUCATION","TAX_FNCACT","TAX_FNCACT_PROFESSOR","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","GENERAL_HEALTH","MEDICAL","MEDIA_MSM"][{"theme":"GENERAL_HEALTH","charOffset":651},{"theme":"MEDICAL","charOffset":651},{"theme":"EDUCATION","charOffset":424},{"theme":"TAX_FNCACT_PROFESSOR","charOffset":424},{"theme":"MEDIA_MSM","charOffset":794},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":464}][{"geoType":"USCITY","geoName":"Pingree Grove, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":42.0686,"longitude":-88.4134},"featureId":"415712"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Northwestern University, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":42.0556,"longitude":-87.6745},"featureId":"414709"},{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"}][{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":756},{"location":{"geoType":"USCITY","geoName":"Pingree Grove, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL089","geoPoint":{"latitude":42.0686,"longitude":-88.4134},"featureId":"415712"},"charOffset":930},{"location":{"geoType":"USCITY","geoName":"Northwestern University, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":42.0556,"longitude":-87.6745},"featureId":"414709"},"charOffset":464},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":7},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":112},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":251},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":499},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":572},{"location":{"geoType":"USCITY","geoName":"Chicago, Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"IL031","geoPoint":{"latitude":41.85,"longitude":-87.6501},"featureId":"423587"},"charOffset":1001}]["christine percheski"][{"person":"Christine Percheski","charOffset":399}]["chicago tribune","u s census bureau","northwestern university"][{"organisation":"Northwestern University","charOffset":464}]{"tone":-1.3513514,"positiveScore":0.6756757,"negativeScore":2.0270271,"polarity":2.7027028,"activityReferenceDensity":12.837838,"selfGroupReferenceDensity":0,"wordCount":144}[][{"gcamCode":"wc","gcamValue":144},{"gcamCode":"c12.1","gcamValue":8},{"gcamCode":"c12.10","gcamValue":13},{"gcamCode":"c12.12","gcamValue":4},{"gcamCode":"c12.13","gcamValue":6},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":2},{"gcamCode":"c12.7","gcamValue":4},{"gcamCode":"c12.8","gcamValue":9},{"gcamCode":"c12.9","gcamValue":4},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":7},{"gcamCode":"c14.2","gcamValue":2},{"gcamCode":"c14.3","gcamValue":8},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":10},{"gcamCode":"c14.7","gcamValue":6},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":4},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.110","gcamValue":17},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.114","gcamValue":14},{"gcamCode":"c16.117","gcamValue":1},{"gcamCode":"c16.118","gcamValue":6},{"gcamCode":"c16.12","gcamValue":8},{"gcamCode":"c16.120","gcamValue":1},{"gcamCode":"c16.121","gcamValue":10},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.125","gcamValue":1},{"gcamCode":"c16.126","gcamValue":6},{"gcamCode":"c16.127","gcamValue":9},{"gcamCode":"c16.129","gcamValue":17},{"gcamCode":"c16.130","gcamValue":2},{"gcamCode":"c16.131","gcamValue":3},{"gcamCode":"c16.134","gcamValue":17},{"gcamCode":"c16.138","gcamValue":6},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":8},{"gcamCode":"c16.145","gcamValue":9},{"gcamCode":"c16.146","gcamValue":6},{"gcamCode":"c16.147","gcamValue":3},{"gcamCode":"c16.153","gcamValue":4},{"gcamCode":"c16.157","gcamValue":2},{"gcamCode":"c16.159","gcamValue":12},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":10},{"gcamCode":"c16.162","gcamValue":12},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.2","gcamValue":12},{"gcamCode":"c16.26","gcamValue":13},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":6},{"gcamCode":"c16.33","gcamValue":4},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.37","gcamValue":7},{"gcamCode":"c16.38","gcamValue":4},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.47","gcamValue":17},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.52","gcamValue":10},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.57","gcamValue":73},{"gcamCode":"c16.58","gcamValue":6},{"gcamCode":"c16.6","gcamValue":17},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":2},{"gcamCode":"c16.69","gcamValue":3},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":17},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.75","gcamValue":3},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":5},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":7},{"gcamCode":"c16.88","gcamValue":22},{"gcamCode":"c16.89","gcamValue":3},{"gcamCode":"c16.9","gcamValue":4},{"gcamCode":"c16.90","gcamValue":5},{"gcamCode":"c16.91","gcamValue":4},{"gcamCode":"c16.92","gcamValue":12},{"gcamCode":"c16.94","gcamValue":14},{"gcamCode":"c16.95","gcamValue":9},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.98","gcamValue":8},{"gcamCode":"c17.1","gcamValue":44},{"gcamCode":"c17.10","gcamValue":8},{"gcamCode":"c17.11","gcamValue":17},{"gcamCode":"c17.12","gcamValue":3},{"gcamCode":"c17.15","gcamValue":18},{"gcamCode":"c17.16","gcamValue":6},{"gcamCode":"c17.18","gcamValue":2},{"gcamCode":"c17.19","gcamValue":5},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.22","gcamValue":2},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":13},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.27","gcamValue":6},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":8},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":4},{"gcamCode":"c17.33","gcamValue":6},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":1},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":29},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.42","gcamValue":2},{"gcamCode":"c17.43","gcamValue":6},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":19},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":11},{"gcamCode":"c17.8","gcamValue":6},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.102","gcamValue":1},{"gcamCode":"c2.104","gcamValue":18},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.114","gcamValue":5},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":5},{"gcamCode":"c2.119","gcamValue":38},{"gcamCode":"c2.12","gcamValue":6},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.125","gcamValue":9},{"gcamCode":"c2.126","gcamValue":3},{"gcamCode":"c2.127","gcamValue":12},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":20},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.14","gcamValue":5},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":8},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":17},{"gcamCode":"c2.148","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.153","gcamValue":7},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":8},{"gcamCode":"c2.156","gcamValue":5},{"gcamCode":"c2.157","gcamValue":7},{"gcamCode":"c2.158","gcamValue":10},{"gcamCode":"c2.160","gcamValue":6},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":5},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":5},{"gcamCode":"c2.179","gcamValue":7},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":3},{"gcamCode":"c2.181","gcamValue":3},{"gcamCode":"c2.183","gcamValue":3},{"gcamCode":"c2.185","gcamValue":22},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":3},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.195","gcamValue":13},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":13},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":9},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.206","gcamValue":2},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.210","gcamValue":6},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":3},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":6},{"gcamCode":"c2.25","gcamValue":10},{"gcamCode":"c2.26","gcamValue":7},{"gcamCode":"c2.27","gcamValue":7},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":6},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.32","gcamValue":2},{"gcamCode":"c2.34","gcamValue":9},{"gcamCode":"c2.39","gcamValue":26},{"gcamCode":"c2.44","gcamValue":4},{"gcamCode":"c2.45","gcamValue":14},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":12},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":1},{"gcamCode":"c2.58","gcamValue":1},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.75","gcamValue":13},{"gcamCode":"c2.76","gcamValue":91},{"gcamCode":"c2.77","gcamValue":10},{"gcamCode":"c2.78","gcamValue":20},{"gcamCode":"c2.80","gcamValue":12},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":8},{"gcamCode":"c2.86","gcamValue":9},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.9","gcamValue":6},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":20},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":5},{"gcamCode":"c25.5","gcamValue":9},{"gcamCode":"c3.1","gcamValue":3},{"gcamCode":"c3.2","gcamValue":10},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":1},{"gcamCode":"c35.20","gcamValue":2},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.31","gcamValue":4},{"gcamCode":"c35.32","gcamValue":2},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":5},{"gcamCode":"c39.3","gcamValue":10},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":9},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c4.21","gcamValue":1},{"gcamCode":"c4.23","gcamValue":3},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":14},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":1},{"gcamCode":"c5.29","gcamValue":2},{"gcamCode":"c5.30","gcamValue":8},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.36","gcamValue":3},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.40","gcamValue":4},{"gcamCode":"c5.43","gcamValue":4},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":16},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":5},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":12},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":15},{"gcamCode":"c5.54","gcamValue":9},{"gcamCode":"c5.6","gcamValue":5},{"gcamCode":"c5.61","gcamValue":9},{"gcamCode":"c5.62","gcamValue":51},{"gcamCode":"c5.7","gcamValue":3},{"gcamCode":"c5.8","gcamValue":4},{"gcamCode":"c5.9","gcamValue":8},{"gcamCode":"c6.4","gcamValue":3},{"gcamCode":"c7.1","gcamValue":3},{"gcamCode":"c7.2","gcamValue":3},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.23","gcamValue":4},{"gcamCode":"c8.28","gcamValue":3},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.4","gcamValue":3},{"gcamCode":"c8.42","gcamValue":4},{"gcamCode":"c8.43","gcamValue":5},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1009","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.196","gcamValue":3},{"gcamCode":"c9.197","gcamValue":3},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.2","gcamValue":3},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.205","gcamValue":4},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.39","gcamValue":5},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.461","gcamValue":2},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":3},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":3},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":8},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.515","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":3},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":3},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.653","gcamValue":3},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":8},{"gcamCode":"c9.726","gcamValue":3},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":8},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":3},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":3},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.807","gcamValue":3},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.864","gcamValue":3},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.868","gcamValue":3},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.992","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.30146958537916},{"gcamCode":"v10.2","gcamValue":0.349112426035503},{"gcamCode":"v11.1","gcamValue":0.0196134259259259},{"gcamCode":"v19.1","gcamValue":5.51785714285714},{"gcamCode":"v19.2","gcamValue":4.91571428571429},{"gcamCode":"v19.3","gcamValue":5.07357142857143},{"gcamCode":"v19.4","gcamValue":5.375},{"gcamCode":"v19.5","gcamValue":4.79357142857143},{"gcamCode":"v19.6","gcamValue":4.77857142857143},{"gcamCode":"v19.7","gcamValue":5.65071428571429},{"gcamCode":"v19.8","gcamValue":5.00357142857143},{"gcamCode":"v19.9","gcamValue":5.28071428571429},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-0.292},{"gcamCode":"v20.11","gcamValue":0.656},{"gcamCode":"v20.12","gcamValue":-0.292},{"gcamCode":"v20.13","gcamValue":0.401785714285714},{"gcamCode":"v20.14","gcamValue":-0.3335},{"gcamCode":"v20.15","gcamValue":0.3828125},{"gcamCode":"v20.16","gcamValue":-0.29175},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.656},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.656},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.656},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v20.9","gcamValue":0.656},{"gcamCode":"v21.1","gcamValue":5.4402380952381},{"gcamCode":"v26.1","gcamValue":0.9}]https://s3-ca-central-1.amazonaws.com/quincy-network/wp-content/uploads/sites/12/2018/12/WREX-Generic1.jpg[""][""][""][][{"name":"Northwestern University","charOffset":450},{"name":"Chicago Tribune","charOffset":481},{"name":"Pingree Grove","charOffset":896},{"name":"Chicago Tribune","charOffset":958}][{"amount":7000000,"amountType":"residents","charOffset":241}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBwlox.comhttps://www.wlox.com/2019/05/23/legal-experts-raided-california-reporter-did-not-commit-crime/[][]["WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_CHIEF","TAX_FNCACT_POLICE_CHIEF","MEDIA_MSM","TAX_FNCACT_JOURNALIST","SOC_GENERALCRIME","EPU_CATS_MIGRATION_FEAR_FEAR","TRIAL","TAX_FNCACT_ATTORNEY","TAX_FNCACT_REPORTER","CONSTITUTIONAL","USPEC_POLICY1","EPU_POLICY_POLICY","TAX_FNCACT_EMPLOYEE","ARMEDCONFLICT","CRISISLEX_CRISISLEXREC","TAX_FNCACT_PUBLIC_DEFENDER","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_942_ACCESS_TO_JUSTICE","TAX_FNCACT_EXECUTIVE","TAX_FNCACT_DIRECTOR","TAX_FNCACT_EXECUTIVE_DIRECTOR","ALLIANCE","CYBER_ATTACK","WB_667_ICT_INFRASTRUCTURE","WB_669_SOFTWARE_INFRASTRUCTURE","WB_2945_DATABASE","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","TAX_FNCACT_JUDGE","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_SEAL","TAX_FNCACT_JUDGES","KILL","CRISISLEX_T03_DEAD","CRIME_ILLEGAL_DRUGS","DRUG_TRADE","NEGOTIATIONS","USPEC_POLITICS_GENERAL1","TAX_FNCACT_OFFICIAL","MEDIA_SOCIAL","TAX_FNCACT_VETERAN"][{"theme":"TAX_FNCACT_POLICE_CHIEF","charOffset":123},{"theme":"TAX_FNCACT_POLICE_CHIEF","charOffset":2405},{"theme":"TAX_FNCACT_POLICE_CHIEF","charOffset":4164},{"theme":"TAX_FNCACT_JUDGES","charOffset":3101},{"theme":"KILL","charOffset":3463},{"theme":"CRISISLEX_T03_DEAD","charOffset":3463},{"theme":"CYBER_ATTACK","charOffset":1309},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":633},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":4014},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":4201},{"theme":"SECURITY_SERVICES","charOffset":117},{"theme":"SECURITY_SERVICES","charOffset":195},{"theme":"SECURITY_SERVICES","charOffset":754},{"theme":"SECURITY_SERVICES","charOffset":834},{"theme":"SECURITY_SERVICES","charOffset":949},{"theme":"SECURITY_SERVICES","charOffset":1422},{"theme":"SECURITY_SERVICES","charOffset":1830},{"theme":"SECURITY_SERVICES","charOffset":1882},{"theme":"SECURITY_SERVICES","charOffset":1951},{"theme":"SECURITY_SERVICES","charOffset":2159},{"theme":"SECURITY_SERVICES","charOffset":2399},{"theme":"SECURITY_SERVICES","charOffset":3020},{"theme":"SECURITY_SERVICES","charOffset":4158},{"theme":"SECURITY_SERVICES","charOffset":4192},{"theme":"SECURITY_SERVICES","charOffset":4715},{"theme":"TAX_FNCACT_POLICE","charOffset":117},{"theme":"TAX_FNCACT_POLICE","charOffset":195},{"theme":"TAX_FNCACT_POLICE","charOffset":754},{"theme":"TAX_FNCACT_POLICE","charOffset":834},{"theme":"TAX_FNCACT_POLICE","charOffset":949},{"theme":"TAX_FNCACT_POLICE","charOffset":1422},{"theme":"TAX_FNCACT_POLICE","charOffset":1830},{"theme":"TAX_FNCACT_POLICE","charOffset":1882},{"theme":"TAX_FNCACT_POLICE","charOffset":1951},{"theme":"TAX_FNCACT_POLICE","charOffset":2159},{"theme":"TAX_FNCACT_POLICE","charOffset":2399},{"theme":"TAX_FNCACT_POLICE","charOffset":3020},{"theme":"TAX_FNCACT_POLICE","charOffset":4158},{"theme":"TAX_FNCACT_POLICE","charOffset":4192},{"theme":"TAX_FNCACT_POLICE","charOffset":4715},{"theme":"CRISISLEX_C07_SAFETY","charOffset":117},{"theme":"CRISISLEX_C07_SAFETY","charOffset":195},{"theme":"CRISISLEX_C07_SAFETY","charOffset":754},{"theme":"CRISISLEX_C07_SAFETY","charOffset":834},{"theme":"CRISISLEX_C07_SAFETY","charOffset":949},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1422},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1830},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1882},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1951},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2159},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2399},{"theme":"CRISISLEX_C07_SAFETY","charOffset":3020},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4158},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4192},{"theme":"CRISISLEX_C07_SAFETY","charOffset":4715},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":3739},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":3996},{"theme":"ALLIANCE","charOffset":1237},{"theme":"ALLIANCE","charOffset":4140},{"theme":"TAX_FNCACT_PUBLIC_DEFENDER","charOffset":1025},{"theme":"TAX_FNCACT_PUBLIC_DEFENDER","charOffset":3419},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1025},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":3419},{"theme":"WB_840_JUSTICE","charOffset":1025},{"theme":"WB_840_JUSTICE","charOffset":3419},{"theme":"WB_942_ACCESS_TO_JUSTICE","charOffset":1025},{"theme":"WB_942_ACCESS_TO_JUSTICE","charOffset":3419},{"theme":"TAX_FNCACT_EXECUTIVE_DIRECTOR","charOffset":1204},{"theme":"WB_667_ICT_INFRASTRUCTURE","charOffset":1385},{"theme":"WB_669_SOFTWARE_INFRASTRUCTURE","charOffset":1385},{"theme":"WB_2945_DATABASE","charOffset":1385},{"theme":"TAX_FNCACT_DIRECTOR","charOffset":1204},{"theme":"TAX_FNCACT_REPORTER","charOffset":399},{"theme":"TAX_FNCACT_REPORTER","charOffset":1279},{"theme":"TAX_FNCACT_REPORTER","charOffset":1994},{"theme":"TAX_FNCACT_REPORTER","charOffset":3963},{"theme":"TAX_FNCACT_REPORTER","charOffset":4743},{"theme":"TAX_FNCACT_REPORTER","charOffset":5106},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":1195},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":45},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":348},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":1786},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":45},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":348},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":1786},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":45},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":348},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":1786},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":1750},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":1776},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":4636},{"theme":"WB_2025_INVESTIGATION","charOffset":1750},{"theme":"WB_2025_INVESTIGATION","charOffset":1776},{"theme":"WB_2025_INVESTIGATION","charOffset":4636},{"theme":"WB_831_GOVERNANCE","charOffset":1750},{"theme":"WB_831_GOVERNANCE","charOffset":1776},{"theme":"WB_831_GOVERNANCE","charOffset":4636},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":1750},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":1776},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":4636},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1750},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1776},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":4636},{"theme":"CRIME_ILLEGAL_DRUGS","charOffset":3488},{"theme":"DRUG_TRADE","charOffset":3488},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":982},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":4906},{"theme":"TAX_FNCACT_JUDGE","charOffset":2837},{"theme":"TAX_FNCACT_VETERAN","charOffset":5097},{"theme":"CONSTITUTIONAL","charOffset":436},{"theme":"USPEC_POLICY1","charOffset":573},{"theme":"EPU_POLICY_POLICY","charOffset":573},{"theme":"TAX_WORLDMAMMALS_SEAL","charOffset":2981},{"theme":"SOC_GENERALCRIME","charOffset":234},{"theme":"SOC_GENERALCRIME","charOffset":1163},{"theme":"SOC_GENERALCRIME","charOffset":1664},{"theme":"SOC_GENERALCRIME","charOffset":3282},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":234},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":1163},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":1664},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":3282},{"theme":"MEDIA_MSM","charOffset":157},{"theme":"MEDIA_MSM","charOffset":1041},{"theme":"MEDIA_MSM","charOffset":2739},{"theme":"MEDIA_MSM","charOffset":3130},{"theme":"MEDIA_MSM","charOffset":3336},{"theme":"MEDIA_MSM","charOffset":4299},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":157},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":1041},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":2739},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":3130},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":3336},{"theme":"TAX_FNCACT_JOURNALIST","charOffset":4299},{"theme":"ARMEDCONFLICT","charOffset":727},{"theme":"TAX_FNCACT_CHIEF","charOffset":123},{"theme":"TAX_FNCACT_CHIEF","charOffset":2405},{"theme":"TAX_FNCACT_CHIEF","charOffset":4164},{"theme":"TRIAL","charOffset":303},{"theme":"TRIAL","charOffset":3790},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":303},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":3790},{"theme":"MEDIA_SOCIAL","charOffset":4991},{"theme":"LEGISLATION","charOffset":49},{"theme":"LEGISLATION","charOffset":1649},{"theme":"LEGISLATION","charOffset":1816},{"theme":"LEGISLATION","charOffset":3760},{"theme":"LEGISLATION","charOffset":4334},{"theme":"LEGISLATION","charOffset":5156},{"theme":"EPU_POLICY_LAW","charOffset":49},{"theme":"EPU_POLICY_LAW","charOffset":1649},{"theme":"EPU_POLICY_LAW","charOffset":1816},{"theme":"EPU_POLICY_LAW","charOffset":3760},{"theme":"EPU_POLICY_LAW","charOffset":4334},{"theme":"EPU_POLICY_LAW","charOffset":5156},{"theme":"NEGOTIATIONS","charOffset":3513}][{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"}][{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":5145},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":13},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":95},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":279},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":806},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":1538},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":2016},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":2377},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":2816}]["david snyder","bryan carmody","william scott","michael andraychak","duffy carolan","jeff adachi"][{"person":"David Snyder","charOffset":1183},{"person":"Bryan Carmody","charOffset":876},{"person":"William Scott","charOffset":2419},{"person":"Michael Andraychak","charOffset":1577},{"person":"Duffy Carolan","charOffset":317},{"person":"Jeff Adachi","charOffset":3433}]["u s supreme court","first amendment coalition","associated press","san francisco police"][{"organisation":"First Amendment Coalition","charOffset":1237},{"organisation":"First Amendment Coalition","charOffset":4140},{"organisation":"Associated Press","charOffset":5233}]{"tone":-1.1655011,"positiveScore":2.6806526,"negativeScore":3.8461537,"polarity":6.5268064,"activityReferenceDensity":24.358974,"selfGroupReferenceDensity":0.11655012,"wordCount":804}[{"dateResolution":4,"month":5,"day":10,"year":0,"charOffset":2462}][{"gcamCode":"wc","gcamValue":804},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":51},{"gcamCode":"c12.10","gcamValue":72},{"gcamCode":"c12.12","gcamValue":25},{"gcamCode":"c12.13","gcamValue":19},{"gcamCode":"c12.14","gcamValue":30},{"gcamCode":"c12.3","gcamValue":21},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":25},{"gcamCode":"c12.7","gcamValue":45},{"gcamCode":"c12.8","gcamValue":26},{"gcamCode":"c12.9","gcamValue":51},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.6","gcamValue":1},{"gcamCode":"c13.8","gcamValue":1},{"gcamCode":"c14.1","gcamValue":41},{"gcamCode":"c14.10","gcamValue":39},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":32},{"gcamCode":"c14.3","gcamValue":57},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":74},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":11},{"gcamCode":"c14.9","gcamValue":6},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.115","gcamValue":1},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.141","gcamValue":1},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.17","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":2},{"gcamCode":"c15.231","gcamValue":1},{"gcamCode":"c15.233","gcamValue":2},{"gcamCode":"c15.246","gcamValue":1},{"gcamCode":"c15.247","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.254","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.28","gcamValue":1},{"gcamCode":"c15.31","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.48","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.65","gcamValue":1},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":13},{"gcamCode":"c16.101","gcamValue":9},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":38},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":141},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":47},{"gcamCode":"c16.115","gcamValue":12},{"gcamCode":"c16.116","gcamValue":19},{"gcamCode":"c16.117","gcamValue":21},{"gcamCode":"c16.118","gcamValue":31},{"gcamCode":"c16.12","gcamValue":46},{"gcamCode":"c16.120","gcamValue":25},{"gcamCode":"c16.121","gcamValue":81},{"gcamCode":"c16.122","gcamValue":8},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":42},{"gcamCode":"c16.126","gcamValue":34},{"gcamCode":"c16.127","gcamValue":75},{"gcamCode":"c16.128","gcamValue":2},{"gcamCode":"c16.129","gcamValue":85},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":14},{"gcamCode":"c16.131","gcamValue":38},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":68},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.138","gcamValue":34},{"gcamCode":"c16.139","gcamValue":21},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":21},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":53},{"gcamCode":"c16.146","gcamValue":58},{"gcamCode":"c16.147","gcamValue":7},{"gcamCode":"c16.15","gcamValue":3},{"gcamCode":"c16.152","gcamValue":9},{"gcamCode":"c16.153","gcamValue":68},{"gcamCode":"c16.155","gcamValue":5},{"gcamCode":"c16.156","gcamValue":5},{"gcamCode":"c16.157","gcamValue":23},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":49},{"gcamCode":"c16.16","gcamValue":14},{"gcamCode":"c16.160","gcamValue":2},{"gcamCode":"c16.161","gcamValue":65},{"gcamCode":"c16.162","gcamValue":24},{"gcamCode":"c16.163","gcamValue":45},{"gcamCode":"c16.164","gcamValue":11},{"gcamCode":"c16.165","gcamValue":5},{"gcamCode":"c16.167","gcamValue":3},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.19","gcamValue":11},{"gcamCode":"c16.2","gcamValue":74},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":16},{"gcamCode":"c16.22","gcamValue":21},{"gcamCode":"c16.23","gcamValue":5},{"gcamCode":"c16.24","gcamValue":6},{"gcamCode":"c16.26","gcamValue":69},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":4},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":7},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":38},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":43},{"gcamCode":"c16.34","gcamValue":3},{"gcamCode":"c16.35","gcamValue":35},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":69},{"gcamCode":"c16.38","gcamValue":34},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":47},{"gcamCode":"c16.41","gcamValue":26},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":24},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":109},{"gcamCode":"c16.48","gcamValue":10},{"gcamCode":"c16.49","gcamValue":4},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":6},{"gcamCode":"c16.52","gcamValue":43},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":25},{"gcamCode":"c16.57","gcamValue":427},{"gcamCode":"c16.58","gcamValue":41},{"gcamCode":"c16.6","gcamValue":73},{"gcamCode":"c16.60","gcamValue":16},{"gcamCode":"c16.62","gcamValue":23},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":10},{"gcamCode":"c16.65","gcamValue":16},{"gcamCode":"c16.66","gcamValue":19},{"gcamCode":"c16.68","gcamValue":30},{"gcamCode":"c16.69","gcamValue":27},{"gcamCode":"c16.7","gcamValue":8},{"gcamCode":"c16.70","gcamValue":20},{"gcamCode":"c16.71","gcamValue":6},{"gcamCode":"c16.72","gcamValue":6},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":21},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.78","gcamValue":31},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":4},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":33},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":117},{"gcamCode":"c16.88","gcamValue":80},{"gcamCode":"c16.89","gcamValue":34},{"gcamCode":"c16.9","gcamValue":2},{"gcamCode":"c16.90","gcamValue":31},{"gcamCode":"c16.91","gcamValue":30},{"gcamCode":"c16.92","gcamValue":61},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":54},{"gcamCode":"c16.95","gcamValue":72},{"gcamCode":"c16.96","gcamValue":13},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":67},{"gcamCode":"c17.1","gcamValue":192},{"gcamCode":"c17.10","gcamValue":81},{"gcamCode":"c17.11","gcamValue":149},{"gcamCode":"c17.12","gcamValue":30},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":4},{"gcamCode":"c17.15","gcamValue":67},{"gcamCode":"c17.16","gcamValue":15},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":54},{"gcamCode":"c17.2","gcamValue":5},{"gcamCode":"c17.20","gcamValue":8},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":23},{"gcamCode":"c17.23","gcamValue":8},{"gcamCode":"c17.24","gcamValue":43},{"gcamCode":"c17.25","gcamValue":10},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":59},{"gcamCode":"c17.28","gcamValue":8},{"gcamCode":"c17.29","gcamValue":17},{"gcamCode":"c17.3","gcamValue":4},{"gcamCode":"c17.30","gcamValue":15},{"gcamCode":"c17.31","gcamValue":25},{"gcamCode":"c17.32","gcamValue":29},{"gcamCode":"c17.33","gcamValue":63},{"gcamCode":"c17.34","gcamValue":17},{"gcamCode":"c17.35","gcamValue":9},{"gcamCode":"c17.36","gcamValue":34},{"gcamCode":"c17.37","gcamValue":22},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":20},{"gcamCode":"c17.4","gcamValue":173},{"gcamCode":"c17.40","gcamValue":20},{"gcamCode":"c17.41","gcamValue":36},{"gcamCode":"c17.42","gcamValue":67},{"gcamCode":"c17.43","gcamValue":37},{"gcamCode":"c17.5","gcamValue":145},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":82},{"gcamCode":"c17.8","gcamValue":64},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.13","gcamValue":20},{"gcamCode":"c18.137","gcamValue":2},{"gcamCode":"c18.138","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.146","gcamValue":1},{"gcamCode":"c18.150","gcamValue":1},{"gcamCode":"c18.18","gcamValue":1},{"gcamCode":"c18.193","gcamValue":47},{"gcamCode":"c18.201","gcamValue":2},{"gcamCode":"c18.21","gcamValue":6},{"gcamCode":"c18.269","gcamValue":4},{"gcamCode":"c18.301","gcamValue":1},{"gcamCode":"c18.342","gcamValue":9},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.39","gcamValue":2},{"gcamCode":"c18.71","gcamValue":15},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":18},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":14},{"gcamCode":"c2.102","gcamValue":22},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":134},{"gcamCode":"c2.107","gcamValue":6},{"gcamCode":"c2.108","gcamValue":13},{"gcamCode":"c2.109","gcamValue":7},{"gcamCode":"c2.11","gcamValue":8},{"gcamCode":"c2.110","gcamValue":10},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":6},{"gcamCode":"c2.114","gcamValue":42},{"gcamCode":"c2.115","gcamValue":14},{"gcamCode":"c2.116","gcamValue":26},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":222},{"gcamCode":"c2.12","gcamValue":22},{"gcamCode":"c2.120","gcamValue":7},{"gcamCode":"c2.121","gcamValue":53},{"gcamCode":"c2.122","gcamValue":16},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":31},{"gcamCode":"c2.126","gcamValue":35},{"gcamCode":"c2.127","gcamValue":84},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":75},{"gcamCode":"c2.130","gcamValue":6},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":22},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":16},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.138","gcamValue":4},{"gcamCode":"c2.139","gcamValue":5},{"gcamCode":"c2.14","gcamValue":76},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":29},{"gcamCode":"c2.142","gcamValue":16},{"gcamCode":"c2.143","gcamValue":84},{"gcamCode":"c2.144","gcamValue":11},{"gcamCode":"c2.145","gcamValue":5},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":103},{"gcamCode":"c2.148","gcamValue":63},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":29},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":21},{"gcamCode":"c2.154","gcamValue":17},{"gcamCode":"c2.155","gcamValue":69},{"gcamCode":"c2.156","gcamValue":59},{"gcamCode":"c2.157","gcamValue":63},{"gcamCode":"c2.158","gcamValue":52},{"gcamCode":"c2.159","gcamValue":1},{"gcamCode":"c2.160","gcamValue":21},{"gcamCode":"c2.162","gcamValue":14},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":15},{"gcamCode":"c2.167","gcamValue":3},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":17},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":53},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":21},{"gcamCode":"c2.180","gcamValue":21},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":184},{"gcamCode":"c2.186","gcamValue":12},{"gcamCode":"c2.187","gcamValue":49},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":7},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":17},{"gcamCode":"c2.193","gcamValue":38},{"gcamCode":"c2.195","gcamValue":86},{"gcamCode":"c2.196","gcamValue":15},{"gcamCode":"c2.197","gcamValue":10},{"gcamCode":"c2.198","gcamValue":59},{"gcamCode":"c2.199","gcamValue":16},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":10},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":40},{"gcamCode":"c2.204","gcamValue":46},{"gcamCode":"c2.205","gcamValue":9},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":8},{"gcamCode":"c2.209","gcamValue":9},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":86},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":14},{"gcamCode":"c2.214","gcamValue":23},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":6},{"gcamCode":"c2.223","gcamValue":8},{"gcamCode":"c2.224","gcamValue":2},{"gcamCode":"c2.225","gcamValue":24},{"gcamCode":"c2.226","gcamValue":16},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":39},{"gcamCode":"c2.25","gcamValue":67},{"gcamCode":"c2.26","gcamValue":36},{"gcamCode":"c2.27","gcamValue":36},{"gcamCode":"c2.28","gcamValue":10},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.30","gcamValue":59},{"gcamCode":"c2.31","gcamValue":43},{"gcamCode":"c2.32","gcamValue":7},{"gcamCode":"c2.33","gcamValue":10},{"gcamCode":"c2.34","gcamValue":47},{"gcamCode":"c2.35","gcamValue":19},{"gcamCode":"c2.36","gcamValue":13},{"gcamCode":"c2.37","gcamValue":15},{"gcamCode":"c2.38","gcamValue":4},{"gcamCode":"c2.39","gcamValue":137},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.44","gcamValue":35},{"gcamCode":"c2.45","gcamValue":32},{"gcamCode":"c2.46","gcamValue":84},{"gcamCode":"c2.47","gcamValue":4},{"gcamCode":"c2.48","gcamValue":18},{"gcamCode":"c2.49","gcamValue":4},{"gcamCode":"c2.50","gcamValue":45},{"gcamCode":"c2.52","gcamValue":78},{"gcamCode":"c2.53","gcamValue":20},{"gcamCode":"c2.54","gcamValue":111},{"gcamCode":"c2.55","gcamValue":6},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":9},{"gcamCode":"c2.58","gcamValue":28},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.60","gcamValue":5},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":27},{"gcamCode":"c2.64","gcamValue":52},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":5},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":5},{"gcamCode":"c2.74","gcamValue":2},{"gcamCode":"c2.75","gcamValue":114},{"gcamCode":"c2.76","gcamValue":553},{"gcamCode":"c2.77","gcamValue":91},{"gcamCode":"c2.78","gcamValue":110},{"gcamCode":"c2.79","gcamValue":20},{"gcamCode":"c2.80","gcamValue":113},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":36},{"gcamCode":"c2.83","gcamValue":11},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":35},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":16},{"gcamCode":"c2.89","gcamValue":34},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":13},{"gcamCode":"c2.95","gcamValue":119},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":46},{"gcamCode":"c2.98","gcamValue":34},{"gcamCode":"c2.99","gcamValue":7},{"gcamCode":"c25.1","gcamValue":7},{"gcamCode":"c25.11","gcamValue":5},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":8},{"gcamCode":"c25.7","gcamValue":11},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":49},{"gcamCode":"c3.2","gcamValue":64},{"gcamCode":"c3.3","gcamValue":1},{"gcamCode":"c35.1","gcamValue":19},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.14","gcamValue":11},{"gcamCode":"c35.15","gcamValue":12},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":34},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.22","gcamValue":3},{"gcamCode":"c35.24","gcamValue":5},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.29","gcamValue":5},{"gcamCode":"c35.30","gcamValue":8},{"gcamCode":"c35.31","gcamValue":48},{"gcamCode":"c35.32","gcamValue":25},{"gcamCode":"c35.33","gcamValue":66},{"gcamCode":"c35.4","gcamValue":7},{"gcamCode":"c35.5","gcamValue":5},{"gcamCode":"c35.7","gcamValue":7},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":7},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":6},{"gcamCode":"c39.2","gcamValue":11},{"gcamCode":"c39.26","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":31},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":1},{"gcamCode":"c39.37","gcamValue":23},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":10},{"gcamCode":"c39.4","gcamValue":20},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c4.1","gcamValue":1},{"gcamCode":"c4.13","gcamValue":27},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.18","gcamValue":3},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":21},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":34},{"gcamCode":"c5.10","gcamValue":28},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":63},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":15},{"gcamCode":"c5.2","gcamValue":4},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":20},{"gcamCode":"c5.22","gcamValue":14},{"gcamCode":"c5.23","gcamValue":10},{"gcamCode":"c5.24","gcamValue":7},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":17},{"gcamCode":"c5.29","gcamValue":24},{"gcamCode":"c5.30","gcamValue":89},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.34","gcamValue":11},{"gcamCode":"c5.35","gcamValue":17},{"gcamCode":"c5.36","gcamValue":27},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.4","gcamValue":9},{"gcamCode":"c5.40","gcamValue":77},{"gcamCode":"c5.42","gcamValue":6},{"gcamCode":"c5.43","gcamValue":10},{"gcamCode":"c5.44","gcamValue":14},{"gcamCode":"c5.45","gcamValue":13},{"gcamCode":"c5.46","gcamValue":98},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":8},{"gcamCode":"c5.49","gcamValue":70},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":84},{"gcamCode":"c5.51","gcamValue":61},{"gcamCode":"c5.52","gcamValue":102},{"gcamCode":"c5.53","gcamValue":98},{"gcamCode":"c5.54","gcamValue":44},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.56","gcamValue":7},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":34},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":58},{"gcamCode":"c5.62","gcamValue":349},{"gcamCode":"c5.7","gcamValue":25},{"gcamCode":"c5.8","gcamValue":60},{"gcamCode":"c5.9","gcamValue":24},{"gcamCode":"c6.1","gcamValue":32},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":5},{"gcamCode":"c6.4","gcamValue":38},{"gcamCode":"c6.5","gcamValue":5},{"gcamCode":"c6.6","gcamValue":7},{"gcamCode":"c7.1","gcamValue":38},{"gcamCode":"c7.2","gcamValue":37},{"gcamCode":"c8.10","gcamValue":6},{"gcamCode":"c8.12","gcamValue":4},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.16","gcamValue":4},{"gcamCode":"c8.2","gcamValue":7},{"gcamCode":"c8.22","gcamValue":4},{"gcamCode":"c8.23","gcamValue":11},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.34","gcamValue":3},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":24},{"gcamCode":"c8.38","gcamValue":32},{"gcamCode":"c8.39","gcamValue":10},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":17},{"gcamCode":"c8.42","gcamValue":47},{"gcamCode":"c8.43","gcamValue":25},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":8},{"gcamCode":"c9.1","gcamValue":23},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":15},{"gcamCode":"c9.1006","gcamValue":14},{"gcamCode":"c9.1007","gcamValue":17},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1009","gcamValue":3},{"gcamCode":"c9.101","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":9},{"gcamCode":"c9.1011","gcamValue":19},{"gcamCode":"c9.1012","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.102","gcamValue":1},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1042","gcamValue":2},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.106","gcamValue":4},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":15},{"gcamCode":"c9.111","gcamValue":3},{"gcamCode":"c9.113","gcamValue":4},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.122","gcamValue":18},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.128","gcamValue":40},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.136","gcamValue":1},{"gcamCode":"c9.138","gcamValue":4},{"gcamCode":"c9.14","gcamValue":4},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":6},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.158","gcamValue":26},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":10},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":2},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":16},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.182","gcamValue":9},{"gcamCode":"c9.184","gcamValue":9},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":3},{"gcamCode":"c9.200","gcamValue":9},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":7},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":5},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.234","gcamValue":2},{"gcamCode":"c9.235","gcamValue":4},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.238","gcamValue":2},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":3},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.268","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":4},{"gcamCode":"c9.276","gcamValue":3},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":2},{"gcamCode":"c9.282","gcamValue":2},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":21},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.310","gcamValue":4},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":3},{"gcamCode":"c9.33","gcamValue":9},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.35","gcamValue":10},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":7},{"gcamCode":"c9.374","gcamValue":1},{"gcamCode":"c9.383","gcamValue":14},{"gcamCode":"c9.384","gcamValue":7},{"gcamCode":"c9.389","gcamValue":2},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.422","gcamValue":11},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.433","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.441","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":5},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":7},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":8},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":18},{"gcamCode":"c9.481","gcamValue":5},{"gcamCode":"c9.482","gcamValue":4},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":13},{"gcamCode":"c9.49","gcamValue":8},{"gcamCode":"c9.491","gcamValue":12},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":10},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":6},{"gcamCode":"c9.502","gcamValue":18},{"gcamCode":"c9.503","gcamValue":5},{"gcamCode":"c9.504","gcamValue":4},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":23},{"gcamCode":"c9.513","gcamValue":19},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.518","gcamValue":12},{"gcamCode":"c9.519","gcamValue":16},{"gcamCode":"c9.521","gcamValue":6},{"gcamCode":"c9.522","gcamValue":16},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":10},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.537","gcamValue":9},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":5},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":20},{"gcamCode":"c9.55","gcamValue":9},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":37},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":27},{"gcamCode":"c9.556","gcamValue":36},{"gcamCode":"c9.557","gcamValue":43},{"gcamCode":"c9.558","gcamValue":3},{"gcamCode":"c9.559","gcamValue":7},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":26},{"gcamCode":"c9.561","gcamValue":13},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":3},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":22},{"gcamCode":"c9.578","gcamValue":6},{"gcamCode":"c9.579","gcamValue":22},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":4},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.615","gcamValue":6},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":11},{"gcamCode":"c9.619","gcamValue":28},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":3},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":2},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.64","gcamValue":5},{"gcamCode":"c9.640","gcamValue":5},{"gcamCode":"c9.642","gcamValue":19},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.648","gcamValue":8},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":7},{"gcamCode":"c9.653","gcamValue":29},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":16},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":4},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.665","gcamValue":5},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":7},{"gcamCode":"c9.668","gcamValue":5},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":16},{"gcamCode":"c9.671","gcamValue":7},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":6},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":9},{"gcamCode":"c9.677","gcamValue":4},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.683","gcamValue":11},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":14},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.691","gcamValue":2},{"gcamCode":"c9.692","gcamValue":7},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":6},{"gcamCode":"c9.696","gcamValue":5},{"gcamCode":"c9.698","gcamValue":4},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":9},{"gcamCode":"c9.701","gcamValue":17},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":7},{"gcamCode":"c9.705","gcamValue":3},{"gcamCode":"c9.708","gcamValue":12},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":3},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":8},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":8},{"gcamCode":"c9.723","gcamValue":9},{"gcamCode":"c9.724","gcamValue":18},{"gcamCode":"c9.725","gcamValue":6},{"gcamCode":"c9.726","gcamValue":28},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":8},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":8},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":3},{"gcamCode":"c9.748","gcamValue":11},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":8},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":13},{"gcamCode":"c9.759","gcamValue":8},{"gcamCode":"c9.76","gcamValue":7},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":21},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":22},{"gcamCode":"c9.767","gcamValue":42},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":4},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":8},{"gcamCode":"c9.772","gcamValue":8},{"gcamCode":"c9.773","gcamValue":2},{"gcamCode":"c9.774","gcamValue":4},{"gcamCode":"c9.775","gcamValue":7},{"gcamCode":"c9.776","gcamValue":6},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":3},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.786","gcamValue":2},{"gcamCode":"c9.788","gcamValue":8},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.790","gcamValue":13},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":4},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":8},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.799","gcamValue":2},{"gcamCode":"c9.8","gcamValue":6},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":7},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":11},{"gcamCode":"c9.806","gcamValue":12},{"gcamCode":"c9.808","gcamValue":7},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.815","gcamValue":1},{"gcamCode":"c9.816","gcamValue":7},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":3},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.827","gcamValue":3},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":21},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":5},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.841","gcamValue":4},{"gcamCode":"c9.842","gcamValue":6},{"gcamCode":"c9.843","gcamValue":3},{"gcamCode":"c9.844","gcamValue":5},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":2},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.855","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":5},{"gcamCode":"c9.86","gcamValue":6},{"gcamCode":"c9.860","gcamValue":8},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":6},{"gcamCode":"c9.864","gcamValue":21},{"gcamCode":"c9.865","gcamValue":4},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":8},{"gcamCode":"c9.868","gcamValue":22},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":9},{"gcamCode":"c9.870","gcamValue":2},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.872","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.877","gcamValue":17},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":5},{"gcamCode":"c9.897","gcamValue":6},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":11},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":4},{"gcamCode":"c9.911","gcamValue":7},{"gcamCode":"c9.913","gcamValue":2},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.917","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.921","gcamValue":3},{"gcamCode":"c9.923","gcamValue":7},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.927","gcamValue":1},{"gcamCode":"c9.930","gcamValue":4},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":11},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.939","gcamValue":3},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.949","gcamValue":12},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.962","gcamValue":10},{"gcamCode":"c9.963","gcamValue":7},{"gcamCode":"c9.964","gcamValue":17},{"gcamCode":"c9.965","gcamValue":7},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.968","gcamValue":2},{"gcamCode":"c9.972","gcamValue":16},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.978","gcamValue":9},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":9},{"gcamCode":"c9.986","gcamValue":22},{"gcamCode":"c9.988","gcamValue":5},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.991","gcamValue":6},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.241710069444444},{"gcamCode":"v10.2","gcamValue":0.304453001579779},{"gcamCode":"v11.1","gcamValue":0.00298502991452993},{"gcamCode":"v19.1","gcamValue":4.90917647058824},{"gcamCode":"v19.2","gcamValue":5.14458823529412},{"gcamCode":"v19.3","gcamValue":4.63341176470588},{"gcamCode":"v19.4","gcamValue":4.92788235294117},{"gcamCode":"v19.5","gcamValue":5.02305882352941},{"gcamCode":"v19.6","gcamValue":4.57470588235294},{"gcamCode":"v19.7","gcamValue":4.88788235294118},{"gcamCode":"v19.8","gcamValue":5.26352941176471},{"gcamCode":"v19.9","gcamValue":4.70447058823529},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-0.6405},{"gcamCode":"v20.11","gcamValue":0.573529411764706},{"gcamCode":"v20.12","gcamValue":-0.523416666666667},{"gcamCode":"v20.13","gcamValue":0.4393},{"gcamCode":"v20.14","gcamValue":-0.4823125},{"gcamCode":"v20.15","gcamValue":0.365897959183673},{"gcamCode":"v20.16","gcamValue":-0.431317073170732},{"gcamCode":"v20.3","gcamValue":0.6405},{"gcamCode":"v20.4","gcamValue":-0.625},{"gcamCode":"v20.5","gcamValue":0.6405},{"gcamCode":"v20.6","gcamValue":-0.625},{"gcamCode":"v20.7","gcamValue":0.7135},{"gcamCode":"v20.8","gcamValue":-0.625},{"gcamCode":"v20.9","gcamValue":0.65625},{"gcamCode":"v21.1","gcamValue":5.26247887323943},{"gcamCode":"v26.1","gcamValue":0.242857142857143}]https://www.wlox.com/resizer/M4vLz_J37q3QX2EzbBWZVNA_6XI=/1200x0/arc-anglerfish-arc2-prod-raycom.s3.amazonaws.com/public/T7IPPJXHW5HJZG6FQUFV5YZAAI.jpg[""][""][""][{"charLength":48,"verb":"","quote":"not a confidential , legally protected document","charOffset":1458}][{"name":"San Francisco","charOffset":78},{"name":"Duffy Carolan","charOffset":275},{"name":"San Francisco","charOffset":785},{"name":"Bryan Carmody","charOffset":842},{"name":"David Snyder","charOffset":1154},{"name":"First Amendment","charOffset":1201},{"name":"Michael Andraychak","charOffset":1546},{"name":"San Francisco Chronicle","charOffset":2007},{"name":"Francisco Police Chief William Scott","charOffset":2387},{"name":"First Amendment","charOffset":2772},{"name":"San Francisco","charOffset":2813},{"name":"First Amendment Coalition","charOffset":4184},{"name":"Associated Press","charOffset":5319}][{"amount":12,"amountType":"of cameras","charOffset":1871},{"amount":3,"amountType":"television news outlets","charOffset":3932},{"amount":15,"amountType":"dollars ","charOffset":4209},{"amount":12,"amountType":"of news organizations siding","charOffset":4357}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://twitter.com/search;https://www.gofundme.com/journalist-raided-by-police-support-1st-amendment</PAGE_LINKS><PAGE_AUTHORS>JANIE HAR</PAGE_AUTHORS><PAGE_ALTURL_AMP>/2019/05/23/legal-experts-raided-california-reporter-did-not-commit-crime/?outputType=amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":7}2019-05-23T12:15:00.000+0000WEBsfgate.comhttps://www.sfgate.com/news/article/Sheriff-Man-shot-wife-after-mistaking-her-for-13878421.php[][]["TAX_FNCACT","TAX_FNCACT_AUTHORITIES","CRISISLEX_CRISISLEXREC","EPU_POLICY","EPU_POLICY_AUTHORITIES","TAX_FNCACT_MAN","TAX_FNCACT_SHERIFF","CRISISLEX_C07_SAFETY","MILITARY","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_SOLDIER","TAX_FNCACT_SOLDIER","GENERAL_HEALTH","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITAL","CRISISLEX_C03_WELLBEING_HEALTH","TAX_ETHNICITY","TAX_ETHNICITY_SIOUX","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_SIOUX"][{"theme":"GENERAL_HEALTH","charOffset":437},{"theme":"GENERAL_HEALTH","charOffset":470},{"theme":"MEDICAL","charOffset":437},{"theme":"MEDICAL","charOffset":470},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":437},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":470},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":437},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":470},{"theme":"TAX_FNCACT_SHERIFF","charOffset":183},{"theme":"CRISISLEX_C07_SAFETY","charOffset":183},{"theme":"MILITARY","charOffset":7},{"theme":"MILITARY","charOffset":319},{"theme":"TAX_MILITARY_TITLE_SOLDIER","charOffset":7},{"theme":"TAX_MILITARY_TITLE_SOLDIER","charOffset":319},{"theme":"TAX_FNCACT_SOLDIER","charOffset":7},{"theme":"TAX_FNCACT_SOLDIER","charOffset":319},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":37},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":37},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":37},{"theme":"TAX_FNCACT_MAN","charOffset":47},{"theme":"TAX_ETHNICITY_SIOUX","charOffset":479},{"theme":"TAX_WORLDLANGUAGES_SIOUX","charOffset":479}][{"geoType":"USCITY","geoName":"Monona County, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0333,"longitude":-95.967},"featureId":"465255"},{"geoType":"USCITY","geoName":"Onawa, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0267,"longitude":-96.0972},"featureId":"459865"},{"geoType":"USCITY","geoName":"Sioux City, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.5,"longitude":-96.4003},"featureId":"461653"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}][{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":14},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":77},{"location":{"geoType":"USCITY","geoName":"Onawa, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"IA133","geoPoint":{"latitude":42.0267,"longitude":-96.0972},"featureId":"459865"},"charOffset":413},{"location":{"geoType":"USCITY","geoName":"Monona County, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"IA133","geoPoint":{"latitude":42.0333,"longitude":-95.967},"featureId":"465255"},"charOffset":160},{"location":{"geoType":"USCITY","geoName":"Sioux City, Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"IA193","geoPoint":{"latitude":42.5,"longitude":-96.4003},"featureId":"461653"},"charOffset":484}]["jackie krier","jeffrey pratt","jackier krier","brian krier"][{"person":"Jackie Krier","charOffset":249},{"person":"Jeffrey Pratt","charOffset":197},{"person":"Jackier Krier","charOffset":391},{"person":"Brian Krier","charOffset":374}][""][]{"tone":-3.3333333,"positiveScore":0,"negativeScore":3.3333333,"polarity":3.3333333,"activityReferenceDensity":22.222221,"selfGroupReferenceDensity":0,"wordCount":88}[][{"gcamCode":"wc","gcamValue":88},{"gcamCode":"c12.1","gcamValue":2},{"gcamCode":"c12.10","gcamValue":2},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.14","gcamValue":1},{"gcamCode":"c12.3","gcamValue":1},{"gcamCode":"c12.5","gcamValue":1},{"gcamCode":"c12.7","gcamValue":2},{"gcamCode":"c12.9","gcamValue":2},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c14.1","gcamValue":2},{"gcamCode":"c14.10","gcamValue":1},{"gcamCode":"c14.11","gcamValue":2},{"gcamCode":"c14.2","gcamValue":3},{"gcamCode":"c14.3","gcamValue":1},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":7},{"gcamCode":"c14.7","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c16.100","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":6},{"gcamCode":"c16.110","gcamValue":18},{"gcamCode":"c16.114","gcamValue":9},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":6},{"gcamCode":"c16.12","gcamValue":10},{"gcamCode":"c16.120","gcamValue":8},{"gcamCode":"c16.121","gcamValue":4},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":3},{"gcamCode":"c16.126","gcamValue":1},{"gcamCode":"c16.127","gcamValue":7},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":12},{"gcamCode":"c16.130","gcamValue":4},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.134","gcamValue":10},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.140","gcamValue":7},{"gcamCode":"c16.143","gcamValue":3},{"gcamCode":"c16.145","gcamValue":7},{"gcamCode":"c16.146","gcamValue":8},{"gcamCode":"c16.151","gcamValue":3},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.159","gcamValue":6},{"gcamCode":"c16.161","gcamValue":8},{"gcamCode":"c16.162","gcamValue":6},{"gcamCode":"c16.163","gcamValue":2},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":9},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":4},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.26","gcamValue":10},{"gcamCode":"c16.31","gcamValue":4},{"gcamCode":"c16.33","gcamValue":10},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":5},{"gcamCode":"c16.37","gcamValue":7},{"gcamCode":"c16.4","gcamValue":7},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.47","gcamValue":8},{"gcamCode":"c16.52","gcamValue":5},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":41},{"gcamCode":"c16.58","gcamValue":7},{"gcamCode":"c16.6","gcamValue":15},{"gcamCode":"c16.62","gcamValue":5},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":3},{"gcamCode":"c16.69","gcamValue":5},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":5},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.79","gcamValue":3},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.84","gcamValue":2},{"gcamCode":"c16.87","gcamValue":8},{"gcamCode":"c16.88","gcamValue":15},{"gcamCode":"c16.89","gcamValue":1},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":1},{"gcamCode":"c16.91","gcamValue":1},{"gcamCode":"c16.92","gcamValue":9},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":10},{"gcamCode":"c16.98","gcamValue":6},{"gcamCode":"c17.1","gcamValue":22},{"gcamCode":"c17.10","gcamValue":9},{"gcamCode":"c17.11","gcamValue":13},{"gcamCode":"c17.12","gcamValue":1},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":8},{"gcamCode":"c17.16","gcamValue":6},{"gcamCode":"c17.19","gcamValue":11},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":12},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.27","gcamValue":11},{"gcamCode":"c17.29","gcamValue":2},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":2},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":4},{"gcamCode":"c17.34","gcamValue":3},{"gcamCode":"c17.36","gcamValue":2},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":1},{"gcamCode":"c17.39","gcamValue":4},{"gcamCode":"c17.4","gcamValue":17},{"gcamCode":"c17.40","gcamValue":1},{"gcamCode":"c17.41","gcamValue":3},{"gcamCode":"c17.42","gcamValue":4},{"gcamCode":"c17.43","gcamValue":2},{"gcamCode":"c17.5","gcamValue":16},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":14},{"gcamCode":"c17.8","gcamValue":3},{"gcamCode":"c18.149","gcamValue":2},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":4},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.34","gcamValue":2},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.72","gcamValue":1},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c2.1","gcamValue":2},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":5},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":8},{"gcamCode":"c2.105","gcamValue":1},{"gcamCode":"c2.114","gcamValue":6},{"gcamCode":"c2.116","gcamValue":4},{"gcamCode":"c2.119","gcamValue":27},{"gcamCode":"c2.12","gcamValue":5},{"gcamCode":"c2.121","gcamValue":5},{"gcamCode":"c2.122","gcamValue":4},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":2},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":9},{"gcamCode":"c2.128","gcamValue":8},{"gcamCode":"c2.129","gcamValue":6},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.141","gcamValue":2},{"gcamCode":"c2.143","gcamValue":5},{"gcamCode":"c2.147","gcamValue":13},{"gcamCode":"c2.148","gcamValue":4},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":8},{"gcamCode":"c2.156","gcamValue":2},{"gcamCode":"c2.157","gcamValue":8},{"gcamCode":"c2.158","gcamValue":5},{"gcamCode":"c2.160","gcamValue":1},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.177","gcamValue":10},{"gcamCode":"c2.179","gcamValue":4},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":5},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":19},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":6},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":8},{"gcamCode":"c2.195","gcamValue":7},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":14},{"gcamCode":"c2.199","gcamValue":1},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":5},{"gcamCode":"c2.204","gcamValue":13},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":11},{"gcamCode":"c2.214","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.219","gcamValue":2},{"gcamCode":"c2.220","gcamValue":6},{"gcamCode":"c2.226","gcamValue":1},{"gcamCode":"c2.23","gcamValue":3},{"gcamCode":"c2.25","gcamValue":6},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":2},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":7},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":12},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.44","gcamValue":5},{"gcamCode":"c2.45","gcamValue":3},{"gcamCode":"c2.46","gcamValue":13},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":2},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":7},{"gcamCode":"c2.54","gcamValue":8},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":2},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.73","gcamValue":4},{"gcamCode":"c2.75","gcamValue":14},{"gcamCode":"c2.76","gcamValue":50},{"gcamCode":"c2.77","gcamValue":11},{"gcamCode":"c2.78","gcamValue":13},{"gcamCode":"c2.79","gcamValue":4},{"gcamCode":"c2.80","gcamValue":8},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":1},{"gcamCode":"c2.89","gcamValue":3},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.91","gcamValue":2},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":2},{"gcamCode":"c2.95","gcamValue":13},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.5","gcamValue":4},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":4},{"gcamCode":"c3.2","gcamValue":6},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.17","gcamValue":1},{"gcamCode":"c35.18","gcamValue":3},{"gcamCode":"c35.20","gcamValue":7},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":2},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":11},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.3","gcamValue":5},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":3},{"gcamCode":"c39.4","gcamValue":7},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c4.3","gcamValue":2},{"gcamCode":"c41.1","gcamValue":2},{"gcamCode":"c5.10","gcamValue":8},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":14},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.21","gcamValue":2},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.30","gcamValue":3},{"gcamCode":"c5.34","gcamValue":1},{"gcamCode":"c5.36","gcamValue":1},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.39","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":9},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":13},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":11},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":11},{"gcamCode":"c5.51","gcamValue":8},{"gcamCode":"c5.52","gcamValue":13},{"gcamCode":"c5.53","gcamValue":7},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":5},{"gcamCode":"c5.62","gcamValue":33},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":5},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c7.1","gcamValue":1},{"gcamCode":"c7.2","gcamValue":1},{"gcamCode":"c8.2","gcamValue":3},{"gcamCode":"c8.23","gcamValue":3},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":2},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.42","gcamValue":2},{"gcamCode":"c8.43","gcamValue":3},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.128","gcamValue":6},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.284","gcamValue":3},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.294","gcamValue":4},{"gcamCode":"c9.3","gcamValue":5},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":4},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":2},{"gcamCode":"c9.385","gcamValue":3},{"gcamCode":"c9.390","gcamValue":3},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":5},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":4},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":3},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":7},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.943","gcamValue":1},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.248989898989899},{"gcamCode":"v10.2","gcamValue":0.286675347222222},{"gcamCode":"v11.1","gcamValue":-0.0176790650406504},{"gcamCode":"v19.1","gcamValue":6.04545454545455},{"gcamCode":"v19.2","gcamValue":5.28181818181818},{"gcamCode":"v19.3","gcamValue":5.30090909090909},{"gcamCode":"v19.4","gcamValue":6.03818181818182},{"gcamCode":"v19.5","gcamValue":4.88727272727273},{"gcamCode":"v19.6","gcamValue":5.57727272727273},{"gcamCode":"v19.7","gcamValue":6.05272727272727},{"gcamCode":"v19.8","gcamValue":5.60363636363637},{"gcamCode":"v19.9","gcamValue":5.04181818181818},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.364666666666667},{"gcamCode":"v20.14","gcamValue":-0.5},{"gcamCode":"v20.15","gcamValue":0.3188},{"gcamCode":"v20.16","gcamValue":-0.333333333333333},{"gcamCode":"v21.1","gcamValue":5.32214285714286},{"gcamCode":"v26.1","gcamValue":1.075}]https://www.sfgate.com/img/pages/article/opengraph_default.png[""][""][""][][{"name":"County Sheriff Jeffrey Pratt","charOffset":186},{"name":"Jackie Krier","charOffset":240}][{"amount":3,"amountType":"miles","charOffset":229},{"amount":5,"amountType":"kilometers","charOffset":236}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523115800</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.sfgate.com/news/crime/amp/Sheriff-Man-shot-wife-after-mistaking-her-for-13878421.php</PAGE_ALTURL_AMP><PAGE_ALTURL_MOBILE>https://m.sfgate.com/news/crime/article/Sheriff-Man-shot-wife-after-mistaking-her-for-13878421.php</PAGE_ALTURL_MOBILE>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBbignewsnetwork.comhttps://www.bignewsnetwork.com/news/261153146/jenelle-evans-and-david-eason-fight-for-custody-of-kids[][]["TAX_ETHNICITY","TAX_ETHNICITY_AMERICAN","MEDIA_MSM","TRIAL","ARREST","TAX_FNCACT","TAX_FNCACT_CHILDREN","TAX_FNCACT_LAWYERS","TAX_FNCACT_COUNSELOR","TAX_FNCACT_JUDGE","TAX_FNCACT_INSIDER","KILL","CRISISLEX_T03_DEAD","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_DOG","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","TAX_FNCACT_SHERIFF","CRISISLEX_C07_SAFETY","EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_COUNSELORS","TAX_FNCACT_CHILD","CRISISLEX_CRISISLEXREC","ARMEDCONFLICT","CRISISLEX_T11_UPDATESSYMPATHY"][{"theme":"EDUCATION","charOffset":2432},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2432},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":2432},{"theme":"TAX_FNCACT_INSIDER","charOffset":1710},{"theme":"TAX_FNCACT_CHILD","charOffset":2497},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":2040},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":2040},{"theme":"WB_840_JUSTICE","charOffset":2040},{"theme":"WB_2025_INVESTIGATION","charOffset":2040},{"theme":"WB_831_GOVERNANCE","charOffset":2040},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":2040},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":2040},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2854},{"theme":"TAX_FNCACT_JUDGE","charOffset":1425},{"theme":"TAX_FNCACT_JUDGE","charOffset":1555},{"theme":"TAX_FNCACT_SHERIFF","charOffset":2091},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2091},{"theme":"TAX_FNCACT_COUNSELORS","charOffset":2443},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":48},{"theme":"ARMEDCONFLICT","charOffset":2955},{"theme":"TRIAL","charOffset":87},{"theme":"TRIAL","charOffset":1332},{"theme":"TRIAL","charOffset":1754},{"theme":"MEDIA_MSM","charOffset":51},{"theme":"MEDIA_MSM","charOffset":2756},{"theme":"TAX_FNCACT_COUNSELOR","charOffset":1295},{"theme":"TAX_FNCACT_COUNSELOR","charOffset":2931},{"theme":"TAX_FNCACT_LAWYERS","charOffset":783},{"theme":"KILL","charOffset":1887},{"theme":"KILL","charOffset":1958},{"theme":"CRISISLEX_T03_DEAD","charOffset":1887},{"theme":"CRISISLEX_T03_DEAD","charOffset":1958},{"theme":"ARREST","charOffset":132},{"theme":"ARREST","charOffset":1400},{"theme":"ARREST","charOffset":1798},{"theme":"ARREST","charOffset":2948},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3184},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":1899},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":1966},{"theme":"TAX_FNCACT_CHILDREN","charOffset":150},{"theme":"TAX_FNCACT_CHILDREN","charOffset":2704}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"USCITY","geoName":"Columbus County, North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":34.2504,"longitude":-78.6331},"featureId":"1026339"}][{"location":{"geoType":"USCITY","geoName":"Columbus County, North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"NC047","geoPoint":{"latitude":34.2504,"longitude":-78.6331},"featureId":"1026339"},"charOffset":2068},{"location":{"geoType":"USCITY","geoName":"Columbus County, North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"NC047","geoPoint":{"latitude":34.2504,"longitude":-78.6331},"featureId":"1026339"},"charOffset":2116},{"location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},"charOffset":242},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":48},{"location":{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":11}]["jenelle evans","kaiser griffith","ensley eason","jace evans","david eason","nathan griffith"][{"person":"Jenelle Evans","charOffset":70},{"person":"Kaiser Griffith","charOffset":423},{"person":"Ensley Eason","charOffset":346},{"person":"Jace Evans","charOffset":401},{"person":"David Eason","charOffset":116},{"person":"Nathan Griffith","charOffset":2317}]["columbus county sheriff office","child protective services"][{"organisation":"Child Protective Services","charOffset":2517}]{"tone":-0.34305316,"positiveScore":2.2298455,"negativeScore":2.5728989,"polarity":4.8027444,"activityReferenceDensity":20.58319,"selfGroupReferenceDensity":0.34305316,"wordCount":529}[{"dateResolution":4,"month":5,"day":23,"year":0,"charOffset":25},{"dateResolution":4,"month":5,"day":1,"year":0,"charOffset":2817}][{"gcamCode":"wc","gcamValue":529},{"gcamCode":"c12.1","gcamValue":44},{"gcamCode":"c12.10","gcamValue":31},{"gcamCode":"c12.12","gcamValue":7},{"gcamCode":"c12.13","gcamValue":8},{"gcamCode":"c12.14","gcamValue":17},{"gcamCode":"c12.3","gcamValue":16},{"gcamCode":"c12.4","gcamValue":7},{"gcamCode":"c12.5","gcamValue":28},{"gcamCode":"c12.7","gcamValue":23},{"gcamCode":"c12.8","gcamValue":15},{"gcamCode":"c12.9","gcamValue":42},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":34},{"gcamCode":"c14.10","gcamValue":18},{"gcamCode":"c14.11","gcamValue":49},{"gcamCode":"c14.2","gcamValue":28},{"gcamCode":"c14.3","gcamValue":33},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":51},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.8","gcamValue":3},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":5},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.119","gcamValue":2},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.141","gcamValue":1},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.154","gcamValue":3},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.203","gcamValue":3},{"gcamCode":"c15.207","gcamValue":2},{"gcamCode":"c15.212","gcamValue":3},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.225","gcamValue":2},{"gcamCode":"c15.227","gcamValue":2},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.26","gcamValue":2},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.4","gcamValue":4},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.65","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":3},{"gcamCode":"c15.75","gcamValue":2},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.89","gcamValue":2},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.100","gcamValue":16},{"gcamCode":"c16.101","gcamValue":5},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":8},{"gcamCode":"c16.106","gcamValue":26},{"gcamCode":"c16.109","gcamValue":34},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":98},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":39},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":2},{"gcamCode":"c16.117","gcamValue":19},{"gcamCode":"c16.118","gcamValue":38},{"gcamCode":"c16.12","gcamValue":59},{"gcamCode":"c16.120","gcamValue":23},{"gcamCode":"c16.121","gcamValue":27},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":30},{"gcamCode":"c16.126","gcamValue":19},{"gcamCode":"c16.127","gcamValue":61},{"gcamCode":"c16.128","gcamValue":8},{"gcamCode":"c16.129","gcamValue":44},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":16},{"gcamCode":"c16.131","gcamValue":27},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":43},{"gcamCode":"c16.135","gcamValue":9},{"gcamCode":"c16.138","gcamValue":5},{"gcamCode":"c16.139","gcamValue":26},{"gcamCode":"c16.140","gcamValue":25},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":3},{"gcamCode":"c16.145","gcamValue":29},{"gcamCode":"c16.146","gcamValue":42},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":19},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":10},{"gcamCode":"c16.157","gcamValue":8},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":48},{"gcamCode":"c16.16","gcamValue":11},{"gcamCode":"c16.161","gcamValue":51},{"gcamCode":"c16.162","gcamValue":20},{"gcamCode":"c16.163","gcamValue":24},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":9},{"gcamCode":"c16.167","gcamValue":9},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":13},{"gcamCode":"c16.2","gcamValue":25},{"gcamCode":"c16.20","gcamValue":9},{"gcamCode":"c16.21","gcamValue":6},{"gcamCode":"c16.22","gcamValue":9},{"gcamCode":"c16.23","gcamValue":14},{"gcamCode":"c16.24","gcamValue":7},{"gcamCode":"c16.26","gcamValue":67},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":7},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":31},{"gcamCode":"c16.32","gcamValue":14},{"gcamCode":"c16.33","gcamValue":37},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":32},{"gcamCode":"c16.37","gcamValue":41},{"gcamCode":"c16.38","gcamValue":6},{"gcamCode":"c16.4","gcamValue":48},{"gcamCode":"c16.41","gcamValue":28},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":26},{"gcamCode":"c16.46","gcamValue":10},{"gcamCode":"c16.47","gcamValue":66},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":9},{"gcamCode":"c16.52","gcamValue":23},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.56","gcamValue":1},{"gcamCode":"c16.57","gcamValue":275},{"gcamCode":"c16.58","gcamValue":43},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":78},{"gcamCode":"c16.60","gcamValue":8},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":26},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":14},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":19},{"gcamCode":"c16.68","gcamValue":13},{"gcamCode":"c16.69","gcamValue":26},{"gcamCode":"c16.7","gcamValue":4},{"gcamCode":"c16.70","gcamValue":9},{"gcamCode":"c16.71","gcamValue":10},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":27},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":4},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.84","gcamValue":25},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":62},{"gcamCode":"c16.88","gcamValue":67},{"gcamCode":"c16.89","gcamValue":33},{"gcamCode":"c16.90","gcamValue":17},{"gcamCode":"c16.91","gcamValue":16},{"gcamCode":"c16.92","gcamValue":33},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":39},{"gcamCode":"c16.95","gcamValue":21},{"gcamCode":"c16.96","gcamValue":13},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":33},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":137},{"gcamCode":"c17.10","gcamValue":67},{"gcamCode":"c17.11","gcamValue":102},{"gcamCode":"c17.12","gcamValue":17},{"gcamCode":"c17.13","gcamValue":6},{"gcamCode":"c17.14","gcamValue":5},{"gcamCode":"c17.15","gcamValue":22},{"gcamCode":"c17.16","gcamValue":28},{"gcamCode":"c17.18","gcamValue":16},{"gcamCode":"c17.19","gcamValue":61},{"gcamCode":"c17.2","gcamValue":7},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":9},{"gcamCode":"c17.24","gcamValue":48},{"gcamCode":"c17.25","gcamValue":9},{"gcamCode":"c17.26","gcamValue":6},{"gcamCode":"c17.27","gcamValue":69},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":17},{"gcamCode":"c17.30","gcamValue":6},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":27},{"gcamCode":"c17.33","gcamValue":19},{"gcamCode":"c17.34","gcamValue":19},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":15},{"gcamCode":"c17.37","gcamValue":13},{"gcamCode":"c17.38","gcamValue":4},{"gcamCode":"c17.39","gcamValue":25},{"gcamCode":"c17.4","gcamValue":117},{"gcamCode":"c17.40","gcamValue":11},{"gcamCode":"c17.41","gcamValue":32},{"gcamCode":"c17.42","gcamValue":38},{"gcamCode":"c17.43","gcamValue":30},{"gcamCode":"c17.5","gcamValue":108},{"gcamCode":"c17.6","gcamValue":3},{"gcamCode":"c17.7","gcamValue":80},{"gcamCode":"c17.8","gcamValue":53},{"gcamCode":"c17.9","gcamValue":12},{"gcamCode":"c18.1","gcamValue":2},{"gcamCode":"c18.13","gcamValue":2},{"gcamCode":"c18.137","gcamValue":5},{"gcamCode":"c18.147","gcamValue":1},{"gcamCode":"c18.180","gcamValue":8},{"gcamCode":"c18.193","gcamValue":12},{"gcamCode":"c18.298","gcamValue":1},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.345","gcamValue":2},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c18.77","gcamValue":4},{"gcamCode":"c2.1","gcamValue":17},{"gcamCode":"c2.100","gcamValue":11},{"gcamCode":"c2.101","gcamValue":8},{"gcamCode":"c2.102","gcamValue":6},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":62},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":3},{"gcamCode":"c2.11","gcamValue":4},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.112","gcamValue":6},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":25},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":16},{"gcamCode":"c2.118","gcamValue":4},{"gcamCode":"c2.119","gcamValue":143},{"gcamCode":"c2.12","gcamValue":29},{"gcamCode":"c2.120","gcamValue":3},{"gcamCode":"c2.121","gcamValue":35},{"gcamCode":"c2.122","gcamValue":32},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.125","gcamValue":32},{"gcamCode":"c2.126","gcamValue":30},{"gcamCode":"c2.127","gcamValue":57},{"gcamCode":"c2.128","gcamValue":13},{"gcamCode":"c2.129","gcamValue":23},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":12},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.139","gcamValue":8},{"gcamCode":"c2.14","gcamValue":49},{"gcamCode":"c2.140","gcamValue":7},{"gcamCode":"c2.141","gcamValue":9},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":42},{"gcamCode":"c2.144","gcamValue":11},{"gcamCode":"c2.145","gcamValue":6},{"gcamCode":"c2.146","gcamValue":5},{"gcamCode":"c2.147","gcamValue":90},{"gcamCode":"c2.148","gcamValue":59},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":37},{"gcamCode":"c2.150","gcamValue":7},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":18},{"gcamCode":"c2.154","gcamValue":12},{"gcamCode":"c2.155","gcamValue":69},{"gcamCode":"c2.156","gcamValue":26},{"gcamCode":"c2.157","gcamValue":65},{"gcamCode":"c2.158","gcamValue":45},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":25},{"gcamCode":"c2.162","gcamValue":8},{"gcamCode":"c2.166","gcamValue":8},{"gcamCode":"c2.169","gcamValue":6},{"gcamCode":"c2.17","gcamValue":8},{"gcamCode":"c2.170","gcamValue":6},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":5},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":47},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":26},{"gcamCode":"c2.180","gcamValue":26},{"gcamCode":"c2.181","gcamValue":27},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":129},{"gcamCode":"c2.186","gcamValue":13},{"gcamCode":"c2.187","gcamValue":32},{"gcamCode":"c2.188","gcamValue":4},{"gcamCode":"c2.189","gcamValue":4},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.190","gcamValue":5},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":9},{"gcamCode":"c2.193","gcamValue":35},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":55},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":13},{"gcamCode":"c2.198","gcamValue":76},{"gcamCode":"c2.199","gcamValue":10},{"gcamCode":"c2.2","gcamValue":9},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":41},{"gcamCode":"c2.204","gcamValue":76},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":10},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":11},{"gcamCode":"c2.21","gcamValue":8},{"gcamCode":"c2.210","gcamValue":63},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":6},{"gcamCode":"c2.214","gcamValue":19},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.219","gcamValue":5},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":2},{"gcamCode":"c2.223","gcamValue":2},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":12},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.23","gcamValue":15},{"gcamCode":"c2.25","gcamValue":30},{"gcamCode":"c2.26","gcamValue":25},{"gcamCode":"c2.27","gcamValue":25},{"gcamCode":"c2.28","gcamValue":6},{"gcamCode":"c2.30","gcamValue":8},{"gcamCode":"c2.31","gcamValue":30},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":8},{"gcamCode":"c2.34","gcamValue":33},{"gcamCode":"c2.35","gcamValue":29},{"gcamCode":"c2.36","gcamValue":14},{"gcamCode":"c2.37","gcamValue":26},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":88},{"gcamCode":"c2.4","gcamValue":6},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.44","gcamValue":30},{"gcamCode":"c2.45","gcamValue":9},{"gcamCode":"c2.46","gcamValue":58},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":6},{"gcamCode":"c2.5","gcamValue":7},{"gcamCode":"c2.50","gcamValue":17},{"gcamCode":"c2.52","gcamValue":39},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":49},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.6","gcamValue":22},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.61","gcamValue":4},{"gcamCode":"c2.62","gcamValue":31},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.65","gcamValue":8},{"gcamCode":"c2.66","gcamValue":8},{"gcamCode":"c2.68","gcamValue":5},{"gcamCode":"c2.69","gcamValue":19},{"gcamCode":"c2.7","gcamValue":4},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":21},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":86},{"gcamCode":"c2.76","gcamValue":348},{"gcamCode":"c2.77","gcamValue":61},{"gcamCode":"c2.78","gcamValue":92},{"gcamCode":"c2.79","gcamValue":13},{"gcamCode":"c2.80","gcamValue":73},{"gcamCode":"c2.81","gcamValue":6},{"gcamCode":"c2.82","gcamValue":23},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":22},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":25},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.91","gcamValue":8},{"gcamCode":"c2.92","gcamValue":11},{"gcamCode":"c2.93","gcamValue":18},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":99},{"gcamCode":"c2.97","gcamValue":21},{"gcamCode":"c2.98","gcamValue":26},{"gcamCode":"c2.99","gcamValue":9},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.2","gcamValue":4},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c25.7","gcamValue":5},{"gcamCode":"c3.1","gcamValue":21},{"gcamCode":"c3.2","gcamValue":36},{"gcamCode":"c35.11","gcamValue":4},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.13","gcamValue":3},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":9},{"gcamCode":"c35.17","gcamValue":10},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":16},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":13},{"gcamCode":"c35.32","gcamValue":28},{"gcamCode":"c35.33","gcamValue":22},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":4},{"gcamCode":"c39.14","gcamValue":4},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":18},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.25","gcamValue":5},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":36},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":8},{"gcamCode":"c39.37","gcamValue":30},{"gcamCode":"c39.39","gcamValue":5},{"gcamCode":"c39.4","gcamValue":50},{"gcamCode":"c39.40","gcamValue":4},{"gcamCode":"c39.41","gcamValue":13},{"gcamCode":"c39.5","gcamValue":10},{"gcamCode":"c39.9","gcamValue":3},{"gcamCode":"c4.13","gcamValue":14},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.23","gcamValue":26},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c41.1","gcamValue":17},{"gcamCode":"c5.10","gcamValue":31},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":85},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":3},{"gcamCode":"c5.20","gcamValue":3},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":4},{"gcamCode":"c5.23","gcamValue":17},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":8},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":5},{"gcamCode":"c5.28","gcamValue":16},{"gcamCode":"c5.29","gcamValue":9},{"gcamCode":"c5.30","gcamValue":69},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.32","gcamValue":5},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":21},{"gcamCode":"c5.37","gcamValue":9},{"gcamCode":"c5.39","gcamValue":16},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":80},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":8},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.45","gcamValue":7},{"gcamCode":"c5.46","gcamValue":84},{"gcamCode":"c5.47","gcamValue":24},{"gcamCode":"c5.48","gcamValue":5},{"gcamCode":"c5.49","gcamValue":72},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":70},{"gcamCode":"c5.51","gcamValue":58},{"gcamCode":"c5.52","gcamValue":95},{"gcamCode":"c5.53","gcamValue":41},{"gcamCode":"c5.54","gcamValue":23},{"gcamCode":"c5.55","gcamValue":6},{"gcamCode":"c5.56","gcamValue":20},{"gcamCode":"c5.59","gcamValue":4},{"gcamCode":"c5.6","gcamValue":31},{"gcamCode":"c5.60","gcamValue":30},{"gcamCode":"c5.61","gcamValue":53},{"gcamCode":"c5.62","gcamValue":253},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":11},{"gcamCode":"c5.9","gcamValue":47},{"gcamCode":"c6.1","gcamValue":21},{"gcamCode":"c6.2","gcamValue":5},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":17},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":22},{"gcamCode":"c7.2","gcamValue":25},{"gcamCode":"c8.1","gcamValue":3},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.19","gcamValue":1},{"gcamCode":"c8.2","gcamValue":6},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":15},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.28","gcamValue":4},{"gcamCode":"c8.33","gcamValue":3},{"gcamCode":"c8.34","gcamValue":8},{"gcamCode":"c8.36","gcamValue":10},{"gcamCode":"c8.37","gcamValue":18},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":26},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":23},{"gcamCode":"c8.43","gcamValue":22},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c9.1","gcamValue":33},{"gcamCode":"c9.10","gcamValue":15},{"gcamCode":"c9.100","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":12},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1008","gcamValue":9},{"gcamCode":"c9.1009","gcamValue":11},{"gcamCode":"c9.1010","gcamValue":5},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":7},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":4},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.11","gcamValue":2},{"gcamCode":"c9.111","gcamValue":10},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.12","gcamValue":3},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":6},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":4},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":37},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":5},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":6},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":3},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":9},{"gcamCode":"c9.144","gcamValue":3},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":4},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":6},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":17},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.162","gcamValue":8},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":6},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":2},{"gcamCode":"c9.174","gcamValue":5},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.190","gcamValue":10},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":12},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":12},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.206","gcamValue":6},{"gcamCode":"c9.207","gcamValue":3},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.235","gcamValue":4},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":9},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":7},{"gcamCode":"c9.262","gcamValue":2},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.268","gcamValue":3},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":3},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":8},{"gcamCode":"c9.292","gcamValue":3},{"gcamCode":"c9.293","gcamValue":8},{"gcamCode":"c9.294","gcamValue":3},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":26},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.319","gcamValue":2},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.328","gcamValue":5},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":5},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.350","gcamValue":2},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.37","gcamValue":3},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":4},{"gcamCode":"c9.372","gcamValue":3},{"gcamCode":"c9.377","gcamValue":4},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.384","gcamValue":9},{"gcamCode":"c9.385","gcamValue":20},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.39","gcamValue":20},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.398","gcamValue":2},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.428","gcamValue":2},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.44","gcamValue":13},{"gcamCode":"c9.440","gcamValue":9},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":7},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":5},{"gcamCode":"c9.476","gcamValue":4},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":14},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.493","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":12},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.502","gcamValue":4},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":5},{"gcamCode":"c9.509","gcamValue":3},{"gcamCode":"c9.511","gcamValue":15},{"gcamCode":"c9.513","gcamValue":4},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":3},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.538","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.55","gcamValue":4},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":10},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.556","gcamValue":5},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.561","gcamValue":3},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":4},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":3},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.579","gcamValue":27},{"gcamCode":"c9.581","gcamValue":2},{"gcamCode":"c9.588","gcamValue":7},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.592","gcamValue":2},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.600","gcamValue":3},{"gcamCode":"c9.606","gcamValue":3},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.610","gcamValue":3},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":6},{"gcamCode":"c9.625","gcamValue":4},{"gcamCode":"c9.626","gcamValue":5},{"gcamCode":"c9.627","gcamValue":5},{"gcamCode":"c9.629","gcamValue":6},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":14},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.635","gcamValue":5},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.642","gcamValue":19},{"gcamCode":"c9.645","gcamValue":2},{"gcamCode":"c9.648","gcamValue":6},{"gcamCode":"c9.650","gcamValue":15},{"gcamCode":"c9.653","gcamValue":29},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":8},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":13},{"gcamCode":"c9.664","gcamValue":5},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":13},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":5},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":5},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":11},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":7},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":5},{"gcamCode":"c9.70","gcamValue":12},{"gcamCode":"c9.701","gcamValue":6},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.715","gcamValue":2},{"gcamCode":"c9.716","gcamValue":3},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.723","gcamValue":6},{"gcamCode":"c9.724","gcamValue":13},{"gcamCode":"c9.726","gcamValue":28},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":26},{"gcamCode":"c9.732","gcamValue":4},{"gcamCode":"c9.734","gcamValue":3},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":15},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":4},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":13},{"gcamCode":"c9.742","gcamValue":4},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":19},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":3},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":3},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.762","gcamValue":26},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":12},{"gcamCode":"c9.767","gcamValue":37},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":8},{"gcamCode":"c9.776","gcamValue":10},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.781","gcamValue":5},{"gcamCode":"c9.788","gcamValue":3},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.792","gcamValue":6},{"gcamCode":"c9.793","gcamValue":4},{"gcamCode":"c9.795","gcamValue":10},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":4},{"gcamCode":"c9.806","gcamValue":4},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.813","gcamValue":7},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":6},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.83","gcamValue":15},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":9},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.853","gcamValue":5},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":6},{"gcamCode":"c9.860","gcamValue":6},{"gcamCode":"c9.861","gcamValue":8},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":5},{"gcamCode":"c9.864","gcamValue":26},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.868","gcamValue":26},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.874","gcamValue":4},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.879","gcamValue":3},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":6},{"gcamCode":"c9.888","gcamValue":2},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":12},{"gcamCode":"c9.896","gcamValue":2},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":4},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":13},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.906","gcamValue":2},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":8},{"gcamCode":"c9.913","gcamValue":14},{"gcamCode":"c9.915","gcamValue":5},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":14},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":21},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.941","gcamValue":9},{"gcamCode":"c9.942","gcamValue":8},{"gcamCode":"c9.943","gcamValue":1},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.954","gcamValue":1},{"gcamCode":"c9.955","gcamValue":13},{"gcamCode":"c9.96","gcamValue":15},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.969","gcamValue":4},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":10},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":10},{"gcamCode":"c9.978","gcamValue":5},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":3},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.990","gcamValue":2},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.292261904761905},{"gcamCode":"v10.2","gcamValue":0.256061292270531},{"gcamCode":"v11.1","gcamValue":0.058486307053942},{"gcamCode":"v19.1","gcamValue":5.72},{"gcamCode":"v19.2","gcamValue":5.3275},{"gcamCode":"v19.3","gcamValue":4.94019230769231},{"gcamCode":"v19.4","gcamValue":5.83307692307692},{"gcamCode":"v19.5","gcamValue":5.24076923076923},{"gcamCode":"v19.6","gcamValue":5.19346153846154},{"gcamCode":"v19.7","gcamValue":5.56884615384615},{"gcamCode":"v19.8","gcamValue":5.44826923076923},{"gcamCode":"v19.9","gcamValue":4.68538461538462},{"gcamCode":"v20.1","gcamValue":0.434},{"gcamCode":"v20.10","gcamValue":-0.5415},{"gcamCode":"v20.11","gcamValue":0.508846153846154},{"gcamCode":"v20.12","gcamValue":-0.5415},{"gcamCode":"v20.13","gcamValue":0.393705882352941},{"gcamCode":"v20.14","gcamValue":-0.4425},{"gcamCode":"v20.15","gcamValue":0.362753846153846},{"gcamCode":"v20.16","gcamValue":-0.36},{"gcamCode":"v20.3","gcamValue":0.434},{"gcamCode":"v20.4","gcamValue":-0.458},{"gcamCode":"v20.5","gcamValue":0.434},{"gcamCode":"v20.6","gcamValue":-0.458},{"gcamCode":"v20.7","gcamValue":0.434},{"gcamCode":"v20.8","gcamValue":-0.458},{"gcamCode":"v20.9","gcamValue":0.523},{"gcamCode":"v21.1","gcamValue":5.43023206751054},{"gcamCode":"v26.1","gcamValue":0.0636363636363637}]https://cdn.bignewsnetwork.com/ani1558611472.jpg[""][""][""][{"charLength":31,"verb":"","quote":"very much considering divorcing","charOffset":2911},{"charLength":33,"verb":"","quote":"start to see a marriage counselor","charOffset":3023}][{"name":"Jenelle Evans","charOffset":71},{"name":"David Eason","charOffset":117},{"name":"Teen Mom","charOffset":198},{"name":"North Carolina","charOffset":248},{"name":"Ensley Eason","charOffset":353},{"name":"Jace Evans","charOffset":416},{"name":"Kaiser Griffith","charOffset":445},{"name":"Columbus County Sheriff","charOffset":2203},{"name":"Columbus County Animal Control","charOffset":2246},{"name":"Nathan Griffith","charOffset":2422},{"name":"Child Protective Services","charOffset":2627}][]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBjournalreview.comhttp://www.journalreview.com/lifestyles/entertainment/article_8b8d4e6e-cd23-5f7a-8993-e664f5ec2c95.html[][]["TRIAL","TAX_FNCACT","TAX_FNCACT_PROSECUTOR","CRISISLEX_C07_SAFETY","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_PRISON","WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","WB_2490_NATIONAL_PROTECTION_AND_SECURITY","ARREST","SOC_POINTSOFINTEREST_JAIL","TAX_WEAPONS","TAX_WEAPONS_GUN","DRUG_TRADE","WB_1331_HEALTH_TECHNOLOGIES","WB_2453_ORGANIZED_CRIME","WB_1350_PHARMACEUTICALS","WB_2433_CONFLICT_AND_VIOLENCE","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_2456_DRUGS_AND_NARCOTICS","TAX_FNCACT_ATTORNEY","TAX_FNCACT_DISTRICT_ATTORNEY","TAX_FNCACT_JUDGE","AFFECT","POVERTY","CRISISLEX_C05_NEED_OF_SHELTERS","TAX_FNCACT_INVESTIGATOR","TAX_FNCACT_CRIMINAL","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1014_CRIMINAL_JUSTICE","TAX_ETHNICITY","TAX_ETHNICITY_BLACK","MANMADE_DISASTER_IMPLIED","TAX_WEAPONS_LAND_MINE","SOC_GENERALCRIME","EPU_CATS_MIGRATION_FEAR_FEAR","CURFEW"][{"theme":"ARREST","charOffset":172},{"theme":"ARREST","charOffset":950},{"theme":"ARREST","charOffset":1695},{"theme":"SOC_POINTSOFINTEREST_JAIL","charOffset":172},{"theme":"SOC_POINTSOFINTEREST_JAIL","charOffset":950},{"theme":"SOC_POINTSOFINTEREST_JAIL","charOffset":1695},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1362},{"theme":"WB_840_JUSTICE","charOffset":1362},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1362},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":285},{"theme":"TAX_FNCACT_JUDGE","charOffset":335},{"theme":"TAX_FNCACT_JUDGE","charOffset":452},{"theme":"TAX_FNCACT_JUDGE","charOffset":661},{"theme":"TAX_FNCACT_JUDGE","charOffset":752},{"theme":"TAX_FNCACT_JUDGE","charOffset":886},{"theme":"TAX_FNCACT_JUDGE","charOffset":1104},{"theme":"TAX_FNCACT_INVESTIGATOR","charOffset":714},{"theme":"SOC_GENERALCRIME","charOffset":1653},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":1653},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":131},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":131},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":131},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":131},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":131},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":285},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":729},{"theme":"AFFECT","charOffset":579},{"theme":"POVERTY","charOffset":579},{"theme":"CRISISLEX_C05_NEED_OF_SHELTERS","charOffset":579},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":1354},{"theme":"DRUG_TRADE","charOffset":233},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":233},{"theme":"WB_2453_ORGANIZED_CRIME","charOffset":233},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":233},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":233},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":233},{"theme":"WB_2456_DRUGS_AND_NARCOTICS","charOffset":233},{"theme":"TAX_WEAPONS_LAND_MINE","charOffset":1584},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1584},{"theme":"CURFEW","charOffset":1741},{"theme":"TAX_WEAPONS_GUN","charOffset":226},{"theme":"TRIAL","charOffset":42},{"theme":"TAX_FNCACT_PROSECUTOR","charOffset":42},{"theme":"CRISISLEX_C07_SAFETY","charOffset":42},{"theme":"TAX_ETHNICITY_BLACK","charOffset":1404}][{"geoType":"USCITY","geoName":"Brooklyn, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":41.7512,"longitude":-75.8069},"featureId":"1170330"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"}][{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":12},{"location":{"geoType":"USCITY","geoName":"Brooklyn, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA115","geoPoint":{"latitude":41.7512,"longitude":-75.8069},"featureId":"1170330"},"charOffset":1478}]["genece brinkley","larry krasner","meek mill"][{"person":"Genece Brinkley","charOffset":351},{"person":"Larry Krasner","charOffset":299},{"person":"Meek Mill","charOffset":83},{"person":"Meek Mill","charOffset":1316}]["common pleas court"][{"organisation":"Common Pleas Court","charOffset":329}]{"tone":-11.650485,"positiveScore":1.2944983,"negativeScore":12.9449835,"polarity":14.239482,"activityReferenceDensity":27.184465,"selfGroupReferenceDensity":0.64724916,"wordCount":287}[][{"gcamCode":"wc","gcamValue":287},{"gcamCode":"c12.1","gcamValue":22},{"gcamCode":"c12.10","gcamValue":30},{"gcamCode":"c12.12","gcamValue":16},{"gcamCode":"c12.13","gcamValue":3},{"gcamCode":"c12.14","gcamValue":11},{"gcamCode":"c12.3","gcamValue":5},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":16},{"gcamCode":"c12.7","gcamValue":21},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":24},{"gcamCode":"c14.1","gcamValue":31},{"gcamCode":"c14.10","gcamValue":5},{"gcamCode":"c14.11","gcamValue":35},{"gcamCode":"c14.2","gcamValue":19},{"gcamCode":"c14.3","gcamValue":16},{"gcamCode":"c14.5","gcamValue":28},{"gcamCode":"c14.7","gcamValue":5},{"gcamCode":"c14.9","gcamValue":3},{"gcamCode":"c15.10","gcamValue":6},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":2},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.152","gcamValue":5},{"gcamCode":"c15.173","gcamValue":2},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.183","gcamValue":5},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.26","gcamValue":7},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":9},{"gcamCode":"c16.109","gcamValue":13},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":45},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":8},{"gcamCode":"c16.114","gcamValue":18},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":15},{"gcamCode":"c16.12","gcamValue":18},{"gcamCode":"c16.120","gcamValue":11},{"gcamCode":"c16.121","gcamValue":20},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.125","gcamValue":18},{"gcamCode":"c16.126","gcamValue":12},{"gcamCode":"c16.127","gcamValue":15},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":33},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":11},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":20},{"gcamCode":"c16.135","gcamValue":3},{"gcamCode":"c16.138","gcamValue":9},{"gcamCode":"c16.139","gcamValue":9},{"gcamCode":"c16.140","gcamValue":9},{"gcamCode":"c16.145","gcamValue":14},{"gcamCode":"c16.146","gcamValue":28},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.15","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":9},{"gcamCode":"c16.156","gcamValue":4},{"gcamCode":"c16.157","gcamValue":6},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":25},{"gcamCode":"c16.16","gcamValue":4},{"gcamCode":"c16.161","gcamValue":24},{"gcamCode":"c16.162","gcamValue":14},{"gcamCode":"c16.163","gcamValue":17},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.167","gcamValue":3},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":27},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":6},{"gcamCode":"c16.23","gcamValue":4},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":24},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.3","gcamValue":3},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":27},{"gcamCode":"c16.32","gcamValue":3},{"gcamCode":"c16.33","gcamValue":14},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":11},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":21},{"gcamCode":"c16.38","gcamValue":7},{"gcamCode":"c16.4","gcamValue":18},{"gcamCode":"c16.41","gcamValue":9},{"gcamCode":"c16.45","gcamValue":10},{"gcamCode":"c16.47","gcamValue":43},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":10},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":2},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":4},{"gcamCode":"c16.57","gcamValue":158},{"gcamCode":"c16.58","gcamValue":25},{"gcamCode":"c16.6","gcamValue":23},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":9},{"gcamCode":"c16.63","gcamValue":5},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":6},{"gcamCode":"c16.66","gcamValue":7},{"gcamCode":"c16.68","gcamValue":14},{"gcamCode":"c16.69","gcamValue":9},{"gcamCode":"c16.7","gcamValue":5},{"gcamCode":"c16.70","gcamValue":12},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.74","gcamValue":5},{"gcamCode":"c16.75","gcamValue":9},{"gcamCode":"c16.78","gcamValue":8},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":17},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":52},{"gcamCode":"c16.88","gcamValue":34},{"gcamCode":"c16.89","gcamValue":16},{"gcamCode":"c16.90","gcamValue":9},{"gcamCode":"c16.91","gcamValue":12},{"gcamCode":"c16.92","gcamValue":18},{"gcamCode":"c16.94","gcamValue":22},{"gcamCode":"c16.95","gcamValue":20},{"gcamCode":"c16.98","gcamValue":19},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":86},{"gcamCode":"c17.10","gcamValue":34},{"gcamCode":"c17.11","gcamValue":43},{"gcamCode":"c17.12","gcamValue":11},{"gcamCode":"c17.13","gcamValue":8},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":15},{"gcamCode":"c17.16","gcamValue":8},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":3},{"gcamCode":"c17.19","gcamValue":27},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":6},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":22},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":29},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":13},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":19},{"gcamCode":"c17.32","gcamValue":11},{"gcamCode":"c17.33","gcamValue":18},{"gcamCode":"c17.34","gcamValue":5},{"gcamCode":"c17.35","gcamValue":3},{"gcamCode":"c17.36","gcamValue":9},{"gcamCode":"c17.37","gcamValue":3},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":6},{"gcamCode":"c17.4","gcamValue":59},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":7},{"gcamCode":"c17.42","gcamValue":22},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.5","gcamValue":61},{"gcamCode":"c17.7","gcamValue":43},{"gcamCode":"c17.8","gcamValue":37},{"gcamCode":"c17.9","gcamValue":5},{"gcamCode":"c18.136","gcamValue":1},{"gcamCode":"c18.137","gcamValue":4},{"gcamCode":"c18.146","gcamValue":1},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":12},{"gcamCode":"c18.235","gcamValue":2},{"gcamCode":"c18.269","gcamValue":1},{"gcamCode":"c18.298","gcamValue":4},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.77","gcamValue":3},{"gcamCode":"c18.78","gcamValue":2},{"gcamCode":"c18.86","gcamValue":1},{"gcamCode":"c2.1","gcamValue":13},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":2},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":36},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.112","gcamValue":1},{"gcamCode":"c2.114","gcamValue":20},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":15},{"gcamCode":"c2.119","gcamValue":84},{"gcamCode":"c2.12","gcamValue":9},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":17},{"gcamCode":"c2.122","gcamValue":10},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":10},{"gcamCode":"c2.126","gcamValue":11},{"gcamCode":"c2.127","gcamValue":28},{"gcamCode":"c2.128","gcamValue":13},{"gcamCode":"c2.129","gcamValue":30},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":12},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":25},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.142","gcamValue":2},{"gcamCode":"c2.143","gcamValue":28},{"gcamCode":"c2.144","gcamValue":5},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":3},{"gcamCode":"c2.147","gcamValue":47},{"gcamCode":"c2.148","gcamValue":19},{"gcamCode":"c2.15","gcamValue":15},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":4},{"gcamCode":"c2.155","gcamValue":27},{"gcamCode":"c2.156","gcamValue":19},{"gcamCode":"c2.157","gcamValue":24},{"gcamCode":"c2.158","gcamValue":21},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":7},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":4},{"gcamCode":"c2.177","gcamValue":24},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":9},{"gcamCode":"c2.180","gcamValue":9},{"gcamCode":"c2.181","gcamValue":9},{"gcamCode":"c2.183","gcamValue":9},{"gcamCode":"c2.185","gcamValue":67},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":18},{"gcamCode":"c2.188","gcamValue":3},{"gcamCode":"c2.189","gcamValue":3},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":11},{"gcamCode":"c2.192","gcamValue":7},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":34},{"gcamCode":"c2.196","gcamValue":10},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":30},{"gcamCode":"c2.199","gcamValue":10},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.201","gcamValue":1},{"gcamCode":"c2.203","gcamValue":12},{"gcamCode":"c2.204","gcamValue":32},{"gcamCode":"c2.205","gcamValue":5},{"gcamCode":"c2.206","gcamValue":1},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":4},{"gcamCode":"c2.210","gcamValue":26},{"gcamCode":"c2.211","gcamValue":2},{"gcamCode":"c2.213","gcamValue":2},{"gcamCode":"c2.214","gcamValue":12},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.220","gcamValue":4},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.225","gcamValue":10},{"gcamCode":"c2.226","gcamValue":8},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":7},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":17},{"gcamCode":"c2.26","gcamValue":15},{"gcamCode":"c2.27","gcamValue":15},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.30","gcamValue":8},{"gcamCode":"c2.31","gcamValue":11},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":11},{"gcamCode":"c2.36","gcamValue":8},{"gcamCode":"c2.37","gcamValue":11},{"gcamCode":"c2.39","gcamValue":46},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":15},{"gcamCode":"c2.45","gcamValue":15},{"gcamCode":"c2.46","gcamValue":25},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":5},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":6},{"gcamCode":"c2.52","gcamValue":16},{"gcamCode":"c2.53","gcamValue":6},{"gcamCode":"c2.54","gcamValue":26},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":9},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.62","gcamValue":10},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.65","gcamValue":2},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":8},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":42},{"gcamCode":"c2.76","gcamValue":193},{"gcamCode":"c2.77","gcamValue":29},{"gcamCode":"c2.78","gcamValue":29},{"gcamCode":"c2.79","gcamValue":8},{"gcamCode":"c2.8","gcamValue":2},{"gcamCode":"c2.80","gcamValue":38},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":14},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":8},{"gcamCode":"c2.95","gcamValue":40},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":30},{"gcamCode":"c2.98","gcamValue":15},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.3","gcamValue":2},{"gcamCode":"c25.4","gcamValue":2},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":30},{"gcamCode":"c3.2","gcamValue":17},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":6},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":9},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.23","gcamValue":1},{"gcamCode":"c35.25","gcamValue":2},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":9},{"gcamCode":"c35.32","gcamValue":12},{"gcamCode":"c35.33","gcamValue":15},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c35.8","gcamValue":2},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":3},{"gcamCode":"c39.2","gcamValue":10},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":30},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.31","gcamValue":1},{"gcamCode":"c39.36","gcamValue":5},{"gcamCode":"c39.37","gcamValue":14},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":22},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c4.13","gcamValue":7},{"gcamCode":"c4.14","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":9},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":22},{"gcamCode":"c5.11","gcamValue":5},{"gcamCode":"c5.12","gcamValue":50},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":2},{"gcamCode":"c5.20","gcamValue":3},{"gcamCode":"c5.21","gcamValue":5},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":5},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":5},{"gcamCode":"c5.30","gcamValue":19},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.34","gcamValue":8},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":10},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":25},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":6},{"gcamCode":"c5.46","gcamValue":46},{"gcamCode":"c5.47","gcamValue":8},{"gcamCode":"c5.49","gcamValue":33},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":30},{"gcamCode":"c5.51","gcamValue":27},{"gcamCode":"c5.52","gcamValue":40},{"gcamCode":"c5.53","gcamValue":30},{"gcamCode":"c5.54","gcamValue":5},{"gcamCode":"c5.56","gcamValue":9},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":3},{"gcamCode":"c5.6","gcamValue":9},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":19},{"gcamCode":"c5.62","gcamValue":130},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":2},{"gcamCode":"c5.9","gcamValue":24},{"gcamCode":"c6.1","gcamValue":19},{"gcamCode":"c6.4","gcamValue":25},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":2},{"gcamCode":"c7.1","gcamValue":18},{"gcamCode":"c7.2","gcamValue":12},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":6},{"gcamCode":"c8.23","gcamValue":4},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":8},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":9},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":8},{"gcamCode":"c8.43","gcamValue":18},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":10},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1005","gcamValue":12},{"gcamCode":"c9.1007","gcamValue":6},{"gcamCode":"c9.1008","gcamValue":3},{"gcamCode":"c9.1009","gcamValue":10},{"gcamCode":"c9.1010","gcamValue":8},{"gcamCode":"c9.1011","gcamValue":8},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":6},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":3},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":6},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.116","gcamValue":4},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":2},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":3},{"gcamCode":"c9.128","gcamValue":18},{"gcamCode":"c9.129","gcamValue":4},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":4},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":5},{"gcamCode":"c9.145","gcamValue":2},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.158","gcamValue":4},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.184","gcamValue":6},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.19","gcamValue":3},{"gcamCode":"c9.190","gcamValue":5},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":7},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.242","gcamValue":3},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.282","gcamValue":2},{"gcamCode":"c9.285","gcamValue":3},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":10},{"gcamCode":"c9.30","gcamValue":3},{"gcamCode":"c9.302","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.340","gcamValue":3},{"gcamCode":"c9.35","gcamValue":3},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":3},{"gcamCode":"c9.384","gcamValue":6},{"gcamCode":"c9.385","gcamValue":3},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.449","gcamValue":1},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":2},{"gcamCode":"c9.479","gcamValue":6},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.482","gcamValue":8},{"gcamCode":"c9.484","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.497","gcamValue":1},{"gcamCode":"c9.498","gcamValue":8},{"gcamCode":"c9.500","gcamValue":9},{"gcamCode":"c9.502","gcamValue":8},{"gcamCode":"c9.504","gcamValue":6},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":2},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":2},{"gcamCode":"c9.521","gcamValue":9},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":4},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.570","gcamValue":3},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":11},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.590","gcamValue":2},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":2},{"gcamCode":"c9.597","gcamValue":2},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.635","gcamValue":4},{"gcamCode":"c9.637","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.641","gcamValue":3},{"gcamCode":"c9.642","gcamValue":10},{"gcamCode":"c9.643","gcamValue":1},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":8},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.65","gcamValue":1},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.653","gcamValue":16},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":5},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":4},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.701","gcamValue":9},{"gcamCode":"c9.703","gcamValue":6},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":6},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.722","gcamValue":6},{"gcamCode":"c9.723","gcamValue":7},{"gcamCode":"c9.724","gcamValue":6},{"gcamCode":"c9.726","gcamValue":15},{"gcamCode":"c9.727","gcamValue":6},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":9},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.734","gcamValue":3},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.736","gcamValue":4},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":10},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":4},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":9},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":19},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.775","gcamValue":6},{"gcamCode":"c9.776","gcamValue":4},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":4},{"gcamCode":"c9.784","gcamValue":1},{"gcamCode":"c9.788","gcamValue":8},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.83","gcamValue":1},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":7},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":7},{"gcamCode":"c9.864","gcamValue":10},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":9},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.888","gcamValue":7},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.917","gcamValue":5},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":2},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":10},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.941","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.960","gcamValue":1},{"gcamCode":"c9.962","gcamValue":3},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":5},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":7},{"gcamCode":"c9.979","gcamValue":1},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.268832036775106},{"gcamCode":"v10.2","gcamValue":0.266862824675325},{"gcamCode":"v11.1","gcamValue":0.00830469586374695},{"gcamCode":"v19.1","gcamValue":4.51368421052632},{"gcamCode":"v19.2","gcamValue":5.07736842105263},{"gcamCode":"v19.3","gcamValue":4.39473684210526},{"gcamCode":"v19.4","gcamValue":4.78289473684211},{"gcamCode":"v19.5","gcamValue":4.83578947368421},{"gcamCode":"v19.6","gcamValue":4.61368421052632},{"gcamCode":"v19.7","gcamValue":4.26131578947368},{"gcamCode":"v19.8","gcamValue":5.30105263157895},{"gcamCode":"v19.9","gcamValue":4.18868421052632},{"gcamCode":"v20.1","gcamValue":0.656},{"gcamCode":"v20.10","gcamValue":-0.660666666666667},{"gcamCode":"v20.11","gcamValue":0.5366},{"gcamCode":"v20.12","gcamValue":-0.660666666666667},{"gcamCode":"v20.13","gcamValue":0.42528},{"gcamCode":"v20.14","gcamValue":-0.524166666666667},{"gcamCode":"v20.15","gcamValue":0.371722222222222},{"gcamCode":"v20.16","gcamValue":-0.380636363636364},{"gcamCode":"v20.2","gcamValue":-0.357},{"gcamCode":"v20.3","gcamValue":0.656},{"gcamCode":"v20.4","gcamValue":-0.357},{"gcamCode":"v20.5","gcamValue":0.656},{"gcamCode":"v20.6","gcamValue":-0.616},{"gcamCode":"v20.7","gcamValue":0.656},{"gcamCode":"v20.8","gcamValue":-0.660666666666667},{"gcamCode":"v20.9","gcamValue":0.561},{"gcamCode":"v21.1","gcamValue":5.09776},{"gcamCode":"v26.1","gcamValue":-0.616666666666667}]https://bloximages.chicago2.vip.townnews.com/journalreview.com/content/tncms/assets/v3/editorial/2/a2/2a200c35-66db-5baf-b7db-70a65d11edab/5ce680f77e91b.image.jpg[""][""]["https://youtube.com/channel/UCLfKYZ17f5OvKuSYVio5Jag"][][{"name":"District Attorney Larry Krasner","charOffset":316},{"name":"Common Pleas Court Judge Genece Brinkley","charOffset":368},{"name":"All Eyes","charOffset":1017},{"name":"Meek Mill","charOffset":1359}][{"amount":100000,"amountType":"of thousands of black","charOffset":1186}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Celebretainment</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523100000</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":1}2019-05-23T12:15:00.000+0000WEBrgj.comhttps://www.rgj.com/story/news/nation/2019/05/22/what-animals-dangerous-deer-dogs-cows-bees-bugs/3593569002/[{"countType":"KILL","count":211,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":211,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":1,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},{"countType":"KILL","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},{"countType":"CRISISLEX_CRISISLEXREC","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},{"countType":"CRISISLEX_T03_DEAD","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},{"countType":"CRISISLEX_T03_DEAD","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},{"countType":"KILL","count":2014,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},{"countType":"KILL","count":100,"objectType":"American","location":{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"}},{"countType":"KILL","count":9,"objectType":"","location":{"geoType":"USCITY","geoName":"Washington, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}}][{"count":{"countType":"KILL","count":211,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":808},{"count":{"countType":"CRISISLEX_T03_DEAD","count":211,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":808},{"count":{"countType":"KILL","count":1,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},"charOffset":1960},{"count":{"countType":"KILL","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},"charOffset":2680},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},"charOffset":2680},{"count":{"countType":"CRISISLEX_T03_DEAD","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},"charOffset":2680},{"count":{"countType":"CRISISLEX_T03_DEAD","count":350,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},"charOffset":2680},{"count":{"countType":"KILL","count":2014,"objectType":"","location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"}},"charOffset":2728},{"count":{"countType":"KILL","count":100,"objectType":"American","location":{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"}},"charOffset":3399},{"count":{"countType":"KILL","count":9,"objectType":"","location":{"geoType":"USCITY","geoName":"Washington, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}},"charOffset":4239}]["TAX_WORLDREPTILES","TAX_WORLDREPTILES_SNAKES","TAX_WORLDREPTILES_SNAKE","TAX_WORLDREPTILES_RATTLESNAKES","CRISISLEX_T11_UPDATESSYMPATHY","TAX_WORLDREPTILES_ALLIGATORS","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_BEARS","CRISISLEX_CRISISLEXREC","KILL","CRISISLEX_C03_WELLBEING_HEALTH","TAX_WORLDMAMMALS_DEER","TAX_WORLDMAMMALS_HUMANS","MANMADE_DISASTER_IMPLIED","WB_1973_FINANCIAL_RISK_REDUCTION","WB_435_AGRICULTURE_AND_FOOD_SECURITY","WB_337_INSURANCE","WB_1967_AGRICULTURAL_RISK_AND_SECURITY","WB_168_ROADS_AND_HIGHWAYS","WB_135_TRANSPORT","WB_1809_HIGHWAYS","WB_1803_TRANSPORT_INFRASTRUCTURE","CRISISLEX_T03_DEAD","TAX_FNCACT","TAX_FNCACT_DRIVERS","SCIENCE","TAX_FNCACT_SCIENTIST","UNGP_FORESTS_RIVERS_OCEANS","GENERAL_HEALTH","TAX_DISEASE","TAX_DISEASE_DISEASE","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","UNGP_HEALTHCARE","AFFECT","TAX_WORLDMAMMALS_DOG","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_2026_PREVENTION","TAX_FNCACT_MAN","MEDICAL","TAX_WORLDMAMMALS_DOGS","MED_EMERGENCYROOM","TAX_DISEASE_TRAUMA","CRISISLEX_C07_SAFETY","TAX_DISEASE_RABIES","AGRICULTURE","TAX_WORLDMAMMALS_HUMAN","TAX_WORLDMAMMALS_HORSES","TAX_WORLDINSECTS","TAX_WORLDINSECTS_BEES","EDUCATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_UNIVERSITY","TAX_FNCACT_PROFESSOR","TAX_ETHNICITY","TAX_ETHNICITY_AMERICAN","TAX_WORLDINSECTS_BEE","WB_855_LABOR_MARKETS","WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","WB_1674_HEALTH_AND_SAFETY_CONDITIONS","WB_697_SOCIAL_PROTECTION_AND_LABOR","TAX_DISEASE_HEART_ATTACK","TAX_DISEASE_STROKE","TAX_ETHNICITY_AMERICANS","TAX_DISEASE_ALLERGIC","TAX_DISEASE_ALLERGY","TAX_WORLDARACHNIDS","TAX_WORLDARACHNIDS_SPIDER","TAX_WORLDINSECTS_ANTS","TAX_WORLDFISH","TAX_WORLDFISH_SHARKS"][{"theme":"TAX_WORLDMAMMALS_BEARS","charOffset":201},{"theme":"TAX_ETHNICITY_AMERICANS","charOffset":3762},{"theme":"TAX_DISEASE_ALLERGY","charOffset":3870},{"theme":"TAX_DISEASE_RABIES","charOffset":2303},{"theme":"TAX_WORLDINSECTS_ANTS","charOffset":4225},{"theme":"TAX_DISEASE_STROKE","charOffset":3650},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":3333},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":3414},{"theme":"TAX_DISEASE_ALLERGIC","charOffset":3775},{"theme":"SCIENCE","charOffset":1182},{"theme":"TAX_FNCACT_SCIENTIST","charOffset":1182},{"theme":"CRISISLEX_T03_DEAD","charOffset":880},{"theme":"TAX_WORLDMAMMALS_HORSES","charOffset":2653},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2134},{"theme":"AGRICULTURE","charOffset":2362},{"theme":"AGRICULTURE","charOffset":2430},{"theme":"TAX_DISEASE_TRAUMA","charOffset":1898},{"theme":"WB_855_LABOR_MARKETS","charOffset":3615},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":3615},{"theme":"WB_1674_HEALTH_AND_SAFETY_CONDITIONS","charOffset":3615},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3615},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":1560},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":1704},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":2009},{"theme":"TAX_WORLDMAMMALS_DOG","charOffset":2209},{"theme":"TAX_WORLDARACHNIDS_SPIDER","charOffset":4055},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":299},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2263},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3887},{"theme":"TAX_FNCACT_PROFESSOR","charOffset":3209},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":844},{"theme":"WB_135_TRANSPORT","charOffset":844},{"theme":"WB_1809_HIGHWAYS","charOffset":844},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":844},{"theme":"MED_EMERGENCYROOM","charOffset":1830},{"theme":"GENERAL_HEALTH","charOffset":1457},{"theme":"GENERAL_HEALTH","charOffset":1597},{"theme":"TAX_DISEASE_DISEASE","charOffset":1457},{"theme":"TAX_DISEASE_DISEASE","charOffset":1597},{"theme":"WB_1406_DISEASES","charOffset":1457},{"theme":"WB_1406_DISEASES","charOffset":1597},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1457},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1597},{"theme":"UNGP_HEALTHCARE","charOffset":1457},{"theme":"UNGP_HEALTHCARE","charOffset":1597},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":177},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":585},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":2606},{"theme":"WB_1973_FINANCIAL_RISK_REDUCTION","charOffset":822},{"theme":"WB_435_AGRICULTURE_AND_FOOD_SECURITY","charOffset":822},{"theme":"WB_337_INSURANCE","charOffset":822},{"theme":"WB_1967_AGRICULTURAL_RISK_AND_SECURITY","charOffset":822},{"theme":"AFFECT","charOffset":1490},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1227},{"theme":"TAX_WORLDREPTILES_RATTLESNAKES","charOffset":135},{"theme":"TAX_WORLDINSECTS_BEE","charOffset":3439},{"theme":"TAX_WORLDINSECTS_BEE","charOffset":3955},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":1618},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1618},{"theme":"WB_831_GOVERNANCE","charOffset":1618},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":1618},{"theme":"WB_2026_PREVENTION","charOffset":1618},{"theme":"TAX_WORLDREPTILES_SNAKE","charOffset":85},{"theme":"MEDICAL","charOffset":1734},{"theme":"MEDICAL","charOffset":2598},{"theme":"MEDICAL","charOffset":3604},{"theme":"TAX_DISEASE_HEART_ATTACK","charOffset":3637},{"theme":"TAX_WORLDMAMMALS_DOGS","charOffset":1782},{"theme":"TAX_WORLDMAMMALS_DOGS","charOffset":2039},{"theme":"TAX_WORLDMAMMALS_DOGS","charOffset":2252},{"theme":"TAX_WORLDMAMMALS_DEER","charOffset":738},{"theme":"TAX_WORLDMAMMALS_DEER","charOffset":1022},{"theme":"TAX_WORLDMAMMALS_DEER","charOffset":1082},{"theme":"TAX_WORLDMAMMALS_DEER","charOffset":1449},{"theme":"KILL","charOffset":499},{"theme":"KILL","charOffset":545},{"theme":"KILL","charOffset":4106},{"theme":"KILL","charOffset":4244},{"theme":"KILL","charOffset":4353},{"theme":"TAX_WORLDREPTILES_ALLIGATORS","charOffset":188},{"theme":"TAX_WORLDREPTILES_SNAKES","charOffset":56},{"theme":"TAX_WORLDREPTILES_SNAKES","charOffset":169},{"theme":"EDUCATION","charOffset":3199},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":3199},{"theme":"TAX_WORLDINSECTS_BEES","charOffset":3018},{"theme":"TAX_WORLDINSECTS_BEES","charOffset":3117},{"theme":"TAX_WORLDINSECTS_BEES","charOffset":3364},{"theme":"TAX_WORLDINSECTS_BEES","charOffset":3828},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":797},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":905},{"theme":"TAX_WORLDFISH_SHARKS","charOffset":4348},{"theme":"TAX_WORLDMAMMALS_HUMANS","charOffset":762},{"theme":"TAX_WORLDMAMMALS_HUMANS","charOffset":1497},{"theme":"TAX_FNCACT_MAN","charOffset":1674},{"theme":"TAX_FNCACT_MAN","charOffset":2950},{"theme":"TAX_FNCACT_MAN","charOffset":3931},{"theme":"TAX_FNCACT_DRIVERS","charOffset":1110}][{"geoType":"USSTATE","geoName":"Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"","geoPoint":{"latitude":33.7712,"longitude":-111.388},"featureId":"AZ"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}][{"location":{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO077","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"},"charOffset":1250},{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":13},{"location":{"geoType":"COUNTRY","geoName":"Americans","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3762},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":287},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3231},{"location":{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":4126},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":150},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1265},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":4141},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1200},{"location":{"geoType":"COUNTRY","geoName":"Spain","countryCode":"SP","adm1Code":"SP","adm2Code":"","geoPoint":{"latitude":40,"longitude":-4},"featureId":"SP"},"charOffset":2979},{"location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},"charOffset":2577},{"location":{"geoType":"USSTATE","geoName":"Arizona, United States","countryCode":"US","adm1Code":"USAZ","adm2Code":"","geoPoint":{"latitude":33.7712,"longitude":-111.388},"featureId":"AZ"},"charOffset":3980},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3333},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":3414}]["richard gunderman","emily flinn"][{"person":"Richard Gunderman","charOffset":3472},{"person":"Emily Flinn","charOffset":1159}]["indiana university","u s centers for disease","missouri department of conservation","washington post","human services","carolina department of health","united states"][{"organisation":"Indiana University","charOffset":3199},{"organisation":"Missouri Department Of Conservation","charOffset":1227},{"organisation":"Human Services","charOffset":2615},{"organisation":"Carolina Department Of Health","charOffset":2598},{"organisation":"United States","charOffset":150},{"organisation":"United States","charOffset":1265},{"organisation":"United States","charOffset":4141}]{"tone":-7.9343367,"positiveScore":2.1887825,"negativeScore":10.123119,"polarity":12.311901,"activityReferenceDensity":21.477428,"selfGroupReferenceDensity":0.2735978,"wordCount":648}[{"dateResolution":1,"month":0,"day":0,"year":2014,"charOffset":1841},{"dateResolution":1,"month":0,"day":0,"year":2001,"charOffset":2538},{"dateResolution":1,"month":0,"day":0,"year":1997,"charOffset":2728}][{"gcamCode":"wc","gcamValue":648},{"gcamCode":"c12.1","gcamValue":56},{"gcamCode":"c12.10","gcamValue":88},{"gcamCode":"c12.12","gcamValue":37},{"gcamCode":"c12.13","gcamValue":30},{"gcamCode":"c12.14","gcamValue":22},{"gcamCode":"c12.3","gcamValue":33},{"gcamCode":"c12.4","gcamValue":4},{"gcamCode":"c12.5","gcamValue":24},{"gcamCode":"c12.7","gcamValue":66},{"gcamCode":"c12.8","gcamValue":30},{"gcamCode":"c12.9","gcamValue":42},{"gcamCode":"c13.14","gcamValue":2},{"gcamCode":"c13.5","gcamValue":1},{"gcamCode":"c13.6","gcamValue":1},{"gcamCode":"c13.9","gcamValue":2},{"gcamCode":"c14.1","gcamValue":53},{"gcamCode":"c14.10","gcamValue":36},{"gcamCode":"c14.11","gcamValue":85},{"gcamCode":"c14.2","gcamValue":40},{"gcamCode":"c14.3","gcamValue":48},{"gcamCode":"c14.4","gcamValue":19},{"gcamCode":"c14.5","gcamValue":86},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":27},{"gcamCode":"c14.9","gcamValue":10},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.112","gcamValue":3},{"gcamCode":"c15.116","gcamValue":3},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":3},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.141","gcamValue":1},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.172","gcamValue":1},{"gcamCode":"c15.173","gcamValue":3},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":3},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.18","gcamValue":5},{"gcamCode":"c15.181","gcamValue":2},{"gcamCode":"c15.182","gcamValue":2},{"gcamCode":"c15.185","gcamValue":1},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.198","gcamValue":3},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.204","gcamValue":1},{"gcamCode":"c15.206","gcamValue":2},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.215","gcamValue":2},{"gcamCode":"c15.217","gcamValue":2},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.22","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.246","gcamValue":1},{"gcamCode":"c15.247","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.26","gcamValue":2},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.28","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.48","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.65","gcamValue":1},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.84","gcamValue":5},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":9},{"gcamCode":"c16.103","gcamValue":5},{"gcamCode":"c16.104","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":29},{"gcamCode":"c16.107","gcamValue":1},{"gcamCode":"c16.108","gcamValue":3},{"gcamCode":"c16.109","gcamValue":36},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":93},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":49},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":17},{"gcamCode":"c16.117","gcamValue":17},{"gcamCode":"c16.118","gcamValue":41},{"gcamCode":"c16.12","gcamValue":74},{"gcamCode":"c16.120","gcamValue":28},{"gcamCode":"c16.121","gcamValue":36},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":8},{"gcamCode":"c16.125","gcamValue":50},{"gcamCode":"c16.126","gcamValue":31},{"gcamCode":"c16.127","gcamValue":50},{"gcamCode":"c16.128","gcamValue":13},{"gcamCode":"c16.129","gcamValue":75},{"gcamCode":"c16.13","gcamValue":3},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":29},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":70},{"gcamCode":"c16.137","gcamValue":1},{"gcamCode":"c16.138","gcamValue":20},{"gcamCode":"c16.139","gcamValue":27},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":26},{"gcamCode":"c16.144","gcamValue":1},{"gcamCode":"c16.145","gcamValue":45},{"gcamCode":"c16.146","gcamValue":35},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":24},{"gcamCode":"c16.155","gcamValue":5},{"gcamCode":"c16.156","gcamValue":8},{"gcamCode":"c16.157","gcamValue":14},{"gcamCode":"c16.158","gcamValue":6},{"gcamCode":"c16.159","gcamValue":61},{"gcamCode":"c16.16","gcamValue":8},{"gcamCode":"c16.161","gcamValue":52},{"gcamCode":"c16.162","gcamValue":24},{"gcamCode":"c16.163","gcamValue":32},{"gcamCode":"c16.164","gcamValue":10},{"gcamCode":"c16.19","gcamValue":4},{"gcamCode":"c16.2","gcamValue":38},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":9},{"gcamCode":"c16.23","gcamValue":4},{"gcamCode":"c16.24","gcamValue":7},{"gcamCode":"c16.26","gcamValue":92},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":9},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":51},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":59},{"gcamCode":"c16.34","gcamValue":7},{"gcamCode":"c16.35","gcamValue":32},{"gcamCode":"c16.37","gcamValue":51},{"gcamCode":"c16.38","gcamValue":22},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":61},{"gcamCode":"c16.41","gcamValue":30},{"gcamCode":"c16.42","gcamValue":3},{"gcamCode":"c16.45","gcamValue":33},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":92},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.5","gcamValue":3},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.51","gcamValue":5},{"gcamCode":"c16.52","gcamValue":29},{"gcamCode":"c16.53","gcamValue":5},{"gcamCode":"c16.56","gcamValue":8},{"gcamCode":"c16.57","gcamValue":363},{"gcamCode":"c16.58","gcamValue":42},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":95},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.61","gcamValue":3},{"gcamCode":"c16.62","gcamValue":30},{"gcamCode":"c16.63","gcamValue":16},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":12},{"gcamCode":"c16.66","gcamValue":7},{"gcamCode":"c16.68","gcamValue":35},{"gcamCode":"c16.69","gcamValue":27},{"gcamCode":"c16.7","gcamValue":15},{"gcamCode":"c16.70","gcamValue":34},{"gcamCode":"c16.71","gcamValue":5},{"gcamCode":"c16.72","gcamValue":7},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":5},{"gcamCode":"c16.75","gcamValue":28},{"gcamCode":"c16.76","gcamValue":8},{"gcamCode":"c16.77","gcamValue":4},{"gcamCode":"c16.78","gcamValue":11},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.81","gcamValue":6},{"gcamCode":"c16.82","gcamValue":6},{"gcamCode":"c16.83","gcamValue":3},{"gcamCode":"c16.84","gcamValue":35},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":58},{"gcamCode":"c16.88","gcamValue":103},{"gcamCode":"c16.89","gcamValue":26},{"gcamCode":"c16.90","gcamValue":21},{"gcamCode":"c16.91","gcamValue":20},{"gcamCode":"c16.92","gcamValue":85},{"gcamCode":"c16.93","gcamValue":5},{"gcamCode":"c16.94","gcamValue":51},{"gcamCode":"c16.95","gcamValue":42},{"gcamCode":"c16.96","gcamValue":10},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":44},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":177},{"gcamCode":"c17.10","gcamValue":71},{"gcamCode":"c17.11","gcamValue":85},{"gcamCode":"c17.12","gcamValue":21},{"gcamCode":"c17.13","gcamValue":10},{"gcamCode":"c17.14","gcamValue":14},{"gcamCode":"c17.15","gcamValue":38},{"gcamCode":"c17.16","gcamValue":18},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":15},{"gcamCode":"c17.19","gcamValue":34},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":5},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":16},{"gcamCode":"c17.23","gcamValue":3},{"gcamCode":"c17.24","gcamValue":51},{"gcamCode":"c17.25","gcamValue":8},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":80},{"gcamCode":"c17.28","gcamValue":6},{"gcamCode":"c17.29","gcamValue":20},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":32},{"gcamCode":"c17.32","gcamValue":28},{"gcamCode":"c17.33","gcamValue":31},{"gcamCode":"c17.34","gcamValue":13},{"gcamCode":"c17.35","gcamValue":10},{"gcamCode":"c17.36","gcamValue":26},{"gcamCode":"c17.37","gcamValue":17},{"gcamCode":"c17.38","gcamValue":14},{"gcamCode":"c17.39","gcamValue":22},{"gcamCode":"c17.4","gcamValue":174},{"gcamCode":"c17.40","gcamValue":16},{"gcamCode":"c17.41","gcamValue":16},{"gcamCode":"c17.42","gcamValue":43},{"gcamCode":"c17.43","gcamValue":36},{"gcamCode":"c17.5","gcamValue":125},{"gcamCode":"c17.6","gcamValue":29},{"gcamCode":"c17.7","gcamValue":90},{"gcamCode":"c17.8","gcamValue":79},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c18.1","gcamValue":15},{"gcamCode":"c18.147","gcamValue":2},{"gcamCode":"c18.149","gcamValue":4},{"gcamCode":"c18.180","gcamValue":3},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.193","gcamValue":6},{"gcamCode":"c18.298","gcamValue":2},{"gcamCode":"c18.34","gcamValue":10},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.345","gcamValue":16},{"gcamCode":"c18.346","gcamValue":5},{"gcamCode":"c18.347","gcamValue":6},{"gcamCode":"c18.349","gcamValue":1},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c18.354","gcamValue":1},{"gcamCode":"c18.52","gcamValue":4},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.82","gcamValue":1},{"gcamCode":"c2.1","gcamValue":27},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":4},{"gcamCode":"c2.101","gcamValue":11},{"gcamCode":"c2.102","gcamValue":18},{"gcamCode":"c2.104","gcamValue":107},{"gcamCode":"c2.105","gcamValue":1},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":7},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":18},{"gcamCode":"c2.110","gcamValue":7},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":8},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":53},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":41},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":2},{"gcamCode":"c2.119","gcamValue":193},{"gcamCode":"c2.12","gcamValue":36},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":45},{"gcamCode":"c2.122","gcamValue":19},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":58},{"gcamCode":"c2.126","gcamValue":36},{"gcamCode":"c2.127","gcamValue":80},{"gcamCode":"c2.128","gcamValue":19},{"gcamCode":"c2.129","gcamValue":23},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":5},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":52},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":10},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":22},{"gcamCode":"c2.144","gcamValue":32},{"gcamCode":"c2.145","gcamValue":15},{"gcamCode":"c2.146","gcamValue":17},{"gcamCode":"c2.147","gcamValue":100},{"gcamCode":"c2.148","gcamValue":64},{"gcamCode":"c2.149","gcamValue":6},{"gcamCode":"c2.15","gcamValue":15},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.153","gcamValue":25},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":70},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":67},{"gcamCode":"c2.158","gcamValue":46},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":62},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":12},{"gcamCode":"c2.166","gcamValue":13},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.17","gcamValue":7},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":9},{"gcamCode":"c2.177","gcamValue":38},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":38},{"gcamCode":"c2.18","gcamValue":27},{"gcamCode":"c2.180","gcamValue":28},{"gcamCode":"c2.181","gcamValue":30},{"gcamCode":"c2.183","gcamValue":30},{"gcamCode":"c2.185","gcamValue":133},{"gcamCode":"c2.186","gcamValue":15},{"gcamCode":"c2.187","gcamValue":41},{"gcamCode":"c2.19","gcamValue":7},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":11},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":29},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":70},{"gcamCode":"c2.196","gcamValue":7},{"gcamCode":"c2.197","gcamValue":9},{"gcamCode":"c2.198","gcamValue":64},{"gcamCode":"c2.199","gcamValue":18},{"gcamCode":"c2.2","gcamValue":5},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":2},{"gcamCode":"c2.203","gcamValue":35},{"gcamCode":"c2.204","gcamValue":54},{"gcamCode":"c2.205","gcamValue":11},{"gcamCode":"c2.206","gcamValue":5},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":26},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":55},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.212","gcamValue":2},{"gcamCode":"c2.213","gcamValue":26},{"gcamCode":"c2.214","gcamValue":36},{"gcamCode":"c2.216","gcamValue":6},{"gcamCode":"c2.217","gcamValue":21},{"gcamCode":"c2.218","gcamValue":4},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.220","gcamValue":28},{"gcamCode":"c2.221","gcamValue":8},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":9},{"gcamCode":"c2.225","gcamValue":21},{"gcamCode":"c2.226","gcamValue":12},{"gcamCode":"c2.227","gcamValue":4},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":14},{"gcamCode":"c2.25","gcamValue":34},{"gcamCode":"c2.26","gcamValue":48},{"gcamCode":"c2.27","gcamValue":48},{"gcamCode":"c2.28","gcamValue":23},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":30},{"gcamCode":"c2.32","gcamValue":15},{"gcamCode":"c2.33","gcamValue":9},{"gcamCode":"c2.34","gcamValue":31},{"gcamCode":"c2.35","gcamValue":14},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":9},{"gcamCode":"c2.38","gcamValue":4},{"gcamCode":"c2.39","gcamValue":97},{"gcamCode":"c2.4","gcamValue":5},{"gcamCode":"c2.40","gcamValue":7},{"gcamCode":"c2.44","gcamValue":28},{"gcamCode":"c2.45","gcamValue":23},{"gcamCode":"c2.46","gcamValue":54},{"gcamCode":"c2.47","gcamValue":8},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.49","gcamValue":6},{"gcamCode":"c2.5","gcamValue":6},{"gcamCode":"c2.50","gcamValue":9},{"gcamCode":"c2.52","gcamValue":54},{"gcamCode":"c2.53","gcamValue":3},{"gcamCode":"c2.54","gcamValue":65},{"gcamCode":"c2.55","gcamValue":15},{"gcamCode":"c2.56","gcamValue":11},{"gcamCode":"c2.57","gcamValue":19},{"gcamCode":"c2.58","gcamValue":10},{"gcamCode":"c2.59","gcamValue":4},{"gcamCode":"c2.6","gcamValue":14},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":31},{"gcamCode":"c2.64","gcamValue":5},{"gcamCode":"c2.65","gcamValue":6},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.7","gcamValue":18},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":2},{"gcamCode":"c2.73","gcamValue":6},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":85},{"gcamCode":"c2.76","gcamValue":432},{"gcamCode":"c2.77","gcamValue":46},{"gcamCode":"c2.78","gcamValue":103},{"gcamCode":"c2.79","gcamValue":22},{"gcamCode":"c2.80","gcamValue":68},{"gcamCode":"c2.81","gcamValue":15},{"gcamCode":"c2.82","gcamValue":36},{"gcamCode":"c2.83","gcamValue":4},{"gcamCode":"c2.84","gcamValue":5},{"gcamCode":"c2.86","gcamValue":38},{"gcamCode":"c2.87","gcamValue":5},{"gcamCode":"c2.88","gcamValue":20},{"gcamCode":"c2.89","gcamValue":23},{"gcamCode":"c2.9","gcamValue":6},{"gcamCode":"c2.90","gcamValue":7},{"gcamCode":"c2.93","gcamValue":13},{"gcamCode":"c2.94","gcamValue":2},{"gcamCode":"c2.95","gcamValue":109},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":4},{"gcamCode":"c2.98","gcamValue":20},{"gcamCode":"c2.99","gcamValue":6},{"gcamCode":"c25.1","gcamValue":4},{"gcamCode":"c25.10","gcamValue":2},{"gcamCode":"c25.2","gcamValue":8},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c25.7","gcamValue":3},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":79},{"gcamCode":"c3.2","gcamValue":42},{"gcamCode":"c35.1","gcamValue":6},{"gcamCode":"c35.12","gcamValue":3},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":3},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":10},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":2},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":5},{"gcamCode":"c35.31","gcamValue":25},{"gcamCode":"c35.32","gcamValue":9},{"gcamCode":"c35.33","gcamValue":22},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":5},{"gcamCode":"c35.7","gcamValue":6},{"gcamCode":"c35.9","gcamValue":2},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":5},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.2","gcamValue":13},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.3","gcamValue":26},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":5},{"gcamCode":"c39.37","gcamValue":13},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":22},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":6},{"gcamCode":"c39.5","gcamValue":8},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.12","gcamValue":3},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.23","gcamValue":27},{"gcamCode":"c4.3","gcamValue":6},{"gcamCode":"c4.4","gcamValue":4},{"gcamCode":"c4.9","gcamValue":1},{"gcamCode":"c40.5","gcamValue":7},{"gcamCode":"c41.1","gcamValue":33},{"gcamCode":"c5.10","gcamValue":33},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":64},{"gcamCode":"c5.15","gcamValue":14},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":15},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.2","gcamValue":21},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":4},{"gcamCode":"c5.23","gcamValue":9},{"gcamCode":"c5.24","gcamValue":14},{"gcamCode":"c5.25","gcamValue":5},{"gcamCode":"c5.26","gcamValue":26},{"gcamCode":"c5.27","gcamValue":2},{"gcamCode":"c5.28","gcamValue":18},{"gcamCode":"c5.29","gcamValue":16},{"gcamCode":"c5.30","gcamValue":88},{"gcamCode":"c5.32","gcamValue":14},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":28},{"gcamCode":"c5.35","gcamValue":19},{"gcamCode":"c5.36","gcamValue":45},{"gcamCode":"c5.37","gcamValue":13},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":37},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":32},{"gcamCode":"c5.44","gcamValue":7},{"gcamCode":"c5.45","gcamValue":16},{"gcamCode":"c5.46","gcamValue":92},{"gcamCode":"c5.47","gcamValue":20},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":52},{"gcamCode":"c5.5","gcamValue":4},{"gcamCode":"c5.50","gcamValue":61},{"gcamCode":"c5.51","gcamValue":43},{"gcamCode":"c5.52","gcamValue":75},{"gcamCode":"c5.53","gcamValue":39},{"gcamCode":"c5.54","gcamValue":27},{"gcamCode":"c5.55","gcamValue":11},{"gcamCode":"c5.56","gcamValue":2},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.6","gcamValue":34},{"gcamCode":"c5.60","gcamValue":16},{"gcamCode":"c5.61","gcamValue":43},{"gcamCode":"c5.62","gcamValue":269},{"gcamCode":"c5.7","gcamValue":13},{"gcamCode":"c5.8","gcamValue":25},{"gcamCode":"c5.9","gcamValue":23},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":2},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":19},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c6.6","gcamValue":10},{"gcamCode":"c7.1","gcamValue":71},{"gcamCode":"c7.2","gcamValue":28},{"gcamCode":"c8.1","gcamValue":8},{"gcamCode":"c8.10","gcamValue":20},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.16","gcamValue":2},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":9},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":11},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":3},{"gcamCode":"c8.28","gcamValue":4},{"gcamCode":"c8.29","gcamValue":2},{"gcamCode":"c8.3","gcamValue":10},{"gcamCode":"c8.33","gcamValue":2},{"gcamCode":"c8.35","gcamValue":6},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":29},{"gcamCode":"c8.38","gcamValue":13},{"gcamCode":"c8.39","gcamValue":5},{"gcamCode":"c8.4","gcamValue":28},{"gcamCode":"c8.40","gcamValue":3},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":11},{"gcamCode":"c8.43","gcamValue":15},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":36},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.101","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1012","gcamValue":5},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.102","gcamValue":1},{"gcamCode":"c9.1021","gcamValue":2},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":2},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.104","gcamValue":6},{"gcamCode":"c9.1040","gcamValue":5},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":13},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":11},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.118","gcamValue":14},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":5},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.126","gcamValue":3},{"gcamCode":"c9.128","gcamValue":30},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":5},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.143","gcamValue":5},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.148","gcamValue":3},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.150","gcamValue":3},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.158","gcamValue":17},{"gcamCode":"c9.160","gcamValue":16},{"gcamCode":"c9.161","gcamValue":5},{"gcamCode":"c9.162","gcamValue":13},{"gcamCode":"c9.163","gcamValue":6},{"gcamCode":"c9.164","gcamValue":4},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.166","gcamValue":6},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":5},{"gcamCode":"c9.169","gcamValue":10},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.18","gcamValue":5},{"gcamCode":"c9.180","gcamValue":4},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":5},{"gcamCode":"c9.184","gcamValue":8},{"gcamCode":"c9.188","gcamValue":17},{"gcamCode":"c9.189","gcamValue":2},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":4},{"gcamCode":"c9.195","gcamValue":7},{"gcamCode":"c9.197","gcamValue":7},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":12},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.202","gcamValue":5},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":2},{"gcamCode":"c9.205","gcamValue":4},{"gcamCode":"c9.206","gcamValue":6},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":4},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.214","gcamValue":4},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":8},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.23","gcamValue":6},{"gcamCode":"c9.231","gcamValue":3},{"gcamCode":"c9.232","gcamValue":2},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":4},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.245","gcamValue":3},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":3},{"gcamCode":"c9.259","gcamValue":2},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.268","gcamValue":4},{"gcamCode":"c9.27","gcamValue":7},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.275","gcamValue":4},{"gcamCode":"c9.276","gcamValue":3},{"gcamCode":"c9.279","gcamValue":3},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.281","gcamValue":4},{"gcamCode":"c9.282","gcamValue":3},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.289","gcamValue":3},{"gcamCode":"c9.291","gcamValue":9},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.3","gcamValue":28},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.308","gcamValue":2},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.32","gcamValue":4},{"gcamCode":"c9.324","gcamValue":1},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":28},{"gcamCode":"c9.330","gcamValue":4},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":21},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":15},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":2},{"gcamCode":"c9.36","gcamValue":5},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.370","gcamValue":4},{"gcamCode":"c9.371","gcamValue":16},{"gcamCode":"c9.372","gcamValue":12},{"gcamCode":"c9.373","gcamValue":2},{"gcamCode":"c9.375","gcamValue":1},{"gcamCode":"c9.376","gcamValue":1},{"gcamCode":"c9.377","gcamValue":21},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.381","gcamValue":5},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":9},{"gcamCode":"c9.384","gcamValue":10},{"gcamCode":"c9.386","gcamValue":2},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":15},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.392","gcamValue":2},{"gcamCode":"c9.393","gcamValue":3},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":5},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":6},{"gcamCode":"c9.4","gcamValue":3},{"gcamCode":"c9.40","gcamValue":3},{"gcamCode":"c9.405","gcamValue":8},{"gcamCode":"c9.408","gcamValue":1},{"gcamCode":"c9.409","gcamValue":3},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.417","gcamValue":2},{"gcamCode":"c9.419","gcamValue":11},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.426","gcamValue":4},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":6},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.432","gcamValue":3},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.435","gcamValue":4},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":6},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.458","gcamValue":8},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":3},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.468","gcamValue":4},{"gcamCode":"c9.469","gcamValue":2},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.470","gcamValue":8},{"gcamCode":"c9.471","gcamValue":2},{"gcamCode":"c9.472","gcamValue":3},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":11},{"gcamCode":"c9.477","gcamValue":4},{"gcamCode":"c9.478","gcamValue":9},{"gcamCode":"c9.479","gcamValue":11},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.480","gcamValue":13},{"gcamCode":"c9.481","gcamValue":5},{"gcamCode":"c9.482","gcamValue":5},{"gcamCode":"c9.483","gcamValue":3},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":3},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":8},{"gcamCode":"c9.495","gcamValue":2},{"gcamCode":"c9.496","gcamValue":8},{"gcamCode":"c9.497","gcamValue":2},{"gcamCode":"c9.498","gcamValue":19},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.500","gcamValue":4},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":7},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.506","gcamValue":1},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":16},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":7},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.52","gcamValue":3},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":11},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.526","gcamValue":2},{"gcamCode":"c9.528","gcamValue":2},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":5},{"gcamCode":"c9.54","gcamValue":9},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.545","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":9},{"gcamCode":"c9.552","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":5},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":4},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":3},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":2},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":30},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":4},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.59","gcamValue":2},{"gcamCode":"c9.593","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.608","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.615","gcamValue":2},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":4},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.620","gcamValue":4},{"gcamCode":"c9.621","gcamValue":3},{"gcamCode":"c9.622","gcamValue":3},{"gcamCode":"c9.624","gcamValue":7},{"gcamCode":"c9.625","gcamValue":4},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":4},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":7},{"gcamCode":"c9.634","gcamValue":2},{"gcamCode":"c9.635","gcamValue":3},{"gcamCode":"c9.636","gcamValue":2},{"gcamCode":"c9.638","gcamValue":5},{"gcamCode":"c9.64","gcamValue":5},{"gcamCode":"c9.640","gcamValue":7},{"gcamCode":"c9.642","gcamValue":16},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.648","gcamValue":13},{"gcamCode":"c9.649","gcamValue":10},{"gcamCode":"c9.65","gcamValue":1},{"gcamCode":"c9.650","gcamValue":8},{"gcamCode":"c9.651","gcamValue":2},{"gcamCode":"c9.653","gcamValue":32},{"gcamCode":"c9.654","gcamValue":5},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":7},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":7},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":4},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.67","gcamValue":5},{"gcamCode":"c9.670","gcamValue":6},{"gcamCode":"c9.671","gcamValue":6},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":8},{"gcamCode":"c9.677","gcamValue":17},{"gcamCode":"c9.678","gcamValue":3},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.681","gcamValue":3},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":10},{"gcamCode":"c9.684","gcamValue":5},{"gcamCode":"c9.685","gcamValue":9},{"gcamCode":"c9.686","gcamValue":2},{"gcamCode":"c9.687","gcamValue":7},{"gcamCode":"c9.690","gcamValue":6},{"gcamCode":"c9.691","gcamValue":2},{"gcamCode":"c9.692","gcamValue":8},{"gcamCode":"c9.693","gcamValue":8},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.698","gcamValue":7},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":9},{"gcamCode":"c9.701","gcamValue":12},{"gcamCode":"c9.702","gcamValue":2},{"gcamCode":"c9.704","gcamValue":8},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.715","gcamValue":3},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.718","gcamValue":5},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.726","gcamValue":32},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.73","gcamValue":4},{"gcamCode":"c9.730","gcamValue":28},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":3},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":5},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":4},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.746","gcamValue":2},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":12},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.752","gcamValue":2},{"gcamCode":"c9.754","gcamValue":5},{"gcamCode":"c9.756","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":8},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.762","gcamValue":28},{"gcamCode":"c9.763","gcamValue":2},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":31},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.79","gcamValue":4},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.803","gcamValue":2},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.812","gcamValue":5},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":6},{"gcamCode":"c9.820","gcamValue":2},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":22},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":5},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":13},{"gcamCode":"c9.860","gcamValue":13},{"gcamCode":"c9.861","gcamValue":6},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":30},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":8},{"gcamCode":"c9.867","gcamValue":13},{"gcamCode":"c9.868","gcamValue":29},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":6},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.877","gcamValue":3},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.879","gcamValue":2},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.882","gcamValue":4},{"gcamCode":"c9.883","gcamValue":6},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.889","gcamValue":5},{"gcamCode":"c9.89","gcamValue":9},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.893","gcamValue":3},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.898","gcamValue":3},{"gcamCode":"c9.899","gcamValue":11},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":5},{"gcamCode":"c9.902","gcamValue":4},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.904","gcamValue":3},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.909","gcamValue":3},{"gcamCode":"c9.911","gcamValue":14},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.914","gcamValue":3},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.924","gcamValue":4},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.928","gcamValue":5},{"gcamCode":"c9.93","gcamValue":4},{"gcamCode":"c9.930","gcamValue":6},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":7},{"gcamCode":"c9.935","gcamValue":17},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.940","gcamValue":8},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":6},{"gcamCode":"c9.946","gcamValue":5},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.962","gcamValue":4},{"gcamCode":"c9.964","gcamValue":3},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":17},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.975","gcamValue":2},{"gcamCode":"c9.976","gcamValue":3},{"gcamCode":"c9.978","gcamValue":7},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":9},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":7},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":4},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":5},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.263316576630652},{"gcamCode":"v10.2","gcamValue":0.301693140589569},{"gcamCode":"v11.1","gcamValue":-0.0010004279959718},{"gcamCode":"v19.1","gcamValue":5.48863636363637},{"gcamCode":"v19.2","gcamValue":5.35352272727272},{"gcamCode":"v19.3","gcamValue":5.12488636363636},{"gcamCode":"v19.4","gcamValue":5.51306818181818},{"gcamCode":"v19.5","gcamValue":5.19295454545455},{"gcamCode":"v19.6","gcamValue":5.27590909090909},{"gcamCode":"v19.7","gcamValue":5.46238636363636},{"gcamCode":"v19.8","gcamValue":5.51431818181818},{"gcamCode":"v19.9","gcamValue":4.97977272727273},{"gcamCode":"v20.1","gcamValue":0.4628},{"gcamCode":"v20.10","gcamValue":-0.743},{"gcamCode":"v20.11","gcamValue":0.552083333333333},{"gcamCode":"v20.12","gcamValue":-0.698818181818182},{"gcamCode":"v20.13","gcamValue":0.393066666666667},{"gcamCode":"v20.14","gcamValue":-0.522173913043478},{"gcamCode":"v20.15","gcamValue":0.334173333333333},{"gcamCode":"v20.16","gcamValue":-0.396585365853659},{"gcamCode":"v20.3","gcamValue":0.527},{"gcamCode":"v20.4","gcamValue":-0.645666666666667},{"gcamCode":"v20.5","gcamValue":0.585},{"gcamCode":"v20.6","gcamValue":-0.73425},{"gcamCode":"v20.7","gcamValue":0.585},{"gcamCode":"v20.8","gcamValue":-0.743},{"gcamCode":"v20.9","gcamValue":0.578125},{"gcamCode":"v21.1","gcamValue":5.2602033271719},{"gcamCode":"v26.1","gcamValue":-0.619298245614035}]https://www.gannett-cdn.com/-mm-/15c2ce3e0bbadba03bbcdc762ff5c40c4a915fec/c=0-29-580-355/local/-/media/2017/07/21/USATODAY/usatsports/196-animal-free-meat_large.jpg?&fit=crop[""][""]["https://youtube.com/vrtuallythere","https://youtube.com/vrtuallythere\\"][{"charLength":34,"verb":"","quote":"America most lethal xA0 ; animal","charOffset":3427}][{"name":"Insurance Institute","charOffset":864},{"name":"Highway Safety","charOffset":883},{"name":"Missouri Department","charOffset":1265},{"name":"Springfield News-Leader","charOffset":1319},{"name":"Disease Control","charOffset":1676},{"name":"Trauma Surgery","charOffset":2021},{"name":"Acute Care Open","charOffset":2039},{"name":"North Carolina Department","charOffset":2754},{"name":"Human Services","charOffset":2783},{"name":"Indiana University","charOffset":3396},{"name":"Richard Gunderman","charOffset":3697}][{"amount":45,"amountType":"rattlesnakes","charOffset":102},{"amount":5,"amountType":"animals deserve just","charOffset":513},{"amount":211,"amountType":"people died","charOffset":739},{"amount":1000000,"amountType":"emergency room visits between","charOffset":1529},{"amount":1,"amountType":"deaths occurred for every","charOffset":1660},{"amount":350,"amountType":"fatalities between 1992","charOffset":2287},{"amount":2,"amountType":"of the ways","charOffset":2410},{"amount":100,"amountType":"American deaths","charOffset":2886},{"amount":2000000,"amountType":"Americans","charOffset":3176}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://theconversation.com/americas-most-lethal-animal-45989;https://www.cdc.gov/features/dog-bite-prevention/;https://www.iihs.org/iihs/topics/t/roadway-and-environment/fatalityfacts/fixed-object-crashes;https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6307625/;https://www.rgj.com/story/news/2019/02/14/chronic-wasting-disease-iowa-deer-what-know-zombie-ailment-human-cases-contaminated-meat/2872682002/;https://www.rgj.com/story/news/local/ozarks/2015/01/30/hey-answer-man-many-deer-run-traffic/22586653/;https://www.rgj.com/story/news/nation-now/2018/08/24/yellowstone-bear-attack-mother-grizzly-charges-chases-10-year-old/1087722002/;https://www.rgj.com/story/news/nation/2019/04/01/huge-florida-alligator-750-pounds-12-feet/3329636002/;https://www.rgj.com/story/news/nation/2019/04/06/17-foot-long-python-found-floridas-big-cypress-national-preserve/3388358002/;https://www.rgj.com/story/news/nation/2019/04/08/epigmenio-gonzalez-dies-after-numerous-bees-sting-him-arizona/3401833002/;...
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBkugn.comhttp://www.kugn.com/news/mario-batali-faces-criminal-charge-in-alleged-boston-groping-incident/[][]["TAX_FNCACT","TAX_FNCACT_CHEF","TAX_FNCACT_CRIMINAL","TAX_FNCACT_WOMAN","UNGP_CRIME_VIOLENCE","TRIAL","TAX_FNCACT_ATTORNEY","TAX_FNCACT_DISTRICT_ATTORNEY","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","TAX_FNCACT_WOMEN","SOC_EXPRESSREGRET","RAPE","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE"][{"theme":"TAX_FNCACT_WOMEN","charOffset":1650},{"theme":"TAX_FNCACT_WOMAN","charOffset":94},{"theme":"TAX_FNCACT_WOMAN","charOffset":858},{"theme":"TAX_FNCACT_WOMAN","charOffset":956},{"theme":"TAX_FNCACT_CHEF","charOffset":14},{"theme":"TAX_FNCACT_CHEF","charOffset":422},{"theme":"TAX_FNCACT_CHEF","charOffset":1702},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":174},{"theme":"TRIAL","charOffset":366},{"theme":"TRIAL","charOffset":555},{"theme":"TRIAL","charOffset":706},{"theme":"TRIAL","charOffset":1511},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":366},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":555},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":706},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":1511},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":2395},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":2395},{"theme":"WB_840_JUSTICE","charOffset":2395},{"theme":"WB_2025_INVESTIGATION","charOffset":2395},{"theme":"WB_831_GOVERNANCE","charOffset":2395},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":2395},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":2395},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":48},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":366},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":555},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":706},{"theme":"RAPE","charOffset":2351},{"theme":"SECURITY_SERVICES","charOffset":2381},{"theme":"TAX_FNCACT_POLICE","charOffset":2381},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2381},{"theme":"LEGISLATION","charOffset":578},{"theme":"EPU_POLICY_LAW","charOffset":578},{"theme":"SOC_EXPRESSREGRET","charOffset":1869}][{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"}][{"location":{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"},"charOffset":333},{"location":{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"},"charOffset":522},{"location":{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"},"charOffset":673},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":65},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":260},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":470},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":833},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":931},{"location":{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},"charOffset":284},{"location":{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},"charOffset":1011}]["mario batali"][{"person":"Mario Batali","charOffset":27}]["boston municipal court","suffolk county district attorney office","cnn","food network"][{"organisation":"Cnn","charOffset":865},{"organisation":"Cnn","charOffset":1830},{"organisation":"Cnn","charOffset":1938},{"organisation":"Food Network","charOffset":2176}]{"tone":-6.1381073,"positiveScore":1.0230179,"negativeScore":7.161125,"polarity":8.184143,"activityReferenceDensity":18.92583,"selfGroupReferenceDensity":0,"wordCount":370}[][{"gcamCode":"wc","gcamValue":370},{"gcamCode":"c12.1","gcamValue":25},{"gcamCode":"c12.10","gcamValue":25},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":8},{"gcamCode":"c12.3","gcamValue":13},{"gcamCode":"c12.4","gcamValue":7},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":24},{"gcamCode":"c12.8","gcamValue":12},{"gcamCode":"c12.9","gcamValue":13},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.3","gcamValue":2},{"gcamCode":"c13.9","gcamValue":2},{"gcamCode":"c14.1","gcamValue":20},{"gcamCode":"c14.10","gcamValue":9},{"gcamCode":"c14.11","gcamValue":25},{"gcamCode":"c14.2","gcamValue":18},{"gcamCode":"c14.3","gcamValue":19},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":39},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":7},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.107","gcamValue":2},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.198","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.220","gcamValue":2},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":3},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.234","gcamValue":1},{"gcamCode":"c15.239","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.29","gcamValue":3},{"gcamCode":"c15.32","gcamValue":2},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":3},{"gcamCode":"c15.47","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":3},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.81","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":2},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":15},{"gcamCode":"c16.109","gcamValue":18},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":55},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":36},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":7},{"gcamCode":"c16.117","gcamValue":13},{"gcamCode":"c16.118","gcamValue":21},{"gcamCode":"c16.12","gcamValue":24},{"gcamCode":"c16.120","gcamValue":10},{"gcamCode":"c16.121","gcamValue":24},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":22},{"gcamCode":"c16.126","gcamValue":14},{"gcamCode":"c16.127","gcamValue":28},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":32},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":8},{"gcamCode":"c16.131","gcamValue":16},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":38},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.138","gcamValue":11},{"gcamCode":"c16.139","gcamValue":13},{"gcamCode":"c16.140","gcamValue":25},{"gcamCode":"c16.145","gcamValue":24},{"gcamCode":"c16.146","gcamValue":14},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":20},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.159","gcamValue":26},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":31},{"gcamCode":"c16.162","gcamValue":23},{"gcamCode":"c16.163","gcamValue":19},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.167","gcamValue":2},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":3},{"gcamCode":"c16.19","gcamValue":8},{"gcamCode":"c16.2","gcamValue":35},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":4},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":5},{"gcamCode":"c16.26","gcamValue":33},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":31},{"gcamCode":"c16.32","gcamValue":6},{"gcamCode":"c16.33","gcamValue":28},{"gcamCode":"c16.35","gcamValue":17},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":37},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.4","gcamValue":28},{"gcamCode":"c16.41","gcamValue":13},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":15},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":45},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":26},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":183},{"gcamCode":"c16.58","gcamValue":23},{"gcamCode":"c16.6","gcamValue":48},{"gcamCode":"c16.60","gcamValue":4},{"gcamCode":"c16.62","gcamValue":13},{"gcamCode":"c16.63","gcamValue":3},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":4},{"gcamCode":"c16.66","gcamValue":12},{"gcamCode":"c16.68","gcamValue":16},{"gcamCode":"c16.69","gcamValue":14},{"gcamCode":"c16.7","gcamValue":4},{"gcamCode":"c16.70","gcamValue":20},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":13},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":10},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":20},{"gcamCode":"c16.85","gcamValue":4},{"gcamCode":"c16.87","gcamValue":50},{"gcamCode":"c16.88","gcamValue":46},{"gcamCode":"c16.89","gcamValue":14},{"gcamCode":"c16.90","gcamValue":10},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":32},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":23},{"gcamCode":"c16.95","gcamValue":20},{"gcamCode":"c16.96","gcamValue":10},{"gcamCode":"c16.98","gcamValue":24},{"gcamCode":"c16.99","gcamValue":3},{"gcamCode":"c17.1","gcamValue":97},{"gcamCode":"c17.10","gcamValue":32},{"gcamCode":"c17.11","gcamValue":63},{"gcamCode":"c17.12","gcamValue":10},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":25},{"gcamCode":"c17.16","gcamValue":17},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":4},{"gcamCode":"c17.19","gcamValue":31},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":4},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":38},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":32},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":5},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":17},{"gcamCode":"c17.34","gcamValue":9},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":11},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":4},{"gcamCode":"c17.39","gcamValue":9},{"gcamCode":"c17.4","gcamValue":83},{"gcamCode":"c17.40","gcamValue":5},{"gcamCode":"c17.41","gcamValue":17},{"gcamCode":"c17.42","gcamValue":24},{"gcamCode":"c17.43","gcamValue":17},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":81},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":47},{"gcamCode":"c17.8","gcamValue":33},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c18.115","gcamValue":1},{"gcamCode":"c18.137","gcamValue":7},{"gcamCode":"c18.193","gcamValue":16},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.278","gcamValue":2},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c2.1","gcamValue":11},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":9},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":34},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.112","gcamValue":4},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":15},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":12},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.119","gcamValue":98},{"gcamCode":"c2.12","gcamValue":13},{"gcamCode":"c2.121","gcamValue":17},{"gcamCode":"c2.122","gcamValue":17},{"gcamCode":"c2.125","gcamValue":9},{"gcamCode":"c2.126","gcamValue":19},{"gcamCode":"c2.127","gcamValue":29},{"gcamCode":"c2.128","gcamValue":19},{"gcamCode":"c2.129","gcamValue":27},{"gcamCode":"c2.132","gcamValue":7},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":25},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.143","gcamValue":29},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":58},{"gcamCode":"c2.148","gcamValue":29},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":9},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":7},{"gcamCode":"c2.154","gcamValue":8},{"gcamCode":"c2.155","gcamValue":28},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":24},{"gcamCode":"c2.158","gcamValue":22},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.16","gcamValue":2},{"gcamCode":"c2.160","gcamValue":6},{"gcamCode":"c2.162","gcamValue":6},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":7},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":25},{"gcamCode":"c2.179","gcamValue":11},{"gcamCode":"c2.18","gcamValue":13},{"gcamCode":"c2.180","gcamValue":13},{"gcamCode":"c2.181","gcamValue":13},{"gcamCode":"c2.183","gcamValue":13},{"gcamCode":"c2.185","gcamValue":60},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":20},{"gcamCode":"c2.188","gcamValue":2},{"gcamCode":"c2.189","gcamValue":2},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":7},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":25},{"gcamCode":"c2.195","gcamValue":19},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":34},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.203","gcamValue":25},{"gcamCode":"c2.204","gcamValue":32},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":4},{"gcamCode":"c2.21","gcamValue":4},{"gcamCode":"c2.210","gcamValue":32},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":6},{"gcamCode":"c2.214","gcamValue":7},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":6},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.225","gcamValue":7},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":23},{"gcamCode":"c2.26","gcamValue":8},{"gcamCode":"c2.27","gcamValue":8},{"gcamCode":"c2.30","gcamValue":16},{"gcamCode":"c2.31","gcamValue":14},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":20},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":19},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":53},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.44","gcamValue":17},{"gcamCode":"c2.45","gcamValue":19},{"gcamCode":"c2.46","gcamValue":29},{"gcamCode":"c2.47","gcamValue":4},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":24},{"gcamCode":"c2.54","gcamValue":26},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":11},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":14},{"gcamCode":"c2.63","gcamValue":1},{"gcamCode":"c2.64","gcamValue":14},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.69","gcamValue":11},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":11},{"gcamCode":"c2.75","gcamValue":51},{"gcamCode":"c2.76","gcamValue":226},{"gcamCode":"c2.77","gcamValue":34},{"gcamCode":"c2.78","gcamValue":43},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.80","gcamValue":31},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":8},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":10},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":14},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":52},{"gcamCode":"c2.97","gcamValue":10},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c2.99","gcamValue":8},{"gcamCode":"c25.10","gcamValue":2},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.5","gcamValue":11},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":27},{"gcamCode":"c3.2","gcamValue":27},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.20","gcamValue":16},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":12},{"gcamCode":"c35.31","gcamValue":9},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":29},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":5},{"gcamCode":"c39.16","gcamValue":1},{"gcamCode":"c39.17","gcamValue":4},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":4},{"gcamCode":"c39.3","gcamValue":18},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":15},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c39.39","gcamValue":7},{"gcamCode":"c39.4","gcamValue":18},{"gcamCode":"c39.41","gcamValue":7},{"gcamCode":"c39.5","gcamValue":7},{"gcamCode":"c4.13","gcamValue":5},{"gcamCode":"c4.23","gcamValue":13},{"gcamCode":"c4.24","gcamValue":1},{"gcamCode":"c40.3","gcamValue":2},{"gcamCode":"c40.5","gcamValue":2},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":32},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":59},{"gcamCode":"c5.13","gcamValue":6},{"gcamCode":"c5.14","gcamValue":3},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":11},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":4},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":23},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":12},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":37},{"gcamCode":"c5.43","gcamValue":5},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":57},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":37},{"gcamCode":"c5.50","gcamValue":30},{"gcamCode":"c5.51","gcamValue":34},{"gcamCode":"c5.52","gcamValue":47},{"gcamCode":"c5.53","gcamValue":34},{"gcamCode":"c5.54","gcamValue":12},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":15},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":19},{"gcamCode":"c5.60","gcamValue":18},{"gcamCode":"c5.61","gcamValue":30},{"gcamCode":"c5.62","gcamValue":158},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":22},{"gcamCode":"c6.1","gcamValue":15},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":24},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":20},{"gcamCode":"c7.2","gcamValue":10},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.19","gcamValue":2},{"gcamCode":"c8.2","gcamValue":7},{"gcamCode":"c8.20","gcamValue":4},{"gcamCode":"c8.21","gcamValue":4},{"gcamCode":"c8.23","gcamValue":7},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":13},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":8},{"gcamCode":"c8.43","gcamValue":6},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c8.9","gcamValue":2},{"gcamCode":"c9.1","gcamValue":13},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1004","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":7},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1009","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":5},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":3},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.107","gcamValue":3},{"gcamCode":"c9.109","gcamValue":5},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":7},{"gcamCode":"c9.128","gcamValue":20},{"gcamCode":"c9.129","gcamValue":5},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.137","gcamValue":4},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.139","gcamValue":3},{"gcamCode":"c9.140","gcamValue":4},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":8},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":2},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.198","gcamValue":6},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":6},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":4},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":6},{"gcamCode":"c9.247","gcamValue":4},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.260","gcamValue":3},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":4},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":3},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":13},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.34","gcamValue":5},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.341","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":8},{"gcamCode":"c9.385","gcamValue":11},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":5},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.400","gcamValue":2},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.406","gcamValue":1},{"gcamCode":"c9.411","gcamValue":1},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":4},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.447","gcamValue":3},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.48","gcamValue":6},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.487","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":11},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":5},{"gcamCode":"c9.513","gcamValue":4},{"gcamCode":"c9.518","gcamValue":3},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.534","gcamValue":2},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":8},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":14},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":3},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.642","gcamValue":6},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.653","gcamValue":19},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.671","gcamValue":4},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.701","gcamValue":6},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.723","gcamValue":4},{"gcamCode":"c9.724","gcamValue":12},{"gcamCode":"c9.725","gcamValue":3},{"gcamCode":"c9.726","gcamValue":13},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":13},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.735","gcamValue":4},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":10},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":13},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":20},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.788","gcamValue":4},{"gcamCode":"c9.790","gcamValue":3},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.829","gcamValue":2},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":13},{"gcamCode":"c9.865","gcamValue":5},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":13},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.876","gcamValue":2},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.914","gcamValue":4},{"gcamCode":"c9.915","gcamValue":3},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.924","gcamValue":3},{"gcamCode":"c9.925","gcamValue":3},{"gcamCode":"c9.926","gcamValue":5},{"gcamCode":"c9.935","gcamValue":7},{"gcamCode":"c9.936","gcamValue":2},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.954","gcamValue":2},{"gcamCode":"c9.955","gcamValue":4},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":5},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.979","gcamValue":5},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":4},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.266007834757835},{"gcamCode":"v10.2","gcamValue":0.27020474137931},{"gcamCode":"v11.1","gcamValue":-0.0106035767790262},{"gcamCode":"v19.1","gcamValue":5.18575757575758},{"gcamCode":"v19.2","gcamValue":5.21818181818182},{"gcamCode":"v19.3","gcamValue":4.94121212121212},{"gcamCode":"v19.4","gcamValue":5.28363636363637},{"gcamCode":"v19.5","gcamValue":5.1469696969697},{"gcamCode":"v19.6","gcamValue":5.1330303030303},{"gcamCode":"v19.7","gcamValue":5.1039393939394},{"gcamCode":"v19.8","gcamValue":5.31757575757576},{"gcamCode":"v19.9","gcamValue":4.76},{"gcamCode":"v20.10","gcamValue":-0.4375},{"gcamCode":"v20.11","gcamValue":0.666666666666667},{"gcamCode":"v20.12","gcamValue":-0.464285714285714},{"gcamCode":"v20.13","gcamValue":0.402736842105263},{"gcamCode":"v20.14","gcamValue":-0.3978},{"gcamCode":"v20.15","gcamValue":0.353642857142857},{"gcamCode":"v20.16","gcamValue":-0.35045},{"gcamCode":"v20.2","gcamValue":-0.5},{"gcamCode":"v20.4","gcamValue":-0.4375},{"gcamCode":"v20.5","gcamValue":1},{"gcamCode":"v20.6","gcamValue":-0.4375},{"gcamCode":"v20.7","gcamValue":1},{"gcamCode":"v20.8","gcamValue":-0.4375},{"gcamCode":"v20.9","gcamValue":1},{"gcamCode":"v21.1","gcamValue":5.31089230769231},{"gcamCode":"v26.1","gcamValue":0.0515151515151516}][""][""][""][][{"name":"Mario Batali","charOffset":28},{"name":"Back Bay","charOffset":276},{"name":"Suffolk County District Attorney","charOffset":331},{"name":"Boston Municipal Court","charOffset":451},{"name":"Suffolk County District Attorney","charOffset":493},{"name":"Suffolk County District Attorney","charOffset":628},{"name":"Natali Tene","charOffset":877},{"name":"Back Bay","charOffset":920},{"name":"Food Network","charOffset":2154}][{"amount":2,"amountType":"decades","charOffset":1398}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://money.cnn.com/2017/12/11/media/mario-batali-sexual-misconduct-allegations/;https://www.cnn.com/2018/05/21/celebrities/nypd-investigating-mario-batali/;https://www.cnn.com/2018/08/24/entertainment/mario-batali-sexual-assault-lawsuit/</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":4}2019-05-23T12:15:00.000+0000WEBiheart.comhttps://xl93.iheart.com/content/2019-05-23-trending-thur-52319-technology-frustrations-that-annoy-us-the-most/[][]["TAX_ETHNICITY","TAX_ETHNICITY_AMERICANS","UNGP_FORESTS_RIVERS_OCEANS","CRISISLEX_C07_SAFETY"][{"theme":"CRISISLEX_C07_SAFETY","charOffset":831},{"theme":"TAX_ETHNICITY_AMERICANS","charOffset":119},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":673}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}][{"location":{"geoType":"COUNTRY","geoName":"Americans","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":119}][""][][""][]{"tone":-7.5581393,"positiveScore":0,"negativeScore":7.5581393,"polarity":7.5581393,"activityReferenceDensity":15.116279,"selfGroupReferenceDensity":4.6511626,"wordCount":136}[][{"gcamCode":"wc","gcamValue":136},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":9},{"gcamCode":"c12.10","gcamValue":16},{"gcamCode":"c12.12","gcamValue":8},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":9},{"gcamCode":"c12.7","gcamValue":14},{"gcamCode":"c12.8","gcamValue":5},{"gcamCode":"c12.9","gcamValue":3},{"gcamCode":"c14.1","gcamValue":5},{"gcamCode":"c14.10","gcamValue":10},{"gcamCode":"c14.11","gcamValue":18},{"gcamCode":"c14.2","gcamValue":10},{"gcamCode":"c14.3","gcamValue":10},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":14},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.107","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.122","gcamValue":4},{"gcamCode":"c15.138","gcamValue":1},{"gcamCode":"c15.18","gcamValue":7},{"gcamCode":"c15.197","gcamValue":3},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.22","gcamValue":3},{"gcamCode":"c15.23","gcamValue":3},{"gcamCode":"c15.233","gcamValue":2},{"gcamCode":"c15.251","gcamValue":2},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.4","gcamValue":3},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.69","gcamValue":3},{"gcamCode":"c15.80","gcamValue":3},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.86","gcamValue":3},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":6},{"gcamCode":"c16.100","gcamValue":2},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":7},{"gcamCode":"c16.11","gcamValue":4},{"gcamCode":"c16.110","gcamValue":15},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":5},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":3},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":8},{"gcamCode":"c16.12","gcamValue":13},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":2},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":4},{"gcamCode":"c16.125","gcamValue":11},{"gcamCode":"c16.126","gcamValue":14},{"gcamCode":"c16.127","gcamValue":10},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":18},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":7},{"gcamCode":"c16.134","gcamValue":11},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":4},{"gcamCode":"c16.140","gcamValue":4},{"gcamCode":"c16.145","gcamValue":6},{"gcamCode":"c16.146","gcamValue":9},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":9},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.159","gcamValue":16},{"gcamCode":"c16.16","gcamValue":5},{"gcamCode":"c16.161","gcamValue":8},{"gcamCode":"c16.162","gcamValue":5},{"gcamCode":"c16.163","gcamValue":8},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":3},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":6},{"gcamCode":"c16.26","gcamValue":9},{"gcamCode":"c16.27","gcamValue":4},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":13},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":10},{"gcamCode":"c16.35","gcamValue":4},{"gcamCode":"c16.37","gcamValue":7},{"gcamCode":"c16.38","gcamValue":10},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":4},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":4},{"gcamCode":"c16.46","gcamValue":2},{"gcamCode":"c16.47","gcamValue":23},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":7},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":3},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":75},{"gcamCode":"c16.58","gcamValue":8},{"gcamCode":"c16.6","gcamValue":12},{"gcamCode":"c16.62","gcamValue":4},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":5},{"gcamCode":"c16.68","gcamValue":9},{"gcamCode":"c16.69","gcamValue":4},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":3},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.74","gcamValue":4},{"gcamCode":"c16.75","gcamValue":4},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":5},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":7},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":14},{"gcamCode":"c16.88","gcamValue":16},{"gcamCode":"c16.89","gcamValue":2},{"gcamCode":"c16.90","gcamValue":8},{"gcamCode":"c16.91","gcamValue":8},{"gcamCode":"c16.92","gcamValue":10},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":16},{"gcamCode":"c16.95","gcamValue":8},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":11},{"gcamCode":"c17.1","gcamValue":36},{"gcamCode":"c17.10","gcamValue":17},{"gcamCode":"c17.11","gcamValue":18},{"gcamCode":"c17.12","gcamValue":6},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":5},{"gcamCode":"c17.16","gcamValue":6},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.19","gcamValue":4},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.24","gcamValue":9},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":17},{"gcamCode":"c17.29","gcamValue":10},{"gcamCode":"c17.30","gcamValue":5},{"gcamCode":"c17.31","gcamValue":10},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":5},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.38","gcamValue":9},{"gcamCode":"c17.39","gcamValue":5},{"gcamCode":"c17.4","gcamValue":33},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":5},{"gcamCode":"c17.42","gcamValue":5},{"gcamCode":"c17.43","gcamValue":2},{"gcamCode":"c17.5","gcamValue":29},{"gcamCode":"c17.7","gcamValue":24},{"gcamCode":"c17.8","gcamValue":11},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.352","gcamValue":2},{"gcamCode":"c2.1","gcamValue":6},{"gcamCode":"c2.10","gcamValue":2},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.102","gcamValue":6},{"gcamCode":"c2.104","gcamValue":26},{"gcamCode":"c2.107","gcamValue":5},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.114","gcamValue":12},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":9},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":31},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":12},{"gcamCode":"c2.122","gcamValue":4},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":8},{"gcamCode":"c2.125","gcamValue":15},{"gcamCode":"c2.126","gcamValue":5},{"gcamCode":"c2.127","gcamValue":16},{"gcamCode":"c2.129","gcamValue":3},{"gcamCode":"c2.132","gcamValue":1},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.14","gcamValue":7},{"gcamCode":"c2.143","gcamValue":2},{"gcamCode":"c2.144","gcamValue":7},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":15},{"gcamCode":"c2.148","gcamValue":22},{"gcamCode":"c2.149","gcamValue":4},{"gcamCode":"c2.15","gcamValue":10},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.153","gcamValue":8},{"gcamCode":"c2.154","gcamValue":1},{"gcamCode":"c2.155","gcamValue":7},{"gcamCode":"c2.156","gcamValue":2},{"gcamCode":"c2.157","gcamValue":5},{"gcamCode":"c2.158","gcamValue":11},{"gcamCode":"c2.159","gcamValue":5},{"gcamCode":"c2.160","gcamValue":9},{"gcamCode":"c2.173","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":4},{"gcamCode":"c2.179","gcamValue":10},{"gcamCode":"c2.18","gcamValue":4},{"gcamCode":"c2.180","gcamValue":4},{"gcamCode":"c2.181","gcamValue":6},{"gcamCode":"c2.183","gcamValue":6},{"gcamCode":"c2.185","gcamValue":29},{"gcamCode":"c2.186","gcamValue":7},{"gcamCode":"c2.187","gcamValue":6},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":7},{"gcamCode":"c2.195","gcamValue":11},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":14},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":4},{"gcamCode":"c2.204","gcamValue":15},{"gcamCode":"c2.205","gcamValue":7},{"gcamCode":"c2.206","gcamValue":5},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":8},{"gcamCode":"c2.210","gcamValue":9},{"gcamCode":"c2.213","gcamValue":4},{"gcamCode":"c2.214","gcamValue":1},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":2},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.225","gcamValue":5},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.228","gcamValue":2},{"gcamCode":"c2.23","gcamValue":1},{"gcamCode":"c2.25","gcamValue":8},{"gcamCode":"c2.26","gcamValue":5},{"gcamCode":"c2.27","gcamValue":5},{"gcamCode":"c2.30","gcamValue":6},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":4},{"gcamCode":"c2.34","gcamValue":9},{"gcamCode":"c2.35","gcamValue":7},{"gcamCode":"c2.36","gcamValue":1},{"gcamCode":"c2.37","gcamValue":6},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":29},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.43","gcamValue":2},{"gcamCode":"c2.44","gcamValue":6},{"gcamCode":"c2.45","gcamValue":7},{"gcamCode":"c2.46","gcamValue":10},{"gcamCode":"c2.47","gcamValue":4},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":3},{"gcamCode":"c2.52","gcamValue":9},{"gcamCode":"c2.54","gcamValue":11},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":4},{"gcamCode":"c2.64","gcamValue":4},{"gcamCode":"c2.65","gcamValue":7},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.73","gcamValue":5},{"gcamCode":"c2.75","gcamValue":19},{"gcamCode":"c2.76","gcamValue":86},{"gcamCode":"c2.77","gcamValue":5},{"gcamCode":"c2.78","gcamValue":21},{"gcamCode":"c2.79","gcamValue":8},{"gcamCode":"c2.80","gcamValue":19},{"gcamCode":"c2.82","gcamValue":6},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":5},{"gcamCode":"c2.86","gcamValue":4},{"gcamCode":"c2.88","gcamValue":5},{"gcamCode":"c2.89","gcamValue":5},{"gcamCode":"c2.90","gcamValue":5},{"gcamCode":"c2.93","gcamValue":3},{"gcamCode":"c2.95","gcamValue":29},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c3.1","gcamValue":12},{"gcamCode":"c3.2","gcamValue":3},{"gcamCode":"c35.15","gcamValue":7},{"gcamCode":"c35.20","gcamValue":1},{"gcamCode":"c35.31","gcamValue":8},{"gcamCode":"c35.32","gcamValue":7},{"gcamCode":"c35.33","gcamValue":1},{"gcamCode":"c35.5","gcamValue":6},{"gcamCode":"c35.7","gcamValue":2},{"gcamCode":"c39.11","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":5},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":12},{"gcamCode":"c39.31","gcamValue":1},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":11},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c39.6","gcamValue":2},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.18","gcamValue":4},{"gcamCode":"c4.23","gcamValue":4},{"gcamCode":"c4.5","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":4},{"gcamCode":"c5.10","gcamValue":9},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":23},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.23","gcamValue":1},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":7},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.34","gcamValue":7},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":9},{"gcamCode":"c5.40","gcamValue":14},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":8},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.46","gcamValue":15},{"gcamCode":"c5.47","gcamValue":4},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":11},{"gcamCode":"c5.50","gcamValue":13},{"gcamCode":"c5.51","gcamValue":5},{"gcamCode":"c5.52","gcamValue":14},{"gcamCode":"c5.53","gcamValue":14},{"gcamCode":"c5.54","gcamValue":6},{"gcamCode":"c5.57","gcamValue":2},{"gcamCode":"c5.58","gcamValue":8},{"gcamCode":"c5.6","gcamValue":4},{"gcamCode":"c5.60","gcamValue":10},{"gcamCode":"c5.61","gcamValue":16},{"gcamCode":"c5.62","gcamValue":65},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":3},{"gcamCode":"c5.9","gcamValue":13},{"gcamCode":"c6.4","gcamValue":9},{"gcamCode":"c7.1","gcamValue":16},{"gcamCode":"c7.2","gcamValue":4},{"gcamCode":"c8.10","gcamValue":5},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.4","gcamValue":4},{"gcamCode":"c8.42","gcamValue":2},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c9.1","gcamValue":4},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":1},{"gcamCode":"c9.111","gcamValue":5},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":2},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.122","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.134","gcamValue":2},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":3},{"gcamCode":"c9.143","gcamValue":3},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.165","gcamValue":1},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.17","gcamValue":1},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.233","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":4},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":6},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":3},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.498","gcamValue":2},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.511","gcamValue":3},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.532","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":4},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.62","gcamValue":5},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":1},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.65","gcamValue":3},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":5},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":6},{"gcamCode":"c9.730","gcamValue":5},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.748","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.762","gcamValue":4},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.767","gcamValue":6},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.846","gcamValue":2},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.864","gcamValue":4},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":4},{"gcamCode":"c9.869","gcamValue":3},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.921","gcamValue":3},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.979","gcamValue":1},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.265625},{"gcamCode":"v10.2","gcamValue":0.30005787037037},{"gcamCode":"v11.1","gcamValue":0.06577025},{"gcamCode":"v19.1","gcamValue":4.73866666666667},{"gcamCode":"v19.2","gcamValue":5.31},{"gcamCode":"v19.3","gcamValue":4.93333333333333},{"gcamCode":"v19.4","gcamValue":4.91},{"gcamCode":"v19.5","gcamValue":5.26666666666666},{"gcamCode":"v19.6","gcamValue":5.05},{"gcamCode":"v19.7","gcamValue":4.69333333333333},{"gcamCode":"v19.8","gcamValue":5.286},{"gcamCode":"v19.9","gcamValue":4.77066666666667},{"gcamCode":"v20.1","gcamValue":0.281},{"gcamCode":"v20.10","gcamValue":-0.551833333333334},{"gcamCode":"v20.11","gcamValue":0.427},{"gcamCode":"v20.12","gcamValue":-0.551833333333334},{"gcamCode":"v20.13","gcamValue":0.385444444444444},{"gcamCode":"v20.14","gcamValue":-0.447222222222222},{"gcamCode":"v20.15","gcamValue":0.351583333333333},{"gcamCode":"v20.16","gcamValue":-0.447222222222222},{"gcamCode":"v20.2","gcamValue":-0.562},{"gcamCode":"v20.3","gcamValue":0.281},{"gcamCode":"v20.4","gcamValue":-0.551833333333334},{"gcamCode":"v20.5","gcamValue":0.281},{"gcamCode":"v20.6","gcamValue":-0.551833333333334},{"gcamCode":"v20.7","gcamValue":0.281},{"gcamCode":"v20.8","gcamValue":-0.551833333333334},{"gcamCode":"v20.9","gcamValue":0.281},{"gcamCode":"v21.1","gcamValue":5.30508474576272},{"gcamCode":"v26.1","gcamValue":-1.11666666666667}]https://i.iheart.com/v3/re/new_assets/5cc9792a72c184339c0dbfe9[""][""][""][][{"name":"Least Once","charOffset":54},{"name":"Top Things That Annoy","charOffset":101}][{"amount":5,"amountType":"times a day","charOffset":198},{"amount":10,"amountType":"tech issues","charOffset":349}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523105700</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBstamfordadvocate.comhttps://www.stamfordadvocate.com/news/article/US-storms-lead-to-deaths-evacuations-amid-13877996.php[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T02_INJURED","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2},{"count":{"countType":"CRISISLEX_T02_INJURED","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":270},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1078},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1078},{"count":{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2913},{"count":{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2913},{"count":{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}},"charOffset":4724}]["KILL","CRISISLEX_CRISISLEXREC","CRISISLEX_T02_INJURED","CRISISLEX_T03_DEAD","EPU_CATS_MIGRATION_FEAR_FEAR","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","WOUND","CRISISLEX_C03_WELLBEING_HEALTH","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","UNGP_CRIME_VIOLENCE","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","NATURAL_DISASTER_TORNADOES","NATURAL_DISASTER_TORRENTIAL_RAINS","TAX_FNCACT_SHERIFF","TAX_DISEASE","TAX_DISEASE_SHINGLES","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITALS","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","TAX_FNCACT_SPOKESWOMAN","GENERAL_HEALTH","SOC_POINTSOFINTEREST_HEALTH_CENTER","SHORTAGE","MANMADE_DISASTER","MANMADE_DISASTER_POWER_OUTAGES","POWER_OUTAGE","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","MANMADE_DISASTER_IMPLIED","NATURAL_DISASTER_TWISTER","SOC_POINTSOFINTEREST_AIRPORT","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_1804_AIRPORTS","MARITIME_INCIDENT","MARITIME","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_KANSAS","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_OFFICIALS","GOV_LOCALGOV","EVACUATION","CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","TAX_FNCACT_OFFICIAL","MEDIA_SOCIAL","AFFECT","NATURAL_DISASTER_DAM_BREAKS","MEDIA_MSM","TAX_FNCACT_WOMAN","NATURAL_DISASTER_HEAVY_RAIN","TRAFFIC","ROAD_INCIDENT","MANMADE_DISASTER_TRAFFIC_ACCIDENT","SOC_TRAFFICACCIDENT","WB_168_ROADS_AND_HIGHWAYS","WB_1809_HIGHWAYS","NATURAL_DISASTER_DROWNED","TAX_FNCACT_EXAMINER","TAX_FNCACT_MEDICAL_EXAMINER"][{"theme":"SHORTAGE","charOffset":2134},{"theme":"TAX_FNCACT_WOMAN","charOffset":4571},{"theme":"TAX_FNCACT_WOMAN","charOffset":4973},{"theme":"TAX_FNCACT_WOMAN","charOffset":5136},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2624},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2667},{"theme":"SOC_POINTSOFINTEREST_HEALTH_CENTER","charOffset":2117},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":317},{"theme":"EVACUATION","charOffset":3670},{"theme":"CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","charOffset":3670},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":3206},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":3489},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":4475},{"theme":"TAX_FNCACT_SHERIFF","charOffset":1782},{"theme":"KILL","charOffset":18},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":18},{"theme":"CRISISLEX_T02_INJURED","charOffset":18},{"theme":"CRISISLEX_T03_DEAD","charOffset":18},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":192},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":192},{"theme":"WOUND","charOffset":824},{"theme":"WOUND","charOffset":1239},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":824},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1239},{"theme":"MANMADE_DISASTER_POWER_OUTAGES","charOffset":2134},{"theme":"POWER_OUTAGE","charOffset":2134},{"theme":"MARITIME_INCIDENT","charOffset":3258},{"theme":"MARITIME_INCIDENT","charOffset":3837},{"theme":"MARITIME_INCIDENT","charOffset":3923},{"theme":"MARITIME_INCIDENT","charOffset":4096},{"theme":"MARITIME","charOffset":3258},{"theme":"MARITIME","charOffset":3837},{"theme":"MARITIME","charOffset":3923},{"theme":"MARITIME","charOffset":4096},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":1101},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":2195},{"theme":"AFFECT","charOffset":3870},{"theme":"NATURAL_DISASTER_DAM_BREAKS","charOffset":3997},{"theme":"SECURITY_SERVICES","charOffset":1351},{"theme":"TAX_FNCACT_POLICE","charOffset":1351},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1351},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":3780},{"theme":"TRAFFIC","charOffset":4826},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":2267},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":2267},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":4953},{"theme":"WB_1809_HIGHWAYS","charOffset":4953},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":4761},{"theme":"GOV_LOCALGOV","charOffset":3639},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":1626},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":3142},{"theme":"TAX_FNCACT_EXAMINER","charOffset":5180},{"theme":"LEADER","charOffset":898},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":898},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":29},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":115},{"theme":"NATURAL_DISASTER_DROWNED","charOffset":4992},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1475},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":3429},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":4745},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1475},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":3429},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":4745},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":3520},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":4331},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":235},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":4505},{"theme":"TAX_FNCACT_MEDICAL_EXAMINER","charOffset":5180},{"theme":"MEDIA_SOCIAL","charOffset":3789},{"theme":"GENERAL_HEALTH","charOffset":2110},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":2846},{"theme":"MEDIA_MSM","charOffset":4135},{"theme":"ROAD_INCIDENT","charOffset":4835},{"theme":"MANMADE_DISASTER_TRAFFIC_ACCIDENT","charOffset":4835},{"theme":"SOC_TRAFFICACCIDENT","charOffset":4835},{"theme":"MEDICAL","charOffset":1919},{"theme":"SOC_POINTSOFINTEREST_HOSPITALS","charOffset":1919},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":37},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":123},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":417},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1549},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2859},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2948},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2996},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":4667},{"theme":"CRISISLEX_O01_WEATHER","charOffset":37},{"theme":"CRISISLEX_O01_WEATHER","charOffset":123},{"theme":"CRISISLEX_O01_WEATHER","charOffset":417},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1549},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2859},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2948},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2996},{"theme":"CRISISLEX_O01_WEATHER","charOffset":4667},{"theme":"SOC_POINTSOFINTEREST_AIRPORT","charOffset":3113},{"theme":"WB_135_TRANSPORT","charOffset":3113},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":3113},{"theme":"WB_1804_AIRPORTS","charOffset":3113},{"theme":"TAX_DISEASE_SHINGLES","charOffset":1844},{"theme":"WB_1428_INJURY","charOffset":2054},{"theme":"WB_1406_DISEASES","charOffset":2054},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":2054},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":2054},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":2091},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":5274},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":3639},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":4620},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1607},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2250},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2754},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":4414}][{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}][{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":3224},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":4609},{"location":{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},"charOffset":1297},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":1167},{"location":{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO001","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},"charOffset":4708},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":154},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":447},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":1329},{"location":{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO077","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"},"charOffset":4860},{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":3180},{"location":{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},"charOffset":4324},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":3206},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":3489},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":4475},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":1204},{"location":{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK109","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},"charOffset":5097},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":62},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":204},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":663},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1087},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2181},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2911},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":3235},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4310},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4466},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4733},{"location":{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},"charOffset":1759},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":3579},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":3884},{"location":{"geoType":"USSTATE","geoName":"Missourians, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1076},{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":3246},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3197},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3340},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3480},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3605},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":4455},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":4933},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5092},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5227},{"location":{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},"charOffset":3217},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":1260},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":3044}]["mike parson","jessica royston","austin thomson","keli cain","david williams"][{"person":"Mike Parson","charOffset":910},{"person":"Jessica Royston","charOffset":2077},{"person":"Austin Thomson","charOffset":2285},{"person":"Keli Cain","charOffset":5284},{"person":"David Williams","charOffset":1370}]["jefferson city police","mary health center","national weather service","facebook","oklahoma department of emergency management"][{"organisation":"Mary Health Center","charOffset":2117},{"organisation":"National Weather Service","charOffset":2709},{"organisation":"Facebook","charOffset":3789},{"organisation":"Oklahoma Department Of Emergency Management","charOffset":5262}]{"tone":-5.4545455,"positiveScore":1.25,"negativeScore":6.7045455,"polarity":7.9545455,"activityReferenceDensity":20.568182,"selfGroupReferenceDensity":0.22727273,"wordCount":816}[][{"gcamCode":"wc","gcamValue":816},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":40},{"gcamCode":"c12.10","gcamValue":68},{"gcamCode":"c12.12","gcamValue":36},{"gcamCode":"c12.13","gcamValue":20},{"gcamCode":"c12.14","gcamValue":18},{"gcamCode":"c12.3","gcamValue":20},{"gcamCode":"c12.4","gcamValue":7},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":51},{"gcamCode":"c12.8","gcamValue":25},{"gcamCode":"c12.9","gcamValue":29},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":8},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.3","gcamValue":9},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":41},{"gcamCode":"c14.10","gcamValue":35},{"gcamCode":"c14.11","gcamValue":80},{"gcamCode":"c14.2","gcamValue":42},{"gcamCode":"c14.3","gcamValue":44},{"gcamCode":"c14.4","gcamValue":10},{"gcamCode":"c14.5","gcamValue":87},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":2},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.45","gcamValue":1},{"gcamCode":"c15.48","gcamValue":2},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.58","gcamValue":3},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.64","gcamValue":1},{"gcamCode":"c15.69","gcamValue":5},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":25},{"gcamCode":"c16.101","gcamValue":6},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":5},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.109","gcamValue":40},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":111},{"gcamCode":"c16.111","gcamValue":18},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":42},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":31},{"gcamCode":"c16.117","gcamValue":32},{"gcamCode":"c16.118","gcamValue":50},{"gcamCode":"c16.12","gcamValue":67},{"gcamCode":"c16.120","gcamValue":39},{"gcamCode":"c16.121","gcamValue":65},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":40},{"gcamCode":"c16.126","gcamValue":40},{"gcamCode":"c16.127","gcamValue":48},{"gcamCode":"c16.128","gcamValue":7},{"gcamCode":"c16.129","gcamValue":112},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":8},{"gcamCode":"c16.131","gcamValue":25},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":86},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":15},{"gcamCode":"c16.139","gcamValue":22},{"gcamCode":"c16.140","gcamValue":34},{"gcamCode":"c16.141","gcamValue":2},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":4},{"gcamCode":"c16.145","gcamValue":47},{"gcamCode":"c16.146","gcamValue":48},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":2},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":26},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":17},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":54},{"gcamCode":"c16.16","gcamValue":11},{"gcamCode":"c16.161","gcamValue":78},{"gcamCode":"c16.162","gcamValue":62},{"gcamCode":"c16.163","gcamValue":64},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":8},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":25},{"gcamCode":"c16.2","gcamValue":69},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":20},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":80},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":10},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":53},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":75},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":30},{"gcamCode":"c16.36","gcamValue":9},{"gcamCode":"c16.37","gcamValue":58},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":58},{"gcamCode":"c16.41","gcamValue":25},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":27},{"gcamCode":"c16.46","gcamValue":13},{"gcamCode":"c16.47","gcamValue":70},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":5},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":50},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.55","gcamValue":12},{"gcamCode":"c16.56","gcamValue":12},{"gcamCode":"c16.57","gcamValue":452},{"gcamCode":"c16.58","gcamValue":39},{"gcamCode":"c16.6","gcamValue":81},{"gcamCode":"c16.60","gcamValue":4},{"gcamCode":"c16.62","gcamValue":24},{"gcamCode":"c16.63","gcamValue":10},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":11},{"gcamCode":"c16.68","gcamValue":37},{"gcamCode":"c16.69","gcamValue":22},{"gcamCode":"c16.7","gcamValue":16},{"gcamCode":"c16.70","gcamValue":91},{"gcamCode":"c16.71","gcamValue":29},{"gcamCode":"c16.72","gcamValue":9},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":24},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":34},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":8},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":5},{"gcamCode":"c16.84","gcamValue":30},{"gcamCode":"c16.85","gcamValue":4},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":66},{"gcamCode":"c16.88","gcamValue":114},{"gcamCode":"c16.89","gcamValue":18},{"gcamCode":"c16.9","gcamValue":9},{"gcamCode":"c16.90","gcamValue":20},{"gcamCode":"c16.91","gcamValue":22},{"gcamCode":"c16.92","gcamValue":69},{"gcamCode":"c16.93","gcamValue":26},{"gcamCode":"c16.94","gcamValue":54},{"gcamCode":"c16.95","gcamValue":69},{"gcamCode":"c16.96","gcamValue":8},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":43},{"gcamCode":"c16.99","gcamValue":17},{"gcamCode":"c17.1","gcamValue":248},{"gcamCode":"c17.10","gcamValue":62},{"gcamCode":"c17.11","gcamValue":94},{"gcamCode":"c17.12","gcamValue":37},{"gcamCode":"c17.13","gcamValue":9},{"gcamCode":"c17.14","gcamValue":13},{"gcamCode":"c17.15","gcamValue":70},{"gcamCode":"c17.16","gcamValue":67},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":23},{"gcamCode":"c17.19","gcamValue":39},{"gcamCode":"c17.2","gcamValue":10},{"gcamCode":"c17.20","gcamValue":27},{"gcamCode":"c17.21","gcamValue":8},{"gcamCode":"c17.22","gcamValue":16},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":66},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":4},{"gcamCode":"c17.27","gcamValue":79},{"gcamCode":"c17.28","gcamValue":12},{"gcamCode":"c17.29","gcamValue":24},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":45},{"gcamCode":"c17.32","gcamValue":22},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":16},{"gcamCode":"c17.35","gcamValue":12},{"gcamCode":"c17.36","gcamValue":43},{"gcamCode":"c17.37","gcamValue":15},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":35},{"gcamCode":"c17.4","gcamValue":214},{"gcamCode":"c17.40","gcamValue":12},{"gcamCode":"c17.41","gcamValue":16},{"gcamCode":"c17.42","gcamValue":29},{"gcamCode":"c17.43","gcamValue":37},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":146},{"gcamCode":"c17.6","gcamValue":9},{"gcamCode":"c17.7","gcamValue":113},{"gcamCode":"c17.8","gcamValue":62},{"gcamCode":"c17.9","gcamValue":27},{"gcamCode":"c18.1","gcamValue":9},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.156","gcamValue":34},{"gcamCode":"c18.159","gcamValue":1},{"gcamCode":"c18.162","gcamValue":2},{"gcamCode":"c18.163","gcamValue":1},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":16},{"gcamCode":"c18.2","gcamValue":2},{"gcamCode":"c18.245","gcamValue":1},{"gcamCode":"c18.257","gcamValue":1},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":19},{"gcamCode":"c18.50","gcamValue":1},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.83","gcamValue":2},{"gcamCode":"c2.1","gcamValue":35},{"gcamCode":"c2.100","gcamValue":4},{"gcamCode":"c2.101","gcamValue":13},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":106},{"gcamCode":"c2.107","gcamValue":6},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":15},{"gcamCode":"c2.110","gcamValue":8},{"gcamCode":"c2.111","gcamValue":5},{"gcamCode":"c2.112","gcamValue":14},{"gcamCode":"c2.113","gcamValue":6},{"gcamCode":"c2.114","gcamValue":40},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":37},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":223},{"gcamCode":"c2.12","gcamValue":26},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":45},{"gcamCode":"c2.122","gcamValue":18},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":46},{"gcamCode":"c2.126","gcamValue":26},{"gcamCode":"c2.127","gcamValue":82},{"gcamCode":"c2.128","gcamValue":68},{"gcamCode":"c2.129","gcamValue":71},{"gcamCode":"c2.130","gcamValue":7},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":7},{"gcamCode":"c2.133","gcamValue":9},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.137","gcamValue":4},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":62},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":13},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":46},{"gcamCode":"c2.144","gcamValue":20},{"gcamCode":"c2.145","gcamValue":8},{"gcamCode":"c2.146","gcamValue":12},{"gcamCode":"c2.147","gcamValue":125},{"gcamCode":"c2.148","gcamValue":61},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":14},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":15},{"gcamCode":"c2.154","gcamValue":21},{"gcamCode":"c2.155","gcamValue":42},{"gcamCode":"c2.156","gcamValue":30},{"gcamCode":"c2.157","gcamValue":38},{"gcamCode":"c2.158","gcamValue":51},{"gcamCode":"c2.159","gcamValue":11},{"gcamCode":"c2.16","gcamValue":7},{"gcamCode":"c2.160","gcamValue":44},{"gcamCode":"c2.162","gcamValue":9},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":10},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":18},{"gcamCode":"c2.173","gcamValue":9},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":5},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":29},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":22},{"gcamCode":"c2.180","gcamValue":22},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":147},{"gcamCode":"c2.186","gcamValue":13},{"gcamCode":"c2.187","gcamValue":41},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.190","gcamValue":6},{"gcamCode":"c2.191","gcamValue":13},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":82},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":80},{"gcamCode":"c2.196","gcamValue":7},{"gcamCode":"c2.197","gcamValue":19},{"gcamCode":"c2.198","gcamValue":104},{"gcamCode":"c2.199","gcamValue":20},{"gcamCode":"c2.2","gcamValue":5},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":6},{"gcamCode":"c2.201","gcamValue":13},{"gcamCode":"c2.203","gcamValue":30},{"gcamCode":"c2.204","gcamValue":61},{"gcamCode":"c2.205","gcamValue":11},{"gcamCode":"c2.206","gcamValue":13},{"gcamCode":"c2.208","gcamValue":21},{"gcamCode":"c2.209","gcamValue":25},{"gcamCode":"c2.21","gcamValue":3},{"gcamCode":"c2.210","gcamValue":55},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.213","gcamValue":23},{"gcamCode":"c2.214","gcamValue":20},{"gcamCode":"c2.216","gcamValue":4},{"gcamCode":"c2.217","gcamValue":20},{"gcamCode":"c2.220","gcamValue":23},{"gcamCode":"c2.221","gcamValue":8},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":9},{"gcamCode":"c2.225","gcamValue":23},{"gcamCode":"c2.226","gcamValue":18},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.23","gcamValue":49},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":38},{"gcamCode":"c2.26","gcamValue":29},{"gcamCode":"c2.27","gcamValue":29},{"gcamCode":"c2.28","gcamValue":12},{"gcamCode":"c2.30","gcamValue":29},{"gcamCode":"c2.31","gcamValue":26},{"gcamCode":"c2.32","gcamValue":5},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":66},{"gcamCode":"c2.35","gcamValue":13},{"gcamCode":"c2.36","gcamValue":10},{"gcamCode":"c2.37","gcamValue":10},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":120},{"gcamCode":"c2.40","gcamValue":4},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":51},{"gcamCode":"c2.46","gcamValue":80},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":24},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":51},{"gcamCode":"c2.54","gcamValue":64},{"gcamCode":"c2.55","gcamValue":5},{"gcamCode":"c2.56","gcamValue":5},{"gcamCode":"c2.57","gcamValue":11},{"gcamCode":"c2.58","gcamValue":15},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":10},{"gcamCode":"c2.62","gcamValue":24},{"gcamCode":"c2.64","gcamValue":19},{"gcamCode":"c2.65","gcamValue":6},{"gcamCode":"c2.66","gcamValue":5},{"gcamCode":"c2.67","gcamValue":5},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":5},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":4},{"gcamCode":"c2.73","gcamValue":10},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":91},{"gcamCode":"c2.76","gcamValue":519},{"gcamCode":"c2.77","gcamValue":58},{"gcamCode":"c2.78","gcamValue":92},{"gcamCode":"c2.79","gcamValue":20},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":61},{"gcamCode":"c2.81","gcamValue":20},{"gcamCode":"c2.82","gcamValue":27},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.86","gcamValue":25},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":10},{"gcamCode":"c2.89","gcamValue":17},{"gcamCode":"c2.9","gcamValue":25},{"gcamCode":"c2.90","gcamValue":7},{"gcamCode":"c2.93","gcamValue":20},{"gcamCode":"c2.95","gcamValue":133},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":13},{"gcamCode":"c2.98","gcamValue":52},{"gcamCode":"c2.99","gcamValue":5},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.2","gcamValue":9},{"gcamCode":"c25.5","gcamValue":15},{"gcamCode":"c25.7","gcamValue":5},{"gcamCode":"c3.1","gcamValue":80},{"gcamCode":"c3.2","gcamValue":41},{"gcamCode":"c35.1","gcamValue":6},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":6},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":31},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.25","gcamValue":15},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":17},{"gcamCode":"c35.32","gcamValue":16},{"gcamCode":"c35.33","gcamValue":50},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":4},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":4},{"gcamCode":"c39.2","gcamValue":16},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":2},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":34},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":11},{"gcamCode":"c39.37","gcamValue":26},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":9},{"gcamCode":"c39.4","gcamValue":38},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":18},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":6},{"gcamCode":"c4.12","gcamValue":3},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":5},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":22},{"gcamCode":"c4.3","gcamValue":3},{"gcamCode":"c40.1","gcamValue":2},{"gcamCode":"c40.3","gcamValue":9},{"gcamCode":"c40.4","gcamValue":11},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":34},{"gcamCode":"c5.10","gcamValue":95},{"gcamCode":"c5.11","gcamValue":20},{"gcamCode":"c5.12","gcamValue":160},{"gcamCode":"c5.15","gcamValue":10},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":11},{"gcamCode":"c5.18","gcamValue":6},{"gcamCode":"c5.19","gcamValue":14},{"gcamCode":"c5.2","gcamValue":13},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":24},{"gcamCode":"c5.22","gcamValue":4},{"gcamCode":"c5.23","gcamValue":9},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":16},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":9},{"gcamCode":"c5.29","gcamValue":6},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":56},{"gcamCode":"c5.31","gcamValue":9},{"gcamCode":"c5.32","gcamValue":9},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":23},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":31},{"gcamCode":"c5.37","gcamValue":10},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":54},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":25},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":12},{"gcamCode":"c5.46","gcamValue":122},{"gcamCode":"c5.47","gcamValue":36},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":55},{"gcamCode":"c5.5","gcamValue":11},{"gcamCode":"c5.50","gcamValue":66},{"gcamCode":"c5.51","gcamValue":48},{"gcamCode":"c5.52","gcamValue":85},{"gcamCode":"c5.53","gcamValue":76},{"gcamCode":"c5.54","gcamValue":19},{"gcamCode":"c5.55","gcamValue":6},{"gcamCode":"c5.56","gcamValue":7},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":26},{"gcamCode":"c5.60","gcamValue":16},{"gcamCode":"c5.61","gcamValue":35},{"gcamCode":"c5.62","gcamValue":334},{"gcamCode":"c5.7","gcamValue":14},{"gcamCode":"c5.8","gcamValue":16},{"gcamCode":"c5.9","gcamValue":41},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":8},{"gcamCode":"c6.4","gcamValue":29},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":10},{"gcamCode":"c7.1","gcamValue":51},{"gcamCode":"c7.2","gcamValue":21},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":12},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":5},{"gcamCode":"c8.15","gcamValue":4},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":19},{"gcamCode":"c8.2","gcamValue":39},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":24},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.28","gcamValue":4},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":9},{"gcamCode":"c8.37","gcamValue":14},{"gcamCode":"c8.38","gcamValue":8},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":23},{"gcamCode":"c8.43","gcamValue":26},{"gcamCode":"c8.5","gcamValue":3},{"gcamCode":"c8.6","gcamValue":2},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":26},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1012","gcamValue":4},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":4},{"gcamCode":"c9.1018","gcamValue":8},{"gcamCode":"c9.1024","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":6},{"gcamCode":"c9.1040","gcamValue":8},{"gcamCode":"c9.1041","gcamValue":3},{"gcamCode":"c9.107","gcamValue":14},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":12},{"gcamCode":"c9.111","gcamValue":6},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":11},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":14},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":36},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.138","gcamValue":7},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.157","gcamValue":5},{"gcamCode":"c9.158","gcamValue":17},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":11},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":4},{"gcamCode":"c9.167","gcamValue":11},{"gcamCode":"c9.168","gcamValue":6},{"gcamCode":"c9.169","gcamValue":9},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":3},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":5},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":4},{"gcamCode":"c9.192","gcamValue":10},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":4},{"gcamCode":"c9.195","gcamValue":17},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":8},{"gcamCode":"c9.198","gcamValue":20},{"gcamCode":"c9.2","gcamValue":2},{"gcamCode":"c9.200","gcamValue":8},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":11},{"gcamCode":"c9.208","gcamValue":4},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":10},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":5},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":7},{"gcamCode":"c9.235","gcamValue":7},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":7},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":3},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":5},{"gcamCode":"c9.246","gcamValue":5},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":4},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":6},{"gcamCode":"c9.266","gcamValue":6},{"gcamCode":"c9.267","gcamValue":4},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":6},{"gcamCode":"c9.289","gcamValue":4},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":23},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.321","gcamValue":2},{"gcamCode":"c9.322","gcamValue":8},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":16},{"gcamCode":"c9.330","gcamValue":6},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":6},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":13},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.348","gcamValue":4},{"gcamCode":"c9.35","gcamValue":8},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":9},{"gcamCode":"c9.355","gcamValue":1},{"gcamCode":"c9.358","gcamValue":11},{"gcamCode":"c9.359","gcamValue":14},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.360","gcamValue":4},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":9},{"gcamCode":"c9.372","gcamValue":5},{"gcamCode":"c9.381","gcamValue":3},{"gcamCode":"c9.383","gcamValue":17},{"gcamCode":"c9.384","gcamValue":5},{"gcamCode":"c9.385","gcamValue":5},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.39","gcamValue":11},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":9},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":8},{"gcamCode":"c9.42","gcamValue":4},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.425","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.458","gcamValue":4},{"gcamCode":"c9.459","gcamValue":4},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.469","gcamValue":1},{"gcamCode":"c9.47","gcamValue":14},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":6},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":9},{"gcamCode":"c9.49","gcamValue":15},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":2},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":4},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.51","gcamValue":2},{"gcamCode":"c9.511","gcamValue":12},{"gcamCode":"c9.513","gcamValue":9},{"gcamCode":"c9.517","gcamValue":7},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":15},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":2},{"gcamCode":"c9.53","gcamValue":7},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":10},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":5},{"gcamCode":"c9.55","gcamValue":5},{"gcamCode":"c9.550","gcamValue":6},{"gcamCode":"c9.551","gcamValue":13},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":8},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":16},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":5},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":23},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.586","gcamValue":3},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":2},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.598","gcamValue":3},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.601","gcamValue":3},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":4},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":7},{"gcamCode":"c9.62","gcamValue":6},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":5},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":6},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":33},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.657","gcamValue":1},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":11},{"gcamCode":"c9.660","gcamValue":10},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.667","gcamValue":8},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":5},{"gcamCode":"c9.67","gcamValue":4},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":4},{"gcamCode":"c9.676","gcamValue":8},{"gcamCode":"c9.677","gcamValue":11},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.681","gcamValue":5},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":13},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":4},{"gcamCode":"c9.687","gcamValue":15},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.693","gcamValue":7},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.7","gcamValue":6},{"gcamCode":"c9.70","gcamValue":10},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":4},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":19},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":28},{"gcamCode":"c9.727","gcamValue":6},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":8},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":3},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":14},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":5},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":5},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":3},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":7},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.762","gcamValue":23},{"gcamCode":"c9.763","gcamValue":4},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":24},{"gcamCode":"c9.767","gcamValue":35},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":4},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":4},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":3},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":14},{"gcamCode":"c9.814","gcamValue":4},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.825","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":19},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":8},{"gcamCode":"c9.837","gcamValue":4},{"gcamCode":"c9.838","gcamValue":6},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.846","gcamValue":9},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":4},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":22},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":10},{"gcamCode":"c9.868","gcamValue":22},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.880","gcamValue":2},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.886","gcamValue":2},{"gcamCode":"c9.887","gcamValue":3},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":6},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.897","gcamValue":5},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":10},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":8},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.942","gcamValue":4},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":5},{"gcamCode":"c9.948","gcamValue":2},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":10},{"gcamCode":"c9.973","gcamValue":10},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":3},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.259476883382777},{"gcamCode":"v10.2","gcamValue":0.294046321424864},{"gcamCode":"v11.1","gcamValue":-0.00145607553366175},{"gcamCode":"v19.1","gcamValue":5.16111111111111},{"gcamCode":"v19.2","gcamValue":5.26949494949495},{"gcamCode":"v19.3","gcamValue":5.0989898989899},{"gcamCode":"v19.4","gcamValue":5.25171717171717},{"gcamCode":"v19.5","gcamValue":4.97787878787879},{"gcamCode":"v19.6","gcamValue":5.14878787878788},{"gcamCode":"v19.7","gcamValue":5.1079797979798},{"gcamCode":"v19.8","gcamValue":5.5130303030303},{"gcamCode":"v19.9","gcamValue":5.05252525252525},{"gcamCode":"v20.1","gcamValue":0.588666666666667},{"gcamCode":"v20.10","gcamValue":-0.534411764705882},{"gcamCode":"v20.11","gcamValue":0.5665},{"gcamCode":"v20.12","gcamValue":-0.526590909090909},{"gcamCode":"v20.13","gcamValue":0.376766666666667},{"gcamCode":"v20.14","gcamValue":-0.477322580645161},{"gcamCode":"v20.15","gcamValue":0.347961038961039},{"gcamCode":"v20.16","gcamValue":-0.417785714285714},{"gcamCode":"v20.2","gcamValue":-0.28},{"gcamCode":"v20.3","gcamValue":0.588666666666667},{"gcamCode":"v20.4","gcamValue":-0.28},{"gcamCode":"v20.5","gcamValue":0.588666666666667},{"gcamCode":"v20.6","gcamValue":-0.426111111111111},{"gcamCode":"v20.7","gcamValue":0.588666666666667},{"gcamCode":"v20.8","gcamValue":-0.485},{"gcamCode":"v20.9","gcamValue":0.588666666666667},{"gcamCode":"v21.1","gcamValue":5.22648122392211},{"gcamCode":"v26.1","gcamValue":-0.804477611940298}]https://s.hdnux.com/photos/01/02/67/44/17529141/7/rawImage.png[""][""][""][{"charLength":39,"verb":"","quote":"confirmed large and destructive tornado","charOffset":441},{"charLength":165,"verb":"","quote":"Evacuate Webbers Falls immediately. The barges are loose and has the potential to hit the lock and dam 16. If the dam breaks , it will be catastrophic!! Leave now!!","charOffset":4093}][{"name":"Jefferson City","charOffset":182},{"name":"Jefferson City","charOffset":479},{"name":"Mike Parson","charOffset":980},{"name":"Public Safety","charOffset":1175},{"name":"Golden City","charOffset":1245},{"name":"Barton County","charOffset":1267},{"name":"Carl Junction","charOffset":1313},{"name":"City Police","charOffset":1358},{"name":"David Williams","charOffset":1377},{"name":"Southern Plains","charOffset":1677},{"name":"Cole County Sheriff","charOffset":1791},{"name":"Jessica Royston","charOffset":2102},{"name":"Public Safety","charOffset":2222},{"name":"National Weather Service","charOffset":2774},{"name":"Carl Junction","charOffset":3138},{"name":"Arkansas River","charOffset":3440},{"name":"Arkansas River","charOffset":3682},{"name":"Webbers Falls","charOffset":3704},{"name":"Webbers Falls","charOffset":4012},{"name":"Arkansas River","charOffset":4372},{"name":"Mississippi Rivers","charOffset":4463},{"name":"Highway Patrol","charOffset":5090},{"name":"Emergency Management","charOffset":5398},{"name":"Keli Cain","charOffset":5420}][{"amount":3,"amountType":"dead","charOffset":9},{"amount":3,"amountType":"deaths","charOffset":225},{"amount":130,"amountType":"miles","charOffset":484},{"amount":209,"amountType":"kilometers","charOffset":493},{"amount":3,"amountType":"people","charOffset":732},{"amount":3,"amountType":"people were killed","charOffset":947},{"amount":2,"amountType":"stories","charOffset":2173},{"amount":22,"amountType":"reports of tornadoes by","charOffset":2226},{"amount":161,"amountType":"people","charOffset":2432},{"amount":4,"amountType":"miles","charOffset":2504},{"amount":44,"amountType":"kilometers","charOffset":2513},{"amount":2,"amountType":"barges broke loose","charOffset":2665},{"amount":600,"amountType":"residents","charOffset":3158},{"amount":12,"amountType":"of tornadoes","charOffset":3616},{"amount":2,"amountType":"people","charOffset":3951},{"amount":4,"amountType":"weather","charOffset":4006},{"amount":45,"amountType":"miles","charOffset":4154},{"amount":72,"amountType":"kilometers","charOffset":4162}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>HTV National Desk</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523104400</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_MOBILE>https://m.stamfordadvocate.com/news/article/US-storms-lead-to-deaths-evacuations-amid-13877996.php</PAGE_ALTURL_MOBILE>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBthenation.comhttps://www.thenation.com/article/morgan-bassichis-jewish-klezmer-progressive/[][]["PROTEST","EDUCATION","MANMADE_DISASTER_IMPLIED","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT","TAX_FNCACT_STUDENTS","TREASON","NATURAL_DISASTER","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","EXILE","TAX_FNCACT_CHILDREN","EPU_POLICY","EPU_POLICY_POLITICAL","TAX_FNCACT_ARTIST","UNGP_FORESTS_RIVERS_OCEANS","MOVEMENT_GENERAL","MOVEMENT_SOCIAL","TAX_FNCACT_ACTIVIST","TAX_RELIGION","TAX_RELIGION_JEWISH","TAX_ETHNICITY","TAX_ETHNICITY_JEWISH","MEDIA_MSM","TAX_ETHNICITY_AMERICAN","WB_2433_CONFLICT_AND_VIOLENCE","WB_2465_REVOLUTIONARY_VIOLENCE","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","WB_2462_POLITICAL_VIOLENCE_AND_WAR","LGBT","BLOCKADE","SEIGE","TAX_FNCACT_CHILD","CORRUPTION","TAX_FNCACT_LEFTIST","STRIKE","EXTREMISM","SOC_MARGINALIZE","UNGP_CRIME_VIOLENCE","TAX_FNCACT_COOK","TAX_FNCACT_WORKER","GENERAL_HEALTH","TAX_FNCACT_SOCIAL_WORKER","TAX_FNCACT_SINGERS","SOC_POINTSOFINTEREST_COLLEGE","TAX_FNCACT_ORGANIZER","TAX_FNCACT_EDUCATOR","TAX_FNCACT_VETERAN","TAX_FNCACT_ARTISTS","TAX_FNCACT_FOUNDER","TAX_FNCACT_PROFESSOR","SOC_POINTSOFINTEREST_UNIVERSITY","TAX_ETHNICITY_BLACK","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_YIDDISH","TAX_RELIGION_JEWS","TAX_FNCACT_ORGANIZERS"][{"theme":"EDUCATION","charOffset":185},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":185},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":185},{"theme":"TAX_FNCACT_CHILD","charOffset":3098},{"theme":"TAX_FNCACT_ARTISTS","charOffset":5131},{"theme":"TAX_FNCACT_ARTISTS","charOffset":5201},{"theme":"TAX_FNCACT_ARTISTS","charOffset":7828},{"theme":"TAX_FNCACT_ARTISTS","charOffset":8033},{"theme":"SOC_MARGINALIZE","charOffset":3956},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":3956},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":2046},{"theme":"WB_2465_REVOLUTIONARY_VIOLENCE","charOffset":2046},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":2046},{"theme":"WB_2462_POLITICAL_VIOLENCE_AND_WAR","charOffset":2046},{"theme":"TAX_FNCACT_WORKER","charOffset":4561},{"theme":"EXTREMISM","charOffset":3941},{"theme":"EXTREMISM","charOffset":7935},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":1679},{"theme":"TAX_RELIGION_JEWS","charOffset":7410},{"theme":"TAX_RELIGION_JEWS","charOffset":7790},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":953},{"theme":"MOVEMENT_SOCIAL","charOffset":1103},{"theme":"MOVEMENT_SOCIAL","charOffset":7303},{"theme":"TAX_FNCACT_FOUNDER","charOffset":5371},{"theme":"TAX_FNCACT_EDUCATOR","charOffset":4857},{"theme":"SECURITY_SERVICES","charOffset":6969},{"theme":"TAX_FNCACT_POLICE","charOffset":6969},{"theme":"CRISISLEX_C07_SAFETY","charOffset":6969},{"theme":"STRIKE","charOffset":3875},{"theme":"LGBT","charOffset":2158},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":380},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":380},{"theme":"TAX_FNCACT_PROFESSOR","charOffset":5424},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":4805},{"theme":"EPU_POLICY_POLITICAL","charOffset":876},{"theme":"EPU_POLICY_POLITICAL","charOffset":3520},{"theme":"EPU_POLICY_POLITICAL","charOffset":4655},{"theme":"EPU_POLICY_POLITICAL","charOffset":7154},{"theme":"EXILE","charOffset":675},{"theme":"TAX_FNCACT_ARTIST","charOffset":932},{"theme":"TAX_FNCACT_ARTIST","charOffset":5902},{"theme":"TAX_FNCACT_SINGERS","charOffset":4761},{"theme":"TAX_WORLDLANGUAGES_YIDDISH","charOffset":6980},{"theme":"TAX_FNCACT_VETERAN","charOffset":5111},{"theme":"PROTEST","charOffset":66},{"theme":"PROTEST","charOffset":133},{"theme":"PROTEST","charOffset":1828},{"theme":"PROTEST","charOffset":4039},{"theme":"PROTEST","charOffset":6437},{"theme":"PROTEST","charOffset":6925},{"theme":"PROTEST","charOffset":6998},{"theme":"TAX_FNCACT_STUDENTS","charOffset":194},{"theme":"TAX_FNCACT_ACTIVIST","charOffset":1149},{"theme":"TAX_FNCACT_ORGANIZER","charOffset":4846},{"theme":"TAX_FNCACT_LEFTIST","charOffset":3510},{"theme":"TAX_FNCACT_LEFTIST","charOffset":7405},{"theme":"CORRUPTION","charOffset":3502},{"theme":"TAX_RELIGION_JEWISH","charOffset":1316},{"theme":"TAX_ETHNICITY_JEWISH","charOffset":1316},{"theme":"BLOCKADE","charOffset":2447},{"theme":"SEIGE","charOffset":2447},{"theme":"SOC_POINTSOFINTEREST_UNIVERSITY","charOffset":5470},{"theme":"MEDIA_MSM","charOffset":1508},{"theme":"TAX_FNCACT_ORGANIZERS","charOffset":7717},{"theme":"MOVEMENT_GENERAL","charOffset":1103},{"theme":"MOVEMENT_GENERAL","charOffset":7303},{"theme":"MOVEMENT_GENERAL","charOffset":7945},{"theme":"TREASON","charOffset":348},{"theme":"TAX_FNCACT_COOK","charOffset":4281},{"theme":"GENERAL_HEALTH","charOffset":4561},{"theme":"TAX_FNCACT_SOCIAL_WORKER","charOffset":4561},{"theme":"TAX_FNCACT_CHILDREN","charOffset":715},{"theme":"TAX_FNCACT_CHILDREN","charOffset":2481},{"theme":"TAX_FNCACT_CHILDREN","charOffset":8017},{"theme":"TAX_ETHNICITY_BLACK","charOffset":6837}][{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"USCITY","geoName":"New York University, New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":40.7287,"longitude":-73.996},"featureId":"958483"},{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"}][{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":4593},{"location":{"geoType":"USCITY","geoName":"New York University, New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"NY061","geoPoint":{"latitude":40.7287,"longitude":-73.996},"featureId":"958483"},"charOffset":5470},{"location":{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},"charOffset":4918},{"location":{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},"charOffset":5459},{"location":{"geoType":"USCITY","geoName":"San Francisco, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA075","geoPoint":{"latitude":37.7749,"longitude":-122.419},"featureId":"277593"},"charOffset":4874},{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1679}]["brecht lehrst","sarah vaughn","morgan bassichis","jibz cameron","holly near","alan cumming","gregg bordowitz","george michael","malik gaines","larry mitchell"][{"person":"Brecht Lehrst","charOffset":5959},{"person":"Sarah Vaughn","charOffset":4745},{"person":"Morgan Bassichis","charOffset":91},{"person":"Morgan Bassichis","charOffset":2371},{"person":"Jibz Cameron","charOffset":5149},{"person":"Holly Near","charOffset":4777},{"person":"Alan Cumming","charOffset":5009},{"person":"Gregg Bordowitz","charOffset":5918},{"person":"George Michael","charOffset":5561},{"person":"Malik Gaines","charOffset":5359},{"person":"Larry Mitchell","charOffset":2119}]["police in yiddish like more protest songs","york university"][{"organisation":"Police In Yiddish Like More Protest Songs","charOffset":7004},{"organisation":"York University","charOffset":5470}]{"tone":-2.9369628,"positiveScore":2.722063,"negativeScore":5.6590257,"polarity":8.381089,"activityReferenceDensity":20.487106,"selfGroupReferenceDensity":1.790831,"wordCount":1267}[{"dateResolution":1,"month":0,"day":0,"year":1977,"charOffset":2133},{"dateResolution":1,"month":0,"day":0,"year":2013,"charOffset":4911}][{"gcamCode":"wc","gcamValue":1267},{"gcamCode":"c1.1","gcamValue":6},{"gcamCode":"c1.4","gcamValue":1},{"gcamCode":"c12.1","gcamValue":116},{"gcamCode":"c12.10","gcamValue":108},{"gcamCode":"c12.12","gcamValue":50},{"gcamCode":"c12.13","gcamValue":38},{"gcamCode":"c12.14","gcamValue":26},{"gcamCode":"c12.3","gcamValue":47},{"gcamCode":"c12.4","gcamValue":18},{"gcamCode":"c12.5","gcamValue":55},{"gcamCode":"c12.7","gcamValue":84},{"gcamCode":"c12.8","gcamValue":55},{"gcamCode":"c12.9","gcamValue":77},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.12","gcamValue":2},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.2","gcamValue":2},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":54},{"gcamCode":"c14.10","gcamValue":49},{"gcamCode":"c14.11","gcamValue":128},{"gcamCode":"c14.2","gcamValue":59},{"gcamCode":"c14.3","gcamValue":95},{"gcamCode":"c14.4","gcamValue":11},{"gcamCode":"c14.5","gcamValue":160},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":26},{"gcamCode":"c14.8","gcamValue":4},{"gcamCode":"c14.9","gcamValue":24},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.103","gcamValue":4},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.107","gcamValue":1},{"gcamCode":"c15.108","gcamValue":1},{"gcamCode":"c15.110","gcamValue":2},{"gcamCode":"c15.112","gcamValue":2},{"gcamCode":"c15.116","gcamValue":14},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":14},{"gcamCode":"c15.121","gcamValue":1},{"gcamCode":"c15.122","gcamValue":1},{"gcamCode":"c15.124","gcamValue":1},{"gcamCode":"c15.125","gcamValue":1},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.131","gcamValue":2},{"gcamCode":"c15.132","gcamValue":3},{"gcamCode":"c15.137","gcamValue":4},{"gcamCode":"c15.139","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.15","gcamValue":4},{"gcamCode":"c15.152","gcamValue":2},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.158","gcamValue":1},{"gcamCode":"c15.159","gcamValue":2},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":3},{"gcamCode":"c15.167","gcamValue":3},{"gcamCode":"c15.168","gcamValue":4},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.171","gcamValue":3},{"gcamCode":"c15.172","gcamValue":2},{"gcamCode":"c15.173","gcamValue":18},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":14},{"gcamCode":"c15.177","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.179","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.180","gcamValue":1},{"gcamCode":"c15.185","gcamValue":1},{"gcamCode":"c15.197","gcamValue":3},{"gcamCode":"c15.198","gcamValue":1},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.206","gcamValue":1},{"gcamCode":"c15.211","gcamValue":1},{"gcamCode":"c15.212","gcamValue":3},{"gcamCode":"c15.215","gcamValue":13},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.221","gcamValue":2},{"gcamCode":"c15.222","gcamValue":2},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":1},{"gcamCode":"c15.239","gcamValue":1},{"gcamCode":"c15.24","gcamValue":2},{"gcamCode":"c15.241","gcamValue":3},{"gcamCode":"c15.251","gcamValue":4},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.255","gcamValue":3},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.257","gcamValue":2},{"gcamCode":"c15.26","gcamValue":13},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.27","gcamValue":2},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.279","gcamValue":1},{"gcamCode":"c15.29","gcamValue":2},{"gcamCode":"c15.3","gcamValue":14},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":3},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.43","gcamValue":15},{"gcamCode":"c15.46","gcamValue":1},{"gcamCode":"c15.47","gcamValue":1},{"gcamCode":"c15.48","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":2},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.76","gcamValue":2},{"gcamCode":"c15.83","gcamValue":15},{"gcamCode":"c15.84","gcamValue":3},{"gcamCode":"c15.9","gcamValue":3},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c15.96","gcamValue":1},{"gcamCode":"c15.97","gcamValue":2},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":11},{"gcamCode":"c16.100","gcamValue":26},{"gcamCode":"c16.101","gcamValue":14},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.103","gcamValue":4},{"gcamCode":"c16.105","gcamValue":7},{"gcamCode":"c16.106","gcamValue":43},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":65},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":175},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":6},{"gcamCode":"c16.114","gcamValue":61},{"gcamCode":"c16.115","gcamValue":11},{"gcamCode":"c16.116","gcamValue":36},{"gcamCode":"c16.117","gcamValue":47},{"gcamCode":"c16.118","gcamValue":71},{"gcamCode":"c16.12","gcamValue":127},{"gcamCode":"c16.120","gcamValue":43},{"gcamCode":"c16.121","gcamValue":64},{"gcamCode":"c16.122","gcamValue":8},{"gcamCode":"c16.123","gcamValue":5},{"gcamCode":"c16.124","gcamValue":17},{"gcamCode":"c16.125","gcamValue":98},{"gcamCode":"c16.126","gcamValue":56},{"gcamCode":"c16.127","gcamValue":83},{"gcamCode":"c16.128","gcamValue":16},{"gcamCode":"c16.129","gcamValue":143},{"gcamCode":"c16.13","gcamValue":10},{"gcamCode":"c16.130","gcamValue":45},{"gcamCode":"c16.131","gcamValue":46},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":102},{"gcamCode":"c16.136","gcamValue":6},{"gcamCode":"c16.138","gcamValue":33},{"gcamCode":"c16.139","gcamValue":45},{"gcamCode":"c16.140","gcamValue":34},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":4},{"gcamCode":"c16.145","gcamValue":100},{"gcamCode":"c16.146","gcamValue":80},{"gcamCode":"c16.149","gcamValue":3},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":65},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":13},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":47},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":92},{"gcamCode":"c16.16","gcamValue":19},{"gcamCode":"c16.160","gcamValue":1},{"gcamCode":"c16.161","gcamValue":100},{"gcamCode":"c16.162","gcamValue":48},{"gcamCode":"c16.163","gcamValue":71},{"gcamCode":"c16.164","gcamValue":21},{"gcamCode":"c16.165","gcamValue":10},{"gcamCode":"c16.168","gcamValue":2},{"gcamCode":"c16.17","gcamValue":7},{"gcamCode":"c16.18","gcamValue":6},{"gcamCode":"c16.19","gcamValue":23},{"gcamCode":"c16.2","gcamValue":51},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":6},{"gcamCode":"c16.22","gcamValue":32},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":11},{"gcamCode":"c16.25","gcamValue":1},{"gcamCode":"c16.26","gcamValue":173},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":5},{"gcamCode":"c16.3","gcamValue":18},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":74},{"gcamCode":"c16.32","gcamValue":13},{"gcamCode":"c16.33","gcamValue":78},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":54},{"gcamCode":"c16.36","gcamValue":7},{"gcamCode":"c16.37","gcamValue":78},{"gcamCode":"c16.38","gcamValue":32},{"gcamCode":"c16.4","gcamValue":86},{"gcamCode":"c16.40","gcamValue":1},{"gcamCode":"c16.41","gcamValue":55},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":47},{"gcamCode":"c16.46","gcamValue":20},{"gcamCode":"c16.47","gcamValue":131},{"gcamCode":"c16.48","gcamValue":10},{"gcamCode":"c16.49","gcamValue":8},{"gcamCode":"c16.5","gcamValue":7},{"gcamCode":"c16.50","gcamValue":11},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":47},{"gcamCode":"c16.53","gcamValue":15},{"gcamCode":"c16.54","gcamValue":3},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":21},{"gcamCode":"c16.57","gcamValue":651},{"gcamCode":"c16.58","gcamValue":77},{"gcamCode":"c16.6","gcamValue":146},{"gcamCode":"c16.60","gcamValue":6},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":34},{"gcamCode":"c16.63","gcamValue":16},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":47},{"gcamCode":"c16.66","gcamValue":28},{"gcamCode":"c16.68","gcamValue":46},{"gcamCode":"c16.69","gcamValue":34},{"gcamCode":"c16.7","gcamValue":19},{"gcamCode":"c16.70","gcamValue":49},{"gcamCode":"c16.71","gcamValue":13},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":8},{"gcamCode":"c16.74","gcamValue":11},{"gcamCode":"c16.75","gcamValue":36},{"gcamCode":"c16.76","gcamValue":12},{"gcamCode":"c16.78","gcamValue":23},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":7},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":72},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":11},{"gcamCode":"c16.87","gcamValue":93},{"gcamCode":"c16.88","gcamValue":157},{"gcamCode":"c16.89","gcamValue":74},{"gcamCode":"c16.9","gcamValue":3},{"gcamCode":"c16.90","gcamValue":36},{"gcamCode":"c16.91","gcamValue":58},{"gcamCode":"c16.92","gcamValue":78},{"gcamCode":"c16.93","gcamValue":6},{"gcamCode":"c16.94","gcamValue":74},{"gcamCode":"c16.95","gcamValue":57},{"gcamCode":"c16.96","gcamValue":16},{"gcamCode":"c16.97","gcamValue":4},{"gcamCode":"c16.98","gcamValue":123},{"gcamCode":"c16.99","gcamValue":3},{"gcamCode":"c17.1","gcamValue":337},{"gcamCode":"c17.10","gcamValue":130},{"gcamCode":"c17.11","gcamValue":180},{"gcamCode":"c17.12","gcamValue":44},{"gcamCode":"c17.13","gcamValue":31},{"gcamCode":"c17.14","gcamValue":9},{"gcamCode":"c17.15","gcamValue":77},{"gcamCode":"c17.16","gcamValue":45},{"gcamCode":"c17.17","gcamValue":6},{"gcamCode":"c17.18","gcamValue":20},{"gcamCode":"c17.19","gcamValue":73},{"gcamCode":"c17.2","gcamValue":27},{"gcamCode":"c17.20","gcamValue":16},{"gcamCode":"c17.21","gcamValue":11},{"gcamCode":"c17.22","gcamValue":28},{"gcamCode":"c17.23","gcamValue":16},{"gcamCode":"c17.24","gcamValue":110},{"gcamCode":"c17.25","gcamValue":14},{"gcamCode":"c17.26","gcamValue":7},{"gcamCode":"c17.27","gcamValue":114},{"gcamCode":"c17.28","gcamValue":11},{"gcamCode":"c17.29","gcamValue":48},{"gcamCode":"c17.3","gcamValue":4},{"gcamCode":"c17.30","gcamValue":30},{"gcamCode":"c17.31","gcamValue":58},{"gcamCode":"c17.32","gcamValue":53},{"gcamCode":"c17.33","gcamValue":63},{"gcamCode":"c17.34","gcamValue":34},{"gcamCode":"c17.35","gcamValue":23},{"gcamCode":"c17.36","gcamValue":55},{"gcamCode":"c17.37","gcamValue":48},{"gcamCode":"c17.38","gcamValue":35},{"gcamCode":"c17.39","gcamValue":53},{"gcamCode":"c17.4","gcamValue":297},{"gcamCode":"c17.40","gcamValue":33},{"gcamCode":"c17.41","gcamValue":37},{"gcamCode":"c17.42","gcamValue":86},{"gcamCode":"c17.43","gcamValue":63},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":245},{"gcamCode":"c17.6","gcamValue":9},{"gcamCode":"c17.7","gcamValue":173},{"gcamCode":"c17.8","gcamValue":126},{"gcamCode":"c17.9","gcamValue":29},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.105","gcamValue":2},{"gcamCode":"c18.111","gcamValue":1},{"gcamCode":"c18.113","gcamValue":4},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.147","gcamValue":5},{"gcamCode":"c18.151","gcamValue":1},{"gcamCode":"c18.156","gcamValue":1},{"gcamCode":"c18.164","gcamValue":1},{"gcamCode":"c18.179","gcamValue":3},{"gcamCode":"c18.180","gcamValue":3},{"gcamCode":"c18.193","gcamValue":25},{"gcamCode":"c18.25","gcamValue":1},{"gcamCode":"c18.29","gcamValue":1},{"gcamCode":"c18.298","gcamValue":4},{"gcamCode":"c18.3","gcamValue":10},{"gcamCode":"c18.331","gcamValue":1},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":21},{"gcamCode":"c18.44","gcamValue":2},{"gcamCode":"c18.66","gcamValue":2},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.88","gcamValue":1},{"gcamCode":"c2.1","gcamValue":28},{"gcamCode":"c2.10","gcamValue":10},{"gcamCode":"c2.100","gcamValue":3},{"gcamCode":"c2.101","gcamValue":23},{"gcamCode":"c2.102","gcamValue":24},{"gcamCode":"c2.103","gcamValue":7},{"gcamCode":"c2.104","gcamValue":184},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":7},{"gcamCode":"c2.11","gcamValue":11},{"gcamCode":"c2.110","gcamValue":6},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":15},{"gcamCode":"c2.113","gcamValue":8},{"gcamCode":"c2.114","gcamValue":81},{"gcamCode":"c2.115","gcamValue":7},{"gcamCode":"c2.116","gcamValue":43},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":11},{"gcamCode":"c2.119","gcamValue":295},{"gcamCode":"c2.12","gcamValue":41},{"gcamCode":"c2.120","gcamValue":7},{"gcamCode":"c2.121","gcamValue":62},{"gcamCode":"c2.122","gcamValue":44},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":13},{"gcamCode":"c2.125","gcamValue":55},{"gcamCode":"c2.126","gcamValue":44},{"gcamCode":"c2.127","gcamValue":90},{"gcamCode":"c2.128","gcamValue":33},{"gcamCode":"c2.129","gcamValue":52},{"gcamCode":"c2.13","gcamValue":1},{"gcamCode":"c2.130","gcamValue":9},{"gcamCode":"c2.131","gcamValue":17},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":11},{"gcamCode":"c2.136","gcamValue":5},{"gcamCode":"c2.137","gcamValue":7},{"gcamCode":"c2.138","gcamValue":3},{"gcamCode":"c2.139","gcamValue":6},{"gcamCode":"c2.14","gcamValue":112},{"gcamCode":"c2.140","gcamValue":6},{"gcamCode":"c2.141","gcamValue":22},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":65},{"gcamCode":"c2.144","gcamValue":25},{"gcamCode":"c2.145","gcamValue":11},{"gcamCode":"c2.146","gcamValue":14},{"gcamCode":"c2.147","gcamValue":208},{"gcamCode":"c2.148","gcamValue":139},{"gcamCode":"c2.149","gcamValue":4},{"gcamCode":"c2.15","gcamValue":63},{"gcamCode":"c2.150","gcamValue":18},{"gcamCode":"c2.151","gcamValue":6},{"gcamCode":"c2.152","gcamValue":9},{"gcamCode":"c2.153","gcamValue":60},{"gcamCode":"c2.154","gcamValue":25},{"gcamCode":"c2.155","gcamValue":112},{"gcamCode":"c2.156","gcamValue":37},{"gcamCode":"c2.157","gcamValue":97},{"gcamCode":"c2.158","gcamValue":89},{"gcamCode":"c2.159","gcamValue":21},{"gcamCode":"c2.160","gcamValue":60},{"gcamCode":"c2.162","gcamValue":7},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.165","gcamValue":3},{"gcamCode":"c2.166","gcamValue":11},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":20},{"gcamCode":"c2.17","gcamValue":18},{"gcamCode":"c2.170","gcamValue":21},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":30},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":21},{"gcamCode":"c2.177","gcamValue":62},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":76},{"gcamCode":"c2.18","gcamValue":33},{"gcamCode":"c2.180","gcamValue":38},{"gcamCode":"c2.181","gcamValue":49},{"gcamCode":"c2.182","gcamValue":6},{"gcamCode":"c2.183","gcamValue":60},{"gcamCode":"c2.185","gcamValue":243},{"gcamCode":"c2.186","gcamValue":13},{"gcamCode":"c2.187","gcamValue":77},{"gcamCode":"c2.188","gcamValue":13},{"gcamCode":"c2.189","gcamValue":13},{"gcamCode":"c2.19","gcamValue":9},{"gcamCode":"c2.191","gcamValue":21},{"gcamCode":"c2.192","gcamValue":28},{"gcamCode":"c2.193","gcamValue":92},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":110},{"gcamCode":"c2.196","gcamValue":11},{"gcamCode":"c2.197","gcamValue":19},{"gcamCode":"c2.198","gcamValue":113},{"gcamCode":"c2.199","gcamValue":40},{"gcamCode":"c2.2","gcamValue":17},{"gcamCode":"c2.20","gcamValue":2},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":3},{"gcamCode":"c2.203","gcamValue":67},{"gcamCode":"c2.204","gcamValue":87},{"gcamCode":"c2.205","gcamValue":22},{"gcamCode":"c2.206","gcamValue":27},{"gcamCode":"c2.207","gcamValue":10},{"gcamCode":"c2.208","gcamValue":2},{"gcamCode":"c2.209","gcamValue":29},{"gcamCode":"c2.21","gcamValue":5},{"gcamCode":"c2.210","gcamValue":100},{"gcamCode":"c2.211","gcamValue":8},{"gcamCode":"c2.212","gcamValue":1},{"gcamCode":"c2.213","gcamValue":37},{"gcamCode":"c2.214","gcamValue":28},{"gcamCode":"c2.215","gcamValue":2},{"gcamCode":"c2.216","gcamValue":4},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.219","gcamValue":5},{"gcamCode":"c2.220","gcamValue":31},{"gcamCode":"c2.221","gcamValue":12},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":13},{"gcamCode":"c2.225","gcamValue":29},{"gcamCode":"c2.226","gcamValue":32},{"gcamCode":"c2.227","gcamValue":11},{"gcamCode":"c2.228","gcamValue":10},{"gcamCode":"c2.23","gcamValue":28},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":64},{"gcamCode":"c2.26","gcamValue":79},{"gcamCode":"c2.27","gcamValue":79},{"gcamCode":"c2.28","gcamValue":22},{"gcamCode":"c2.3","gcamValue":2},{"gcamCode":"c2.30","gcamValue":61},{"gcamCode":"c2.31","gcamValue":36},{"gcamCode":"c2.32","gcamValue":10},{"gcamCode":"c2.33","gcamValue":6},{"gcamCode":"c2.34","gcamValue":71},{"gcamCode":"c2.35","gcamValue":67},{"gcamCode":"c2.36","gcamValue":52},{"gcamCode":"c2.37","gcamValue":58},{"gcamCode":"c2.38","gcamValue":7},{"gcamCode":"c2.39","gcamValue":203},{"gcamCode":"c2.4","gcamValue":8},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":43},{"gcamCode":"c2.45","gcamValue":36},{"gcamCode":"c2.46","gcamValue":115},{"gcamCode":"c2.47","gcamValue":27},{"gcamCode":"c2.48","gcamValue":23},{"gcamCode":"c2.49","gcamValue":4},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":25},{"gcamCode":"c2.52","gcamValue":71},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":88},{"gcamCode":"c2.55","gcamValue":10},{"gcamCode":"c2.56","gcamValue":8},{"gcamCode":"c2.57","gcamValue":13},{"gcamCode":"c2.58","gcamValue":21},{"gcamCode":"c2.59","gcamValue":15},{"gcamCode":"c2.6","gcamValue":26},{"gcamCode":"c2.61","gcamValue":10},{"gcamCode":"c2.62","gcamValue":74},{"gcamCode":"c2.64","gcamValue":40},{"gcamCode":"c2.65","gcamValue":11},{"gcamCode":"c2.66","gcamValue":8},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":3},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.7","gcamValue":2},{"gcamCode":"c2.70","gcamValue":6},{"gcamCode":"c2.71","gcamValue":8},{"gcamCode":"c2.73","gcamValue":22},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":183},{"gcamCode":"c2.76","gcamValue":824},{"gcamCode":"c2.77","gcamValue":83},{"gcamCode":"c2.78","gcamValue":161},{"gcamCode":"c2.79","gcamValue":41},{"gcamCode":"c2.80","gcamValue":131},{"gcamCode":"c2.81","gcamValue":20},{"gcamCode":"c2.82","gcamValue":42},{"gcamCode":"c2.83","gcamValue":18},{"gcamCode":"c2.84","gcamValue":9},{"gcamCode":"c2.86","gcamValue":41},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":37},{"gcamCode":"c2.89","gcamValue":35},{"gcamCode":"c2.9","gcamValue":10},{"gcamCode":"c2.90","gcamValue":20},{"gcamCode":"c2.91","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":23},{"gcamCode":"c2.94","gcamValue":6},{"gcamCode":"c2.95","gcamValue":186},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":56},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.5","gcamValue":10},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c25.8","gcamValue":9},{"gcamCode":"c3.1","gcamValue":89},{"gcamCode":"c3.2","gcamValue":75},{"gcamCode":"c35.1","gcamValue":20},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":6},{"gcamCode":"c35.13","gcamValue":3},{"gcamCode":"c35.14","gcamValue":11},{"gcamCode":"c35.15","gcamValue":18},{"gcamCode":"c35.16","gcamValue":4},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":5},{"gcamCode":"c35.20","gcamValue":16},{"gcamCode":"c35.21","gcamValue":2},{"gcamCode":"c35.24","gcamValue":3},{"gcamCode":"c35.25","gcamValue":4},{"gcamCode":"c35.26","gcamValue":2},{"gcamCode":"c35.30","gcamValue":9},{"gcamCode":"c35.31","gcamValue":53},{"gcamCode":"c35.32","gcamValue":43},{"gcamCode":"c35.33","gcamValue":36},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":11},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":5},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.15","gcamValue":1},{"gcamCode":"c39.17","gcamValue":6},{"gcamCode":"c39.18","gcamValue":5},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":31},{"gcamCode":"c39.20","gcamValue":5},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.23","gcamValue":2},{"gcamCode":"c39.24","gcamValue":2},{"gcamCode":"c39.25","gcamValue":13},{"gcamCode":"c39.26","gcamValue":2},{"gcamCode":"c39.27","gcamValue":1},{"gcamCode":"c39.28","gcamValue":6},{"gcamCode":"c39.3","gcamValue":61},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.32","gcamValue":5},{"gcamCode":"c39.34","gcamValue":2},{"gcamCode":"c39.36","gcamValue":14},{"gcamCode":"c39.37","gcamValue":54},{"gcamCode":"c39.38","gcamValue":7},{"gcamCode":"c39.39","gcamValue":19},{"gcamCode":"c39.4","gcamValue":50},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":14},{"gcamCode":"c39.5","gcamValue":14},{"gcamCode":"c39.6","gcamValue":2},{"gcamCode":"c39.9","gcamValue":5},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.13","gcamValue":2},{"gcamCode":"c4.15","gcamValue":4},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":36},{"gcamCode":"c4.6","gcamValue":2},{"gcamCode":"c4.8","gcamValue":2},{"gcamCode":"c40.5","gcamValue":9},{"gcamCode":"c40.6","gcamValue":3},{"gcamCode":"c40.7","gcamValue":9},{"gcamCode":"c41.1","gcamValue":31},{"gcamCode":"c5.10","gcamValue":87},{"gcamCode":"c5.11","gcamValue":39},{"gcamCode":"c5.12","gcamValue":188},{"gcamCode":"c5.13","gcamValue":5},{"gcamCode":"c5.14","gcamValue":7},{"gcamCode":"c5.15","gcamValue":7},{"gcamCode":"c5.16","gcamValue":8},{"gcamCode":"c5.17","gcamValue":25},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":28},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":9},{"gcamCode":"c5.21","gcamValue":41},{"gcamCode":"c5.22","gcamValue":11},{"gcamCode":"c5.23","gcamValue":33},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":32},{"gcamCode":"c5.27","gcamValue":12},{"gcamCode":"c5.28","gcamValue":21},{"gcamCode":"c5.29","gcamValue":24},{"gcamCode":"c5.3","gcamValue":6},{"gcamCode":"c5.30","gcamValue":124},{"gcamCode":"c5.31","gcamValue":7},{"gcamCode":"c5.32","gcamValue":18},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":32},{"gcamCode":"c5.35","gcamValue":46},{"gcamCode":"c5.36","gcamValue":79},{"gcamCode":"c5.37","gcamValue":16},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.39","gcamValue":4},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":122},{"gcamCode":"c5.41","gcamValue":8},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":31},{"gcamCode":"c5.44","gcamValue":9},{"gcamCode":"c5.45","gcamValue":33},{"gcamCode":"c5.46","gcamValue":188},{"gcamCode":"c5.47","gcamValue":41},{"gcamCode":"c5.48","gcamValue":9},{"gcamCode":"c5.49","gcamValue":101},{"gcamCode":"c5.5","gcamValue":5},{"gcamCode":"c5.50","gcamValue":141},{"gcamCode":"c5.51","gcamValue":70},{"gcamCode":"c5.52","gcamValue":166},{"gcamCode":"c5.53","gcamValue":124},{"gcamCode":"c5.54","gcamValue":51},{"gcamCode":"c5.55","gcamValue":33},{"gcamCode":"c5.56","gcamValue":1},{"gcamCode":"c5.57","gcamValue":11},{"gcamCode":"c5.58","gcamValue":13},{"gcamCode":"c5.59","gcamValue":13},{"gcamCode":"c5.6","gcamValue":87},{"gcamCode":"c5.60","gcamValue":71},{"gcamCode":"c5.61","gcamValue":122},{"gcamCode":"c5.62","gcamValue":576},{"gcamCode":"c5.7","gcamValue":40},{"gcamCode":"c5.8","gcamValue":37},{"gcamCode":"c5.9","gcamValue":76},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":9},{"gcamCode":"c6.4","gcamValue":31},{"gcamCode":"c6.5","gcamValue":7},{"gcamCode":"c6.6","gcamValue":14},{"gcamCode":"c7.1","gcamValue":82},{"gcamCode":"c7.2","gcamValue":64},{"gcamCode":"c8.1","gcamValue":18},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.13","gcamValue":2},{"gcamCode":"c8.14","gcamValue":3},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":2},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":12},{"gcamCode":"c8.20","gcamValue":4},{"gcamCode":"c8.21","gcamValue":2},{"gcamCode":"c8.22","gcamValue":7},{"gcamCode":"c8.23","gcamValue":37},{"gcamCode":"c8.24","gcamValue":5},{"gcamCode":"c8.25","gcamValue":7},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":5},{"gcamCode":"c8.28","gcamValue":8},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.3","gcamValue":2},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":10},{"gcamCode":"c8.34","gcamValue":1},{"gcamCode":"c8.36","gcamValue":11},{"gcamCode":"c8.37","gcamValue":40},{"gcamCode":"c8.38","gcamValue":40},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":36},{"gcamCode":"c8.40","gcamValue":6},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":24},{"gcamCode":"c8.43","gcamValue":38},{"gcamCode":"c8.5","gcamValue":1},{"gcamCode":"c8.6","gcamValue":8},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":45},{"gcamCode":"c9.10","gcamValue":10},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1009","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":2},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":9},{"gcamCode":"c9.1021","gcamValue":16},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.1027","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":13},{"gcamCode":"c9.1030","gcamValue":17},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":6},{"gcamCode":"c9.1039","gcamValue":2},{"gcamCode":"c9.104","gcamValue":2},{"gcamCode":"c9.1040","gcamValue":3},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.107","gcamValue":9},{"gcamCode":"c9.109","gcamValue":10},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":10},{"gcamCode":"c9.112","gcamValue":1},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.115","gcamValue":3},{"gcamCode":"c9.116","gcamValue":8},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":9},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.122","gcamValue":9},{"gcamCode":"c9.123","gcamValue":5},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.125","gcamValue":6},{"gcamCode":"c9.126","gcamValue":2},{"gcamCode":"c9.127","gcamValue":8},{"gcamCode":"c9.128","gcamValue":52},{"gcamCode":"c9.129","gcamValue":8},{"gcamCode":"c9.130","gcamValue":14},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.133","gcamValue":5},{"gcamCode":"c9.134","gcamValue":8},{"gcamCode":"c9.135","gcamValue":11},{"gcamCode":"c9.136","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":4},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":9},{"gcamCode":"c9.142","gcamValue":4},{"gcamCode":"c9.143","gcamValue":11},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":4},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":20},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":3},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":38},{"gcamCode":"c9.159","gcamValue":5},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":16},{"gcamCode":"c9.162","gcamValue":17},{"gcamCode":"c9.164","gcamValue":10},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":22},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":21},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":6},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":16},{"gcamCode":"c9.178","gcamValue":8},{"gcamCode":"c9.179","gcamValue":3},{"gcamCode":"c9.18","gcamValue":19},{"gcamCode":"c9.180","gcamValue":5},{"gcamCode":"c9.181","gcamValue":3},{"gcamCode":"c9.182","gcamValue":6},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":17},{"gcamCode":"c9.188","gcamValue":10},{"gcamCode":"c9.189","gcamValue":2},{"gcamCode":"c9.19","gcamValue":4},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":3},{"gcamCode":"c9.192","gcamValue":9},{"gcamCode":"c9.193","gcamValue":5},{"gcamCode":"c9.194","gcamValue":5},{"gcamCode":"c9.195","gcamValue":13},{"gcamCode":"c9.196","gcamValue":6},{"gcamCode":"c9.197","gcamValue":5},{"gcamCode":"c9.198","gcamValue":11},{"gcamCode":"c9.2","gcamValue":4},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":8},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.202","gcamValue":4},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.205","gcamValue":5},{"gcamCode":"c9.206","gcamValue":11},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.21","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":19},{"gcamCode":"c9.213","gcamValue":2},{"gcamCode":"c9.214","gcamValue":17},{"gcamCode":"c9.215","gcamValue":4},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.224","gcamValue":8},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.229","gcamValue":3},{"gcamCode":"c9.23","gcamValue":22},{"gcamCode":"c9.230","gcamValue":5},{"gcamCode":"c9.231","gcamValue":6},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":5},{"gcamCode":"c9.234","gcamValue":2},{"gcamCode":"c9.235","gcamValue":15},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":5},{"gcamCode":"c9.238","gcamValue":6},{"gcamCode":"c9.24","gcamValue":4},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.245","gcamValue":4},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.249","gcamValue":5},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":6},{"gcamCode":"c9.251","gcamValue":3},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.253","gcamValue":3},{"gcamCode":"c9.254","gcamValue":3},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.256","gcamValue":2},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":15},{"gcamCode":"c9.259","gcamValue":13},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.260","gcamValue":6},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":6},{"gcamCode":"c9.263","gcamValue":5},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":3},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.270","gcamValue":7},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.272","gcamValue":1},{"gcamCode":"c9.273","gcamValue":2},{"gcamCode":"c9.274","gcamValue":6},{"gcamCode":"c9.275","gcamValue":4},{"gcamCode":"c9.276","gcamValue":6},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":5},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":7},{"gcamCode":"c9.283","gcamValue":3},{"gcamCode":"c9.284","gcamValue":3},{"gcamCode":"c9.285","gcamValue":16},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.287","gcamValue":2},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.289","gcamValue":13},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":7},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":19},{"gcamCode":"c9.294","gcamValue":5},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":37},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":9},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":5},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.31","gcamValue":2},{"gcamCode":"c9.312","gcamValue":6},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.319","gcamValue":3},{"gcamCode":"c9.32","gcamValue":5},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":5},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.328","gcamValue":3},{"gcamCode":"c9.33","gcamValue":30},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":3},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":2},{"gcamCode":"c9.34","gcamValue":18},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.344","gcamValue":1},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":10},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.358","gcamValue":7},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":7},{"gcamCode":"c9.371","gcamValue":9},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":15},{"gcamCode":"c9.377","gcamValue":2},{"gcamCode":"c9.378","gcamValue":14},{"gcamCode":"c9.383","gcamValue":12},{"gcamCode":"c9.384","gcamValue":2},{"gcamCode":"c9.385","gcamValue":2},{"gcamCode":"c9.386","gcamValue":4},{"gcamCode":"c9.387","gcamValue":3},{"gcamCode":"c9.39","gcamValue":24},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.391","gcamValue":2},{"gcamCode":"c9.392","gcamValue":1},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":5},{"gcamCode":"c9.4","gcamValue":4},{"gcamCode":"c9.40","gcamValue":6},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.404","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":16},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.418","gcamValue":3},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":8},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":3},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.424","gcamValue":3},{"gcamCode":"c9.427","gcamValue":2},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.430","gcamValue":8},{"gcamCode":"c9.431","gcamValue":1},{"gcamCode":"c9.432","gcamValue":21},{"gcamCode":"c9.433","gcamValue":13},{"gcamCode":"c9.434","gcamValue":4},{"gcamCode":"c9.435","gcamValue":3},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":4},{"gcamCode":"c9.439","gcamValue":2},{"gcamCode":"c9.44","gcamValue":14},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":7},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.449","gcamValue":3},{"gcamCode":"c9.45","gcamValue":4},{"gcamCode":"c9.450","gcamValue":1},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.458","gcamValue":6},{"gcamCode":"c9.459","gcamValue":10},{"gcamCode":"c9.46","gcamValue":6},{"gcamCode":"c9.460","gcamValue":2},{"gcamCode":"c9.461","gcamValue":8},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":7},{"gcamCode":"c9.464","gcamValue":7},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":17},{"gcamCode":"c9.467","gcamValue":4},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.469","gcamValue":1},{"gcamCode":"c9.47","gcamValue":5},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.471","gcamValue":1},{"gcamCode":"c9.472","gcamValue":3},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":3},{"gcamCode":"c9.476","gcamValue":14},{"gcamCode":"c9.477","gcamValue":5},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":13},{"gcamCode":"c9.48","gcamValue":11},{"gcamCode":"c9.480","gcamValue":12},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.483","gcamValue":3},{"gcamCode":"c9.484","gcamValue":1},{"gcamCode":"c9.487","gcamValue":1},{"gcamCode":"c9.488","gcamValue":7},{"gcamCode":"c9.489","gcamValue":7},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":5},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.497","gcamValue":4},{"gcamCode":"c9.498","gcamValue":12},{"gcamCode":"c9.5","gcamValue":7},{"gcamCode":"c9.50","gcamValue":2},{"gcamCode":"c9.500","gcamValue":6},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":6},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":5},{"gcamCode":"c9.51","gcamValue":1},{"gcamCode":"c9.511","gcamValue":22},{"gcamCode":"c9.512","gcamValue":8},{"gcamCode":"c9.513","gcamValue":16},{"gcamCode":"c9.514","gcamValue":4},{"gcamCode":"c9.515","gcamValue":2},{"gcamCode":"c9.517","gcamValue":8},{"gcamCode":"c9.518","gcamValue":4},{"gcamCode":"c9.519","gcamValue":8},{"gcamCode":"c9.52","gcamValue":1},{"gcamCode":"c9.521","gcamValue":12},{"gcamCode":"c9.522","gcamValue":28},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":6},{"gcamCode":"c9.528","gcamValue":3},{"gcamCode":"c9.53","gcamValue":4},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.533","gcamValue":2},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":18},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":3},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":5},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":9},{"gcamCode":"c9.55","gcamValue":8},{"gcamCode":"c9.550","gcamValue":5},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":9},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":4},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":16},{"gcamCode":"c9.561","gcamValue":11},{"gcamCode":"c9.562","gcamValue":5},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":4},{"gcamCode":"c9.567","gcamValue":5},{"gcamCode":"c9.568","gcamValue":3},{"gcamCode":"c9.569","gcamValue":3},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":12},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":4},{"gcamCode":"c9.575","gcamValue":4},{"gcamCode":"c9.576","gcamValue":6},{"gcamCode":"c9.579","gcamValue":48},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.581","gcamValue":8},{"gcamCode":"c9.582","gcamValue":4},{"gcamCode":"c9.583","gcamValue":2},{"gcamCode":"c9.584","gcamValue":2},{"gcamCode":"c9.585","gcamValue":2},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.588","gcamValue":6},{"gcamCode":"c9.589","gcamValue":4},{"gcamCode":"c9.59","gcamValue":5},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.591","gcamValue":2},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":2},{"gcamCode":"c9.598","gcamValue":3},{"gcamCode":"c9.599","gcamValue":4},{"gcamCode":"c9.60","gcamValue":1},{"gcamCode":"c9.600","gcamValue":6},{"gcamCode":"c9.601","gcamValue":4},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.604","gcamValue":3},{"gcamCode":"c9.605","gcamValue":2},{"gcamCode":"c9.606","gcamValue":3},{"gcamCode":"c9.608","gcamValue":1},{"gcamCode":"c9.61","gcamValue":6},{"gcamCode":"c9.610","gcamValue":2},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.615","gcamValue":2},{"gcamCode":"c9.616","gcamValue":3},{"gcamCode":"c9.618","gcamValue":9},{"gcamCode":"c9.619","gcamValue":10},{"gcamCode":"c9.62","gcamValue":6},{"gcamCode":"c9.621","gcamValue":2},{"gcamCode":"c9.622","gcamValue":4},{"gcamCode":"c9.624","gcamValue":28},{"gcamCode":"c9.625","gcamValue":9},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":6},{"gcamCode":"c9.631","gcamValue":2},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.635","gcamValue":3},{"gcamCode":"c9.637","gcamValue":2},{"gcamCode":"c9.638","gcamValue":5},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":5},{"gcamCode":"c9.640","gcamValue":12},{"gcamCode":"c9.641","gcamValue":3},{"gcamCode":"c9.642","gcamValue":25},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":23},{"gcamCode":"c9.649","gcamValue":5},{"gcamCode":"c9.65","gcamValue":2},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":48},{"gcamCode":"c9.654","gcamValue":10},{"gcamCode":"c9.655","gcamValue":9},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":1},{"gcamCode":"c9.659","gcamValue":5},{"gcamCode":"c9.66","gcamValue":5},{"gcamCode":"c9.660","gcamValue":12},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":8},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":8},{"gcamCode":"c9.668","gcamValue":5},{"gcamCode":"c9.669","gcamValue":12},{"gcamCode":"c9.67","gcamValue":5},{"gcamCode":"c9.670","gcamValue":10},{"gcamCode":"c9.671","gcamValue":9},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":7},{"gcamCode":"c9.674","gcamValue":3},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":16},{"gcamCode":"c9.677","gcamValue":9},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":4},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":4},{"gcamCode":"c9.686","gcamValue":5},{"gcamCode":"c9.687","gcamValue":19},{"gcamCode":"c9.688","gcamValue":2},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":4},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.698","gcamValue":5},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":4},{"gcamCode":"c9.70","gcamValue":8},{"gcamCode":"c9.701","gcamValue":29},{"gcamCode":"c9.702","gcamValue":3},{"gcamCode":"c9.703","gcamValue":1},{"gcamCode":"c9.704","gcamValue":13},{"gcamCode":"c9.705","gcamValue":8},{"gcamCode":"c9.708","gcamValue":20},{"gcamCode":"c9.71","gcamValue":12},{"gcamCode":"c9.710","gcamValue":17},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":10},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.717","gcamValue":2},{"gcamCode":"c9.718","gcamValue":3},{"gcamCode":"c9.719","gcamValue":8},{"gcamCode":"c9.72","gcamValue":3},{"gcamCode":"c9.720","gcamValue":4},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":3},{"gcamCode":"c9.724","gcamValue":8},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":54},{"gcamCode":"c9.727","gcamValue":8},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.73","gcamValue":5},{"gcamCode":"c9.730","gcamValue":36},{"gcamCode":"c9.731","gcamValue":3},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":4},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":14},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":14},{"gcamCode":"c9.740","gcamValue":9},{"gcamCode":"c9.741","gcamValue":11},{"gcamCode":"c9.742","gcamValue":5},{"gcamCode":"c9.744","gcamValue":8},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":10},{"gcamCode":"c9.747","gcamValue":3},{"gcamCode":"c9.748","gcamValue":23},{"gcamCode":"c9.75","gcamValue":5},{"gcamCode":"c9.750","gcamValue":15},{"gcamCode":"c9.752","gcamValue":3},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":3},{"gcamCode":"c9.757","gcamValue":15},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":6},{"gcamCode":"c9.76","gcamValue":11},{"gcamCode":"c9.760","gcamValue":7},{"gcamCode":"c9.761","gcamValue":5},{"gcamCode":"c9.762","gcamValue":34},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":57},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.77","gcamValue":2},{"gcamCode":"c9.770","gcamValue":4},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.778","gcamValue":3},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":5},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.782","gcamValue":3},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":3},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":4},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.794","gcamValue":9},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.796","gcamValue":7},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":5},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":8},{"gcamCode":"c9.804","gcamValue":7},{"gcamCode":"c9.806","gcamValue":5},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":6},{"gcamCode":"c9.812","gcamValue":7},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":5},{"gcamCode":"c9.816","gcamValue":5},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.818","gcamValue":3},{"gcamCode":"c9.82","gcamValue":6},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":5},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.83","gcamValue":30},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":4},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":7},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":8},{"gcamCode":"c9.843","gcamValue":3},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":5},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.85","gcamValue":9},{"gcamCode":"c9.851","gcamValue":3},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":12},{"gcamCode":"c9.858","gcamValue":8},{"gcamCode":"c9.859","gcamValue":1},{"gcamCode":"c9.86","gcamValue":12},{"gcamCode":"c9.860","gcamValue":16},{"gcamCode":"c9.861","gcamValue":17},{"gcamCode":"c9.862","gcamValue":4},{"gcamCode":"c9.863","gcamValue":7},{"gcamCode":"c9.864","gcamValue":49},{"gcamCode":"c9.865","gcamValue":10},{"gcamCode":"c9.866","gcamValue":9},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":35},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":6},{"gcamCode":"c9.870","gcamValue":2},{"gcamCode":"c9.871","gcamValue":2},{"gcamCode":"c9.873","gcamValue":6},{"gcamCode":"c9.874","gcamValue":7},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":19},{"gcamCode":"c9.878","gcamValue":3},{"gcamCode":"c9.879","gcamValue":11},{"gcamCode":"c9.88","gcamValue":6},{"gcamCode":"c9.880","gcamValue":4},{"gcamCode":"c9.881","gcamValue":1},{"gcamCode":"c9.882","gcamValue":10},{"gcamCode":"c9.883","gcamValue":9},{"gcamCode":"c9.884","gcamValue":11},{"gcamCode":"c9.885","gcamValue":2},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":2},{"gcamCode":"c9.890","gcamValue":11},{"gcamCode":"c9.891","gcamValue":6},{"gcamCode":"c9.893","gcamValue":4},{"gcamCode":"c9.894","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":3},{"gcamCode":"c9.898","gcamValue":5},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":6},{"gcamCode":"c9.900","gcamValue":20},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":20},{"gcamCode":"c9.908","gcamValue":24},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.912","gcamValue":2},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":10},{"gcamCode":"c9.921","gcamValue":4},{"gcamCode":"c9.923","gcamValue":6},{"gcamCode":"c9.924","gcamValue":2},{"gcamCode":"c9.926","gcamValue":15},{"gcamCode":"c9.928","gcamValue":5},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":9},{"gcamCode":"c9.931","gcamValue":5},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":15},{"gcamCode":"c9.935","gcamValue":42},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":12},{"gcamCode":"c9.940","gcamValue":1},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":6},{"gcamCode":"c9.945","gcamValue":7},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.95","gcamValue":6},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.954","gcamValue":2},{"gcamCode":"c9.955","gcamValue":9},{"gcamCode":"c9.96","gcamValue":11},{"gcamCode":"c9.960","gcamValue":1},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":11},{"gcamCode":"c9.967","gcamValue":8},{"gcamCode":"c9.968","gcamValue":3},{"gcamCode":"c9.969","gcamValue":2},{"gcamCode":"c9.97","gcamValue":6},{"gcamCode":"c9.972","gcamValue":35},{"gcamCode":"c9.973","gcamValue":7},{"gcamCode":"c9.974","gcamValue":14},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":12},{"gcamCode":"c9.979","gcamValue":1},{"gcamCode":"c9.98","gcamValue":4},{"gcamCode":"c9.980","gcamValue":8},{"gcamCode":"c9.981","gcamValue":4},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":7},{"gcamCode":"c9.985","gcamValue":19},{"gcamCode":"c9.986","gcamValue":9},{"gcamCode":"c9.987","gcamValue":14},{"gcamCode":"c9.99","gcamValue":4},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.991","gcamValue":2},{"gcamCode":"c9.992","gcamValue":1},{"gcamCode":"c9.995","gcamValue":3},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.28301206485039},{"gcamCode":"v10.2","gcamValue":0.27219729099026},{"gcamCode":"v11.1","gcamValue":0.0834728994252874},{"gcamCode":"v19.1","gcamValue":6.29215827338129},{"gcamCode":"v19.2","gcamValue":5.32956834532374},{"gcamCode":"v19.3","gcamValue":5.41525179856115},{"gcamCode":"v19.4","gcamValue":6.18618705035971},{"gcamCode":"v19.5","gcamValue":5.19122302158273},{"gcamCode":"v19.6","gcamValue":5.38669064748201},{"gcamCode":"v19.7","gcamValue":6.39942446043166},{"gcamCode":"v19.8","gcamValue":5.52294964028777},{"gcamCode":"v19.9","gcamValue":5.4436690647482},{"gcamCode":"v20.1","gcamValue":0.558333333333333},{"gcamCode":"v20.10","gcamValue":-0.565857142857143},{"gcamCode":"v20.11","gcamValue":0.613958333333333},{"gcamCode":"v20.12","gcamValue":-0.538416666666667},{"gcamCode":"v20.13","gcamValue":0.42976404494382},{"gcamCode":"v20.14","gcamValue":-0.421518518518519},{"gcamCode":"v20.15","gcamValue":0.369984496124031},{"gcamCode":"v20.16","gcamValue":-0.317555555555556},{"gcamCode":"v20.2","gcamValue":-0.366},{"gcamCode":"v20.3","gcamValue":0.613714285714286},{"gcamCode":"v20.4","gcamValue":-0.4672},{"gcamCode":"v20.5","gcamValue":0.685666666666667},{"gcamCode":"v20.6","gcamValue":-0.556},{"gcamCode":"v20.7","gcamValue":0.697363636363636},{"gcamCode":"v20.8","gcamValue":-0.556},{"gcamCode":"v20.9","gcamValue":0.660882352941177},{"gcamCode":"v21.1","gcamValue":5.51219961240307},{"gcamCode":"v26.1","gcamValue":0.383333333333333}]https://www.thenation.com/wp-content/uploads/2019/05/Morgan_Bassichis_img.jpg[""][""][""][{"charLength":138,"verb":"","quote":"We don't eat anymore/ We don't cook meals/ We don't go to the library store anymore/ We don't do those meditations anymore/ There no time","charOffset":4627},{"charLength":93,"verb":"","quote":"I got my headshot taken like , 'Alan Cumming , when you're done in Cabaret , here I am , '","charOffset":5299},{"charLength":26,"verb":"","quote":"I don't want your freedom!","charOffset":5955}][{"name":"More Protest Songs","charOffset":73},{"name":"Morgan Bassichis","charOffset":95},{"name":"Cast You","charOffset":905},{"name":"More Protest Songs","charOffset":1964},{"name":"Their Friends Between Revolutions","charOffset":2195},{"name":"Larry Mitchell","charOffset":2273},{"name":"Morgan Bassichis","charOffset":2539},{"name":"Sesame Street","charOffset":3143},{"name":"Shall Not Be Moved","charOffset":4443},{"name":"Porn Song","charOffset":4524},{"name":"Sarah Vaughn","charOffset":5124},{"name":"New York","charOffset":5292},{"name":"Alan Cumming","charOffset":5392},{"name":"Jibz Cameron","charOffset":5548},{"name":"Dynasty Handbag","charOffset":5584},{"name":"Malik Gaines","charOffset":5775},{"name":"New York","charOffset":5880},{"name":"George Michael","charOffset":5970},{"name":"Gregg Bordowitz","charOffset":6386},{"name":"More Protest Songs","charOffset":6937},{"name":"Amy Winehouse","charOffset":7339},{"name":"More Protest Songs","charOffset":7534}][{"amount":2,"amountType":"lines repeated between broken","charOffset":418},{"amount":2,"amountType":"shrieking the Wham","charOffset":4672}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.artforum.com/performance/morgan-bassichis-faggot-and-friends-73053</PAGE_LINKS><PAGE_AUTHORS>Marissa Brostoff</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190520171500</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":5}2019-05-23T12:15:00.000+0000WEBnews-medical.nethttps://www.news-medical.net/news/20190523/Study-revolutionizes-treatment-principles-for-functional-mitral-regurgitation.aspx[][]["CRISISLEX_C03_WELLBEING_HEALTH","TAX_DISEASE","TAX_DISEASE_MITRAL_REGURGITATION","MEDICAL","GENERAL_HEALTH","WB_1331_HEALTH_TECHNOLOGIES","WB_1350_PHARMACEUTICALS","WB_621_HEALTH_NUTRITION_AND_POPULATION","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITAL","IDEOLOGY","TAX_FNCACT","TAX_FNCACT_BISHOP","TAX_ETHNICITY","TAX_ETHNICITY_GREEK","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_GREEK","TAX_DISEASE_HEART_FAILURE","TAX_ETHNICITY_AMERICAN","EDUCATION","SOC_POINTSOFINTEREST_COLLEGE","SCIENCE","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","TAX_DISEASE_CONVENTIONAL"][{"theme":"IDEOLOGY","charOffset":800},{"theme":"IDEOLOGY","charOffset":1373},{"theme":"TAX_DISEASE_HEART_FAILURE","charOffset":1783},{"theme":"EDUCATION","charOffset":1883},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":1883},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":2392},{"theme":"GENERAL_HEALTH","charOffset":458},{"theme":"GENERAL_HEALTH","charOffset":1409},{"theme":"GENERAL_HEALTH","charOffset":1635},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":458},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":1409},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":1635},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":458},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":1409},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":1635},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":458},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1409},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1635},{"theme":"TAX_DISEASE_MITRAL_REGURGITATION","charOffset":150},{"theme":"TAX_DISEASE_MITRAL_REGURGITATION","charOffset":836},{"theme":"TAX_DISEASE_MITRAL_REGURGITATION","charOffset":870},{"theme":"TAX_DISEASE_MITRAL_REGURGITATION","charOffset":1234},{"theme":"TAX_DISEASE_MITRAL_REGURGITATION","charOffset":2765},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":562},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":2841},{"theme":"MEDICAL","charOffset":326},{"theme":"MEDICAL","charOffset":755},{"theme":"MEDICAL","charOffset":2329},{"theme":"MEDICAL","charOffset":2419},{"theme":"MEDICAL","charOffset":2541},{"theme":"SCIENCE","charOffset":1936},{"theme":"TAX_DISEASE_CONVENTIONAL","charOffset":2533},{"theme":"TAX_FNCACT_BISHOP","charOffset":1272},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":113},{"theme":"TAX_ETHNICITY_GREEK","charOffset":1301},{"theme":"TAX_WORLDLANGUAGES_GREEK","charOffset":1301},{"theme":"TAX_ETHNICITY_AMERICAN","charOffset":1875}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"WORLDCITY","geoName":"Vienna, Wien, Austria","countryCode":"AU","adm1Code":"AU09","adm2Code":"","geoPoint":{"latitude":48.2,"longitude":16.3667},"featureId":"-1995499"},{"geoType":"COUNTRY","geoName":"Greece","countryCode":"GR","adm1Code":"GR","adm2Code":"","geoPoint":{"latitude":39,"longitude":22},"featureId":"GR"}][{"location":{"geoType":"WORLDCITY","geoName":"Vienna, Wien, Austria","countryCode":"AU","adm1Code":"AU09","adm2Code":"5672","geoPoint":{"latitude":48.2,"longitude":16.3667},"featureId":"-1995499"},"charOffset":518},{"location":{"geoType":"WORLDCITY","geoName":"Vienna, Wien, Austria","countryCode":"AU","adm1Code":"AU09","adm2Code":"5672","geoPoint":{"latitude":48.2,"longitude":16.3667},"featureId":"-1995499"},"charOffset":536},{"location":{"geoType":"WORLDCITY","geoName":"Vienna, Wien, Austria","countryCode":"AU","adm1Code":"AU09","adm2Code":"5672","geoPoint":{"latitude":48.2,"longitude":16.3667},"featureId":"-1995499"},"charOffset":2815},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":365},{"location":{"geoType":"COUNTRY","geoName":"Greek","countryCode":"GR","adm1Code":"GR","adm2Code":"","geoPoint":{"latitude":39,"longitude":22},"featureId":"GR"},"charOffset":1301}]["philipp bartko"][{"person":"Philipp Bartko","charOffset":418}]["journal of the american college of cardiology","georg goliasch department of medicine","united states"][{"organisation":"Journal Of The American College Of Cardiology","charOffset":1897},{"organisation":"Georg Goliasch Department Of Medicine","charOffset":458},{"organisation":"United States","charOffset":365}]{"tone":-1.01833,"positiveScore":2.240326,"negativeScore":3.2586558,"polarity":5.4989815,"activityReferenceDensity":20.570265,"selfGroupReferenceDensity":0.610998,"wordCount":465}[][{"gcamCode":"wc","gcamValue":465},{"gcamCode":"c12.1","gcamValue":25},{"gcamCode":"c12.10","gcamValue":65},{"gcamCode":"c12.12","gcamValue":20},{"gcamCode":"c12.13","gcamValue":18},{"gcamCode":"c12.14","gcamValue":36},{"gcamCode":"c12.3","gcamValue":10},{"gcamCode":"c12.4","gcamValue":6},{"gcamCode":"c12.5","gcamValue":12},{"gcamCode":"c12.7","gcamValue":30},{"gcamCode":"c12.8","gcamValue":22},{"gcamCode":"c12.9","gcamValue":44},{"gcamCode":"c13.11","gcamValue":2},{"gcamCode":"c13.12","gcamValue":10},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":28},{"gcamCode":"c14.10","gcamValue":12},{"gcamCode":"c14.11","gcamValue":54},{"gcamCode":"c14.2","gcamValue":30},{"gcamCode":"c14.3","gcamValue":24},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":39},{"gcamCode":"c14.7","gcamValue":8},{"gcamCode":"c14.8","gcamValue":6},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.141","gcamValue":3},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.201","gcamValue":3},{"gcamCode":"c15.217","gcamValue":3},{"gcamCode":"c15.219","gcamValue":3},{"gcamCode":"c15.24","gcamValue":2},{"gcamCode":"c15.246","gcamValue":3},{"gcamCode":"c15.247","gcamValue":3},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.28","gcamValue":3},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.4","gcamValue":3},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.65","gcamValue":3},{"gcamCode":"c16.100","gcamValue":12},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":3},{"gcamCode":"c16.104","gcamValue":1},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.109","gcamValue":33},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":65},{"gcamCode":"c16.111","gcamValue":9},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":51},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":8},{"gcamCode":"c16.117","gcamValue":28},{"gcamCode":"c16.118","gcamValue":41},{"gcamCode":"c16.12","gcamValue":57},{"gcamCode":"c16.120","gcamValue":15},{"gcamCode":"c16.121","gcamValue":25},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.123","gcamValue":3},{"gcamCode":"c16.124","gcamValue":5},{"gcamCode":"c16.125","gcamValue":21},{"gcamCode":"c16.126","gcamValue":23},{"gcamCode":"c16.127","gcamValue":51},{"gcamCode":"c16.128","gcamValue":10},{"gcamCode":"c16.129","gcamValue":65},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":4},{"gcamCode":"c16.131","gcamValue":25},{"gcamCode":"c16.132","gcamValue":3},{"gcamCode":"c16.134","gcamValue":51},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":11},{"gcamCode":"c16.139","gcamValue":25},{"gcamCode":"c16.140","gcamValue":13},{"gcamCode":"c16.144","gcamValue":1},{"gcamCode":"c16.145","gcamValue":23},{"gcamCode":"c16.146","gcamValue":25},{"gcamCode":"c16.149","gcamValue":10},{"gcamCode":"c16.152","gcamValue":6},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":45},{"gcamCode":"c16.16","gcamValue":5},{"gcamCode":"c16.161","gcamValue":34},{"gcamCode":"c16.162","gcamValue":20},{"gcamCode":"c16.163","gcamValue":18},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.19","gcamValue":12},{"gcamCode":"c16.2","gcamValue":16},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":6},{"gcamCode":"c16.26","gcamValue":85},{"gcamCode":"c16.27","gcamValue":9},{"gcamCode":"c16.3","gcamValue":4},{"gcamCode":"c16.31","gcamValue":40},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":52},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":32},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":48},{"gcamCode":"c16.38","gcamValue":18},{"gcamCode":"c16.4","gcamValue":85},{"gcamCode":"c16.41","gcamValue":26},{"gcamCode":"c16.45","gcamValue":30},{"gcamCode":"c16.46","gcamValue":5},{"gcamCode":"c16.47","gcamValue":66},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":5},{"gcamCode":"c16.52","gcamValue":17},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.56","gcamValue":5},{"gcamCode":"c16.57","gcamValue":258},{"gcamCode":"c16.58","gcamValue":45},{"gcamCode":"c16.6","gcamValue":52},{"gcamCode":"c16.60","gcamValue":5},{"gcamCode":"c16.62","gcamValue":26},{"gcamCode":"c16.63","gcamValue":9},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":6},{"gcamCode":"c16.68","gcamValue":18},{"gcamCode":"c16.69","gcamValue":26},{"gcamCode":"c16.7","gcamValue":9},{"gcamCode":"c16.70","gcamValue":26},{"gcamCode":"c16.71","gcamValue":3},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":4},{"gcamCode":"c16.75","gcamValue":25},{"gcamCode":"c16.76","gcamValue":6},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":8},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":7},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.83","gcamValue":6},{"gcamCode":"c16.84","gcamValue":34},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":32},{"gcamCode":"c16.88","gcamValue":60},{"gcamCode":"c16.89","gcamValue":10},{"gcamCode":"c16.90","gcamValue":27},{"gcamCode":"c16.91","gcamValue":22},{"gcamCode":"c16.92","gcamValue":66},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":39},{"gcamCode":"c16.95","gcamValue":20},{"gcamCode":"c16.96","gcamValue":9},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":51},{"gcamCode":"c16.99","gcamValue":2},{"gcamCode":"c17.1","gcamValue":116},{"gcamCode":"c17.10","gcamValue":72},{"gcamCode":"c17.11","gcamValue":69},{"gcamCode":"c17.12","gcamValue":18},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":7},{"gcamCode":"c17.15","gcamValue":24},{"gcamCode":"c17.16","gcamValue":17},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":27},{"gcamCode":"c17.2","gcamValue":21},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":7},{"gcamCode":"c17.23","gcamValue":5},{"gcamCode":"c17.24","gcamValue":60},{"gcamCode":"c17.25","gcamValue":6},{"gcamCode":"c17.26","gcamValue":5},{"gcamCode":"c17.27","gcamValue":50},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":11},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":10},{"gcamCode":"c17.31","gcamValue":27},{"gcamCode":"c17.32","gcamValue":23},{"gcamCode":"c17.33","gcamValue":22},{"gcamCode":"c17.34","gcamValue":13},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":16},{"gcamCode":"c17.37","gcamValue":6},{"gcamCode":"c17.39","gcamValue":9},{"gcamCode":"c17.4","gcamValue":121},{"gcamCode":"c17.40","gcamValue":9},{"gcamCode":"c17.41","gcamValue":13},{"gcamCode":"c17.42","gcamValue":20},{"gcamCode":"c17.43","gcamValue":21},{"gcamCode":"c17.5","gcamValue":96},{"gcamCode":"c17.6","gcamValue":11},{"gcamCode":"c17.7","gcamValue":79},{"gcamCode":"c17.8","gcamValue":59},{"gcamCode":"c17.9","gcamValue":38},{"gcamCode":"c18.147","gcamValue":1},{"gcamCode":"c18.149","gcamValue":11},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.197","gcamValue":2},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":5},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.82","gcamValue":1},{"gcamCode":"c2.1","gcamValue":19},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":12},{"gcamCode":"c2.102","gcamValue":20},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":66},{"gcamCode":"c2.106","gcamValue":3},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.11","gcamValue":13},{"gcamCode":"c2.110","gcamValue":8},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":25},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":20},{"gcamCode":"c2.119","gcamValue":131},{"gcamCode":"c2.12","gcamValue":30},{"gcamCode":"c2.121","gcamValue":37},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":3},{"gcamCode":"c2.125","gcamValue":24},{"gcamCode":"c2.126","gcamValue":25},{"gcamCode":"c2.127","gcamValue":53},{"gcamCode":"c2.128","gcamValue":8},{"gcamCode":"c2.129","gcamValue":18},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":7},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.136","gcamValue":3},{"gcamCode":"c2.137","gcamValue":4},{"gcamCode":"c2.139","gcamValue":4},{"gcamCode":"c2.14","gcamValue":37},{"gcamCode":"c2.140","gcamValue":4},{"gcamCode":"c2.141","gcamValue":5},{"gcamCode":"c2.143","gcamValue":23},{"gcamCode":"c2.144","gcamValue":6},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":4},{"gcamCode":"c2.147","gcamValue":78},{"gcamCode":"c2.148","gcamValue":29},{"gcamCode":"c2.15","gcamValue":13},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.152","gcamValue":5},{"gcamCode":"c2.153","gcamValue":16},{"gcamCode":"c2.154","gcamValue":5},{"gcamCode":"c2.155","gcamValue":60},{"gcamCode":"c2.156","gcamValue":18},{"gcamCode":"c2.157","gcamValue":57},{"gcamCode":"c2.158","gcamValue":38},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.160","gcamValue":19},{"gcamCode":"c2.161","gcamValue":2},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":9},{"gcamCode":"c2.167","gcamValue":4},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.174","gcamValue":3},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":30},{"gcamCode":"c2.179","gcamValue":16},{"gcamCode":"c2.18","gcamValue":24},{"gcamCode":"c2.180","gcamValue":24},{"gcamCode":"c2.181","gcamValue":31},{"gcamCode":"c2.183","gcamValue":31},{"gcamCode":"c2.185","gcamValue":94},{"gcamCode":"c2.186","gcamValue":9},{"gcamCode":"c2.187","gcamValue":31},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":9},{"gcamCode":"c2.193","gcamValue":36},{"gcamCode":"c2.195","gcamValue":45},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":7},{"gcamCode":"c2.198","gcamValue":55},{"gcamCode":"c2.199","gcamValue":11},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":21},{"gcamCode":"c2.204","gcamValue":42},{"gcamCode":"c2.205","gcamValue":8},{"gcamCode":"c2.206","gcamValue":10},{"gcamCode":"c2.207","gcamValue":4},{"gcamCode":"c2.209","gcamValue":9},{"gcamCode":"c2.21","gcamValue":13},{"gcamCode":"c2.210","gcamValue":53},{"gcamCode":"c2.213","gcamValue":13},{"gcamCode":"c2.214","gcamValue":22},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":14},{"gcamCode":"c2.219","gcamValue":3},{"gcamCode":"c2.220","gcamValue":18},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":15},{"gcamCode":"c2.226","gcamValue":9},{"gcamCode":"c2.227","gcamValue":3},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":37},{"gcamCode":"c2.26","gcamValue":20},{"gcamCode":"c2.27","gcamValue":20},{"gcamCode":"c2.28","gcamValue":9},{"gcamCode":"c2.30","gcamValue":12},{"gcamCode":"c2.31","gcamValue":29},{"gcamCode":"c2.32","gcamValue":9},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":17},{"gcamCode":"c2.35","gcamValue":6},{"gcamCode":"c2.36","gcamValue":5},{"gcamCode":"c2.37","gcamValue":6},{"gcamCode":"c2.39","gcamValue":70},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.44","gcamValue":31},{"gcamCode":"c2.45","gcamValue":18},{"gcamCode":"c2.46","gcamValue":38},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":13},{"gcamCode":"c2.52","gcamValue":41},{"gcamCode":"c2.54","gcamValue":49},{"gcamCode":"c2.55","gcamValue":8},{"gcamCode":"c2.56","gcamValue":8},{"gcamCode":"c2.57","gcamValue":14},{"gcamCode":"c2.58","gcamValue":6},{"gcamCode":"c2.6","gcamValue":6},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.62","gcamValue":26},{"gcamCode":"c2.64","gcamValue":10},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":4},{"gcamCode":"c2.75","gcamValue":63},{"gcamCode":"c2.76","gcamValue":321},{"gcamCode":"c2.77","gcamValue":38},{"gcamCode":"c2.78","gcamValue":63},{"gcamCode":"c2.79","gcamValue":8},{"gcamCode":"c2.80","gcamValue":51},{"gcamCode":"c2.81","gcamValue":5},{"gcamCode":"c2.82","gcamValue":20},{"gcamCode":"c2.83","gcamValue":7},{"gcamCode":"c2.84","gcamValue":4},{"gcamCode":"c2.86","gcamValue":20},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":13},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":5},{"gcamCode":"c2.93","gcamValue":19},{"gcamCode":"c2.95","gcamValue":90},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":14},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c3.1","gcamValue":26},{"gcamCode":"c3.2","gcamValue":35},{"gcamCode":"c35.1","gcamValue":9},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":6},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":4},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":42},{"gcamCode":"c35.32","gcamValue":5},{"gcamCode":"c35.33","gcamValue":13},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":13},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.7","gcamValue":4},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c35.9","gcamValue":4},{"gcamCode":"c39.14","gcamValue":5},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":9},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":17},{"gcamCode":"c39.36","gcamValue":5},{"gcamCode":"c39.37","gcamValue":18},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":18},{"gcamCode":"c39.40","gcamValue":5},{"gcamCode":"c39.41","gcamValue":7},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.23","gcamValue":25},{"gcamCode":"c4.3","gcamValue":5},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c41.1","gcamValue":26},{"gcamCode":"c5.10","gcamValue":39},{"gcamCode":"c5.11","gcamValue":10},{"gcamCode":"c5.12","gcamValue":65},{"gcamCode":"c5.15","gcamValue":14},{"gcamCode":"c5.16","gcamValue":9},{"gcamCode":"c5.17","gcamValue":23},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":7},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":8},{"gcamCode":"c5.26","gcamValue":5},{"gcamCode":"c5.27","gcamValue":5},{"gcamCode":"c5.28","gcamValue":9},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.3","gcamValue":3},{"gcamCode":"c5.30","gcamValue":44},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":18},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.40","gcamValue":18},{"gcamCode":"c5.43","gcamValue":11},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":9},{"gcamCode":"c5.46","gcamValue":79},{"gcamCode":"c5.47","gcamValue":22},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":41},{"gcamCode":"c5.50","gcamValue":42},{"gcamCode":"c5.51","gcamValue":35},{"gcamCode":"c5.52","gcamValue":50},{"gcamCode":"c5.53","gcamValue":50},{"gcamCode":"c5.54","gcamValue":22},{"gcamCode":"c5.55","gcamValue":2},{"gcamCode":"c5.58","gcamValue":3},{"gcamCode":"c5.6","gcamValue":28},{"gcamCode":"c5.60","gcamValue":5},{"gcamCode":"c5.61","gcamValue":27},{"gcamCode":"c5.62","gcamValue":222},{"gcamCode":"c5.7","gcamValue":16},{"gcamCode":"c5.8","gcamValue":11},{"gcamCode":"c5.9","gcamValue":22},{"gcamCode":"c6.1","gcamValue":3},{"gcamCode":"c6.2","gcamValue":5},{"gcamCode":"c6.4","gcamValue":11},{"gcamCode":"c6.5","gcamValue":11},{"gcamCode":"c7.1","gcamValue":22},{"gcamCode":"c7.2","gcamValue":26},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":4},{"gcamCode":"c8.23","gcamValue":20},{"gcamCode":"c8.25","gcamValue":9},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":3},{"gcamCode":"c8.33","gcamValue":3},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":7},{"gcamCode":"c8.38","gcamValue":9},{"gcamCode":"c8.39","gcamValue":4},{"gcamCode":"c8.4","gcamValue":24},{"gcamCode":"c8.40","gcamValue":4},{"gcamCode":"c8.41","gcamValue":7},{"gcamCode":"c8.42","gcamValue":9},{"gcamCode":"c8.43","gcamValue":12},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c9.1","gcamValue":25},{"gcamCode":"c9.10","gcamValue":7},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1009","gcamValue":1},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":4},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":7},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.12","gcamValue":5},{"gcamCode":"c9.120","gcamValue":1},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":4},{"gcamCode":"c9.125","gcamValue":4},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.128","gcamValue":29},{"gcamCode":"c9.129","gcamValue":5},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.132","gcamValue":2},{"gcamCode":"c9.134","gcamValue":4},{"gcamCode":"c9.135","gcamValue":4},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":9},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":4},{"gcamCode":"c9.162","gcamValue":7},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.165","gcamValue":5},{"gcamCode":"c9.166","gcamValue":5},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.175","gcamValue":3},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":7},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":4},{"gcamCode":"c9.190","gcamValue":3},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":1},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":13},{"gcamCode":"c9.201","gcamValue":3},{"gcamCode":"c9.202","gcamValue":4},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.210","gcamValue":3},{"gcamCode":"c9.212","gcamValue":3},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":2},{"gcamCode":"c9.224","gcamValue":1},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.231","gcamValue":4},{"gcamCode":"c9.232","gcamValue":3},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.238","gcamValue":5},{"gcamCode":"c9.239","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.249","gcamValue":4},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":2},{"gcamCode":"c9.260","gcamValue":4},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":2},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.273","gcamValue":6},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.28","gcamValue":4},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.287","gcamValue":2},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.293","gcamValue":10},{"gcamCode":"c9.3","gcamValue":25},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.327","gcamValue":2},{"gcamCode":"c9.328","gcamValue":1},{"gcamCode":"c9.33","gcamValue":12},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.34","gcamValue":8},{"gcamCode":"c9.343","gcamValue":6},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.352","gcamValue":1},{"gcamCode":"c9.357","gcamValue":1},{"gcamCode":"c9.358","gcamValue":11},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":6},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.370","gcamValue":5},{"gcamCode":"c9.372","gcamValue":4},{"gcamCode":"c9.375","gcamValue":1},{"gcamCode":"c9.38","gcamValue":2},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.386","gcamValue":4},{"gcamCode":"c9.39","gcamValue":6},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.42","gcamValue":7},{"gcamCode":"c9.421","gcamValue":2},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.44","gcamValue":7},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.45","gcamValue":2},{"gcamCode":"c9.455","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.468","gcamValue":6},{"gcamCode":"c9.470","gcamValue":3},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":3},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":5},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":8},{"gcamCode":"c9.481","gcamValue":3},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.487","gcamValue":3},{"gcamCode":"c9.488","gcamValue":6},{"gcamCode":"c9.489","gcamValue":5},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":4},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":7},{"gcamCode":"c9.5","gcamValue":5},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.503","gcamValue":2},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":9},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":4},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":4},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.53","gcamValue":4},{"gcamCode":"c9.532","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.540","gcamValue":4},{"gcamCode":"c9.542","gcamValue":4},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.549","gcamValue":4},{"gcamCode":"c9.55","gcamValue":7},{"gcamCode":"c9.550","gcamValue":2},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.558","gcamValue":2},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.564","gcamValue":5},{"gcamCode":"c9.567","gcamValue":3},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":2},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":26},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.581","gcamValue":11},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.587","gcamValue":2},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.597","gcamValue":3},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.609","gcamValue":2},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":3},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.626","gcamValue":4},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.632","gcamValue":6},{"gcamCode":"c9.635","gcamValue":5},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":3},{"gcamCode":"c9.64","gcamValue":4},{"gcamCode":"c9.640","gcamValue":6},{"gcamCode":"c9.641","gcamValue":4},{"gcamCode":"c9.642","gcamValue":6},{"gcamCode":"c9.646","gcamValue":5},{"gcamCode":"c9.648","gcamValue":11},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.65","gcamValue":1},{"gcamCode":"c9.653","gcamValue":31},{"gcamCode":"c9.655","gcamValue":7},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":6},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":5},{"gcamCode":"c9.664","gcamValue":1},{"gcamCode":"c9.665","gcamValue":2},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":6},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.670","gcamValue":10},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":8},{"gcamCode":"c9.673","gcamValue":4},{"gcamCode":"c9.674","gcamValue":3},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":10},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.679","gcamValue":5},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":5},{"gcamCode":"c9.684","gcamValue":3},{"gcamCode":"c9.686","gcamValue":4},{"gcamCode":"c9.687","gcamValue":5},{"gcamCode":"c9.690","gcamValue":18},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.698","gcamValue":3},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":3},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":5},{"gcamCode":"c9.71","gcamValue":6},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":8},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.724","gcamValue":5},{"gcamCode":"c9.726","gcamValue":30},{"gcamCode":"c9.727","gcamValue":8},{"gcamCode":"c9.730","gcamValue":24},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.749","gcamValue":4},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.752","gcamValue":4},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":6},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":24},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":28},{"gcamCode":"c9.769","gcamValue":3},{"gcamCode":"c9.77","gcamValue":2},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":3},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.788","gcamValue":4},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":3},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.812","gcamValue":4},{"gcamCode":"c9.814","gcamValue":4},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.83","gcamValue":14},{"gcamCode":"c9.830","gcamValue":3},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":9},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.842","gcamValue":3},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":6},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.854","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":5},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.859","gcamValue":2},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":10},{"gcamCode":"c9.861","gcamValue":5},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":7},{"gcamCode":"c9.864","gcamValue":24},{"gcamCode":"c9.865","gcamValue":5},{"gcamCode":"c9.866","gcamValue":6},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":28},{"gcamCode":"c9.869","gcamValue":5},{"gcamCode":"c9.87","gcamValue":6},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.892","gcamValue":4},{"gcamCode":"c9.899","gcamValue":6},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":3},{"gcamCode":"c9.901","gcamValue":4},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":10},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.942","gcamValue":5},{"gcamCode":"c9.945","gcamValue":3},{"gcamCode":"c9.946","gcamValue":4},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.952","gcamValue":4},{"gcamCode":"c9.954","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":5},{"gcamCode":"c9.973","gcamValue":4},{"gcamCode":"c9.978","gcamValue":5},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.983","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":6},{"gcamCode":"c9.987","gcamValue":6},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.263394607843137},{"gcamCode":"v10.2","gcamValue":0.27407507183908},{"gcamCode":"v11.1","gcamValue":0.0684550148809524},{"gcamCode":"v19.1","gcamValue":5.17069767441861},{"gcamCode":"v19.2","gcamValue":5.32069767441861},{"gcamCode":"v19.3","gcamValue":4.77139534883721},{"gcamCode":"v19.4","gcamValue":5.2246511627907},{"gcamCode":"v19.5","gcamValue":5.23348837209302},{"gcamCode":"v19.6","gcamValue":4.82511627906977},{"gcamCode":"v19.7","gcamValue":5.11930232558139},{"gcamCode":"v19.8","gcamValue":5.40558139534884},{"gcamCode":"v19.9","gcamValue":4.70558139534884},{"gcamCode":"v20.11","gcamValue":0.692142857142857},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.452357142857143},{"gcamCode":"v20.14","gcamValue":-0.421142857142857},{"gcamCode":"v20.15","gcamValue":0.398962264150943},{"gcamCode":"v20.16","gcamValue":-0.349833333333333},{"gcamCode":"v20.3","gcamValue":0.75},{"gcamCode":"v20.5","gcamValue":0.875},{"gcamCode":"v20.7","gcamValue":0.875},{"gcamCode":"v20.9","gcamValue":0.724166666666667},{"gcamCode":"v21.1","gcamValue":5.30323076923077},{"gcamCode":"v26.1","gcamValue":0.58}]https://www.news-medical.net/image.axd?picture=2019%2f5%2fcsm_Fotolia.jpg[""][""][""][{"charLength":91,"verb":"","quote":"Currently , surgery is only performed in the United States at 60 ml but at 30 ml in Europe","charOffset":421}][{"name":"United States","charOffset":390},{"name":"Philipp Bartko","charOffset":448},{"name":"Georg Goliasch","charOffset":467},{"name":"MedUni Vienna","charOffset":554},{"name":"Vienna General Hospital","charOffset":582},{"name":"Heart Failure Outpatient","charOffset":1869},{"name":"American College","charOffset":1959},{"name":"Vienna General Hospital","charOffset":2940}][{"amount":2,"amountType":"cusps","charOffset":1129},{"amount":45,"amountType":"ml is sufficient","charOffset":1222},{"amount":30,"amountType":"ml is returned into","charOffset":1985},{"amount":2,"amountType":"cusps of the mitral","charOffset":2198}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523105700</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.news-medical.net/amp/news/20190523/Study-revolutionizes-treatment-principles-for-functional-mitral-regurgitation.aspx</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBkrtv.comhttps://krtv.com/cnn-us-politics/2019/05/23/betsy-devos-releases-more-data-on-student-loan-debt/[][]["EDUCATION","WB_470_EDUCATION","TAX_FNCACT","TAX_FNCACT_STUDENT","UNGP_EDUCATION","ECON_DEBT","WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","WB_450_DEBT","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_SCHOOLS","IDEOLOGY","SOC_POINTSOFINTEREST_COLLEGE","SOC_POINTSOFINTEREST_SCHOOL","TAX_FNCACT_STUDENTS","SOC_POINTSOFINTEREST_HIGH_SCHOOL","TAX_FNCACT_SECRETARY","TAX_FNCACT_CANDIDATES","CRISISLEX_CRISISLEXREC","LEADER","TAX_FNCACT_POLITICIANS","TAX_ECON_PRICE","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_MASSACHUSETTS","DELAY","SOC_POINTSOFINTEREST_COLLEGES","TAX_POLITICAL_PARTY","TAX_POLITICAL_PARTY_DEMOCRATS","USPEC_POLITICS_GENERAL1","GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_CONGRESS","USPEC_UNCERTAINTY1","USPEC_POLICY1","EPU_POLICY_REGULATION","EPU_CATS_REGULATION","SOC_GENERALCRIME","CRISISLEX_O01_WEATHER","TAX_FNCACT_WORKERS","EPU_POLICY_CONGRESSIONAL","EPU_POLICY_BUDGET","LITERACY","CRISISLEX_T11_UPDATESSYMPATHY","TAX_FNCACT_EXECUTIVE","TAX_FNCACT_PRESIDENT","EPU_POLICY_POLICY","TRANSPARENCY","WB_1675_GRADUATION","WB_855_LABOR_MARKETS","WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","WB_697_SOCIAL_PROTECTION_AND_LABOR"][{"theme":"TAX_FNCACT_CANDIDATES","charOffset":880},{"theme":"TAX_FNCACT_CANDIDATES","charOffset":1067},{"theme":"EPU_POLICY_CONGRESSIONAL","charOffset":2176},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":564},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":781},{"theme":"SOC_POINTSOFINTEREST_SCHOOL","charOffset":3220},{"theme":"SOC_POINTSOFINTEREST_COLLEGES","charOffset":1265},{"theme":"SOC_POINTSOFINTEREST_COLLEGES","charOffset":1859},{"theme":"SOC_POINTSOFINTEREST_COLLEGES","charOffset":1997},{"theme":"SOC_POINTSOFINTEREST_COLLEGES","charOffset":2946},{"theme":"TAX_ECON_PRICE","charOffset":1008},{"theme":"TAX_FNCACT_STUDENT","charOffset":45},{"theme":"TAX_FNCACT_STUDENT","charOffset":108},{"theme":"TAX_FNCACT_STUDENT","charOffset":490},{"theme":"TAX_FNCACT_STUDENT","charOffset":926},{"theme":"TAX_FNCACT_STUDENT","charOffset":1117},{"theme":"TAX_FNCACT_STUDENT","charOffset":2270},{"theme":"TAX_FNCACT_STUDENT","charOffset":2610},{"theme":"TAX_FNCACT_STUDENT","charOffset":2970},{"theme":"TAX_FNCACT_STUDENT","charOffset":3290},{"theme":"GENERAL_GOVERNMENT","charOffset":1755},{"theme":"GENERAL_GOVERNMENT","charOffset":3266},{"theme":"EPU_POLICY_CONGRESS","charOffset":1755},{"theme":"EPU_POLICY_CONGRESS","charOffset":3266},{"theme":"LEADER","charOffset":960},{"theme":"TAX_FNCACT_POLITICIANS","charOffset":960},{"theme":"SOC_GENERALCRIME","charOffset":1975},{"theme":"EDUCATION","charOffset":13},{"theme":"EDUCATION","charOffset":763},{"theme":"EDUCATION","charOffset":793},{"theme":"WB_470_EDUCATION","charOffset":13},{"theme":"WB_470_EDUCATION","charOffset":763},{"theme":"WB_470_EDUCATION","charOffset":793},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":938},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":2800},{"theme":"WB_1675_GRADUATION","charOffset":3087},{"theme":"WB_1675_GRADUATION","charOffset":3148},{"theme":"WB_855_LABOR_MARKETS","charOffset":3087},{"theme":"WB_855_LABOR_MARKETS","charOffset":3148},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":3087},{"theme":"WB_1673_PASSIVE_LABOR_MARKETS_POLICIES","charOffset":3148},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3087},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":3148},{"theme":"TRANSPARENCY","charOffset":2958},{"theme":"LITERACY","charOffset":2422},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2026},{"theme":"IDEOLOGY","charOffset":441},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":510},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":644},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":1002},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":1449},{"theme":"SOC_POINTSOFINTEREST_COLLEGE","charOffset":2120},{"theme":"TAX_WORLDLANGUAGES_MASSACHUSETTS","charOffset":1144},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":2774},{"theme":"USPEC_UNCERTAINTY1","charOffset":1803},{"theme":"TAX_FNCACT_STUDENTS","charOffset":598},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1325},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1669},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1956},{"theme":"TAX_FNCACT_STUDENTS","charOffset":2378},{"theme":"TAX_FNCACT_STUDENTS","charOffset":3183},{"theme":"TAX_FNCACT_STUDENTS","charOffset":3327},{"theme":"SOC_POINTSOFINTEREST_SCHOOLS","charOffset":390},{"theme":"SOC_POINTSOFINTEREST_SCHOOLS","charOffset":3108},{"theme":"ECON_DEBT","charOffset":118},{"theme":"ECON_DEBT","charOffset":931},{"theme":"ECON_DEBT","charOffset":1127},{"theme":"ECON_DEBT","charOffset":1208},{"theme":"ECON_DEBT","charOffset":2275},{"theme":"ECON_DEBT","charOffset":2437},{"theme":"ECON_DEBT","charOffset":2620},{"theme":"ECON_DEBT","charOffset":2680},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":118},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":931},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":1127},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":1208},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":2275},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":2437},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":2620},{"theme":"WB_1104_MACROECONOMIC_VULNERABILITY_AND_DEBT","charOffset":2680},{"theme":"WB_450_DEBT","charOffset":118},{"theme":"WB_450_DEBT","charOffset":931},{"theme":"WB_450_DEBT","charOffset":1127},{"theme":"WB_450_DEBT","charOffset":1208},{"theme":"WB_450_DEBT","charOffset":2275},{"theme":"WB_450_DEBT","charOffset":2437},{"theme":"WB_450_DEBT","charOffset":2620},{"theme":"WB_450_DEBT","charOffset":2680},{"theme":"EPU_POLICY_POLICY","charOffset":2911},{"theme":"TAX_POLITICAL_PARTY_DEMOCRATS","charOffset":1743},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":1743},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":2631},{"theme":"UNGP_EDUCATION","charOffset":50},{"theme":"UNGP_EDUCATION","charOffset":113},{"theme":"UNGP_EDUCATION","charOffset":1122},{"theme":"UNGP_EDUCATION","charOffset":2615},{"theme":"UNGP_EDUCATION","charOffset":3295},{"theme":"DELAY","charOffset":1181},{"theme":"SOC_POINTSOFINTEREST_HIGH_SCHOOL","charOffset":781},{"theme":"USPEC_POLICY1","charOffset":1826},{"theme":"EPU_POLICY_REGULATION","charOffset":1826},{"theme":"EPU_CATS_REGULATION","charOffset":1826},{"theme":"TAX_FNCACT_WORKERS","charOffset":2090},{"theme":"TAX_FNCACT_SECRETARY","charOffset":803},{"theme":"TAX_FNCACT_SECRETARY","charOffset":1403},{"theme":"EPU_POLICY_BUDGET","charOffset":2183}][{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USCITY","geoName":"Hampshire, New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1634,"longitude":-77.5242},"featureId":"972587"},{"geoType":"USSTATE","geoName":"New Jersey, United States","countryCode":"US","adm1Code":"USNJ","adm2Code":"","geoPoint":{"latitude":40.314,"longitude":-74.5089},"featureId":"NJ"},{"geoType":"USSTATE","geoName":"Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.2373,"longitude":-71.5314},"featureId":"MA"},{"geoType":"USSTATE","geoName":"Vermont, United States","countryCode":"US","adm1Code":"USVT","adm2Code":"","geoPoint":{"latitude":44.0407,"longitude":-72.7093},"featureId":"VT"}][{"location":{"geoType":"USSTATE","geoName":"Vermont, United States","countryCode":"US","adm1Code":"USVT","adm2Code":"","geoPoint":{"latitude":44.0407,"longitude":-72.7093},"featureId":"VT"},"charOffset":1336},{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":1557},{"location":{"geoType":"USSTATE","geoName":"New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"","geoPoint":{"latitude":42.1497,"longitude":-74.9384},"featureId":"NY"},"charOffset":1527},{"location":{"geoType":"USSTATE","geoName":"Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.2373,"longitude":-71.5314},"featureId":"MA"},"charOffset":1144},{"location":{"geoType":"USSTATE","geoName":"New Jersey, United States","countryCode":"US","adm1Code":"USNJ","adm2Code":"","geoPoint":{"latitude":40.314,"longitude":-74.5089},"featureId":"NJ"},"charOffset":1494},{"location":{"geoType":"USCITY","geoName":"Hampshire, New York, United States","countryCode":"US","adm1Code":"USNY","adm2Code":"NY101","geoPoint":{"latitude":42.1634,"longitude":-77.5242},"featureId":"972587"},"charOffset":2499}]["cory booker","elizabeth warren","julian castro","jeanne shaheen","betsy devos","bernie sanders","kirsten gillibrand","kamala harris"][{"person":"Cory Booker","charOffset":1480},{"person":"Elizabeth Warren","charOffset":1166},{"person":"Julian Castro","charOffset":1372},{"person":"Jeanne Shaheen","charOffset":2545},{"person":"Betsy Devos","charOffset":815},{"person":"Bernie Sanders","charOffset":1356},{"person":"Kirsten Gillibrand","charOffset":1515},{"person":"Kamala Harris","charOffset":1543}]["democrats in congress","college scorecard","education department"][{"organisation":"Democrats In Congress","charOffset":1755},{"organisation":"College Scorecard","charOffset":654},{"organisation":"Education Department","charOffset":24}]{"tone":0,"positiveScore":2.8195488,"negativeScore":2.8195488,"polarity":5.6390977,"activityReferenceDensity":24.81203,"selfGroupReferenceDensity":0.37593985,"wordCount":507}[][{"gcamCode":"wc","gcamValue":507},{"gcamCode":"c12.1","gcamValue":17},{"gcamCode":"c12.10","gcamValue":53},{"gcamCode":"c12.12","gcamValue":10},{"gcamCode":"c12.13","gcamValue":28},{"gcamCode":"c12.14","gcamValue":18},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.4","gcamValue":2},{"gcamCode":"c12.5","gcamValue":12},{"gcamCode":"c12.7","gcamValue":13},{"gcamCode":"c12.8","gcamValue":28},{"gcamCode":"c12.9","gcamValue":29},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":23},{"gcamCode":"c14.10","gcamValue":18},{"gcamCode":"c14.11","gcamValue":47},{"gcamCode":"c14.2","gcamValue":31},{"gcamCode":"c14.3","gcamValue":23},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":57},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":12},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":12},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.118","gcamValue":5},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.176","gcamValue":3},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.252","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.43","gcamValue":2},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.61","gcamValue":1},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.85","gcamValue":2},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":2},{"gcamCode":"c16.100","gcamValue":10},{"gcamCode":"c16.101","gcamValue":9},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":11},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":44},{"gcamCode":"c16.11","gcamValue":4},{"gcamCode":"c16.110","gcamValue":69},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":29},{"gcamCode":"c16.116","gcamValue":9},{"gcamCode":"c16.117","gcamValue":20},{"gcamCode":"c16.118","gcamValue":26},{"gcamCode":"c16.12","gcamValue":42},{"gcamCode":"c16.120","gcamValue":23},{"gcamCode":"c16.121","gcamValue":62},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.124","gcamValue":4},{"gcamCode":"c16.125","gcamValue":29},{"gcamCode":"c16.126","gcamValue":22},{"gcamCode":"c16.127","gcamValue":26},{"gcamCode":"c16.128","gcamValue":6},{"gcamCode":"c16.129","gcamValue":62},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":12},{"gcamCode":"c16.134","gcamValue":50},{"gcamCode":"c16.138","gcamValue":39},{"gcamCode":"c16.139","gcamValue":10},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":18},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.145","gcamValue":48},{"gcamCode":"c16.146","gcamValue":31},{"gcamCode":"c16.147","gcamValue":3},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.15","gcamValue":4},{"gcamCode":"c16.150","gcamValue":3},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":9},{"gcamCode":"c16.153","gcamValue":21},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":32},{"gcamCode":"c16.16","gcamValue":6},{"gcamCode":"c16.161","gcamValue":25},{"gcamCode":"c16.162","gcamValue":27},{"gcamCode":"c16.163","gcamValue":35},{"gcamCode":"c16.164","gcamValue":25},{"gcamCode":"c16.165","gcamValue":3},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":8},{"gcamCode":"c16.2","gcamValue":37},{"gcamCode":"c16.21","gcamValue":14},{"gcamCode":"c16.22","gcamValue":5},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":44},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":10},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":38},{"gcamCode":"c16.32","gcamValue":12},{"gcamCode":"c16.33","gcamValue":35},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":21},{"gcamCode":"c16.37","gcamValue":54},{"gcamCode":"c16.38","gcamValue":30},{"gcamCode":"c16.4","gcamValue":28},{"gcamCode":"c16.41","gcamValue":15},{"gcamCode":"c16.42","gcamValue":3},{"gcamCode":"c16.45","gcamValue":16},{"gcamCode":"c16.46","gcamValue":8},{"gcamCode":"c16.47","gcamValue":110},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":10},{"gcamCode":"c16.52","gcamValue":37},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":32},{"gcamCode":"c16.57","gcamValue":283},{"gcamCode":"c16.58","gcamValue":32},{"gcamCode":"c16.6","gcamValue":49},{"gcamCode":"c16.60","gcamValue":17},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":11},{"gcamCode":"c16.63","gcamValue":7},{"gcamCode":"c16.64","gcamValue":5},{"gcamCode":"c16.65","gcamValue":11},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":23},{"gcamCode":"c16.69","gcamValue":10},{"gcamCode":"c16.7","gcamValue":4},{"gcamCode":"c16.70","gcamValue":23},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":10},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":11},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.78","gcamValue":13},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":3},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":43},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":5},{"gcamCode":"c16.87","gcamValue":71},{"gcamCode":"c16.88","gcamValue":68},{"gcamCode":"c16.89","gcamValue":22},{"gcamCode":"c16.90","gcamValue":20},{"gcamCode":"c16.91","gcamValue":21},{"gcamCode":"c16.92","gcamValue":54},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":44},{"gcamCode":"c16.95","gcamValue":27},{"gcamCode":"c16.96","gcamValue":25},{"gcamCode":"c16.97","gcamValue":6},{"gcamCode":"c16.98","gcamValue":35},{"gcamCode":"c17.1","gcamValue":100},{"gcamCode":"c17.10","gcamValue":62},{"gcamCode":"c17.11","gcamValue":89},{"gcamCode":"c17.12","gcamValue":9},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":42},{"gcamCode":"c17.16","gcamValue":16},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":26},{"gcamCode":"c17.2","gcamValue":5},{"gcamCode":"c17.20","gcamValue":2},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":45},{"gcamCode":"c17.23","gcamValue":5},{"gcamCode":"c17.24","gcamValue":28},{"gcamCode":"c17.25","gcamValue":4},{"gcamCode":"c17.27","gcamValue":42},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":13},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":15},{"gcamCode":"c17.31","gcamValue":35},{"gcamCode":"c17.32","gcamValue":28},{"gcamCode":"c17.33","gcamValue":46},{"gcamCode":"c17.34","gcamValue":13},{"gcamCode":"c17.35","gcamValue":14},{"gcamCode":"c17.36","gcamValue":26},{"gcamCode":"c17.37","gcamValue":30},{"gcamCode":"c17.38","gcamValue":7},{"gcamCode":"c17.39","gcamValue":23},{"gcamCode":"c17.4","gcamValue":104},{"gcamCode":"c17.40","gcamValue":10},{"gcamCode":"c17.41","gcamValue":47},{"gcamCode":"c17.42","gcamValue":42},{"gcamCode":"c17.43","gcamValue":27},{"gcamCode":"c17.5","gcamValue":112},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":57},{"gcamCode":"c17.8","gcamValue":51},{"gcamCode":"c17.9","gcamValue":3},{"gcamCode":"c18.100","gcamValue":3},{"gcamCode":"c18.139","gcamValue":2},{"gcamCode":"c18.147","gcamValue":18},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.182","gcamValue":1},{"gcamCode":"c18.193","gcamValue":24},{"gcamCode":"c18.195","gcamValue":1},{"gcamCode":"c18.197","gcamValue":1},{"gcamCode":"c18.223","gcamValue":8},{"gcamCode":"c18.269","gcamValue":1},{"gcamCode":"c18.298","gcamValue":15},{"gcamCode":"c18.33","gcamValue":2},{"gcamCode":"c18.342","gcamValue":7},{"gcamCode":"c18.35","gcamValue":2},{"gcamCode":"c18.98","gcamValue":1},{"gcamCode":"c2.1","gcamValue":20},{"gcamCode":"c2.100","gcamValue":9},{"gcamCode":"c2.101","gcamValue":14},{"gcamCode":"c2.102","gcamValue":34},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":83},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":7},{"gcamCode":"c2.110","gcamValue":8},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":20},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":19},{"gcamCode":"c2.119","gcamValue":160},{"gcamCode":"c2.12","gcamValue":35},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":39},{"gcamCode":"c2.122","gcamValue":10},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":24},{"gcamCode":"c2.126","gcamValue":16},{"gcamCode":"c2.127","gcamValue":61},{"gcamCode":"c2.128","gcamValue":20},{"gcamCode":"c2.129","gcamValue":44},{"gcamCode":"c2.130","gcamValue":1},{"gcamCode":"c2.131","gcamValue":4},{"gcamCode":"c2.132","gcamValue":17},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":5},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.137","gcamValue":4},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":5},{"gcamCode":"c2.14","gcamValue":64},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":14},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":45},{"gcamCode":"c2.144","gcamValue":17},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":15},{"gcamCode":"c2.147","gcamValue":86},{"gcamCode":"c2.148","gcamValue":43},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":25},{"gcamCode":"c2.150","gcamValue":6},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":14},{"gcamCode":"c2.154","gcamValue":18},{"gcamCode":"c2.155","gcamValue":49},{"gcamCode":"c2.156","gcamValue":31},{"gcamCode":"c2.157","gcamValue":43},{"gcamCode":"c2.158","gcamValue":32},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":43},{"gcamCode":"c2.161","gcamValue":2},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":5},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":8},{"gcamCode":"c2.175","gcamValue":3},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":27},{"gcamCode":"c2.179","gcamValue":23},{"gcamCode":"c2.18","gcamValue":10},{"gcamCode":"c2.180","gcamValue":10},{"gcamCode":"c2.181","gcamValue":12},{"gcamCode":"c2.182","gcamValue":2},{"gcamCode":"c2.183","gcamValue":14},{"gcamCode":"c2.185","gcamValue":134},{"gcamCode":"c2.186","gcamValue":4},{"gcamCode":"c2.187","gcamValue":24},{"gcamCode":"c2.188","gcamValue":2},{"gcamCode":"c2.189","gcamValue":2},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.191","gcamValue":15},{"gcamCode":"c2.192","gcamValue":16},{"gcamCode":"c2.193","gcamValue":25},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":74},{"gcamCode":"c2.196","gcamValue":16},{"gcamCode":"c2.197","gcamValue":12},{"gcamCode":"c2.198","gcamValue":27},{"gcamCode":"c2.199","gcamValue":16},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":9},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":21},{"gcamCode":"c2.204","gcamValue":27},{"gcamCode":"c2.205","gcamValue":13},{"gcamCode":"c2.206","gcamValue":7},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":12},{"gcamCode":"c2.210","gcamValue":50},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":23},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.220","gcamValue":6},{"gcamCode":"c2.221","gcamValue":36},{"gcamCode":"c2.223","gcamValue":38},{"gcamCode":"c2.224","gcamValue":12},{"gcamCode":"c2.225","gcamValue":23},{"gcamCode":"c2.226","gcamValue":22},{"gcamCode":"c2.23","gcamValue":22},{"gcamCode":"c2.25","gcamValue":45},{"gcamCode":"c2.26","gcamValue":33},{"gcamCode":"c2.27","gcamValue":33},{"gcamCode":"c2.28","gcamValue":14},{"gcamCode":"c2.30","gcamValue":32},{"gcamCode":"c2.31","gcamValue":25},{"gcamCode":"c2.32","gcamValue":9},{"gcamCode":"c2.33","gcamValue":10},{"gcamCode":"c2.34","gcamValue":36},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":8},{"gcamCode":"c2.37","gcamValue":10},{"gcamCode":"c2.39","gcamValue":72},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.44","gcamValue":21},{"gcamCode":"c2.45","gcamValue":57},{"gcamCode":"c2.46","gcamValue":49},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":12},{"gcamCode":"c2.50","gcamValue":16},{"gcamCode":"c2.52","gcamValue":48},{"gcamCode":"c2.53","gcamValue":10},{"gcamCode":"c2.54","gcamValue":64},{"gcamCode":"c2.55","gcamValue":9},{"gcamCode":"c2.56","gcamValue":9},{"gcamCode":"c2.57","gcamValue":9},{"gcamCode":"c2.58","gcamValue":43},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.60","gcamValue":13},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":11},{"gcamCode":"c2.64","gcamValue":23},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.66","gcamValue":6},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.70","gcamValue":6},{"gcamCode":"c2.71","gcamValue":4},{"gcamCode":"c2.73","gcamValue":12},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":84},{"gcamCode":"c2.76","gcamValue":336},{"gcamCode":"c2.77","gcamValue":45},{"gcamCode":"c2.78","gcamValue":96},{"gcamCode":"c2.79","gcamValue":11},{"gcamCode":"c2.80","gcamValue":83},{"gcamCode":"c2.81","gcamValue":10},{"gcamCode":"c2.82","gcamValue":18},{"gcamCode":"c2.83","gcamValue":10},{"gcamCode":"c2.84","gcamValue":7},{"gcamCode":"c2.86","gcamValue":13},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":27},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":8},{"gcamCode":"c2.93","gcamValue":9},{"gcamCode":"c2.95","gcamValue":80},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":30},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.6","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":19},{"gcamCode":"c3.2","gcamValue":30},{"gcamCode":"c35.1","gcamValue":22},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.11","gcamValue":5},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.14","gcamValue":11},{"gcamCode":"c35.15","gcamValue":7},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":10},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.26","gcamValue":7},{"gcamCode":"c35.27","gcamValue":2},{"gcamCode":"c35.28","gcamValue":4},{"gcamCode":"c35.3","gcamValue":2},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":60},{"gcamCode":"c35.32","gcamValue":18},{"gcamCode":"c35.33","gcamValue":26},{"gcamCode":"c35.4","gcamValue":4},{"gcamCode":"c35.5","gcamValue":13},{"gcamCode":"c35.7","gcamValue":5},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":7},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":6},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":20},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.36","gcamValue":5},{"gcamCode":"c39.37","gcamValue":20},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":7},{"gcamCode":"c39.4","gcamValue":14},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":11},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.1","gcamValue":9},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":10},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c4.8","gcamValue":20},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c40.7","gcamValue":2},{"gcamCode":"c41.1","gcamValue":19},{"gcamCode":"c5.10","gcamValue":24},{"gcamCode":"c5.11","gcamValue":9},{"gcamCode":"c5.12","gcamValue":54},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":7},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":15},{"gcamCode":"c5.27","gcamValue":9},{"gcamCode":"c5.28","gcamValue":7},{"gcamCode":"c5.29","gcamValue":9},{"gcamCode":"c5.30","gcamValue":57},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.34","gcamValue":4},{"gcamCode":"c5.35","gcamValue":15},{"gcamCode":"c5.36","gcamValue":17},{"gcamCode":"c5.37","gcamValue":1},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":37},{"gcamCode":"c5.40","gcamValue":35},{"gcamCode":"c5.43","gcamValue":22},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":17},{"gcamCode":"c5.46","gcamValue":81},{"gcamCode":"c5.47","gcamValue":17},{"gcamCode":"c5.48","gcamValue":6},{"gcamCode":"c5.49","gcamValue":46},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":46},{"gcamCode":"c5.51","gcamValue":32},{"gcamCode":"c5.52","gcamValue":63},{"gcamCode":"c5.53","gcamValue":33},{"gcamCode":"c5.54","gcamValue":21},{"gcamCode":"c5.55","gcamValue":6},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.58","gcamValue":3},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":11},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":35},{"gcamCode":"c5.62","gcamValue":206},{"gcamCode":"c5.7","gcamValue":11},{"gcamCode":"c5.8","gcamValue":58},{"gcamCode":"c5.9","gcamValue":20},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":9},{"gcamCode":"c6.5","gcamValue":3},{"gcamCode":"c6.6","gcamValue":2},{"gcamCode":"c7.1","gcamValue":20},{"gcamCode":"c7.2","gcamValue":21},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":10},{"gcamCode":"c8.26","gcamValue":2},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":14},{"gcamCode":"c8.38","gcamValue":33},{"gcamCode":"c8.4","gcamValue":10},{"gcamCode":"c8.40","gcamValue":5},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":27},{"gcamCode":"c8.43","gcamValue":10},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c9.1","gcamValue":13},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":5},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1012","gcamValue":5},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1027","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":6},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":16},{"gcamCode":"c9.129","gcamValue":5},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":5},{"gcamCode":"c9.143","gcamValue":7},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.148","gcamValue":3},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":5},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":13},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":10},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":4},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":6},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.175","gcamValue":7},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":13},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.190","gcamValue":6},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.200","gcamValue":5},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":7},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":6},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.222","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":3},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.237","gcamValue":5},{"gcamCode":"c9.243","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.25","gcamValue":5},{"gcamCode":"c9.250","gcamValue":4},{"gcamCode":"c9.253","gcamValue":4},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":4},{"gcamCode":"c9.27","gcamValue":4},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":4},{"gcamCode":"c9.276","gcamValue":4},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":10},{"gcamCode":"c9.30","gcamValue":4},{"gcamCode":"c9.300","gcamValue":2},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.31","gcamValue":2},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.32","gcamValue":14},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":17},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.34","gcamValue":12},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.35","gcamValue":13},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":3},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.37","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":5},{"gcamCode":"c9.385","gcamValue":3},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":20},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.409","gcamValue":4},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.446","gcamValue":3},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.474","gcamValue":3},{"gcamCode":"c9.476","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":10},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":8},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":6},{"gcamCode":"c9.489","gcamValue":9},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":4},{"gcamCode":"c9.496","gcamValue":3},{"gcamCode":"c9.498","gcamValue":16},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.507","gcamValue":9},{"gcamCode":"c9.511","gcamValue":15},{"gcamCode":"c9.513","gcamValue":18},{"gcamCode":"c9.515","gcamValue":1},{"gcamCode":"c9.517","gcamValue":3},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.521","gcamValue":10},{"gcamCode":"c9.522","gcamValue":2},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.528","gcamValue":5},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":5},{"gcamCode":"c9.537","gcamValue":10},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":6},{"gcamCode":"c9.540","gcamValue":4},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":5},{"gcamCode":"c9.55","gcamValue":8},{"gcamCode":"c9.551","gcamValue":12},{"gcamCode":"c9.554","gcamValue":9},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":9},{"gcamCode":"c9.557","gcamValue":7},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":11},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":3},{"gcamCode":"c9.566","gcamValue":13},{"gcamCode":"c9.567","gcamValue":12},{"gcamCode":"c9.57","gcamValue":6},{"gcamCode":"c9.570","gcamValue":5},{"gcamCode":"c9.571","gcamValue":5},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.577","gcamValue":1},{"gcamCode":"c9.578","gcamValue":2},{"gcamCode":"c9.579","gcamValue":13},{"gcamCode":"c9.581","gcamValue":4},{"gcamCode":"c9.585","gcamValue":2},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.59","gcamValue":5},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.602","gcamValue":4},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.611","gcamValue":2},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.615","gcamValue":3},{"gcamCode":"c9.616","gcamValue":6},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.619","gcamValue":9},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":3},{"gcamCode":"c9.64","gcamValue":6},{"gcamCode":"c9.640","gcamValue":10},{"gcamCode":"c9.641","gcamValue":5},{"gcamCode":"c9.642","gcamValue":14},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":13},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":15},{"gcamCode":"c9.654","gcamValue":10},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.659","gcamValue":4},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":6},{"gcamCode":"c9.661","gcamValue":3},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":6},{"gcamCode":"c9.665","gcamValue":3},{"gcamCode":"c9.667","gcamValue":9},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.671","gcamValue":5},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.676","gcamValue":9},{"gcamCode":"c9.677","gcamValue":4},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":3},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.682","gcamValue":6},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.686","gcamValue":5},{"gcamCode":"c9.687","gcamValue":5},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.698","gcamValue":4},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":18},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.704","gcamValue":11},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":5},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.72","gcamValue":2},{"gcamCode":"c9.720","gcamValue":5},{"gcamCode":"c9.721","gcamValue":7},{"gcamCode":"c9.722","gcamValue":7},{"gcamCode":"c9.723","gcamValue":5},{"gcamCode":"c9.724","gcamValue":10},{"gcamCode":"c9.725","gcamValue":3},{"gcamCode":"c9.726","gcamValue":19},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":11},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.734","gcamValue":3},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":4},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":3},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":2},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.746","gcamValue":2},{"gcamCode":"c9.748","gcamValue":13},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":7},{"gcamCode":"c9.759","gcamValue":4},{"gcamCode":"c9.76","gcamValue":8},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":13},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":13},{"gcamCode":"c9.767","gcamValue":23},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.774","gcamValue":4},{"gcamCode":"c9.775","gcamValue":3},{"gcamCode":"c9.776","gcamValue":5},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.780","gcamValue":3},{"gcamCode":"c9.781","gcamValue":4},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":2},{"gcamCode":"c9.79","gcamValue":5},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":3},{"gcamCode":"c9.795","gcamValue":4},{"gcamCode":"c9.798","gcamValue":2},{"gcamCode":"c9.799","gcamValue":3},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":5},{"gcamCode":"c9.803","gcamValue":2},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":8},{"gcamCode":"c9.808","gcamValue":6},{"gcamCode":"c9.809","gcamValue":3},{"gcamCode":"c9.812","gcamValue":16},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.815","gcamValue":2},{"gcamCode":"c9.816","gcamValue":7},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.818","gcamValue":4},{"gcamCode":"c9.819","gcamValue":11},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.820","gcamValue":9},{"gcamCode":"c9.821","gcamValue":5},{"gcamCode":"c9.822","gcamValue":2},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.828","gcamValue":2},{"gcamCode":"c9.83","gcamValue":11},{"gcamCode":"c9.833","gcamValue":2},{"gcamCode":"c9.834","gcamValue":9},{"gcamCode":"c9.837","gcamValue":5},{"gcamCode":"c9.838","gcamValue":10},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":13},{"gcamCode":"c9.841","gcamValue":4},{"gcamCode":"c9.842","gcamValue":3},{"gcamCode":"c9.843","gcamValue":10},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":3},{"gcamCode":"c9.846","gcamValue":11},{"gcamCode":"c9.847","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.850","gcamValue":3},{"gcamCode":"c9.851","gcamValue":2},{"gcamCode":"c9.852","gcamValue":1},{"gcamCode":"c9.853","gcamValue":3},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.858","gcamValue":4},{"gcamCode":"c9.86","gcamValue":11},{"gcamCode":"c9.860","gcamValue":10},{"gcamCode":"c9.861","gcamValue":3},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":7},{"gcamCode":"c9.864","gcamValue":14},{"gcamCode":"c9.865","gcamValue":5},{"gcamCode":"c9.866","gcamValue":7},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":14},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.871","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.882","gcamValue":9},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":8},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":3},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.907","gcamValue":2},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.923","gcamValue":7},{"gcamCode":"c9.926","gcamValue":7},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":13},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.945","gcamValue":5},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.958","gcamValue":4},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.965","gcamValue":5},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.968","gcamValue":4},{"gcamCode":"c9.972","gcamValue":12},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":11},{"gcamCode":"c9.980","gcamValue":2},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":6},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":3},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.272633007581987},{"gcamCode":"v10.2","gcamValue":0.226219384282384},{"gcamCode":"v11.1","gcamValue":0.0587793741496599},{"gcamCode":"v19.1","gcamValue":5.12048780487805},{"gcamCode":"v19.2","gcamValue":5.34975609756098},{"gcamCode":"v19.3","gcamValue":4.92853658536585},{"gcamCode":"v19.4","gcamValue":5.12682926829268},{"gcamCode":"v19.5","gcamValue":4.93975609756098},{"gcamCode":"v19.6","gcamValue":4.99170731707317},{"gcamCode":"v19.7","gcamValue":5.13878048780488},{"gcamCode":"v19.8","gcamValue":5.66853658536585},{"gcamCode":"v19.9","gcamValue":4.84756097560975},{"gcamCode":"v20.1","gcamValue":0.471},{"gcamCode":"v20.10","gcamValue":-0.292},{"gcamCode":"v20.11","gcamValue":0.609416666666667},{"gcamCode":"v20.12","gcamValue":-0.292},{"gcamCode":"v20.13","gcamValue":0.496212765957447},{"gcamCode":"v20.14","gcamValue":-0.354},{"gcamCode":"v20.15","gcamValue":0.464296296296296},{"gcamCode":"v20.16","gcamValue":-0.284666666666667},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.81275},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.875166666666667},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.875166666666667},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v20.9","gcamValue":0.791777777777778},{"gcamCode":"v21.1","gcamValue":5.43309576837417},{"gcamCode":"v26.1","gcamValue":0.42972972972973}][""][""]["https://youtube.com/channel/UC2ULCjBeItodhpq9RTW2LjQ"][][{"name":"Education Department","charOffset":25},{"name":"College Scorecard","charOffset":256},{"name":"College Scorecard","charOffset":668},{"name":"Secretary Betsy DeVos","charOffset":838},{"name":"Elizabeth Warren","charOffset":1194},{"name":"Bernie Sanders","charOffset":1391},{"name":"Julian Castro","charOffset":1409},{"name":"Cory Booker","charOffset":1524},{"name":"New Jersey","charOffset":1538},{"name":"Kirsten Gillibrand","charOffset":1562},{"name":"New York","charOffset":1574},{"name":"Kamala Harris","charOffset":1592},{"name":"New Hampshire Democratic","charOffset":2582},{"name":"Jeanne Shaheen","charOffset":2602},{"name":"President Donald Trump","charOffset":2879}][{"amount":100,"amountType":"programs","charOffset":235}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://collegescorecard.ed.gov;https://money.cnn.com/2018/06/05/pf/college/student-loan-stats/;https://www.cnn.com/2018/08/10/politics/devos-obama-for-profit-college-rule/;https://www.cnn.com/2019/03/18/politics/trump-student-loan-limit-cap/;https://www.cnn.com/2019/03/21/politics/trump-fix-student-loan-debt/;https://www.cnn.com/2019/03/26/politics/devos-student-loan-forgiveness-borrower-defense/;https://www.cnn.com/2019/03/29/politics/education-secretary-devos-trump/;https://www.cnn.com/2019/04/22/politics/elizabeth-warren-student-debt-college-tuition-plan/;https://www.cnn.com/2019/04/24/politics/student-loan-crisis/;https://www.cnn.com/specials/politics/president-donald-trump-45</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":9}2019-05-23T12:15:00.000+0000WEBibtimes.comhttps://www.ibtimes.com/nba-rumors-agent-zero-gives-frustrated-rising-lakers-guard-advice-2794283[][][""][][{"geoType":"USCITY","geoName":"Los Angeles, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":34.0522,"longitude":-118.244},"featureId":"1662328"}][{"location":{"geoType":"USCITY","geoName":"Los Angeles, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA037","geoPoint":{"latitude":34.0522,"longitude":-118.244},"featureId":"1662328"},"charOffset":20},{"location":{"geoType":"USCITY","geoName":"Los Angeles, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA037","geoPoint":{"latitude":34.0522,"longitude":-118.244},"featureId":"1662328"},"charOffset":2000}]["donald sterling","frank vogel","tony bland","lebron james","gilbert arenas","josh hart"][{"person":"Donald Sterling","charOffset":2046},{"person":"Frank Vogel","charOffset":86},{"person":"Tony Bland","charOffset":1500},{"person":"Lebron James","charOffset":952},{"person":"Gilbert Arenas","charOffset":1348},{"person":"Gilbert Arenas","charOffset":1934},{"person":"Gilbert Arenas","charOffset":1967},{"person":"Josh Hart","charOffset":309}]["los angeles clippers","los angeles lakers"][]{"tone":-1.910828,"positiveScore":1.910828,"negativeScore":3.821656,"polarity":5.732484,"activityReferenceDensity":29.511677,"selfGroupReferenceDensity":0.8492569,"wordCount":439}[][{"gcamCode":"wc","gcamValue":439},{"gcamCode":"c12.1","gcamValue":53},{"gcamCode":"c12.10","gcamValue":43},{"gcamCode":"c12.12","gcamValue":17},{"gcamCode":"c12.13","gcamValue":17},{"gcamCode":"c12.14","gcamValue":12},{"gcamCode":"c12.3","gcamValue":17},{"gcamCode":"c12.4","gcamValue":14},{"gcamCode":"c12.5","gcamValue":28},{"gcamCode":"c12.7","gcamValue":31},{"gcamCode":"c12.8","gcamValue":30},{"gcamCode":"c12.9","gcamValue":37},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":41},{"gcamCode":"c14.10","gcamValue":25},{"gcamCode":"c14.11","gcamValue":66},{"gcamCode":"c14.2","gcamValue":30},{"gcamCode":"c14.3","gcamValue":44},{"gcamCode":"c14.4","gcamValue":9},{"gcamCode":"c14.5","gcamValue":63},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":11},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.104","gcamValue":1},{"gcamCode":"c15.105","gcamValue":2},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.115","gcamValue":1},{"gcamCode":"c15.118","gcamValue":3},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.122","gcamValue":1},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.141","gcamValue":1},{"gcamCode":"c15.147","gcamValue":3},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.171","gcamValue":7},{"gcamCode":"c15.172","gcamValue":7},{"gcamCode":"c15.18","gcamValue":4},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":3},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.219","gcamValue":1},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.246","gcamValue":1},{"gcamCode":"c15.247","gcamValue":1},{"gcamCode":"c15.248","gcamValue":1},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.252","gcamValue":3},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.28","gcamValue":1},{"gcamCode":"c15.31","gcamValue":1},{"gcamCode":"c15.36","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.65","gcamValue":1},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.75","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.81","gcamValue":1},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c15.92","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":15},{"gcamCode":"c16.101","gcamValue":5},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.105","gcamValue":8},{"gcamCode":"c16.106","gcamValue":19},{"gcamCode":"c16.109","gcamValue":34},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":69},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":32},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":14},{"gcamCode":"c16.117","gcamValue":24},{"gcamCode":"c16.118","gcamValue":39},{"gcamCode":"c16.12","gcamValue":65},{"gcamCode":"c16.120","gcamValue":38},{"gcamCode":"c16.121","gcamValue":28},{"gcamCode":"c16.122","gcamValue":6},{"gcamCode":"c16.124","gcamValue":8},{"gcamCode":"c16.125","gcamValue":46},{"gcamCode":"c16.126","gcamValue":40},{"gcamCode":"c16.127","gcamValue":47},{"gcamCode":"c16.128","gcamValue":9},{"gcamCode":"c16.129","gcamValue":55},{"gcamCode":"c16.13","gcamValue":7},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":20},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":42},{"gcamCode":"c16.136","gcamValue":3},{"gcamCode":"c16.137","gcamValue":4},{"gcamCode":"c16.138","gcamValue":15},{"gcamCode":"c16.139","gcamValue":20},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":24},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":28},{"gcamCode":"c16.146","gcamValue":57},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":22},{"gcamCode":"c16.155","gcamValue":4},{"gcamCode":"c16.156","gcamValue":11},{"gcamCode":"c16.157","gcamValue":26},{"gcamCode":"c16.159","gcamValue":40},{"gcamCode":"c16.16","gcamValue":11},{"gcamCode":"c16.161","gcamValue":45},{"gcamCode":"c16.162","gcamValue":16},{"gcamCode":"c16.163","gcamValue":38},{"gcamCode":"c16.164","gcamValue":10},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.167","gcamValue":1},{"gcamCode":"c16.17","gcamValue":3},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":14},{"gcamCode":"c16.2","gcamValue":22},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":8},{"gcamCode":"c16.22","gcamValue":27},{"gcamCode":"c16.23","gcamValue":14},{"gcamCode":"c16.24","gcamValue":7},{"gcamCode":"c16.26","gcamValue":73},{"gcamCode":"c16.27","gcamValue":5},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":14},{"gcamCode":"c16.3","gcamValue":21},{"gcamCode":"c16.30","gcamValue":4},{"gcamCode":"c16.31","gcamValue":36},{"gcamCode":"c16.32","gcamValue":9},{"gcamCode":"c16.33","gcamValue":39},{"gcamCode":"c16.34","gcamValue":5},{"gcamCode":"c16.35","gcamValue":38},{"gcamCode":"c16.37","gcamValue":38},{"gcamCode":"c16.38","gcamValue":20},{"gcamCode":"c16.39","gcamValue":6},{"gcamCode":"c16.4","gcamValue":43},{"gcamCode":"c16.41","gcamValue":25},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":24},{"gcamCode":"c16.46","gcamValue":11},{"gcamCode":"c16.47","gcamValue":70},{"gcamCode":"c16.48","gcamValue":3},{"gcamCode":"c16.49","gcamValue":6},{"gcamCode":"c16.5","gcamValue":7},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":23},{"gcamCode":"c16.53","gcamValue":7},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":15},{"gcamCode":"c16.57","gcamValue":239},{"gcamCode":"c16.58","gcamValue":42},{"gcamCode":"c16.59","gcamValue":3},{"gcamCode":"c16.6","gcamValue":71},{"gcamCode":"c16.60","gcamValue":7},{"gcamCode":"c16.61","gcamValue":6},{"gcamCode":"c16.62","gcamValue":18},{"gcamCode":"c16.63","gcamValue":9},{"gcamCode":"c16.64","gcamValue":12},{"gcamCode":"c16.65","gcamValue":29},{"gcamCode":"c16.66","gcamValue":14},{"gcamCode":"c16.68","gcamValue":29},{"gcamCode":"c16.69","gcamValue":18},{"gcamCode":"c16.70","gcamValue":17},{"gcamCode":"c16.71","gcamValue":11},{"gcamCode":"c16.72","gcamValue":9},{"gcamCode":"c16.73","gcamValue":12},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":18},{"gcamCode":"c16.76","gcamValue":6},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":9},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.82","gcamValue":5},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":24},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":41},{"gcamCode":"c16.88","gcamValue":72},{"gcamCode":"c16.89","gcamValue":26},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":17},{"gcamCode":"c16.91","gcamValue":22},{"gcamCode":"c16.92","gcamValue":36},{"gcamCode":"c16.93","gcamValue":7},{"gcamCode":"c16.94","gcamValue":50},{"gcamCode":"c16.95","gcamValue":42},{"gcamCode":"c16.96","gcamValue":14},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":51},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":113},{"gcamCode":"c17.10","gcamValue":65},{"gcamCode":"c17.11","gcamValue":82},{"gcamCode":"c17.12","gcamValue":22},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":12},{"gcamCode":"c17.15","gcamValue":14},{"gcamCode":"c17.16","gcamValue":15},{"gcamCode":"c17.18","gcamValue":15},{"gcamCode":"c17.19","gcamValue":24},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":6},{"gcamCode":"c17.21","gcamValue":5},{"gcamCode":"c17.22","gcamValue":16},{"gcamCode":"c17.23","gcamValue":2},{"gcamCode":"c17.24","gcamValue":43},{"gcamCode":"c17.25","gcamValue":12},{"gcamCode":"c17.26","gcamValue":7},{"gcamCode":"c17.27","gcamValue":56},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":28},{"gcamCode":"c17.3","gcamValue":9},{"gcamCode":"c17.30","gcamValue":17},{"gcamCode":"c17.31","gcamValue":45},{"gcamCode":"c17.32","gcamValue":36},{"gcamCode":"c17.33","gcamValue":45},{"gcamCode":"c17.34","gcamValue":20},{"gcamCode":"c17.35","gcamValue":15},{"gcamCode":"c17.36","gcamValue":41},{"gcamCode":"c17.37","gcamValue":31},{"gcamCode":"c17.38","gcamValue":9},{"gcamCode":"c17.39","gcamValue":36},{"gcamCode":"c17.4","gcamValue":117},{"gcamCode":"c17.40","gcamValue":17},{"gcamCode":"c17.41","gcamValue":30},{"gcamCode":"c17.42","gcamValue":37},{"gcamCode":"c17.43","gcamValue":35},{"gcamCode":"c17.5","gcamValue":113},{"gcamCode":"c17.6","gcamValue":15},{"gcamCode":"c17.7","gcamValue":59},{"gcamCode":"c17.8","gcamValue":59},{"gcamCode":"c17.9","gcamValue":11},{"gcamCode":"c18.152","gcamValue":1},{"gcamCode":"c18.193","gcamValue":6},{"gcamCode":"c18.208","gcamValue":1},{"gcamCode":"c18.235","gcamValue":1},{"gcamCode":"c18.342","gcamValue":4},{"gcamCode":"c18.352","gcamValue":1},{"gcamCode":"c2.1","gcamValue":16},{"gcamCode":"c2.10","gcamValue":9},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":13},{"gcamCode":"c2.102","gcamValue":15},{"gcamCode":"c2.103","gcamValue":4},{"gcamCode":"c2.104","gcamValue":81},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":4},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":7},{"gcamCode":"c2.114","gcamValue":31},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":23},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.118","gcamValue":8},{"gcamCode":"c2.119","gcamValue":106},{"gcamCode":"c2.12","gcamValue":23},{"gcamCode":"c2.120","gcamValue":4},{"gcamCode":"c2.121","gcamValue":32},{"gcamCode":"c2.122","gcamValue":38},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.125","gcamValue":29},{"gcamCode":"c2.126","gcamValue":23},{"gcamCode":"c2.127","gcamValue":64},{"gcamCode":"c2.128","gcamValue":5},{"gcamCode":"c2.129","gcamValue":7},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":6},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":6},{"gcamCode":"c2.14","gcamValue":49},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":8},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":22},{"gcamCode":"c2.144","gcamValue":15},{"gcamCode":"c2.145","gcamValue":3},{"gcamCode":"c2.146","gcamValue":12},{"gcamCode":"c2.147","gcamValue":63},{"gcamCode":"c2.148","gcamValue":68},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":16},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":2},{"gcamCode":"c2.152","gcamValue":6},{"gcamCode":"c2.153","gcamValue":15},{"gcamCode":"c2.154","gcamValue":3},{"gcamCode":"c2.155","gcamValue":58},{"gcamCode":"c2.156","gcamValue":21},{"gcamCode":"c2.157","gcamValue":48},{"gcamCode":"c2.158","gcamValue":47},{"gcamCode":"c2.159","gcamValue":8},{"gcamCode":"c2.160","gcamValue":19},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":8},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":10},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.168","gcamValue":2},{"gcamCode":"c2.169","gcamValue":9},{"gcamCode":"c2.17","gcamValue":4},{"gcamCode":"c2.170","gcamValue":12},{"gcamCode":"c2.173","gcamValue":14},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":10},{"gcamCode":"c2.177","gcamValue":35},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":16},{"gcamCode":"c2.18","gcamValue":18},{"gcamCode":"c2.180","gcamValue":21},{"gcamCode":"c2.181","gcamValue":27},{"gcamCode":"c2.183","gcamValue":27},{"gcamCode":"c2.185","gcamValue":126},{"gcamCode":"c2.186","gcamValue":9},{"gcamCode":"c2.187","gcamValue":41},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":4},{"gcamCode":"c2.190","gcamValue":2},{"gcamCode":"c2.191","gcamValue":2},{"gcamCode":"c2.192","gcamValue":20},{"gcamCode":"c2.193","gcamValue":32},{"gcamCode":"c2.195","gcamValue":50},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":12},{"gcamCode":"c2.198","gcamValue":54},{"gcamCode":"c2.199","gcamValue":14},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.201","gcamValue":6},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":49},{"gcamCode":"c2.204","gcamValue":44},{"gcamCode":"c2.205","gcamValue":7},{"gcamCode":"c2.206","gcamValue":14},{"gcamCode":"c2.207","gcamValue":8},{"gcamCode":"c2.209","gcamValue":21},{"gcamCode":"c2.21","gcamValue":5},{"gcamCode":"c2.210","gcamValue":56},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":13},{"gcamCode":"c2.214","gcamValue":18},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":2},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":5},{"gcamCode":"c2.225","gcamValue":14},{"gcamCode":"c2.226","gcamValue":18},{"gcamCode":"c2.227","gcamValue":5},{"gcamCode":"c2.228","gcamValue":9},{"gcamCode":"c2.23","gcamValue":5},{"gcamCode":"c2.25","gcamValue":30},{"gcamCode":"c2.26","gcamValue":24},{"gcamCode":"c2.27","gcamValue":24},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.30","gcamValue":17},{"gcamCode":"c2.31","gcamValue":23},{"gcamCode":"c2.32","gcamValue":6},{"gcamCode":"c2.33","gcamValue":10},{"gcamCode":"c2.34","gcamValue":34},{"gcamCode":"c2.35","gcamValue":31},{"gcamCode":"c2.36","gcamValue":23},{"gcamCode":"c2.37","gcamValue":29},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":72},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":18},{"gcamCode":"c2.45","gcamValue":10},{"gcamCode":"c2.46","gcamValue":62},{"gcamCode":"c2.47","gcamValue":7},{"gcamCode":"c2.48","gcamValue":7},{"gcamCode":"c2.49","gcamValue":2},{"gcamCode":"c2.50","gcamValue":12},{"gcamCode":"c2.52","gcamValue":41},{"gcamCode":"c2.54","gcamValue":46},{"gcamCode":"c2.55","gcamValue":6},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":7},{"gcamCode":"c2.58","gcamValue":5},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":1},{"gcamCode":"c2.61","gcamValue":6},{"gcamCode":"c2.62","gcamValue":27},{"gcamCode":"c2.64","gcamValue":13},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.7","gcamValue":2},{"gcamCode":"c2.70","gcamValue":7},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":18},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":92},{"gcamCode":"c2.76","gcamValue":300},{"gcamCode":"c2.77","gcamValue":38},{"gcamCode":"c2.78","gcamValue":80},{"gcamCode":"c2.79","gcamValue":17},{"gcamCode":"c2.80","gcamValue":74},{"gcamCode":"c2.81","gcamValue":11},{"gcamCode":"c2.82","gcamValue":23},{"gcamCode":"c2.83","gcamValue":11},{"gcamCode":"c2.84","gcamValue":14},{"gcamCode":"c2.86","gcamValue":18},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":21},{"gcamCode":"c2.89","gcamValue":22},{"gcamCode":"c2.90","gcamValue":21},{"gcamCode":"c2.93","gcamValue":17},{"gcamCode":"c2.95","gcamValue":92},{"gcamCode":"c2.97","gcamValue":7},{"gcamCode":"c2.98","gcamValue":23},{"gcamCode":"c2.99","gcamValue":29},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.11","gcamValue":1},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":24},{"gcamCode":"c3.2","gcamValue":33},{"gcamCode":"c3.3","gcamValue":1},{"gcamCode":"c3.4","gcamValue":1},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":6},{"gcamCode":"c35.15","gcamValue":3},{"gcamCode":"c35.19","gcamValue":1},{"gcamCode":"c35.2","gcamValue":6},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.25","gcamValue":2},{"gcamCode":"c35.30","gcamValue":2},{"gcamCode":"c35.31","gcamValue":23},{"gcamCode":"c35.32","gcamValue":11},{"gcamCode":"c35.33","gcamValue":9},{"gcamCode":"c35.5","gcamValue":5},{"gcamCode":"c35.7","gcamValue":5},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.17","gcamValue":4},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":3},{"gcamCode":"c39.2","gcamValue":11},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":20},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":4},{"gcamCode":"c39.36","gcamValue":9},{"gcamCode":"c39.37","gcamValue":16},{"gcamCode":"c39.38","gcamValue":5},{"gcamCode":"c39.39","gcamValue":5},{"gcamCode":"c39.4","gcamValue":21},{"gcamCode":"c39.41","gcamValue":8},{"gcamCode":"c39.5","gcamValue":6},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":18},{"gcamCode":"c40.6","gcamValue":1},{"gcamCode":"c41.1","gcamValue":13},{"gcamCode":"c5.10","gcamValue":32},{"gcamCode":"c5.11","gcamValue":8},{"gcamCode":"c5.12","gcamValue":63},{"gcamCode":"c5.16","gcamValue":4},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":8},{"gcamCode":"c5.23","gcamValue":13},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.25","gcamValue":3},{"gcamCode":"c5.26","gcamValue":14},{"gcamCode":"c5.27","gcamValue":12},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":14},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":60},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":4},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":10},{"gcamCode":"c5.35","gcamValue":17},{"gcamCode":"c5.36","gcamValue":30},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":2},{"gcamCode":"c5.40","gcamValue":72},{"gcamCode":"c5.41","gcamValue":1},{"gcamCode":"c5.43","gcamValue":7},{"gcamCode":"c5.44","gcamValue":10},{"gcamCode":"c5.45","gcamValue":10},{"gcamCode":"c5.46","gcamValue":58},{"gcamCode":"c5.47","gcamValue":16},{"gcamCode":"c5.48","gcamValue":7},{"gcamCode":"c5.49","gcamValue":89},{"gcamCode":"c5.50","gcamValue":78},{"gcamCode":"c5.51","gcamValue":70},{"gcamCode":"c5.52","gcamValue":120},{"gcamCode":"c5.53","gcamValue":28},{"gcamCode":"c5.54","gcamValue":26},{"gcamCode":"c5.55","gcamValue":6},{"gcamCode":"c5.56","gcamValue":29},{"gcamCode":"c5.57","gcamValue":9},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":36},{"gcamCode":"c5.60","gcamValue":45},{"gcamCode":"c5.61","gcamValue":71},{"gcamCode":"c5.62","gcamValue":229},{"gcamCode":"c5.7","gcamValue":7},{"gcamCode":"c5.8","gcamValue":8},{"gcamCode":"c5.9","gcamValue":23},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":18},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":26},{"gcamCode":"c7.2","gcamValue":29},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":6},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.2","gcamValue":4},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":13},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":18},{"gcamCode":"c8.38","gcamValue":9},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":28},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":12},{"gcamCode":"c8.43","gcamValue":19},{"gcamCode":"c8.6","gcamValue":7},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":21},{"gcamCode":"c9.10","gcamValue":4},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1012","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":8},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1032","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.109","gcamValue":5},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":10},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":3},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":6},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.125","gcamValue":5},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":31},{"gcamCode":"c9.129","gcamValue":3},{"gcamCode":"c9.130","gcamValue":4},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.133","gcamValue":1},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.135","gcamValue":3},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.141","gcamValue":6},{"gcamCode":"c9.142","gcamValue":5},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.147","gcamValue":2},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.151","gcamValue":4},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.158","gcamValue":14},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":5},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.177","gcamValue":8},{"gcamCode":"c9.178","gcamValue":6},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.181","gcamValue":2},{"gcamCode":"c9.182","gcamValue":7},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":6},{"gcamCode":"c9.189","gcamValue":2},{"gcamCode":"c9.19","gcamValue":2},{"gcamCode":"c9.191","gcamValue":2},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":5},{"gcamCode":"c9.2","gcamValue":2},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":3},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.207","gcamValue":5},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":4},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.230","gcamValue":7},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":11},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":2},{"gcamCode":"c9.253","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":3},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":4},{"gcamCode":"c9.264","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":8},{"gcamCode":"c9.28","gcamValue":4},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.282","gcamValue":12},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.295","gcamValue":2},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":19},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.304","gcamValue":3},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.307","gcamValue":9},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.314","gcamValue":2},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":8},{"gcamCode":"c9.324","gcamValue":3},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.328","gcamValue":2},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":9},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.34","gcamValue":9},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.359","gcamValue":2},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.363","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.377","gcamValue":9},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":36},{"gcamCode":"c9.39","gcamValue":9},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.404","gcamValue":1},{"gcamCode":"c9.405","gcamValue":3},{"gcamCode":"c9.408","gcamValue":3},{"gcamCode":"c9.409","gcamValue":3},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.433","gcamValue":7},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.44","gcamValue":7},{"gcamCode":"c9.440","gcamValue":5},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":2},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":4},{"gcamCode":"c9.47","gcamValue":6},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":4},{"gcamCode":"c9.474","gcamValue":7},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":4},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.480","gcamValue":11},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.485","gcamValue":6},{"gcamCode":"c9.488","gcamValue":3},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":7},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":3},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.496","gcamValue":7},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":5},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":5},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.503","gcamValue":4},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":9},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.511","gcamValue":12},{"gcamCode":"c9.513","gcamValue":21},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.517","gcamValue":5},{"gcamCode":"c9.518","gcamValue":6},{"gcamCode":"c9.519","gcamValue":6},{"gcamCode":"c9.521","gcamValue":14},{"gcamCode":"c9.522","gcamValue":11},{"gcamCode":"c9.523","gcamValue":7},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.529","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":3},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":8},{"gcamCode":"c9.554","gcamValue":11},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":8},{"gcamCode":"c9.559","gcamValue":3},{"gcamCode":"c9.56","gcamValue":4},{"gcamCode":"c9.560","gcamValue":7},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":4},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":3},{"gcamCode":"c9.566","gcamValue":2},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.570","gcamValue":4},{"gcamCode":"c9.574","gcamValue":6},{"gcamCode":"c9.575","gcamValue":4},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":23},{"gcamCode":"c9.581","gcamValue":6},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":3},{"gcamCode":"c9.588","gcamValue":7},{"gcamCode":"c9.589","gcamValue":5},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":2},{"gcamCode":"c9.594","gcamValue":2},{"gcamCode":"c9.597","gcamValue":2},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.607","gcamValue":4},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":2},{"gcamCode":"c9.615","gcamValue":4},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":5},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":3},{"gcamCode":"c9.621","gcamValue":4},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":11},{"gcamCode":"c9.625","gcamValue":5},{"gcamCode":"c9.626","gcamValue":3},{"gcamCode":"c9.627","gcamValue":8},{"gcamCode":"c9.629","gcamValue":5},{"gcamCode":"c9.630","gcamValue":4},{"gcamCode":"c9.632","gcamValue":5},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":5},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":13},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":6},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":15},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.650","gcamValue":6},{"gcamCode":"c9.653","gcamValue":27},{"gcamCode":"c9.654","gcamValue":10},{"gcamCode":"c9.655","gcamValue":4},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":8},{"gcamCode":"c9.660","gcamValue":5},{"gcamCode":"c9.661","gcamValue":2},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.665","gcamValue":4},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.668","gcamValue":4},{"gcamCode":"c9.669","gcamValue":7},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":7},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":7},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":1},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.686","gcamValue":3},{"gcamCode":"c9.687","gcamValue":8},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":4},{"gcamCode":"c9.698","gcamValue":6},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":5},{"gcamCode":"c9.70","gcamValue":5},{"gcamCode":"c9.701","gcamValue":15},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":7},{"gcamCode":"c9.708","gcamValue":8},{"gcamCode":"c9.71","gcamValue":12},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.717","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.720","gcamValue":8},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":32},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":24},{"gcamCode":"c9.731","gcamValue":3},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.735","gcamValue":5},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.746","gcamValue":4},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":8},{"gcamCode":"c9.75","gcamValue":4},{"gcamCode":"c9.754","gcamValue":10},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.760","gcamValue":4},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":19},{"gcamCode":"c9.763","gcamValue":2},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.767","gcamValue":38},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.778","gcamValue":5},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":4},{"gcamCode":"c9.790","gcamValue":5},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.799","gcamValue":2},{"gcamCode":"c9.8","gcamValue":7},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":3},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":7},{"gcamCode":"c9.807","gcamValue":3},{"gcamCode":"c9.808","gcamValue":5},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":7},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":9},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":3},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.839","gcamValue":2},{"gcamCode":"c9.842","gcamValue":1},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.851","gcamValue":3},{"gcamCode":"c9.852","gcamValue":2},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":4},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":5},{"gcamCode":"c9.862","gcamValue":4},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":19},{"gcamCode":"c9.865","gcamValue":6},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":20},{"gcamCode":"c9.869","gcamValue":1},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.871","gcamValue":2},{"gcamCode":"c9.873","gcamValue":8},{"gcamCode":"c9.874","gcamValue":4},{"gcamCode":"c9.877","gcamValue":16},{"gcamCode":"c9.879","gcamValue":9},{"gcamCode":"c9.880","gcamValue":3},{"gcamCode":"c9.882","gcamValue":6},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":5},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":5},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.895","gcamValue":2},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":5},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":14},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.926","gcamValue":11},{"gcamCode":"c9.930","gcamValue":8},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":8},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.945","gcamValue":4},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.955","gcamValue":4},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":3},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.968","gcamValue":2},{"gcamCode":"c9.969","gcamValue":3},{"gcamCode":"c9.972","gcamValue":8},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":7},{"gcamCode":"c9.984","gcamValue":4},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":6},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.995","gcamValue":3},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.284775641025641},{"gcamCode":"v10.2","gcamValue":0.276175551470588},{"gcamCode":"v11.1","gcamValue":0.0755982692307692},{"gcamCode":"v19.1","gcamValue":5.96684210526316},{"gcamCode":"v19.2","gcamValue":5.36070175438597},{"gcamCode":"v19.3","gcamValue":5.37666666666667},{"gcamCode":"v19.4","gcamValue":5.89877192982456},{"gcamCode":"v19.5","gcamValue":5.27754385964912},{"gcamCode":"v19.6","gcamValue":5.58491228070176},{"gcamCode":"v19.7","gcamValue":6.02842105263158},{"gcamCode":"v19.8","gcamValue":5.47298245614035},{"gcamCode":"v19.9","gcamValue":5.15280701754386},{"gcamCode":"v20.1","gcamValue":0.426333333333333},{"gcamCode":"v20.10","gcamValue":-0.5935},{"gcamCode":"v20.11","gcamValue":0.570833333333333},{"gcamCode":"v20.12","gcamValue":-0.562333333333333},{"gcamCode":"v20.13","gcamValue":0.4194},{"gcamCode":"v20.14","gcamValue":-0.3923},{"gcamCode":"v20.15","gcamValue":0.370578947368421},{"gcamCode":"v20.16","gcamValue":-0.304730769230769},{"gcamCode":"v20.3","gcamValue":0.533333333333333},{"gcamCode":"v20.4","gcamValue":-0.25},{"gcamCode":"v20.5","gcamValue":0.61875},{"gcamCode":"v20.6","gcamValue":-0.5935},{"gcamCode":"v20.7","gcamValue":0.61875},{"gcamCode":"v20.8","gcamValue":-0.5935},{"gcamCode":"v20.9","gcamValue":0.60625},{"gcamCode":"v21.1","gcamValue":5.37836185819071},{"gcamCode":"v26.1","gcamValue":0.374285714285714}]https://s1.ibtimes.com/sites/www.ibtimes.com/files/styles/full/public/2014/05/13/gilbert-arenas.jpg[""][""][""][{"charLength":361,"verb":"","quote":"What ends up happening is coaches don't know what they want. They have an idea , but they really don't know what they want. You have to show them. So if you say , 'Coach , what my role?' he'll give you a role but it might not fit you. He doesn't even know your style , he doesn't know your game , he doesn't know your antics , he doesn't know none of it!","charOffset":1944}][{"name":"Los Angeles Lakers","charOffset":28},{"name":"Frank Vogel","charOffset":75},{"name":"Josh Hart","charOffset":303},{"name":"LeBron James","charOffset":987},{"name":"Yahoo Sports","charOffset":1361},{"name":"Gilbert Arenas","charOffset":1401},{"name":"Agent Zero","charOffset":1512},{"name":"Tony Bland","charOffset":1562},{"name":"Gilbert Arenas","charOffset":2046},{"name":"Los Angeles Clippers","charOffset":2088},{"name":"Donald Sterling","charOffset":2110},{"name":"Lonzo Ball","charOffset":2349}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://heavy.com/sports/2019/05/lakers-josh-hart-gilbert-arenas-role-advice/;https://sports.yahoo.com/josh-hart-may-need-to-talk-to-frank-vogel-after-antianalytics-rant-002348238.html</PAGE_LINKS><PAGE_ALTURL_AMP>https://www.ibtimes.com/nba-rumors-agent-zero-gives-frustrated-rising-lakers-guard-advice-2794283?amp=1</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":0}2019-05-23T12:15:00.000+0000WEBnuvo.nethttps://www.nuvo.net/news/disciplinary-hearing-set-for-attorney-general-hill/article_4fd5f568-7d50-11e9-b553-2f1a7c86262e.html[][]["TRIAL","TAX_FNCACT","TAX_FNCACT_ATTORNEY","TAX_FNCACT_WOMEN","USPEC_POLITICS_GENERAL1","TAX_POLITICAL_PARTY","TAX_POLITICAL_PARTY_REPUBLICAN","WB_1921_PRIVATE_SECTOR_DEVELOPMENT","WB_405_BUSINESS_CLIMATE","WB_2531_INSPECTIONS_LICENSING_AND_PERMITS","WB_2530_BUSINESS_ENVIRONMENT","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","APPOINTMENT","TAX_FNCACT_ATTORNEYS","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_ANGIE","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","TAX_FNCACT_DIRECTOR","TAX_POLITICAL_PARTY_DEMOCRATS","TAX_FNCACT_ASSISTANT","TAX_FNCACT_LEGISLATIVE_ASSISTANT","TAX_POLITICAL_PARTY_REPUBLICANS","TAX_FNCACT_PROSECUTOR","CRISISLEX_C07_SAFETY","SOC_GENERALCRIME","ACT_MAKESTATEMENT","TAX_FNCACT_LEADERS","GENERAL_GOVERNMENT","EPU_POLICY_GOVERNMENT","TAX_FNCACT_LAWYER","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","WB_2089_ETHICS_AND_CODES_OF_CONDUCT","SOC_EXPRESSREGRET","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","TAX_FNCACT_VICTIMS","CRISISLEX_CRISISLEXREC","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","WB_2670_JOBS","TAX_FNCACT_CRIMINAL","IMPEACHMENT","MANMADE_DISASTER_IMPLIED","CRISISLEX_T11_UPDATESSYMPATHY"][{"theme":"GENERAL_GOVERNMENT","charOffset":2914},{"theme":"GENERAL_GOVERNMENT","charOffset":2966},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2914},{"theme":"EPU_POLICY_GOVERNMENT","charOffset":2966},{"theme":"TAX_POLITICAL_PARTY_REPUBLICANS","charOffset":1605},{"theme":"TAX_FNCACT_ASSISTANT","charOffset":1497},{"theme":"TAX_FNCACT_ASSISTANT","charOffset":1574},{"theme":"TAX_FNCACT_DIRECTOR","charOffset":1432},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":4192},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":416},{"theme":"WB_840_JUSTICE","charOffset":416},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":3064},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":3064},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":3064},{"theme":"WB_2089_ETHICS_AND_CODES_OF_CONDUCT","charOffset":3064},{"theme":"TAX_FNCACT_LEADERS","charOffset":2655},{"theme":"ACT_MAKESTATEMENT","charOffset":2553},{"theme":"TAX_FNCACT_LAWYER","charOffset":2973},{"theme":"TAX_WORLDLANGUAGES_ANGIE","charOffset":886},{"theme":"TAX_WORLDLANGUAGES_ANGIE","charOffset":1000},{"theme":"TAX_FNCACT_ATTORNEYS","charOffset":495},{"theme":"TAX_FNCACT_ATTORNEYS","charOffset":544},{"theme":"TAX_FNCACT_ATTORNEYS","charOffset":863},{"theme":"TAX_FNCACT_ATTORNEYS","charOffset":978},{"theme":"TAX_FNCACT_ATTORNEYS","charOffset":3998},{"theme":"WB_1428_INJURY","charOffset":3238},{"theme":"WB_1406_DISEASES","charOffset":3238},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":3238},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":3238},{"theme":"TAX_POLITICAL_PARTY_DEMOCRATS","charOffset":1453},{"theme":"TAX_POLITICAL_PARTY_DEMOCRATS","charOffset":1531},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":4203},{"theme":"SOC_GENERALCRIME","charOffset":2422},{"theme":"TAX_FNCACT_WOMEN","charOffset":106},{"theme":"TAX_FNCACT_WOMEN","charOffset":1337},{"theme":"TAX_FNCACT_WOMEN","charOffset":1937},{"theme":"TAX_FNCACT_WOMEN","charOffset":2163},{"theme":"TAX_FNCACT_WOMEN","charOffset":3138},{"theme":"TAX_FNCACT_WOMEN","charOffset":3837},{"theme":"APPOINTMENT","charOffset":452},{"theme":"APPOINTMENT","charOffset":1824},{"theme":"TRIAL","charOffset":29},{"theme":"TRIAL","charOffset":644},{"theme":"TRIAL","charOffset":749},{"theme":"TRIAL","charOffset":2794},{"theme":"TRIAL","charOffset":3680},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":29},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":644},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":749},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":2794},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":3680},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":3553},{"theme":"TAX_FNCACT_VICTIMS","charOffset":3253},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3253},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":3253},{"theme":"IMPEACHMENT","charOffset":3610},{"theme":"TAX_POLITICAL_PARTY_REPUBLICAN","charOffset":224},{"theme":"SOC_EXPRESSREGRET","charOffset":3092},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":143},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":1684},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":2686},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":1183},{"theme":"WB_2025_INVESTIGATION","charOffset":1183},{"theme":"WB_831_GOVERNANCE","charOffset":1183},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":1183},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1183},{"theme":"LEGISLATION","charOffset":286},{"theme":"LEGISLATION","charOffset":3068},{"theme":"LEGISLATION","charOffset":3513},{"theme":"LEGISLATION","charOffset":3658},{"theme":"LEGISLATION","charOffset":3719},{"theme":"EPU_POLICY_LAW","charOffset":286},{"theme":"EPU_POLICY_LAW","charOffset":3068},{"theme":"EPU_POLICY_LAW","charOffset":3513},{"theme":"EPU_POLICY_LAW","charOffset":3658},{"theme":"EPU_POLICY_LAW","charOffset":3719},{"theme":"TAX_FNCACT_LEGISLATIVE_ASSISTANT","charOffset":1497},{"theme":"TAX_FNCACT_LEGISLATIVE_ASSISTANT","charOffset":1574},{"theme":"WB_2670_JOBS","charOffset":3276},{"theme":"TAX_FNCACT_PROSECUTOR","charOffset":1814},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1814},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":270},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":3497},{"theme":"WB_405_BUSINESS_CLIMATE","charOffset":270},{"theme":"WB_405_BUSINESS_CLIMATE","charOffset":3497},{"theme":"WB_2531_INSPECTIONS_LICENSING_AND_PERMITS","charOffset":270},{"theme":"WB_2531_INSPECTIONS_LICENSING_AND_PERMITS","charOffset":3497},{"theme":"WB_2530_BUSINESS_ENVIRONMENT","charOffset":270},{"theme":"WB_2530_BUSINESS_ENVIRONMENT","charOffset":3497}][{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},{"geoType":"USCITY","geoName":"Marion County, Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.7684,"longitude":-86.1555},"featureId":"450371"}][{"location":{"geoType":"USCITY","geoName":"Marion County, Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"IN097","geoPoint":{"latitude":39.7684,"longitude":-86.1555},"featureId":"450371"},"charOffset":4139},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":323},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":394},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":1515},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":1586},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":3057},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":3654},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":4086}]["james voyles","daniel sigler","gabrielle mclemore","curtis hill","niki dasilva","brandon barger","mara candelaria reardon","don lundberg","angie mahone","angie ordway","seth pruden","samantha lozano"][{"person":"James Voyles","charOffset":657},{"person":"James Voyles","charOffset":878},{"person":"Daniel Sigler","charOffset":1791},{"person":"Gabrielle Mclemore","charOffset":1406},{"person":"Curtis Hill","charOffset":49},{"person":"Curtis Hill","charOffset":686},{"person":"Niki Dasilva","charOffset":1548},{"person":"Brandon Barger","charOffset":814},{"person":"Mara Candelaria Reardon","charOffset":1373},{"person":"Don Lundberg","charOffset":923},{"person":"Angie Mahone","charOffset":893},{"person":"Angie Ordway","charOffset":1007},{"person":"Seth Pruden","charOffset":992},{"person":"Samantha Lozano","charOffset":1471}]["indiana supreme court disciplinary commission","supreme court","senate democrats","indiana senate republicans","indiana supreme court","indiana supreme court justice myra selby"][{"organisation":"Indiana Supreme Court Disciplinary Commission","charOffset":361},{"organisation":"Supreme Court","charOffset":337},{"organisation":"Supreme Court","charOffset":408},{"organisation":"Supreme Court","charOffset":2299},{"organisation":"Supreme Court","charOffset":4100},{"organisation":"Senate Democrats","charOffset":1453},{"organisation":"Indiana Senate Republicans","charOffset":1605},{"organisation":"Indiana Supreme Court","charOffset":337},{"organisation":"Indiana Supreme Court","charOffset":408},{"organisation":"Indiana Supreme Court","charOffset":4100},{"organisation":"Indiana Supreme Court Justice Myra Selby","charOffset":427}]{"tone":-5.602241,"positiveScore":1.6806723,"negativeScore":7.282913,"polarity":8.963586,"activityReferenceDensity":23.109243,"selfGroupReferenceDensity":0.14005603,"wordCount":654}[][{"gcamCode":"wc","gcamValue":654},{"gcamCode":"c12.1","gcamValue":53},{"gcamCode":"c12.10","gcamValue":50},{"gcamCode":"c12.12","gcamValue":17},{"gcamCode":"c12.13","gcamValue":13},{"gcamCode":"c12.14","gcamValue":21},{"gcamCode":"c12.3","gcamValue":29},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":19},{"gcamCode":"c12.7","gcamValue":45},{"gcamCode":"c12.8","gcamValue":18},{"gcamCode":"c12.9","gcamValue":39},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":34},{"gcamCode":"c14.10","gcamValue":25},{"gcamCode":"c14.11","gcamValue":42},{"gcamCode":"c14.2","gcamValue":30},{"gcamCode":"c14.3","gcamValue":36},{"gcamCode":"c14.4","gcamValue":3},{"gcamCode":"c14.5","gcamValue":60},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":9},{"gcamCode":"c14.9","gcamValue":5},{"gcamCode":"c15.10","gcamValue":3},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.107","gcamValue":1},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.124","gcamValue":1},{"gcamCode":"c15.135","gcamValue":1},{"gcamCode":"c15.15","gcamValue":2},{"gcamCode":"c15.151","gcamValue":1},{"gcamCode":"c15.157","gcamValue":1},{"gcamCode":"c15.158","gcamValue":1},{"gcamCode":"c15.161","gcamValue":1},{"gcamCode":"c15.174","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.194","gcamValue":1},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.220","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.265","gcamValue":1},{"gcamCode":"c15.276","gcamValue":1},{"gcamCode":"c15.280","gcamValue":1},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.5","gcamValue":1},{"gcamCode":"c15.56","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":9},{"gcamCode":"c16.103","gcamValue":5},{"gcamCode":"c16.105","gcamValue":6},{"gcamCode":"c16.106","gcamValue":24},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":41},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":109},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.113","gcamValue":5},{"gcamCode":"c16.114","gcamValue":45},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":19},{"gcamCode":"c16.117","gcamValue":29},{"gcamCode":"c16.118","gcamValue":38},{"gcamCode":"c16.12","gcamValue":47},{"gcamCode":"c16.120","gcamValue":34},{"gcamCode":"c16.121","gcamValue":71},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":52},{"gcamCode":"c16.126","gcamValue":32},{"gcamCode":"c16.127","gcamValue":46},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":58},{"gcamCode":"c16.13","gcamValue":4},{"gcamCode":"c16.130","gcamValue":12},{"gcamCode":"c16.131","gcamValue":32},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":3},{"gcamCode":"c16.134","gcamValue":72},{"gcamCode":"c16.135","gcamValue":4},{"gcamCode":"c16.138","gcamValue":22},{"gcamCode":"c16.139","gcamValue":22},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":16},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":58},{"gcamCode":"c16.146","gcamValue":51},{"gcamCode":"c16.147","gcamValue":6},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":10},{"gcamCode":"c16.153","gcamValue":40},{"gcamCode":"c16.155","gcamValue":7},{"gcamCode":"c16.156","gcamValue":4},{"gcamCode":"c16.157","gcamValue":14},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":50},{"gcamCode":"c16.16","gcamValue":12},{"gcamCode":"c16.161","gcamValue":66},{"gcamCode":"c16.162","gcamValue":28},{"gcamCode":"c16.163","gcamValue":50},{"gcamCode":"c16.164","gcamValue":9},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.167","gcamValue":4},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":1},{"gcamCode":"c16.19","gcamValue":14},{"gcamCode":"c16.2","gcamValue":85},{"gcamCode":"c16.20","gcamValue":4},{"gcamCode":"c16.21","gcamValue":8},{"gcamCode":"c16.22","gcamValue":27},{"gcamCode":"c16.23","gcamValue":7},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":58},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":11},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":36},{"gcamCode":"c16.32","gcamValue":7},{"gcamCode":"c16.33","gcamValue":49},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":33},{"gcamCode":"c16.36","gcamValue":4},{"gcamCode":"c16.37","gcamValue":60},{"gcamCode":"c16.38","gcamValue":16},{"gcamCode":"c16.39","gcamValue":2},{"gcamCode":"c16.4","gcamValue":47},{"gcamCode":"c16.41","gcamValue":26},{"gcamCode":"c16.42","gcamValue":6},{"gcamCode":"c16.45","gcamValue":25},{"gcamCode":"c16.46","gcamValue":24},{"gcamCode":"c16.47","gcamValue":90},{"gcamCode":"c16.48","gcamValue":18},{"gcamCode":"c16.49","gcamValue":5},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":23},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":19},{"gcamCode":"c16.57","gcamValue":330},{"gcamCode":"c16.58","gcamValue":35},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":54},{"gcamCode":"c16.60","gcamValue":16},{"gcamCode":"c16.61","gcamValue":3},{"gcamCode":"c16.62","gcamValue":22},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":14},{"gcamCode":"c16.65","gcamValue":12},{"gcamCode":"c16.66","gcamValue":20},{"gcamCode":"c16.68","gcamValue":16},{"gcamCode":"c16.69","gcamValue":27},{"gcamCode":"c16.7","gcamValue":12},{"gcamCode":"c16.70","gcamValue":42},{"gcamCode":"c16.71","gcamValue":23},{"gcamCode":"c16.72","gcamValue":1},{"gcamCode":"c16.74","gcamValue":9},{"gcamCode":"c16.75","gcamValue":23},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":6},{"gcamCode":"c16.78","gcamValue":26},{"gcamCode":"c16.79","gcamValue":3},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":25},{"gcamCode":"c16.85","gcamValue":5},{"gcamCode":"c16.87","gcamValue":129},{"gcamCode":"c16.88","gcamValue":58},{"gcamCode":"c16.89","gcamValue":27},{"gcamCode":"c16.9","gcamValue":21},{"gcamCode":"c16.90","gcamValue":29},{"gcamCode":"c16.91","gcamValue":11},{"gcamCode":"c16.92","gcamValue":60},{"gcamCode":"c16.93","gcamValue":2},{"gcamCode":"c16.94","gcamValue":40},{"gcamCode":"c16.95","gcamValue":71},{"gcamCode":"c16.96","gcamValue":15},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":42},{"gcamCode":"c17.1","gcamValue":172},{"gcamCode":"c17.10","gcamValue":72},{"gcamCode":"c17.11","gcamValue":126},{"gcamCode":"c17.12","gcamValue":23},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":53},{"gcamCode":"c17.16","gcamValue":28},{"gcamCode":"c17.17","gcamValue":4},{"gcamCode":"c17.18","gcamValue":28},{"gcamCode":"c17.19","gcamValue":46},{"gcamCode":"c17.2","gcamValue":21},{"gcamCode":"c17.20","gcamValue":5},{"gcamCode":"c17.21","gcamValue":1},{"gcamCode":"c17.22","gcamValue":22},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":47},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.27","gcamValue":85},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":15},{"gcamCode":"c17.3","gcamValue":5},{"gcamCode":"c17.30","gcamValue":8},{"gcamCode":"c17.31","gcamValue":20},{"gcamCode":"c17.32","gcamValue":26},{"gcamCode":"c17.33","gcamValue":30},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":21},{"gcamCode":"c17.37","gcamValue":38},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":15},{"gcamCode":"c17.4","gcamValue":133},{"gcamCode":"c17.40","gcamValue":11},{"gcamCode":"c17.41","gcamValue":21},{"gcamCode":"c17.42","gcamValue":51},{"gcamCode":"c17.43","gcamValue":24},{"gcamCode":"c17.5","gcamValue":140},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":80},{"gcamCode":"c17.8","gcamValue":59},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.137","gcamValue":13},{"gcamCode":"c18.142","gcamValue":2},{"gcamCode":"c18.145","gcamValue":1},{"gcamCode":"c18.193","gcamValue":27},{"gcamCode":"c18.195","gcamValue":4},{"gcamCode":"c18.21","gcamValue":5},{"gcamCode":"c18.254","gcamValue":1},{"gcamCode":"c18.269","gcamValue":1},{"gcamCode":"c18.278","gcamValue":1},{"gcamCode":"c18.342","gcamValue":8},{"gcamCode":"c18.35","gcamValue":5},{"gcamCode":"c2.1","gcamValue":24},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":8},{"gcamCode":"c2.102","gcamValue":13},{"gcamCode":"c2.103","gcamValue":7},{"gcamCode":"c2.104","gcamValue":94},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":9},{"gcamCode":"c2.109","gcamValue":3},{"gcamCode":"c2.11","gcamValue":9},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.111","gcamValue":1},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":7},{"gcamCode":"c2.114","gcamValue":34},{"gcamCode":"c2.115","gcamValue":10},{"gcamCode":"c2.116","gcamValue":20},{"gcamCode":"c2.117","gcamValue":4},{"gcamCode":"c2.119","gcamValue":200},{"gcamCode":"c2.12","gcamValue":22},{"gcamCode":"c2.120","gcamValue":3},{"gcamCode":"c2.121","gcamValue":37},{"gcamCode":"c2.122","gcamValue":30},{"gcamCode":"c2.125","gcamValue":36},{"gcamCode":"c2.126","gcamValue":31},{"gcamCode":"c2.127","gcamValue":69},{"gcamCode":"c2.128","gcamValue":34},{"gcamCode":"c2.129","gcamValue":61},{"gcamCode":"c2.130","gcamValue":4},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":30},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.134","gcamValue":12},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":8},{"gcamCode":"c2.14","gcamValue":53},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":16},{"gcamCode":"c2.142","gcamValue":6},{"gcamCode":"c2.143","gcamValue":67},{"gcamCode":"c2.144","gcamValue":13},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":9},{"gcamCode":"c2.147","gcamValue":96},{"gcamCode":"c2.148","gcamValue":47},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":27},{"gcamCode":"c2.150","gcamValue":6},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.153","gcamValue":14},{"gcamCode":"c2.154","gcamValue":25},{"gcamCode":"c2.155","gcamValue":67},{"gcamCode":"c2.156","gcamValue":43},{"gcamCode":"c2.157","gcamValue":57},{"gcamCode":"c2.158","gcamValue":36},{"gcamCode":"c2.159","gcamValue":7},{"gcamCode":"c2.160","gcamValue":24},{"gcamCode":"c2.162","gcamValue":10},{"gcamCode":"c2.163","gcamValue":4},{"gcamCode":"c2.166","gcamValue":13},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":6},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.172","gcamValue":4},{"gcamCode":"c2.173","gcamValue":6},{"gcamCode":"c2.176","gcamValue":13},{"gcamCode":"c2.177","gcamValue":51},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":22},{"gcamCode":"c2.180","gcamValue":22},{"gcamCode":"c2.181","gcamValue":28},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":29},{"gcamCode":"c2.185","gcamValue":135},{"gcamCode":"c2.186","gcamValue":12},{"gcamCode":"c2.187","gcamValue":37},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":10},{"gcamCode":"c2.193","gcamValue":35},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":65},{"gcamCode":"c2.196","gcamValue":9},{"gcamCode":"c2.197","gcamValue":14},{"gcamCode":"c2.198","gcamValue":65},{"gcamCode":"c2.199","gcamValue":12},{"gcamCode":"c2.2","gcamValue":4},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":35},{"gcamCode":"c2.204","gcamValue":53},{"gcamCode":"c2.205","gcamValue":6},{"gcamCode":"c2.206","gcamValue":5},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.208","gcamValue":7},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":61},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.213","gcamValue":9},{"gcamCode":"c2.214","gcamValue":29},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":4},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":8},{"gcamCode":"c2.23","gcamValue":42},{"gcamCode":"c2.25","gcamValue":44},{"gcamCode":"c2.26","gcamValue":37},{"gcamCode":"c2.27","gcamValue":37},{"gcamCode":"c2.28","gcamValue":6},{"gcamCode":"c2.30","gcamValue":29},{"gcamCode":"c2.31","gcamValue":29},{"gcamCode":"c2.32","gcamValue":6},{"gcamCode":"c2.33","gcamValue":5},{"gcamCode":"c2.34","gcamValue":32},{"gcamCode":"c2.35","gcamValue":21},{"gcamCode":"c2.36","gcamValue":12},{"gcamCode":"c2.37","gcamValue":16},{"gcamCode":"c2.38","gcamValue":5},{"gcamCode":"c2.39","gcamValue":97},{"gcamCode":"c2.4","gcamValue":6},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":39},{"gcamCode":"c2.45","gcamValue":30},{"gcamCode":"c2.46","gcamValue":67},{"gcamCode":"c2.47","gcamValue":9},{"gcamCode":"c2.48","gcamValue":16},{"gcamCode":"c2.49","gcamValue":2},{"gcamCode":"c2.50","gcamValue":19},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":42},{"gcamCode":"c2.54","gcamValue":50},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":5},{"gcamCode":"c2.57","gcamValue":8},{"gcamCode":"c2.58","gcamValue":7},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":10},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":27},{"gcamCode":"c2.64","gcamValue":26},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.69","gcamValue":6},{"gcamCode":"c2.70","gcamValue":6},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":11},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":107},{"gcamCode":"c2.76","gcamValue":411},{"gcamCode":"c2.77","gcamValue":72},{"gcamCode":"c2.78","gcamValue":87},{"gcamCode":"c2.79","gcamValue":21},{"gcamCode":"c2.80","gcamValue":66},{"gcamCode":"c2.81","gcamValue":8},{"gcamCode":"c2.82","gcamValue":16},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":6},{"gcamCode":"c2.85","gcamValue":2},{"gcamCode":"c2.86","gcamValue":13},{"gcamCode":"c2.87","gcamValue":1},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":21},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":7},{"gcamCode":"c2.93","gcamValue":24},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":88},{"gcamCode":"c2.96","gcamValue":19},{"gcamCode":"c2.97","gcamValue":37},{"gcamCode":"c2.98","gcamValue":36},{"gcamCode":"c2.99","gcamValue":17},{"gcamCode":"c25.11","gcamValue":5},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.7","gcamValue":11},{"gcamCode":"c3.1","gcamValue":46},{"gcamCode":"c3.2","gcamValue":31},{"gcamCode":"c35.1","gcamValue":6},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":7},{"gcamCode":"c35.15","gcamValue":4},{"gcamCode":"c35.2","gcamValue":4},{"gcamCode":"c35.20","gcamValue":26},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.28","gcamValue":2},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":1},{"gcamCode":"c35.31","gcamValue":18},{"gcamCode":"c35.32","gcamValue":12},{"gcamCode":"c35.33","gcamValue":32},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":2},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.1","gcamValue":5},{"gcamCode":"c39.10","gcamValue":3},{"gcamCode":"c39.12","gcamValue":3},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":9},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.2","gcamValue":11},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":26},{"gcamCode":"c39.36","gcamValue":10},{"gcamCode":"c39.37","gcamValue":22},{"gcamCode":"c39.39","gcamValue":7},{"gcamCode":"c39.4","gcamValue":26},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":10},{"gcamCode":"c39.5","gcamValue":11},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c4.13","gcamValue":7},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.23","gcamValue":22},{"gcamCode":"c40.5","gcamValue":5},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c41.1","gcamValue":16},{"gcamCode":"c5.10","gcamValue":36},{"gcamCode":"c5.11","gcamValue":10},{"gcamCode":"c5.12","gcamValue":79},{"gcamCode":"c5.13","gcamValue":3},{"gcamCode":"c5.14","gcamValue":2},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":9},{"gcamCode":"c5.18","gcamValue":4},{"gcamCode":"c5.19","gcamValue":17},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":22},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":8},{"gcamCode":"c5.24","gcamValue":17},{"gcamCode":"c5.25","gcamValue":6},{"gcamCode":"c5.26","gcamValue":11},{"gcamCode":"c5.27","gcamValue":7},{"gcamCode":"c5.28","gcamValue":10},{"gcamCode":"c5.29","gcamValue":6},{"gcamCode":"c5.30","gcamValue":71},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":5},{"gcamCode":"c5.34","gcamValue":17},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":30},{"gcamCode":"c5.37","gcamValue":6},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":73},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":10},{"gcamCode":"c5.44","gcamValue":9},{"gcamCode":"c5.45","gcamValue":10},{"gcamCode":"c5.46","gcamValue":94},{"gcamCode":"c5.47","gcamValue":18},{"gcamCode":"c5.48","gcamValue":5},{"gcamCode":"c5.49","gcamValue":59},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":68},{"gcamCode":"c5.51","gcamValue":49},{"gcamCode":"c5.52","gcamValue":86},{"gcamCode":"c5.53","gcamValue":62},{"gcamCode":"c5.54","gcamValue":17},{"gcamCode":"c5.55","gcamValue":7},{"gcamCode":"c5.56","gcamValue":19},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":29},{"gcamCode":"c5.60","gcamValue":27},{"gcamCode":"c5.61","gcamValue":44},{"gcamCode":"c5.62","gcamValue":275},{"gcamCode":"c5.7","gcamValue":18},{"gcamCode":"c5.8","gcamValue":25},{"gcamCode":"c5.9","gcamValue":31},{"gcamCode":"c6.1","gcamValue":42},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":45},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":39},{"gcamCode":"c7.2","gcamValue":31},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.17","gcamValue":19},{"gcamCode":"c8.2","gcamValue":9},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.21","gcamValue":1},{"gcamCode":"c8.23","gcamValue":13},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.33","gcamValue":7},{"gcamCode":"c8.35","gcamValue":5},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":14},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.39","gcamValue":12},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":27},{"gcamCode":"c8.43","gcamValue":20},{"gcamCode":"c8.5","gcamValue":6},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c8.8","gcamValue":5},{"gcamCode":"c8.9","gcamValue":1},{"gcamCode":"c9.1","gcamValue":26},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1004","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":23},{"gcamCode":"c9.1006","gcamValue":5},{"gcamCode":"c9.1008","gcamValue":6},{"gcamCode":"c9.1009","gcamValue":5},{"gcamCode":"c9.1010","gcamValue":15},{"gcamCode":"c9.1011","gcamValue":13},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.109","gcamValue":9},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":8},{"gcamCode":"c9.116","gcamValue":4},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.122","gcamValue":12},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":2},{"gcamCode":"c9.126","gcamValue":3},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":34},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.132","gcamValue":2},{"gcamCode":"c9.137","gcamValue":6},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":12},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":13},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.167","gcamValue":6},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.177","gcamValue":5},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":14},{"gcamCode":"c9.185","gcamValue":1},{"gcamCode":"c9.187","gcamValue":3},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.190","gcamValue":6},{"gcamCode":"c9.191","gcamValue":2},{"gcamCode":"c9.192","gcamValue":5},{"gcamCode":"c9.193","gcamValue":5},{"gcamCode":"c9.195","gcamValue":5},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.198","gcamValue":10},{"gcamCode":"c9.2","gcamValue":5},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":8},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":5},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.208","gcamValue":6},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.219","gcamValue":5},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.227","gcamValue":18},{"gcamCode":"c9.229","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.233","gcamValue":5},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":2},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.247","gcamValue":5},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.256","gcamValue":2},{"gcamCode":"c9.260","gcamValue":18},{"gcamCode":"c9.261","gcamValue":2},{"gcamCode":"c9.262","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":5},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":24},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.315","gcamValue":18},{"gcamCode":"c9.316","gcamValue":19},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.340","gcamValue":4},{"gcamCode":"c9.35","gcamValue":8},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":6},{"gcamCode":"c9.384","gcamValue":17},{"gcamCode":"c9.385","gcamValue":6},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.398","gcamValue":2},{"gcamCode":"c9.4","gcamValue":2},{"gcamCode":"c9.40","gcamValue":3},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":5},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.43","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.432","gcamValue":3},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.435","gcamValue":8},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":4},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.458","gcamValue":5},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":5},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":13},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.480","gcamValue":9},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.489","gcamValue":8},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":18},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":5},{"gcamCode":"c9.511","gcamValue":11},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":7},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":9},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":10},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.526","gcamValue":4},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":4},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":1},{"gcamCode":"c9.540","gcamValue":2},{"gcamCode":"c9.542","gcamValue":3},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":4},{"gcamCode":"c9.55","gcamValue":3},{"gcamCode":"c9.550","gcamValue":3},{"gcamCode":"c9.551","gcamValue":7},{"gcamCode":"c9.552","gcamValue":1},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":13},{"gcamCode":"c9.561","gcamValue":7},{"gcamCode":"c9.562","gcamValue":7},{"gcamCode":"c9.564","gcamValue":3},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":3},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":25},{"gcamCode":"c9.58","gcamValue":1},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":2},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.604","gcamValue":3},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":3},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":3},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.622","gcamValue":2},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":5},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":3},{"gcamCode":"c9.629","gcamValue":5},{"gcamCode":"c9.631","gcamValue":3},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.635","gcamValue":5},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":4},{"gcamCode":"c9.640","gcamValue":9},{"gcamCode":"c9.642","gcamValue":24},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.648","gcamValue":18},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.650","gcamValue":6},{"gcamCode":"c9.653","gcamValue":41},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":5},{"gcamCode":"c9.66","gcamValue":12},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.669","gcamValue":7},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":6},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":4},{"gcamCode":"c9.683","gcamValue":7},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.692","gcamValue":6},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.70","gcamValue":5},{"gcamCode":"c9.701","gcamValue":24},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.704","gcamValue":15},{"gcamCode":"c9.705","gcamValue":4},{"gcamCode":"c9.708","gcamValue":10},{"gcamCode":"c9.71","gcamValue":6},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.719","gcamValue":3},{"gcamCode":"c9.720","gcamValue":11},{"gcamCode":"c9.721","gcamValue":10},{"gcamCode":"c9.722","gcamValue":1},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":26},{"gcamCode":"c9.725","gcamValue":6},{"gcamCode":"c9.726","gcamValue":30},{"gcamCode":"c9.727","gcamValue":7},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":22},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":9},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.740","gcamValue":10},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.748","gcamValue":19},{"gcamCode":"c9.75","gcamValue":4},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":5},{"gcamCode":"c9.762","gcamValue":22},{"gcamCode":"c9.765","gcamValue":14},{"gcamCode":"c9.766","gcamValue":20},{"gcamCode":"c9.767","gcamValue":37},{"gcamCode":"c9.768","gcamValue":3},{"gcamCode":"c9.77","gcamValue":4},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":9},{"gcamCode":"c9.772","gcamValue":5},{"gcamCode":"c9.775","gcamValue":5},{"gcamCode":"c9.776","gcamValue":5},{"gcamCode":"c9.778","gcamValue":5},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.785","gcamValue":9},{"gcamCode":"c9.788","gcamValue":7},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":3},{"gcamCode":"c9.790","gcamValue":19},{"gcamCode":"c9.791","gcamValue":2},{"gcamCode":"c9.792","gcamValue":4},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.802","gcamValue":3},{"gcamCode":"c9.804","gcamValue":5},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.814","gcamValue":2},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.817","gcamValue":3},{"gcamCode":"c9.82","gcamValue":7},{"gcamCode":"c9.820","gcamValue":2},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.83","gcamValue":17},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.839","gcamValue":2},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.846","gcamValue":5},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.854","gcamValue":1},{"gcamCode":"c9.86","gcamValue":8},{"gcamCode":"c9.860","gcamValue":14},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":22},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":5},{"gcamCode":"c9.868","gcamValue":22},{"gcamCode":"c9.87","gcamValue":5},{"gcamCode":"c9.872","gcamValue":1},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.876","gcamValue":3},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":2},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":5},{"gcamCode":"c9.890","gcamValue":7},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.9","gcamValue":2},{"gcamCode":"c9.90","gcamValue":5},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.903","gcamValue":11},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.911","gcamValue":6},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":3},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.924","gcamValue":2},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.930","gcamValue":5},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":17},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.941","gcamValue":4},{"gcamCode":"c9.942","gcamValue":4},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.950","gcamValue":1},{"gcamCode":"c9.953","gcamValue":5},{"gcamCode":"c9.954","gcamValue":2},{"gcamCode":"c9.955","gcamValue":4},{"gcamCode":"c9.959","gcamValue":1},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.962","gcamValue":8},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.964","gcamValue":8},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.968","gcamValue":2},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":2},{"gcamCode":"c9.970","gcamValue":1},{"gcamCode":"c9.972","gcamValue":8},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.974","gcamValue":4},{"gcamCode":"c9.978","gcamValue":13},{"gcamCode":"c9.979","gcamValue":7},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.981","gcamValue":3},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":8},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.991","gcamValue":3},{"gcamCode":"c9.992","gcamValue":1},{"gcamCode":"c9.995","gcamValue":3},{"gcamCode":"c9.999","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.258946685831351},{"gcamCode":"v10.2","gcamValue":0.264474259816617},{"gcamCode":"v11.1","gcamValue":0.0121077868852459},{"gcamCode":"v19.1","gcamValue":5.30904109589041},{"gcamCode":"v19.2","gcamValue":4.94219178082192},{"gcamCode":"v19.3","gcamValue":5.01945205479452},{"gcamCode":"v19.4","gcamValue":5.36123287671233},{"gcamCode":"v19.5","gcamValue":4.85424657534247},{"gcamCode":"v19.6","gcamValue":5.06931506849315},{"gcamCode":"v19.7","gcamValue":5.22876712328767},{"gcamCode":"v19.8","gcamValue":5.03397260273973},{"gcamCode":"v19.9","gcamValue":4.96123287671233},{"gcamCode":"v20.10","gcamValue":-0.555666666666667},{"gcamCode":"v20.11","gcamValue":0.537},{"gcamCode":"v20.12","gcamValue":-0.5105},{"gcamCode":"v20.13","gcamValue":0.428804878048781},{"gcamCode":"v20.14","gcamValue":-0.385923076923077},{"gcamCode":"v20.15","gcamValue":0.380910714285714},{"gcamCode":"v20.16","gcamValue":-0.320863636363636},{"gcamCode":"v20.4","gcamValue":-0.521},{"gcamCode":"v20.6","gcamValue":-0.521},{"gcamCode":"v20.7","gcamValue":0.75},{"gcamCode":"v20.8","gcamValue":-0.521},{"gcamCode":"v20.9","gcamValue":0.58325},{"gcamCode":"v21.1","gcamValue":5.23634234234234},{"gcamCode":"v26.1","gcamValue":-0.175555555555556}]https://bloximages.newyork1.vip.townnews.com/nuvo.net/content/tncms/custom/image/049ee196-e128-11e8-a0f5-dbe4eee4fd48.png[""][""][""][{"charLength":25,"verb":"","quote":"rude , insolent or angry","charOffset":2291},{"charLength":41,"verb":"","quote":"has denied responsibility for his actions","charOffset":2681}][{"name":"Attorney General Curtis Hill","charOffset":39},{"name":"Indiana Supreme Court Disciplinary","charOffset":353},{"name":"Indiana Supreme Court Justice Myra Selby","charOffset":432},{"name":"James Voyles","charOffset":677},{"name":"Curtis Hill","charOffset":709},{"name":"Brandon Barger","charOffset":841},{"name":"James Voyles","charOffset":914},{"name":"Angie Mahone","charOffset":931},{"name":"Don Lundberg","charOffset":965},{"name":"Seth Pruden","charOffset":1042},{"name":"Angie Ordway","charOffset":1059},{"name":"Rep Mara Candelaria Reardon","charOffset":1449},{"name":"Gabrielle McLemore","charOffset":1486},{"name":"Senate Democrats","charOffset":1536},{"name":"Samantha Lozano","charOffset":1555},{"name":"Indiana House Democrats","charOffset":1621},{"name":"Niki DaSilva","charOffset":1641},{"name":"Indiana Senate Republicans","charOffset":1701},{"name":"Daniel Sigler","charOffset":1894},{"name":"While Sigler","charOffset":2022},{"name":"Supreme Court","charOffset":2436},{"name":"Attorney General","charOffset":2962},{"name":"Indiana Supreme Court","charOffset":4335},{"name":"Marion County","charOffset":4375}][{"amount":56,"amountType":"were interviewed","charOffset":981}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://TheStatehouseFile.com</PAGE_LINKS><PAGE_AUTHORS>Victoria Ratliff;Statehouse File</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523114500</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBdelawarestatenews.nethttps://delawarestatenews.net/police/pennsylvania-woman-81-dies-from-injuries-sustained-in-millville-crash/[{"countType":"WOUND","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},{"countType":"CRISISLEX_CRISISLEXREC","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},{"countType":"CRISISLEX_C03_WELLBEING_HEALTH","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},{"countType":"CRISISLEX_T02_INJURED","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}}][{"count":{"countType":"WOUND","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},"charOffset":1326},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},"charOffset":1326},{"count":{"countType":"CRISISLEX_C03_WELLBEING_HEALTH","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},"charOffset":1326},{"count":{"countType":"CRISISLEX_T02_INJURED","count":2,"objectType":"children","location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"}},"charOffset":1326}]["TAX_FNCACT","TAX_FNCACT_WOMAN","KILL","CRISISLEX_T03_DEAD","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","AGRICULTURE","TAX_FNCACT_SPOKESWOMAN","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","EPU_ECONOMY_HISTORIC","WB_135_TRANSPORT","GENERAL_HEALTH","MEDICAL","CRISISLEX_C03_WELLBEING_HEALTH","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_MEDICAL_CENTER","CRISISLEX_CRISISLEXREC","CRISISLEX_T02_INJURED","WOUND","SOC_POINTSOFINTEREST_HOSPITAL","TAX_FNCACT_DRIVER","TAX_FNCACT_MAN","TAX_FNCACT_OPERATOR","TAX_FNCACT_CHILDREN"][{"theme":"TAX_FNCACT_WOMAN","charOffset":53},{"theme":"TAX_FNCACT_WOMAN","charOffset":642},{"theme":"TAX_FNCACT_WOMAN","charOffset":930},{"theme":"TAX_FNCACT_WOMAN","charOffset":1185},{"theme":"TAX_FNCACT_WOMAN","charOffset":1300},{"theme":"GENERAL_HEALTH","charOffset":727},{"theme":"GENERAL_HEALTH","charOffset":1019},{"theme":"MEDICAL","charOffset":727},{"theme":"MEDICAL","charOffset":1019},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":727},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1019},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":365},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":365},{"theme":"WB_840_JUSTICE","charOffset":365},{"theme":"WB_2025_INVESTIGATION","charOffset":365},{"theme":"WB_831_GOVERNANCE","charOffset":365},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":365},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":365},{"theme":"SOC_POINTSOFINTEREST_HOSPITAL","charOffset":1084},{"theme":"SOC_POINTSOFINTEREST_MEDICAL_CENTER","charOffset":734},{"theme":"SOC_POINTSOFINTEREST_MEDICAL_CENTER","charOffset":1026},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":779},{"theme":"CRISISLEX_T02_INJURED","charOffset":779},{"theme":"WOUND","charOffset":987},{"theme":"WOUND","charOffset":1228},{"theme":"WOUND","charOffset":1367},{"theme":"TAX_FNCACT_OPERATOR","charOffset":1244},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":494},{"theme":"KILL","charOffset":58},{"theme":"CRISISLEX_T03_DEAD","charOffset":58},{"theme":"TAX_FNCACT_DRIVER","charOffset":1124},{"theme":"AGRICULTURE","charOffset":285},{"theme":"SECURITY_SERVICES","charOffset":150},{"theme":"SECURITY_SERVICES","charOffset":305},{"theme":"TAX_FNCACT_POLICE","charOffset":150},{"theme":"TAX_FNCACT_POLICE","charOffset":305},{"theme":"CRISISLEX_C07_SAFETY","charOffset":150},{"theme":"CRISISLEX_C07_SAFETY","charOffset":305},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":317},{"theme":"WB_135_TRANSPORT","charOffset":710},{"theme":"TAX_FNCACT_MAN","charOffset":1153},{"theme":"TAX_FNCACT_CHILDREN","charOffset":1337}][{"geoType":"USCITY","geoName":"Millville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.5496,"longitude":-75.1232},"featureId":"214323"},{"geoType":"USSTATE","geoName":"Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":39.3498,"longitude":-75.5148},"featureId":"DE"},{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"},{"geoType":"USSTATE","geoName":"Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5773,"longitude":-77.264},"featureId":"PA"},{"geoType":"USCITY","geoName":"Beebe Medical Center, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":38.7717,"longitude":-75.1432},"featureId":"1988754"},{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"}][{"location":{"geoType":"USSTATE","geoName":"Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":39.3498,"longitude":-75.5148},"featureId":"DE"},"charOffset":137},{"location":{"geoType":"USSTATE","geoName":"Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"","geoPoint":{"latitude":39.3498,"longitude":-75.5148},"featureId":"DE"},"charOffset":1211},{"location":{"geoType":"USCITY","geoName":"Beebe Medical Center, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"DE005","geoPoint":{"latitude":38.7717,"longitude":-75.1432},"featureId":"1988754"},"charOffset":734},{"location":{"geoType":"USCITY","geoName":"Beebe Medical Center, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"DE005","geoPoint":{"latitude":38.7717,"longitude":-75.1432},"featureId":"1988754"},"charOffset":1026},{"location":{"geoType":"USCITY","geoName":"Millville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"DE005","geoPoint":{"latitude":38.5496,"longitude":-75.1232},"featureId":"214323"},"charOffset":9},{"location":{"geoType":"USCITY","geoName":"Millville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"DE005","geoPoint":{"latitude":38.5496,"longitude":-75.1232},"featureId":"214323"},"charOffset":111},{"location":{"geoType":"USSTATE","geoName":"Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5773,"longitude":-77.264},"featureId":"PA"},"charOffset":47},{"location":{"geoType":"USSTATE","geoName":"Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"","geoPoint":{"latitude":40.5773,"longitude":-77.264},"featureId":"PA"},"charOffset":636},{"location":{"geoType":"USCITY","geoName":"Philadelphia, Pennsylvania, United States","countryCode":"US","adm1Code":"USPA","adm2Code":"PA101","geoPoint":{"latitude":39.9523,"longitude":-75.1638},"featureId":"1209052"},"charOffset":948},{"location":{"geoType":"USCITY","geoName":"Selbyville, Delaware, United States","countryCode":"US","adm1Code":"USDE","adm2Code":"DE005","geoPoint":{"latitude":38.4604,"longitude":-75.2207},"featureId":"214630"},"charOffset":1279}]["toyota corolla","melissa jaffe"][{"person":"Toyota Corolla","charOffset":199},{"person":"Melissa Jaffe","charOffset":343}]["beebe medical center","delaware state police"][{"organisation":"Beebe Medical Center","charOffset":734},{"organisation":"Beebe Medical Center","charOffset":1026},{"organisation":"Delaware State Police","charOffset":150}]{"tone":-3.7190082,"positiveScore":0.41322315,"negativeScore":4.132231,"polarity":4.5454545,"activityReferenceDensity":23.140495,"selfGroupReferenceDensity":0,"wordCount":222}[{"dateResolution":1,"month":0,"day":0,"year":2013,"charOffset":178}][{"gcamCode":"wc","gcamValue":222},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":11},{"gcamCode":"c12.10","gcamValue":8},{"gcamCode":"c12.12","gcamValue":4},{"gcamCode":"c12.13","gcamValue":1},{"gcamCode":"c12.14","gcamValue":3},{"gcamCode":"c12.3","gcamValue":5},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":8},{"gcamCode":"c12.7","gcamValue":8},{"gcamCode":"c12.8","gcamValue":2},{"gcamCode":"c12.9","gcamValue":9},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c14.1","gcamValue":14},{"gcamCode":"c14.10","gcamValue":8},{"gcamCode":"c14.11","gcamValue":24},{"gcamCode":"c14.2","gcamValue":6},{"gcamCode":"c14.3","gcamValue":12},{"gcamCode":"c14.4","gcamValue":2},{"gcamCode":"c14.5","gcamValue":27},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":4},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.10","gcamValue":2},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.119","gcamValue":2},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.147","gcamValue":2},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.20","gcamValue":2},{"gcamCode":"c15.203","gcamValue":2},{"gcamCode":"c15.207","gcamValue":2},{"gcamCode":"c15.212","gcamValue":2},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.225","gcamValue":2},{"gcamCode":"c15.229","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":2},{"gcamCode":"c15.75","gcamValue":2},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.81","gcamValue":1},{"gcamCode":"c15.89","gcamValue":2},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c16.100","gcamValue":12},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.106","gcamValue":13},{"gcamCode":"c16.109","gcamValue":13},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":44},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":21},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":8},{"gcamCode":"c16.117","gcamValue":6},{"gcamCode":"c16.118","gcamValue":22},{"gcamCode":"c16.12","gcamValue":26},{"gcamCode":"c16.120","gcamValue":7},{"gcamCode":"c16.121","gcamValue":10},{"gcamCode":"c16.122","gcamValue":5},{"gcamCode":"c16.125","gcamValue":17},{"gcamCode":"c16.126","gcamValue":9},{"gcamCode":"c16.127","gcamValue":16},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":26},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":14},{"gcamCode":"c16.132","gcamValue":2},{"gcamCode":"c16.134","gcamValue":29},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":2},{"gcamCode":"c16.139","gcamValue":12},{"gcamCode":"c16.140","gcamValue":12},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":14},{"gcamCode":"c16.146","gcamValue":10},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.157","gcamValue":5},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":22},{"gcamCode":"c16.16","gcamValue":1},{"gcamCode":"c16.161","gcamValue":18},{"gcamCode":"c16.162","gcamValue":18},{"gcamCode":"c16.163","gcamValue":24},{"gcamCode":"c16.164","gcamValue":1},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":8},{"gcamCode":"c16.2","gcamValue":14},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":8},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":30},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":3},{"gcamCode":"c16.31","gcamValue":9},{"gcamCode":"c16.32","gcamValue":3},{"gcamCode":"c16.33","gcamValue":20},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":13},{"gcamCode":"c16.37","gcamValue":27},{"gcamCode":"c16.38","gcamValue":9},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":18},{"gcamCode":"c16.41","gcamValue":13},{"gcamCode":"c16.45","gcamValue":12},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":22},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.52","gcamValue":14},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":8},{"gcamCode":"c16.57","gcamValue":111},{"gcamCode":"c16.58","gcamValue":20},{"gcamCode":"c16.6","gcamValue":27},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":12},{"gcamCode":"c16.63","gcamValue":5},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":1},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.69","gcamValue":12},{"gcamCode":"c16.7","gcamValue":9},{"gcamCode":"c16.70","gcamValue":18},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.72","gcamValue":6},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.75","gcamValue":12},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":5},{"gcamCode":"c16.84","gcamValue":4},{"gcamCode":"c16.87","gcamValue":11},{"gcamCode":"c16.88","gcamValue":39},{"gcamCode":"c16.89","gcamValue":4},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":2},{"gcamCode":"c16.92","gcamValue":19},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":14},{"gcamCode":"c16.95","gcamValue":21},{"gcamCode":"c16.96","gcamValue":2},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":19},{"gcamCode":"c16.99","gcamValue":7},{"gcamCode":"c17.1","gcamValue":60},{"gcamCode":"c17.10","gcamValue":21},{"gcamCode":"c17.11","gcamValue":28},{"gcamCode":"c17.12","gcamValue":10},{"gcamCode":"c17.13","gcamValue":4},{"gcamCode":"c17.14","gcamValue":3},{"gcamCode":"c17.15","gcamValue":19},{"gcamCode":"c17.16","gcamValue":13},{"gcamCode":"c17.18","gcamValue":3},{"gcamCode":"c17.19","gcamValue":21},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.21","gcamValue":6},{"gcamCode":"c17.22","gcamValue":3},{"gcamCode":"c17.24","gcamValue":21},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":18},{"gcamCode":"c17.28","gcamValue":1},{"gcamCode":"c17.29","gcamValue":6},{"gcamCode":"c17.30","gcamValue":5},{"gcamCode":"c17.31","gcamValue":5},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":5},{"gcamCode":"c17.34","gcamValue":5},{"gcamCode":"c17.36","gcamValue":5},{"gcamCode":"c17.37","gcamValue":2},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":9},{"gcamCode":"c17.4","gcamValue":41},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":2},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":6},{"gcamCode":"c17.5","gcamValue":48},{"gcamCode":"c17.6","gcamValue":1},{"gcamCode":"c17.7","gcamValue":32},{"gcamCode":"c17.8","gcamValue":18},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.1","gcamValue":2},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":12},{"gcamCode":"c18.2","gcamValue":3},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":11},{"gcamCode":"c18.52","gcamValue":1},{"gcamCode":"c18.71","gcamValue":2},{"gcamCode":"c2.1","gcamValue":9},{"gcamCode":"c2.100","gcamValue":6},{"gcamCode":"c2.101","gcamValue":1},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.104","gcamValue":27},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.110","gcamValue":7},{"gcamCode":"c2.112","gcamValue":2},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":9},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":7},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":66},{"gcamCode":"c2.12","gcamValue":12},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":15},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":3},{"gcamCode":"c2.126","gcamValue":19},{"gcamCode":"c2.127","gcamValue":27},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":10},{"gcamCode":"c2.130","gcamValue":5},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":14},{"gcamCode":"c2.141","gcamValue":1},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":8},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":30},{"gcamCode":"c2.148","gcamValue":8},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":2},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":20},{"gcamCode":"c2.156","gcamValue":6},{"gcamCode":"c2.157","gcamValue":18},{"gcamCode":"c2.158","gcamValue":20},{"gcamCode":"c2.160","gcamValue":5},{"gcamCode":"c2.162","gcamValue":1},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":25},{"gcamCode":"c2.178","gcamValue":6},{"gcamCode":"c2.179","gcamValue":8},{"gcamCode":"c2.18","gcamValue":12},{"gcamCode":"c2.180","gcamValue":12},{"gcamCode":"c2.181","gcamValue":12},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":13},{"gcamCode":"c2.185","gcamValue":46},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":14},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":1},{"gcamCode":"c2.193","gcamValue":24},{"gcamCode":"c2.195","gcamValue":16},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":27},{"gcamCode":"c2.199","gcamValue":3},{"gcamCode":"c2.20","gcamValue":1},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":19},{"gcamCode":"c2.205","gcamValue":1},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.209","gcamValue":4},{"gcamCode":"c2.210","gcamValue":20},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":5},{"gcamCode":"c2.214","gcamValue":6},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":4},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.219","gcamValue":2},{"gcamCode":"c2.220","gcamValue":7},{"gcamCode":"c2.221","gcamValue":7},{"gcamCode":"c2.223","gcamValue":7},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":5},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":4},{"gcamCode":"c2.25","gcamValue":16},{"gcamCode":"c2.26","gcamValue":3},{"gcamCode":"c2.27","gcamValue":3},{"gcamCode":"c2.30","gcamValue":9},{"gcamCode":"c2.31","gcamValue":13},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":11},{"gcamCode":"c2.35","gcamValue":4},{"gcamCode":"c2.36","gcamValue":3},{"gcamCode":"c2.37","gcamValue":4},{"gcamCode":"c2.39","gcamValue":34},{"gcamCode":"c2.44","gcamValue":16},{"gcamCode":"c2.45","gcamValue":10},{"gcamCode":"c2.46","gcamValue":19},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":9},{"gcamCode":"c2.52","gcamValue":17},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":23},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":4},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.61","gcamValue":2},{"gcamCode":"c2.62","gcamValue":12},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.69","gcamValue":8},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.75","gcamValue":25},{"gcamCode":"c2.76","gcamValue":137},{"gcamCode":"c2.77","gcamValue":29},{"gcamCode":"c2.78","gcamValue":25},{"gcamCode":"c2.79","gcamValue":5},{"gcamCode":"c2.80","gcamValue":24},{"gcamCode":"c2.81","gcamValue":7},{"gcamCode":"c2.82","gcamValue":2},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":7},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.92","gcamValue":1},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.95","gcamValue":35},{"gcamCode":"c2.97","gcamValue":3},{"gcamCode":"c2.98","gcamValue":3},{"gcamCode":"c2.99","gcamValue":1},{"gcamCode":"c25.5","gcamValue":6},{"gcamCode":"c3.1","gcamValue":12},{"gcamCode":"c3.2","gcamValue":13},{"gcamCode":"c3.3","gcamValue":2},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.17","gcamValue":1},{"gcamCode":"c35.2","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":6},{"gcamCode":"c35.31","gcamValue":7},{"gcamCode":"c35.32","gcamValue":2},{"gcamCode":"c35.33","gcamValue":11},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":7},{"gcamCode":"c39.36","gcamValue":2},{"gcamCode":"c39.37","gcamValue":9},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":8},{"gcamCode":"c39.41","gcamValue":4},{"gcamCode":"c39.5","gcamValue":6},{"gcamCode":"c4.12","gcamValue":5},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":12},{"gcamCode":"c4.3","gcamValue":3},{"gcamCode":"c4.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":1},{"gcamCode":"c41.1","gcamValue":8},{"gcamCode":"c5.10","gcamValue":25},{"gcamCode":"c5.11","gcamValue":4},{"gcamCode":"c5.12","gcamValue":40},{"gcamCode":"c5.15","gcamValue":6},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":11},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.34","gcamValue":3},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":3},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.39","gcamValue":1},{"gcamCode":"c5.4","gcamValue":3},{"gcamCode":"c5.40","gcamValue":18},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":1},{"gcamCode":"c5.44","gcamValue":2},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":29},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.49","gcamValue":22},{"gcamCode":"c5.50","gcamValue":23},{"gcamCode":"c5.51","gcamValue":17},{"gcamCode":"c5.52","gcamValue":27},{"gcamCode":"c5.53","gcamValue":28},{"gcamCode":"c5.54","gcamValue":2},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.6","gcamValue":14},{"gcamCode":"c5.60","gcamValue":3},{"gcamCode":"c5.61","gcamValue":5},{"gcamCode":"c5.62","gcamValue":85},{"gcamCode":"c5.7","gcamValue":1},{"gcamCode":"c5.8","gcamValue":8},{"gcamCode":"c5.9","gcamValue":10},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":9},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":10},{"gcamCode":"c7.2","gcamValue":7},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.12","gcamValue":2},{"gcamCode":"c8.2","gcamValue":5},{"gcamCode":"c8.22","gcamValue":7},{"gcamCode":"c8.23","gcamValue":8},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":12},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":5},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c9.1","gcamValue":12},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1026","gcamValue":1},{"gcamCode":"c9.1031","gcamValue":2},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":14},{"gcamCode":"c9.129","gcamValue":3},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":6},{"gcamCode":"c9.137","gcamValue":6},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.162","gcamValue":1},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.169","gcamValue":4},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.184","gcamValue":2},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.19","gcamValue":2},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.198","gcamValue":6},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":1},{"gcamCode":"c9.206","gcamValue":3},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.232","gcamValue":2},{"gcamCode":"c9.235","gcamValue":1},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.264","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.273","gcamValue":1},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.278","gcamValue":3},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":5},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.296","gcamValue":1},{"gcamCode":"c9.3","gcamValue":12},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.34","gcamValue":2},{"gcamCode":"c9.353","gcamValue":4},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.372","gcamValue":2},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":3},{"gcamCode":"c9.384","gcamValue":2},{"gcamCode":"c9.385","gcamValue":8},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.40","gcamValue":1},{"gcamCode":"c9.422","gcamValue":4},{"gcamCode":"c9.425","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.469","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.480","gcamValue":3},{"gcamCode":"c9.482","gcamValue":5},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":3},{"gcamCode":"c9.49","gcamValue":6},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.493","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.498","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.558","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":2},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":13},{"gcamCode":"c9.584","gcamValue":1},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":4},{"gcamCode":"c9.648","gcamValue":1},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":13},{"gcamCode":"c9.655","gcamValue":6},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":1},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.679","gcamValue":4},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":5},{"gcamCode":"c9.690","gcamValue":4},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":2},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.718","gcamValue":2},{"gcamCode":"c9.72","gcamValue":2},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.724","gcamValue":8},{"gcamCode":"c9.726","gcamValue":15},{"gcamCode":"c9.728","gcamValue":1},{"gcamCode":"c9.730","gcamValue":12},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.742","gcamValue":6},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.758","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.762","gcamValue":12},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":15},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":1},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":2},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.8","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.811","gcamValue":1},{"gcamCode":"c9.812","gcamValue":4},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.864","gcamValue":16},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.868","gcamValue":12},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.886","gcamValue":3},{"gcamCode":"c9.896","gcamValue":2},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":1},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.920","gcamValue":2},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.935","gcamValue":1},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.998","gcamValue":5},{"gcamCode":"v10.1","gcamValue":0.273321759259259},{"gcamCode":"v10.2","gcamValue":0.288449754901961},{"gcamCode":"v11.1","gcamValue":-0.0212590594059406},{"gcamCode":"v19.1","gcamValue":5.34814814814815},{"gcamCode":"v19.2","gcamValue":5.37407407407407},{"gcamCode":"v19.3","gcamValue":5.16962962962963},{"gcamCode":"v19.4","gcamValue":5.41666666666667},{"gcamCode":"v19.5","gcamValue":5.31148148148148},{"gcamCode":"v19.6","gcamValue":5.25444444444444},{"gcamCode":"v19.7","gcamValue":5.31740740740741},{"gcamCode":"v19.8","gcamValue":5.46777777777778},{"gcamCode":"v19.9","gcamValue":5.12333333333333},{"gcamCode":"v20.1","gcamValue":0.342333333333333},{"gcamCode":"v20.11","gcamValue":0.442},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.3868125},{"gcamCode":"v20.14","gcamValue":-0.5},{"gcamCode":"v20.15","gcamValue":0.35945},{"gcamCode":"v20.16","gcamValue":-0.416666666666667},{"gcamCode":"v20.3","gcamValue":0.342333333333333},{"gcamCode":"v20.5","gcamValue":0.342333333333333},{"gcamCode":"v20.7","gcamValue":0.342333333333333},{"gcamCode":"v20.9","gcamValue":0.413},{"gcamCode":"v21.1","gcamValue":5.26034090909092},{"gcamCode":"v26.1","gcamValue":-0.28}]https://delawarestatenews.net/wp-content/uploads/2019/05/DSN-fatal-crash-millvile-JPEG.jpg[""][""][""][][{"name":"Delaware State Police","charOffset":119},{"name":"Roxana Road","charOffset":235},{"name":"Powell Farm Road","charOffset":269},{"name":"Melissa Jaffe","charOffset":325},{"name":"Roxana Road","charOffset":397},{"name":"New Hope","charOffset":615},{"name":"Beebe Medical Center","charOffset":737},{"name":"Beebe Medical Center","charOffset":1020},{"name":"Christiana Hospital","charOffset":1065},{"name":"New Hope","charOffset":1160}][{"amount":2,"amountType":"children","charOffset":1067}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523115400</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://delawarestatenews.net/police/pennsylvania-woman-81-dies-from-injuries-sustained-in-millville-crash/amp/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":3}2019-05-23T12:15:00.000+0000WEBmymix1061.comhttp://www.mymix1061.com/news/a-trucker-was-on-the-side-of-the-road-when-a-tornado-hit-it-blew-a-house-underneath-his-trailer/[][]["MANMADE_DISASTER_IMPLIED","WB_168_ROADS_AND_HIGHWAYS","WB_135_TRANSPORT","WB_1809_HIGHWAYS","WB_1803_TRANSPORT_INFRASTRUCTURE","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_T04_INFRASTRUCTURE","TAX_ETHNICITY","TAX_ETHNICITY_POLES","TAX_FNCACT","TAX_FNCACT_GUARD","CRISISLEX_T01_CAUTION_ADVICE","CRISISLEX_C04_LOGISTICS_TRANSPORT","NATURAL_DISASTER_EARTHQUAKE","NATURAL_DISASTER_NATURAL_DISASTER","WB_1160_SHOCKS_AND_VULNERABILITY","WB_695_POVERTY"][{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":54},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":616},{"theme":"WB_135_TRANSPORT","charOffset":54},{"theme":"WB_135_TRANSPORT","charOffset":616},{"theme":"WB_1809_HIGHWAYS","charOffset":54},{"theme":"WB_1809_HIGHWAYS","charOffset":616},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":54},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":616},{"theme":"NATURAL_DISASTER_EARTHQUAKE","charOffset":1876},{"theme":"TAX_ETHNICITY_POLES","charOffset":143},{"theme":"CRISISLEX_T04_INFRASTRUCTURE","charOffset":114},{"theme":"CRISISLEX_T04_INFRASTRUCTURE","charOffset":843},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":746},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":27},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":402},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1231},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1412},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":1220},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":2108},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":69},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":201},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1212},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1498},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1581},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1702},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2009},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2345},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":69},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":201},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1212},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1498},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1581},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1702},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2009},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2345},{"theme":"CRISISLEX_O01_WEATHER","charOffset":69},{"theme":"CRISISLEX_O01_WEATHER","charOffset":201},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1212},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1498},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1581},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1702},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2009},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2345},{"theme":"TAX_FNCACT_GUARD","charOffset":272},{"theme":"WB_1160_SHOCKS_AND_VULNERABILITY","charOffset":2483},{"theme":"WB_695_POVERTY","charOffset":2483},{"theme":"NATURAL_DISASTER_NATURAL_DISASTER","charOffset":1919},{"theme":"NATURAL_DISASTER_NATURAL_DISASTER","charOffset":2282}][{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}][{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":82},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1473},{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":1847},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":221}]["cindy sandoval-jakobsen","aaliyah caldwell","david bell"][{"person":"Cindy Sandoval-Jakobsen","charOffset":1524},{"person":"Aaliyah Caldwell","charOffset":1945},{"person":"David Bell","charOffset":10}]["national weather service"][{"organisation":"National Weather Service","charOffset":381}]{"tone":-3.1712472,"positiveScore":0.845666,"negativeScore":4.0169134,"polarity":4.8625793,"activityReferenceDensity":29.809725,"selfGroupReferenceDensity":0.845666,"wordCount":424}[][{"gcamCode":"wc","gcamValue":424},{"gcamCode":"c1.1","gcamValue":1},{"gcamCode":"c12.1","gcamValue":32},{"gcamCode":"c12.10","gcamValue":30},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":10},{"gcamCode":"c12.14","gcamValue":9},{"gcamCode":"c12.3","gcamValue":13},{"gcamCode":"c12.4","gcamValue":10},{"gcamCode":"c12.5","gcamValue":13},{"gcamCode":"c12.7","gcamValue":21},{"gcamCode":"c12.8","gcamValue":18},{"gcamCode":"c12.9","gcamValue":19},{"gcamCode":"c13.1","gcamValue":5},{"gcamCode":"c13.10","gcamValue":4},{"gcamCode":"c13.11","gcamValue":1},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":6},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":21},{"gcamCode":"c14.10","gcamValue":23},{"gcamCode":"c14.11","gcamValue":32},{"gcamCode":"c14.2","gcamValue":16},{"gcamCode":"c14.3","gcamValue":20},{"gcamCode":"c14.4","gcamValue":9},{"gcamCode":"c14.5","gcamValue":47},{"gcamCode":"c14.7","gcamValue":9},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":3},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":5},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":6},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.152","gcamValue":3},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":7},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.176","gcamValue":5},{"gcamCode":"c15.18","gcamValue":1},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.206","gcamValue":2},{"gcamCode":"c15.209","gcamValue":3},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":5},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.233","gcamValue":3},{"gcamCode":"c15.239","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":3},{"gcamCode":"c15.254","gcamValue":2},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.26","gcamValue":5},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.27","gcamValue":2},{"gcamCode":"c15.3","gcamValue":5},{"gcamCode":"c15.39","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":4},{"gcamCode":"c15.43","gcamValue":5},{"gcamCode":"c15.45","gcamValue":2},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.51","gcamValue":3},{"gcamCode":"c15.68","gcamValue":2},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.81","gcamValue":2},{"gcamCode":"c15.83","gcamValue":6},{"gcamCode":"c15.9","gcamValue":2},{"gcamCode":"c15.94","gcamValue":3},{"gcamCode":"c16.1","gcamValue":11},{"gcamCode":"c16.10","gcamValue":1},{"gcamCode":"c16.100","gcamValue":18},{"gcamCode":"c16.101","gcamValue":4},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.105","gcamValue":8},{"gcamCode":"c16.106","gcamValue":14},{"gcamCode":"c16.108","gcamValue":3},{"gcamCode":"c16.109","gcamValue":18},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":53},{"gcamCode":"c16.111","gcamValue":15},{"gcamCode":"c16.113","gcamValue":2},{"gcamCode":"c16.114","gcamValue":21},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":19},{"gcamCode":"c16.117","gcamValue":17},{"gcamCode":"c16.118","gcamValue":23},{"gcamCode":"c16.12","gcamValue":38},{"gcamCode":"c16.120","gcamValue":25},{"gcamCode":"c16.121","gcamValue":17},{"gcamCode":"c16.122","gcamValue":4},{"gcamCode":"c16.124","gcamValue":5},{"gcamCode":"c16.125","gcamValue":36},{"gcamCode":"c16.126","gcamValue":26},{"gcamCode":"c16.127","gcamValue":24},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":44},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":7},{"gcamCode":"c16.131","gcamValue":17},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":40},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":14},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":12},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.143","gcamValue":3},{"gcamCode":"c16.145","gcamValue":19},{"gcamCode":"c16.146","gcamValue":30},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":10},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":5},{"gcamCode":"c16.157","gcamValue":7},{"gcamCode":"c16.159","gcamValue":33},{"gcamCode":"c16.16","gcamValue":14},{"gcamCode":"c16.161","gcamValue":48},{"gcamCode":"c16.162","gcamValue":30},{"gcamCode":"c16.163","gcamValue":64},{"gcamCode":"c16.164","gcamValue":2},{"gcamCode":"c16.165","gcamValue":13},{"gcamCode":"c16.18","gcamValue":5},{"gcamCode":"c16.19","gcamValue":23},{"gcamCode":"c16.2","gcamValue":16},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":13},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":36},{"gcamCode":"c16.27","gcamValue":1},{"gcamCode":"c16.29","gcamValue":3},{"gcamCode":"c16.3","gcamValue":10},{"gcamCode":"c16.30","gcamValue":5},{"gcamCode":"c16.31","gcamValue":45},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":42},{"gcamCode":"c16.35","gcamValue":19},{"gcamCode":"c16.37","gcamValue":26},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":27},{"gcamCode":"c16.40","gcamValue":1},{"gcamCode":"c16.41","gcamValue":14},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.45","gcamValue":14},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":32},{"gcamCode":"c16.48","gcamValue":5},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.51","gcamValue":5},{"gcamCode":"c16.52","gcamValue":23},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":4},{"gcamCode":"c16.57","gcamValue":238},{"gcamCode":"c16.58","gcamValue":35},{"gcamCode":"c16.6","gcamValue":43},{"gcamCode":"c16.60","gcamValue":2},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":15},{"gcamCode":"c16.63","gcamValue":5},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":8},{"gcamCode":"c16.66","gcamValue":9},{"gcamCode":"c16.68","gcamValue":24},{"gcamCode":"c16.69","gcamValue":14},{"gcamCode":"c16.7","gcamValue":1},{"gcamCode":"c16.70","gcamValue":22},{"gcamCode":"c16.71","gcamValue":9},{"gcamCode":"c16.72","gcamValue":9},{"gcamCode":"c16.73","gcamValue":6},{"gcamCode":"c16.74","gcamValue":3},{"gcamCode":"c16.75","gcamValue":14},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":10},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.83","gcamValue":4},{"gcamCode":"c16.84","gcamValue":25},{"gcamCode":"c16.87","gcamValue":31},{"gcamCode":"c16.88","gcamValue":50},{"gcamCode":"c16.89","gcamValue":16},{"gcamCode":"c16.9","gcamValue":2},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":29},{"gcamCode":"c16.92","gcamValue":24},{"gcamCode":"c16.93","gcamValue":19},{"gcamCode":"c16.94","gcamValue":30},{"gcamCode":"c16.95","gcamValue":40},{"gcamCode":"c16.96","gcamValue":9},{"gcamCode":"c16.97","gcamValue":4},{"gcamCode":"c16.98","gcamValue":41},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":115},{"gcamCode":"c17.10","gcamValue":41},{"gcamCode":"c17.11","gcamValue":64},{"gcamCode":"c17.12","gcamValue":25},{"gcamCode":"c17.13","gcamValue":10},{"gcamCode":"c17.14","gcamValue":7},{"gcamCode":"c17.15","gcamValue":18},{"gcamCode":"c17.16","gcamValue":26},{"gcamCode":"c17.18","gcamValue":11},{"gcamCode":"c17.19","gcamValue":16},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":16},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.23","gcamValue":7},{"gcamCode":"c17.24","gcamValue":34},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":8},{"gcamCode":"c17.27","gcamValue":43},{"gcamCode":"c17.28","gcamValue":7},{"gcamCode":"c17.29","gcamValue":21},{"gcamCode":"c17.30","gcamValue":9},{"gcamCode":"c17.31","gcamValue":18},{"gcamCode":"c17.32","gcamValue":11},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":18},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":37},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":14},{"gcamCode":"c17.39","gcamValue":25},{"gcamCode":"c17.4","gcamValue":99},{"gcamCode":"c17.40","gcamValue":9},{"gcamCode":"c17.41","gcamValue":12},{"gcamCode":"c17.42","gcamValue":19},{"gcamCode":"c17.43","gcamValue":15},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":82},{"gcamCode":"c17.7","gcamValue":103},{"gcamCode":"c17.8","gcamValue":40},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c18.156","gcamValue":19},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.342","gcamValue":11},{"gcamCode":"c2.1","gcamValue":9},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.103","gcamValue":6},{"gcamCode":"c2.104","gcamValue":57},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.109","gcamValue":3},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":1},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.114","gcamValue":28},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":25},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":111},{"gcamCode":"c2.12","gcamValue":14},{"gcamCode":"c2.120","gcamValue":3},{"gcamCode":"c2.121","gcamValue":41},{"gcamCode":"c2.122","gcamValue":28},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":1},{"gcamCode":"c2.125","gcamValue":20},{"gcamCode":"c2.126","gcamValue":15},{"gcamCode":"c2.127","gcamValue":56},{"gcamCode":"c2.128","gcamValue":23},{"gcamCode":"c2.129","gcamValue":9},{"gcamCode":"c2.130","gcamValue":6},{"gcamCode":"c2.131","gcamValue":6},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.135","gcamValue":5},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.14","gcamValue":38},{"gcamCode":"c2.140","gcamValue":2},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.143","gcamValue":18},{"gcamCode":"c2.144","gcamValue":4},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":72},{"gcamCode":"c2.148","gcamValue":55},{"gcamCode":"c2.149","gcamValue":5},{"gcamCode":"c2.15","gcamValue":21},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.153","gcamValue":11},{"gcamCode":"c2.154","gcamValue":4},{"gcamCode":"c2.155","gcamValue":37},{"gcamCode":"c2.156","gcamValue":9},{"gcamCode":"c2.157","gcamValue":35},{"gcamCode":"c2.158","gcamValue":39},{"gcamCode":"c2.159","gcamValue":6},{"gcamCode":"c2.160","gcamValue":18},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.168","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":7},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":10},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":18},{"gcamCode":"c2.178","gcamValue":4},{"gcamCode":"c2.179","gcamValue":13},{"gcamCode":"c2.18","gcamValue":14},{"gcamCode":"c2.180","gcamValue":14},{"gcamCode":"c2.181","gcamValue":17},{"gcamCode":"c2.183","gcamValue":17},{"gcamCode":"c2.185","gcamValue":95},{"gcamCode":"c2.186","gcamValue":7},{"gcamCode":"c2.187","gcamValue":29},{"gcamCode":"c2.188","gcamValue":13},{"gcamCode":"c2.189","gcamValue":13},{"gcamCode":"c2.19","gcamValue":2},{"gcamCode":"c2.190","gcamValue":5},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":7},{"gcamCode":"c2.193","gcamValue":45},{"gcamCode":"c2.194","gcamValue":5},{"gcamCode":"c2.195","gcamValue":39},{"gcamCode":"c2.196","gcamValue":3},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":63},{"gcamCode":"c2.199","gcamValue":8},{"gcamCode":"c2.2","gcamValue":8},{"gcamCode":"c2.20","gcamValue":4},{"gcamCode":"c2.200","gcamValue":1},{"gcamCode":"c2.201","gcamValue":7},{"gcamCode":"c2.202","gcamValue":4},{"gcamCode":"c2.203","gcamValue":43},{"gcamCode":"c2.204","gcamValue":39},{"gcamCode":"c2.205","gcamValue":14},{"gcamCode":"c2.206","gcamValue":7},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":12},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":36},{"gcamCode":"c2.211","gcamValue":8},{"gcamCode":"c2.212","gcamValue":5},{"gcamCode":"c2.213","gcamValue":7},{"gcamCode":"c2.214","gcamValue":15},{"gcamCode":"c2.216","gcamValue":3},{"gcamCode":"c2.217","gcamValue":9},{"gcamCode":"c2.218","gcamValue":2},{"gcamCode":"c2.220","gcamValue":11},{"gcamCode":"c2.221","gcamValue":7},{"gcamCode":"c2.223","gcamValue":7},{"gcamCode":"c2.224","gcamValue":1},{"gcamCode":"c2.225","gcamValue":12},{"gcamCode":"c2.226","gcamValue":16},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":8},{"gcamCode":"c2.25","gcamValue":20},{"gcamCode":"c2.26","gcamValue":24},{"gcamCode":"c2.27","gcamValue":24},{"gcamCode":"c2.28","gcamValue":7},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":15},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":34},{"gcamCode":"c2.35","gcamValue":29},{"gcamCode":"c2.36","gcamValue":14},{"gcamCode":"c2.37","gcamValue":27},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":76},{"gcamCode":"c2.4","gcamValue":3},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":14},{"gcamCode":"c2.45","gcamValue":11},{"gcamCode":"c2.46","gcamValue":52},{"gcamCode":"c2.47","gcamValue":11},{"gcamCode":"c2.48","gcamValue":3},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":24},{"gcamCode":"c2.54","gcamValue":30},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":8},{"gcamCode":"c2.6","gcamValue":13},{"gcamCode":"c2.61","gcamValue":7},{"gcamCode":"c2.62","gcamValue":15},{"gcamCode":"c2.64","gcamValue":7},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":2},{"gcamCode":"c2.69","gcamValue":12},{"gcamCode":"c2.70","gcamValue":5},{"gcamCode":"c2.71","gcamValue":5},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":23},{"gcamCode":"c2.75","gcamValue":60},{"gcamCode":"c2.76","gcamValue":303},{"gcamCode":"c2.77","gcamValue":25},{"gcamCode":"c2.78","gcamValue":53},{"gcamCode":"c2.79","gcamValue":22},{"gcamCode":"c2.80","gcamValue":52},{"gcamCode":"c2.81","gcamValue":12},{"gcamCode":"c2.82","gcamValue":18},{"gcamCode":"c2.83","gcamValue":5},{"gcamCode":"c2.84","gcamValue":3},{"gcamCode":"c2.86","gcamValue":18},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":25},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.91","gcamValue":3},{"gcamCode":"c2.92","gcamValue":3},{"gcamCode":"c2.93","gcamValue":8},{"gcamCode":"c2.95","gcamValue":82},{"gcamCode":"c2.96","gcamValue":1},{"gcamCode":"c2.97","gcamValue":2},{"gcamCode":"c2.98","gcamValue":22},{"gcamCode":"c2.99","gcamValue":15},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":2},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c3.1","gcamValue":43},{"gcamCode":"c3.2","gcamValue":16},{"gcamCode":"c3.3","gcamValue":1},{"gcamCode":"c35.1","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.17","gcamValue":2},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":4},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.31","gcamValue":5},{"gcamCode":"c35.32","gcamValue":9},{"gcamCode":"c35.33","gcamValue":6},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.6","gcamValue":2},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.10","gcamValue":5},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.15","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.2","gcamValue":14},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":2},{"gcamCode":"c39.3","gcamValue":31},{"gcamCode":"c39.36","gcamValue":9},{"gcamCode":"c39.37","gcamValue":9},{"gcamCode":"c39.39","gcamValue":4},{"gcamCode":"c39.4","gcamValue":23},{"gcamCode":"c39.41","gcamValue":3},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.12","gcamValue":8},{"gcamCode":"c4.15","gcamValue":7},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.23","gcamValue":15},{"gcamCode":"c4.5","gcamValue":1},{"gcamCode":"c40.3","gcamValue":1},{"gcamCode":"c40.4","gcamValue":17},{"gcamCode":"c40.5","gcamValue":2},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":40},{"gcamCode":"c5.11","gcamValue":12},{"gcamCode":"c5.12","gcamValue":84},{"gcamCode":"c5.13","gcamValue":3},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":8},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.20","gcamValue":5},{"gcamCode":"c5.21","gcamValue":10},{"gcamCode":"c5.22","gcamValue":6},{"gcamCode":"c5.23","gcamValue":12},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":5},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":7},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":38},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":5},{"gcamCode":"c5.33","gcamValue":3},{"gcamCode":"c5.34","gcamValue":14},{"gcamCode":"c5.35","gcamValue":11},{"gcamCode":"c5.36","gcamValue":24},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.39","gcamValue":3},{"gcamCode":"c5.40","gcamValue":39},{"gcamCode":"c5.41","gcamValue":1},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":5},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":14},{"gcamCode":"c5.46","gcamValue":65},{"gcamCode":"c5.47","gcamValue":26},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":62},{"gcamCode":"c5.5","gcamValue":16},{"gcamCode":"c5.50","gcamValue":55},{"gcamCode":"c5.51","gcamValue":45},{"gcamCode":"c5.52","gcamValue":85},{"gcamCode":"c5.53","gcamValue":37},{"gcamCode":"c5.54","gcamValue":17},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":27},{"gcamCode":"c5.58","gcamValue":1},{"gcamCode":"c5.59","gcamValue":17},{"gcamCode":"c5.6","gcamValue":24},{"gcamCode":"c5.60","gcamValue":46},{"gcamCode":"c5.61","gcamValue":63},{"gcamCode":"c5.62","gcamValue":224},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":1},{"gcamCode":"c5.9","gcamValue":36},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":15},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":4},{"gcamCode":"c7.1","gcamValue":17},{"gcamCode":"c7.2","gcamValue":14},{"gcamCode":"c8.1","gcamValue":6},{"gcamCode":"c8.10","gcamValue":7},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.13","gcamValue":2},{"gcamCode":"c8.14","gcamValue":3},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.19","gcamValue":1},{"gcamCode":"c8.2","gcamValue":21},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.22","gcamValue":12},{"gcamCode":"c8.23","gcamValue":19},{"gcamCode":"c8.24","gcamValue":1},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.33","gcamValue":6},{"gcamCode":"c8.36","gcamValue":7},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":1},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":14},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":4},{"gcamCode":"c8.43","gcamValue":18},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c9.1","gcamValue":14},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":2},{"gcamCode":"c9.1017","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":6},{"gcamCode":"c9.1021","gcamValue":5},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":5},{"gcamCode":"c9.1030","gcamValue":5},{"gcamCode":"c9.1032","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.111","gcamValue":11},{"gcamCode":"c9.113","gcamValue":1},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":3},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.122","gcamValue":3},{"gcamCode":"c9.123","gcamValue":5},{"gcamCode":"c9.125","gcamValue":7},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":22},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.138","gcamValue":4},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":3},{"gcamCode":"c9.143","gcamValue":3},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":1},{"gcamCode":"c9.15","gcamValue":8},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.161","gcamValue":3},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.163","gcamValue":3},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":7},{"gcamCode":"c9.167","gcamValue":6},{"gcamCode":"c9.168","gcamValue":3},{"gcamCode":"c9.169","gcamValue":5},{"gcamCode":"c9.173","gcamValue":4},{"gcamCode":"c9.174","gcamValue":5},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":3},{"gcamCode":"c9.18","gcamValue":7},{"gcamCode":"c9.180","gcamValue":4},{"gcamCode":"c9.181","gcamValue":5},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.191","gcamValue":3},{"gcamCode":"c9.192","gcamValue":8},{"gcamCode":"c9.193","gcamValue":8},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.198","gcamValue":13},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.2","gcamValue":2},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":7},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":4},{"gcamCode":"c9.207","gcamValue":3},{"gcamCode":"c9.208","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":3},{"gcamCode":"c9.212","gcamValue":6},{"gcamCode":"c9.213","gcamValue":3},{"gcamCode":"c9.214","gcamValue":5},{"gcamCode":"c9.215","gcamValue":2},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.219","gcamValue":4},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":3},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":5},{"gcamCode":"c9.230","gcamValue":5},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.233","gcamValue":5},{"gcamCode":"c9.235","gcamValue":9},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.240","gcamValue":1},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":4},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":7},{"gcamCode":"c9.259","gcamValue":5},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.267","gcamValue":4},{"gcamCode":"c9.270","gcamValue":8},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":2},{"gcamCode":"c9.275","gcamValue":6},{"gcamCode":"c9.276","gcamValue":9},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":2},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":12},{"gcamCode":"c9.284","gcamValue":3},{"gcamCode":"c9.285","gcamValue":7},{"gcamCode":"c9.286","gcamValue":7},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.289","gcamValue":6},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.293","gcamValue":6},{"gcamCode":"c9.295","gcamValue":2},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":14},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":7},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.311","gcamValue":1},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.32","gcamValue":6},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":12},{"gcamCode":"c9.325","gcamValue":4},{"gcamCode":"c9.327","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.34","gcamValue":10},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.344","gcamValue":2},{"gcamCode":"c9.346","gcamValue":3},{"gcamCode":"c9.348","gcamValue":5},{"gcamCode":"c9.35","gcamValue":3},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.359","gcamValue":18},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":5},{"gcamCode":"c9.378","gcamValue":6},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":15},{"gcamCode":"c9.385","gcamValue":10},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.390","gcamValue":1},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":3},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":3},{"gcamCode":"c9.4","gcamValue":4},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.409","gcamValue":5},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":4},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.424","gcamValue":4},{"gcamCode":"c9.429","gcamValue":5},{"gcamCode":"c9.430","gcamValue":4},{"gcamCode":"c9.432","gcamValue":3},{"gcamCode":"c9.434","gcamValue":4},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.436","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.443","gcamValue":1},{"gcamCode":"c9.445","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.469","gcamValue":2},{"gcamCode":"c9.47","gcamValue":5},{"gcamCode":"c9.470","gcamValue":2},{"gcamCode":"c9.471","gcamValue":2},{"gcamCode":"c9.472","gcamValue":2},{"gcamCode":"c9.476","gcamValue":7},{"gcamCode":"c9.477","gcamValue":2},{"gcamCode":"c9.478","gcamValue":8},{"gcamCode":"c9.479","gcamValue":5},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":4},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":2},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":5},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":2},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.504","gcamValue":2},{"gcamCode":"c9.507","gcamValue":4},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.517","gcamValue":6},{"gcamCode":"c9.518","gcamValue":5},{"gcamCode":"c9.519","gcamValue":5},{"gcamCode":"c9.521","gcamValue":9},{"gcamCode":"c9.522","gcamValue":10},{"gcamCode":"c9.523","gcamValue":2},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.53","gcamValue":4},{"gcamCode":"c9.530","gcamValue":2},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":7},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.544","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":2},{"gcamCode":"c9.55","gcamValue":6},{"gcamCode":"c9.550","gcamValue":4},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":4},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.563","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.570","gcamValue":7},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":4},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.577","gcamValue":1},{"gcamCode":"c9.579","gcamValue":21},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":2},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.610","gcamValue":4},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.622","gcamValue":2},{"gcamCode":"c9.624","gcamValue":7},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.639","gcamValue":2},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":2},{"gcamCode":"c9.642","gcamValue":4},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":4},{"gcamCode":"c9.648","gcamValue":4},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.653","gcamValue":17},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":7},{"gcamCode":"c9.657","gcamValue":2},{"gcamCode":"c9.659","gcamValue":3},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":3},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.667","gcamValue":4},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":4},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.683","gcamValue":3},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":12},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.694","gcamValue":2},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.70","gcamValue":5},{"gcamCode":"c9.701","gcamValue":7},{"gcamCode":"c9.702","gcamValue":4},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":5},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.716","gcamValue":10},{"gcamCode":"c9.717","gcamValue":2},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":1},{"gcamCode":"c9.724","gcamValue":4},{"gcamCode":"c9.726","gcamValue":24},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":16},{"gcamCode":"c9.731","gcamValue":4},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":4},{"gcamCode":"c9.74","gcamValue":6},{"gcamCode":"c9.740","gcamValue":5},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.744","gcamValue":5},{"gcamCode":"c9.745","gcamValue":1},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":6},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.757","gcamValue":3},{"gcamCode":"c9.759","gcamValue":5},{"gcamCode":"c9.76","gcamValue":4},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":14},{"gcamCode":"c9.763","gcamValue":2},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":24},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.821","gcamValue":4},{"gcamCode":"c9.826","gcamValue":4},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.84","gcamValue":2},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":19},{"gcamCode":"c9.865","gcamValue":5},{"gcamCode":"c9.866","gcamValue":1},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":14},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":4},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.894","gcamValue":1},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.898","gcamValue":3},{"gcamCode":"c9.900","gcamValue":5},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":4},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.905","gcamValue":2},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.911","gcamValue":7},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.916","gcamValue":7},{"gcamCode":"c9.918","gcamValue":3},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.926","gcamValue":5},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.930","gcamValue":2},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.933","gcamValue":6},{"gcamCode":"c9.935","gcamValue":12},{"gcamCode":"c9.936","gcamValue":1},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.952","gcamValue":1},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":7},{"gcamCode":"c9.973","gcamValue":5},{"gcamCode":"c9.974","gcamValue":5},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.981","gcamValue":5},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.985","gcamValue":7},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":5},{"gcamCode":"c9.99","gcamValue":4},{"gcamCode":"c9.995","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.261307234432234},{"gcamCode":"v10.2","gcamValue":0.271125521376434},{"gcamCode":"v11.1","gcamValue":0.0304770893141946},{"gcamCode":"v19.1","gcamValue":5.43723684210526},{"gcamCode":"v19.2","gcamValue":5.36907894736842},{"gcamCode":"v19.3","gcamValue":5.27684210526316},{"gcamCode":"v19.4","gcamValue":5.61236842105263},{"gcamCode":"v19.5","gcamValue":5.25802631578947},{"gcamCode":"v19.6","gcamValue":5.55197368421053},{"gcamCode":"v19.7","gcamValue":5.30973684210526},{"gcamCode":"v19.8","gcamValue":5.43934210526316},{"gcamCode":"v19.9","gcamValue":5.08842105263158},{"gcamCode":"v20.1","gcamValue":0.431},{"gcamCode":"v20.10","gcamValue":-0.645714285714286},{"gcamCode":"v20.11","gcamValue":0.5436},{"gcamCode":"v20.12","gcamValue":-0.6275},{"gcamCode":"v20.13","gcamValue":0.42248275862069},{"gcamCode":"v20.14","gcamValue":-0.4764375},{"gcamCode":"v20.15","gcamValue":0.397787878787879},{"gcamCode":"v20.16","gcamValue":-0.374931034482759},{"gcamCode":"v20.3","gcamValue":0.431},{"gcamCode":"v20.4","gcamValue":-0.333333333333333},{"gcamCode":"v20.5","gcamValue":0.525833333333333},{"gcamCode":"v20.6","gcamValue":-0.656166666666667},{"gcamCode":"v20.7","gcamValue":0.557857142857143},{"gcamCode":"v20.8","gcamValue":-0.656166666666667},{"gcamCode":"v20.9","gcamValue":0.5545},{"gcamCode":"v21.1","gcamValue":5.30097686375321},{"gcamCode":"v26.1","gcamValue":-0.275}][""][""][""][{"charLength":53,"verb":"","quote":"The wind came. She said , 'Mom , there a tornado '","charOffset":1764}][{"name":"David Bell","charOffset":11},{"name":"Jefferson City","charOffset":229},{"name":"National Weather","charOffset":375},{"name":"Southern California","charOffset":1960}][{"amount":54,"amountType":"with 44","charOffset":498},{"amount":500,"amountType":"pounds of soda","charOffset":508}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.cnn.com/2019/05/22/us/severe-weather-wednesday/</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":8}2019-05-23T12:15:00.000+0000WEBdurangoherald.comhttps://durangoherald.com/articles/278190-10-things-to-know-for-today[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":268}]["CRISISLEX_CRISISLEXREC","EPU_CATS_MIGRATION_FEAR_FEAR","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_O01_WEATHER","NATURAL_DISASTER_TWISTER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","TAX_POLITICAL_PARTY","TAX_POLITICAL_PARTY_DEMOCRATS","USPEC_POLITICS_GENERAL1","LEADER","TAX_FNCACT","TAX_FNCACT_PRESIDENT","TAX_FNCACT_LAWMAKERS","EPU_POLICY","EPU_POLICY_LAWMAKERS","TAX_ETHNICITY","TAX_ETHNICITY_EUROPEANS","TAX_FNCACT_CITIZENS","ELECTION","TAX_FNCACT_SUPPORTERS","WB_2670_JOBS","WB_2769_JOBS_STRATEGIES","WB_2840_INTEGRATION","WB_2836_MIGRATION_POLICIES_AND_JOBS","TAX_ETHNICITY_INDIAN","TAX_FNCACT_MINISTER","TAX_FNCACT_PRIME_MINISTER","TAX_RELIGION","TAX_RELIGION_HINDU","TAX_ETHNICITY_HINDU","TAX_FNCACT_LEADER","ARMEDCONFLICT","UNREST_BELLIGERENT","EPU_POLICY_WHITE_HOUSE","TAX_FNCACT_TROOPS","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_WOLVES","TAX_WORLDMAMMALS_RED_WOLVES","WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","WB_1777_FORESTS","WB_590_ECOSYSTEMS","UNGP_FORESTS_RIVERS_OCEANS","TAX_WORLDMAMMALS_WOLF","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","WB_723_PUBLIC_ADMINISTRATION","WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR"][{"theme":"TAX_ETHNICITY_EUROPEANS","charOffset":549},{"theme":"KILL","charOffset":285},{"theme":"WB_566_ENVIRONMENT_AND_NATURAL_RESOURCES","charOffset":1436},{"theme":"WB_1777_FORESTS","charOffset":1436},{"theme":"WB_590_ECOSYSTEMS","charOffset":1436},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1436},{"theme":"TAX_WORLDMAMMALS_WOLVES","charOffset":1373},{"theme":"TAX_FNCACT_PRIME_MINISTER","charOffset":806},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":2064},{"theme":"WB_2048_COMPENSATION_CAREERS_AND_INCENTIVES","charOffset":2064},{"theme":"WB_723_PUBLIC_ADMINISTRATION","charOffset":2064},{"theme":"WB_724_HUMAN_RESOURCES_FOR_PUBLIC_SECTOR","charOffset":2064},{"theme":"ARMEDCONFLICT","charOffset":1023},{"theme":"TAX_FNCACT_LAWMAKERS","charOffset":480},{"theme":"EPU_POLICY_LAWMAKERS","charOffset":480},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":315},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":116},{"theme":"WB_2670_JOBS","charOffset":712},{"theme":"WB_2769_JOBS_STRATEGIES","charOffset":712},{"theme":"WB_2840_INTEGRATION","charOffset":712},{"theme":"WB_2836_MIGRATION_POLICIES_AND_JOBS","charOffset":712},{"theme":"TAX_FNCACT_CITIZENS","charOffset":602},{"theme":"TAX_POLITICAL_PARTY_DEMOCRATS","charOffset":382},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":382},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":191},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":191},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":242},{"theme":"TAX_FNCACT_MINISTER","charOffset":806},{"theme":"TAX_ETHNICITY_INDIAN","charOffset":791},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":171},{"theme":"TAX_FNCACT_SUPPORTERS","charOffset":690},{"theme":"TAX_RELIGION_HINDU","charOffset":905},{"theme":"TAX_ETHNICITY_HINDU","charOffset":905},{"theme":"TAX_FNCACT_TROOPS","charOffset":1331},{"theme":"TAX_FNCACT_LEADER","charOffset":924},{"theme":"TAX_WORLDMAMMALS_RED_WOLVES","charOffset":1373},{"theme":"LEADER","charOffset":398},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":398},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":124},{"theme":"CRISISLEX_O01_WEATHER","charOffset":124},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":37},{"theme":"ELECTION","charOffset":620},{"theme":"EPU_POLICY_WHITE_HOUSE","charOffset":1281},{"theme":"TAX_WORLDMAMMALS_WOLF","charOffset":1549},{"theme":"UNREST_BELLIGERENT","charOffset":1210}][{"geoType":"USSTATE","geoName":"Tennessee, United States","countryCode":"US","adm1Code":"USTN","adm2Code":"","geoPoint":{"latitude":35.7449,"longitude":-86.7489},"featureId":"TN"},{"geoType":"COUNTRY","geoName":"India","countryCode":"IN","adm1Code":"IN","adm2Code":"","geoPoint":{"latitude":20,"longitude":77},"featureId":"IN"},{"geoType":"COUNTRY","geoName":"United Kingdom","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},{"geoType":"COUNTRY","geoName":"Netherlands","countryCode":"NL","adm1Code":"NL","adm2Code":"","geoPoint":{"latitude":52.5,"longitude":5.75},"featureId":"NL"},{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},{"geoType":"COUNTRY","geoName":"Iran","countryCode":"IR","adm1Code":"IR","adm2Code":"","geoPoint":{"latitude":32,"longitude":53},"featureId":"IR"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}][{"location":{"geoType":"COUNTRY","geoName":"India","countryCode":"IN","adm1Code":"IN","adm2Code":"","geoPoint":{"latitude":20,"longitude":77},"featureId":"IN"},"charOffset":782},{"location":{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":1281},{"location":{"geoType":"USSTATE","geoName":"Tennessee, United States","countryCode":"US","adm1Code":"USTN","adm2Code":"","geoPoint":{"latitude":35.7449,"longitude":-86.7489},"featureId":"TN"},"charOffset":2024},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":149},{"location":{"geoType":"COUNTRY","geoName":"Iran","countryCode":"IR","adm1Code":"IR","adm2Code":"","geoPoint":{"latitude":32,"longitude":53},"featureId":"IR"},"charOffset":1182},{"location":{"geoType":"USSTATE","geoName":"North Carolina, United States","countryCode":"US","adm1Code":"USNC","adm2Code":"","geoPoint":{"latitude":35.6411,"longitude":-79.8431},"featureId":"NC"},"charOffset":1454},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":209},{"location":{"geoType":"COUNTRY","geoName":"Dutch","countryCode":"NL","adm1Code":"NL","adm2Code":"","geoPoint":{"latitude":52.5,"longitude":5.75},"featureId":"NL"},"charOffset":583},{"location":{"geoType":"COUNTRY","geoName":"British","countryCode":"UK","adm1Code":"UK","adm2Code":"","geoPoint":{"latitude":54,"longitude":-4},"featureId":"UK"},"charOffset":593}]["narendra modi","muhammad ali"][{"person":"Narendra Modi","charOffset":820},{"person":"Muhammad Ali","charOffset":2080}]["white house","u s census bureau","defense department"][{"organisation":"White House","charOffset":1281},{"organisation":"Defense Department","charOffset":1243}]{"tone":-2.1917808,"positiveScore":2.1917808,"negativeScore":4.3835616,"polarity":6.5753427,"activityReferenceDensity":19.452055,"selfGroupReferenceDensity":0,"wordCount":321}[{"dateResolution":3,"month":6,"day":6,"year":1944,"charOffset":1086}][{"gcamCode":"wc","gcamValue":321},{"gcamCode":"c12.1","gcamValue":15},{"gcamCode":"c12.10","gcamValue":40},{"gcamCode":"c12.12","gcamValue":11},{"gcamCode":"c12.13","gcamValue":15},{"gcamCode":"c12.14","gcamValue":15},{"gcamCode":"c12.3","gcamValue":7},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":7},{"gcamCode":"c12.7","gcamValue":17},{"gcamCode":"c12.8","gcamValue":18},{"gcamCode":"c12.9","gcamValue":21},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":19},{"gcamCode":"c14.10","gcamValue":12},{"gcamCode":"c14.11","gcamValue":31},{"gcamCode":"c14.2","gcamValue":16},{"gcamCode":"c14.3","gcamValue":14},{"gcamCode":"c14.4","gcamValue":2},{"gcamCode":"c14.5","gcamValue":29},{"gcamCode":"c14.7","gcamValue":7},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":4},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":1},{"gcamCode":"c15.120","gcamValue":1},{"gcamCode":"c15.149","gcamValue":1},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.160","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.176","gcamValue":1},{"gcamCode":"c15.198","gcamValue":1},{"gcamCode":"c15.20","gcamValue":1},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.223","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.3","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.81","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":4},{"gcamCode":"c16.100","gcamValue":11},{"gcamCode":"c16.101","gcamValue":7},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":9},{"gcamCode":"c16.109","gcamValue":13},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":40},{"gcamCode":"c16.111","gcamValue":3},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":12},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":10},{"gcamCode":"c16.117","gcamValue":4},{"gcamCode":"c16.118","gcamValue":21},{"gcamCode":"c16.12","gcamValue":19},{"gcamCode":"c16.120","gcamValue":15},{"gcamCode":"c16.121","gcamValue":31},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":19},{"gcamCode":"c16.126","gcamValue":15},{"gcamCode":"c16.127","gcamValue":20},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":42},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":10},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.134","gcamValue":23},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":6},{"gcamCode":"c16.139","gcamValue":8},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":7},{"gcamCode":"c16.145","gcamValue":23},{"gcamCode":"c16.146","gcamValue":23},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":13},{"gcamCode":"c16.155","gcamValue":3},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":8},{"gcamCode":"c16.159","gcamValue":27},{"gcamCode":"c16.16","gcamValue":5},{"gcamCode":"c16.161","gcamValue":23},{"gcamCode":"c16.162","gcamValue":16},{"gcamCode":"c16.163","gcamValue":20},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":23},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":7},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":3},{"gcamCode":"c16.26","gcamValue":45},{"gcamCode":"c16.27","gcamValue":2},{"gcamCode":"c16.3","gcamValue":9},{"gcamCode":"c16.31","gcamValue":24},{"gcamCode":"c16.32","gcamValue":2},{"gcamCode":"c16.33","gcamValue":24},{"gcamCode":"c16.34","gcamValue":5},{"gcamCode":"c16.35","gcamValue":10},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":20},{"gcamCode":"c16.38","gcamValue":8},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":18},{"gcamCode":"c16.41","gcamValue":9},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":2},{"gcamCode":"c16.45","gcamValue":10},{"gcamCode":"c16.46","gcamValue":7},{"gcamCode":"c16.47","gcamValue":43},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":18},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":6},{"gcamCode":"c16.57","gcamValue":160},{"gcamCode":"c16.58","gcamValue":19},{"gcamCode":"c16.6","gcamValue":34},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":4},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":5},{"gcamCode":"c16.68","gcamValue":14},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":3},{"gcamCode":"c16.70","gcamValue":20},{"gcamCode":"c16.71","gcamValue":13},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":10},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":3},{"gcamCode":"c16.83","gcamValue":2},{"gcamCode":"c16.84","gcamValue":12},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":25},{"gcamCode":"c16.88","gcamValue":34},{"gcamCode":"c16.89","gcamValue":11},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":11},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":20},{"gcamCode":"c16.93","gcamValue":7},{"gcamCode":"c16.94","gcamValue":24},{"gcamCode":"c16.95","gcamValue":24},{"gcamCode":"c16.96","gcamValue":5},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":15},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":97},{"gcamCode":"c17.10","gcamValue":31},{"gcamCode":"c17.11","gcamValue":39},{"gcamCode":"c17.12","gcamValue":11},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":5},{"gcamCode":"c17.15","gcamValue":22},{"gcamCode":"c17.16","gcamValue":20},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":22},{"gcamCode":"c17.2","gcamValue":8},{"gcamCode":"c17.20","gcamValue":7},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":5},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":26},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":27},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":19},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":4},{"gcamCode":"c17.31","gcamValue":20},{"gcamCode":"c17.32","gcamValue":9},{"gcamCode":"c17.33","gcamValue":16},{"gcamCode":"c17.34","gcamValue":7},{"gcamCode":"c17.35","gcamValue":4},{"gcamCode":"c17.36","gcamValue":17},{"gcamCode":"c17.37","gcamValue":4},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":20},{"gcamCode":"c17.4","gcamValue":70},{"gcamCode":"c17.40","gcamValue":7},{"gcamCode":"c17.41","gcamValue":11},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":16},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":56},{"gcamCode":"c17.6","gcamValue":4},{"gcamCode":"c17.7","gcamValue":38},{"gcamCode":"c17.8","gcamValue":36},{"gcamCode":"c17.9","gcamValue":6},{"gcamCode":"c18.1","gcamValue":1},{"gcamCode":"c18.100","gcamValue":1},{"gcamCode":"c18.139","gcamValue":3},{"gcamCode":"c18.140","gcamValue":1},{"gcamCode":"c18.156","gcamValue":4},{"gcamCode":"c18.179","gcamValue":1},{"gcamCode":"c18.180","gcamValue":4},{"gcamCode":"c18.193","gcamValue":8},{"gcamCode":"c18.195","gcamValue":1},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.345","gcamValue":3},{"gcamCode":"c18.352","gcamValue":3},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":8},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.101","gcamValue":5},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":48},{"gcamCode":"c2.106","gcamValue":4},{"gcamCode":"c2.107","gcamValue":4},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":8},{"gcamCode":"c2.112","gcamValue":5},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":15},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":11},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":83},{"gcamCode":"c2.12","gcamValue":8},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":13},{"gcamCode":"c2.122","gcamValue":9},{"gcamCode":"c2.125","gcamValue":12},{"gcamCode":"c2.126","gcamValue":10},{"gcamCode":"c2.127","gcamValue":26},{"gcamCode":"c2.128","gcamValue":17},{"gcamCode":"c2.129","gcamValue":34},{"gcamCode":"c2.130","gcamValue":2},{"gcamCode":"c2.131","gcamValue":3},{"gcamCode":"c2.132","gcamValue":11},{"gcamCode":"c2.133","gcamValue":2},{"gcamCode":"c2.134","gcamValue":3},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":25},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":29},{"gcamCode":"c2.144","gcamValue":10},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":55},{"gcamCode":"c2.148","gcamValue":24},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":11},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.153","gcamValue":6},{"gcamCode":"c2.154","gcamValue":14},{"gcamCode":"c2.155","gcamValue":22},{"gcamCode":"c2.156","gcamValue":11},{"gcamCode":"c2.157","gcamValue":18},{"gcamCode":"c2.158","gcamValue":18},{"gcamCode":"c2.159","gcamValue":8},{"gcamCode":"c2.160","gcamValue":17},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":4},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":3},{"gcamCode":"c2.170","gcamValue":4},{"gcamCode":"c2.171","gcamValue":2},{"gcamCode":"c2.172","gcamValue":4},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":1},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":15},{"gcamCode":"c2.179","gcamValue":9},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":8},{"gcamCode":"c2.183","gcamValue":8},{"gcamCode":"c2.185","gcamValue":60},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":13},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":4},{"gcamCode":"c2.192","gcamValue":6},{"gcamCode":"c2.193","gcamValue":29},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":38},{"gcamCode":"c2.196","gcamValue":3},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":30},{"gcamCode":"c2.199","gcamValue":8},{"gcamCode":"c2.2","gcamValue":1},{"gcamCode":"c2.200","gcamValue":3},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":11},{"gcamCode":"c2.204","gcamValue":18},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":7},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.208","gcamValue":4},{"gcamCode":"c2.209","gcamValue":5},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":23},{"gcamCode":"c2.213","gcamValue":10},{"gcamCode":"c2.214","gcamValue":8},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":8},{"gcamCode":"c2.221","gcamValue":4},{"gcamCode":"c2.223","gcamValue":4},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":4},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":16},{"gcamCode":"c2.24","gcamValue":2},{"gcamCode":"c2.25","gcamValue":15},{"gcamCode":"c2.26","gcamValue":12},{"gcamCode":"c2.27","gcamValue":12},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.30","gcamValue":10},{"gcamCode":"c2.31","gcamValue":11},{"gcamCode":"c2.32","gcamValue":5},{"gcamCode":"c2.33","gcamValue":6},{"gcamCode":"c2.34","gcamValue":21},{"gcamCode":"c2.35","gcamValue":10},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":8},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":42},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":2},{"gcamCode":"c2.43","gcamValue":3},{"gcamCode":"c2.44","gcamValue":8},{"gcamCode":"c2.45","gcamValue":22},{"gcamCode":"c2.46","gcamValue":23},{"gcamCode":"c2.47","gcamValue":6},{"gcamCode":"c2.48","gcamValue":5},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":15},{"gcamCode":"c2.54","gcamValue":21},{"gcamCode":"c2.55","gcamValue":5},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.57","gcamValue":4},{"gcamCode":"c2.58","gcamValue":6},{"gcamCode":"c2.59","gcamValue":2},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":8},{"gcamCode":"c2.64","gcamValue":5},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.73","gcamValue":3},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":39},{"gcamCode":"c2.76","gcamValue":192},{"gcamCode":"c2.77","gcamValue":25},{"gcamCode":"c2.78","gcamValue":36},{"gcamCode":"c2.79","gcamValue":6},{"gcamCode":"c2.80","gcamValue":33},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":9},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":7},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":9},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.9","gcamValue":5},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":5},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":45},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":4},{"gcamCode":"c2.98","gcamValue":23},{"gcamCode":"c2.99","gcamValue":4},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":4},{"gcamCode":"c25.5","gcamValue":3},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":23},{"gcamCode":"c3.2","gcamValue":19},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.20","gcamValue":7},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.24","gcamValue":3},{"gcamCode":"c35.25","gcamValue":3},{"gcamCode":"c35.26","gcamValue":3},{"gcamCode":"c35.28","gcamValue":2},{"gcamCode":"c35.31","gcamValue":19},{"gcamCode":"c35.32","gcamValue":3},{"gcamCode":"c35.33","gcamValue":19},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c35.7","gcamValue":6},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.14","gcamValue":2},{"gcamCode":"c39.17","gcamValue":3},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.19","gcamValue":2},{"gcamCode":"c39.2","gcamValue":7},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":20},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":15},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":5},{"gcamCode":"c39.4","gcamValue":10},{"gcamCode":"c39.40","gcamValue":2},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":5},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.21","gcamValue":1},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c4.28","gcamValue":1},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c41.1","gcamValue":13},{"gcamCode":"c5.10","gcamValue":36},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":59},{"gcamCode":"c5.15","gcamValue":3},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":4},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.23","gcamValue":6},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.26","gcamValue":4},{"gcamCode":"c5.27","gcamValue":1},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.29","gcamValue":3},{"gcamCode":"c5.3","gcamValue":2},{"gcamCode":"c5.30","gcamValue":19},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":3},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":11},{"gcamCode":"c5.35","gcamValue":9},{"gcamCode":"c5.36","gcamValue":21},{"gcamCode":"c5.37","gcamValue":3},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":23},{"gcamCode":"c5.43","gcamValue":9},{"gcamCode":"c5.44","gcamValue":3},{"gcamCode":"c5.45","gcamValue":4},{"gcamCode":"c5.46","gcamValue":53},{"gcamCode":"c5.47","gcamValue":3},{"gcamCode":"c5.48","gcamValue":4},{"gcamCode":"c5.49","gcamValue":19},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":22},{"gcamCode":"c5.51","gcamValue":19},{"gcamCode":"c5.52","gcamValue":31},{"gcamCode":"c5.53","gcamValue":25},{"gcamCode":"c5.54","gcamValue":9},{"gcamCode":"c5.55","gcamValue":4},{"gcamCode":"c5.56","gcamValue":3},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.6","gcamValue":11},{"gcamCode":"c5.60","gcamValue":8},{"gcamCode":"c5.61","gcamValue":17},{"gcamCode":"c5.62","gcamValue":121},{"gcamCode":"c5.7","gcamValue":10},{"gcamCode":"c5.8","gcamValue":7},{"gcamCode":"c5.9","gcamValue":17},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":3},{"gcamCode":"c6.4","gcamValue":14},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c7.1","gcamValue":15},{"gcamCode":"c7.2","gcamValue":18},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":2},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.15","gcamValue":2},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":5},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.2","gcamValue":10},{"gcamCode":"c8.23","gcamValue":13},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.3","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":9},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.4","gcamValue":6},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.42","gcamValue":5},{"gcamCode":"c8.43","gcamValue":10},{"gcamCode":"c8.5","gcamValue":3},{"gcamCode":"c9.1","gcamValue":7},{"gcamCode":"c9.10","gcamValue":4},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1021","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":4},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":4},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.128","gcamValue":13},{"gcamCode":"c9.129","gcamValue":3},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":2},{"gcamCode":"c9.138","gcamValue":3},{"gcamCode":"c9.14","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":3},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.179","gcamValue":2},{"gcamCode":"c9.18","gcamValue":2},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.184","gcamValue":5},{"gcamCode":"c9.187","gcamValue":1},{"gcamCode":"c9.188","gcamValue":5},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.200","gcamValue":2},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.203","gcamValue":5},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":4},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.215","gcamValue":5},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":5},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":5},{"gcamCode":"c9.235","gcamValue":5},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.262","gcamValue":2},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":3},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.30","gcamValue":4},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":3},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.312","gcamValue":3},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.322","gcamValue":5},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":10},{"gcamCode":"c9.330","gcamValue":3},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.335","gcamValue":2},{"gcamCode":"c9.34","gcamValue":5},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.348","gcamValue":1},{"gcamCode":"c9.35","gcamValue":7},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.359","gcamValue":3},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":2},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":3},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.39","gcamValue":7},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.400","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.432","gcamValue":2},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":4},{"gcamCode":"c9.440","gcamValue":3},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.448","gcamValue":2},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":3},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.463","gcamValue":2},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":4},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":4},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":8},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.497","gcamValue":1},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":3},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":1},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":4},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":2},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":1},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.554","gcamValue":3},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":3},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":3},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":7},{"gcamCode":"c9.581","gcamValue":4},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.598","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":3},{"gcamCode":"c9.619","gcamValue":5},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.622","gcamValue":2},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":4},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.635","gcamValue":4},{"gcamCode":"c9.636","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":3},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.653","gcamValue":9},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.659","gcamValue":4},{"gcamCode":"c9.66","gcamValue":2},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.666","gcamValue":1},{"gcamCode":"c9.669","gcamValue":3},{"gcamCode":"c9.670","gcamValue":8},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":7},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":3},{"gcamCode":"c9.693","gcamValue":8},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.695","gcamValue":1},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":8},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.722","gcamValue":6},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":5},{"gcamCode":"c9.726","gcamValue":9},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":4},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.748","gcamValue":9},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.766","gcamValue":7},{"gcamCode":"c9.767","gcamValue":14},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.770","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.775","gcamValue":3},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":4},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":2},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.812","gcamValue":4},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.83","gcamValue":6},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":3},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":6},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.874","gcamValue":4},{"gcamCode":"c9.877","gcamValue":5},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":3},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":2},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":5},{"gcamCode":"c9.890","gcamValue":1},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.90","gcamValue":5},{"gcamCode":"c9.900","gcamValue":3},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.911","gcamValue":3},{"gcamCode":"c9.920","gcamValue":4},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":8},{"gcamCode":"c9.938","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.947","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.973","gcamValue":2},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.978","gcamValue":4},{"gcamCode":"c9.98","gcamValue":1},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.995","gcamValue":5},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.26211811238407},{"gcamCode":"v10.2","gcamValue":0.300541353971232},{"gcamCode":"v11.1","gcamValue":0.0308336111111111},{"gcamCode":"v19.1","gcamValue":5.79484848484849},{"gcamCode":"v19.2","gcamValue":5.51090909090909},{"gcamCode":"v19.3","gcamValue":5.35757575757576},{"gcamCode":"v19.4","gcamValue":5.85484848484849},{"gcamCode":"v19.5","gcamValue":5.31181818181818},{"gcamCode":"v19.6","gcamValue":5.40575757575758},{"gcamCode":"v19.7","gcamValue":5.74272727272727},{"gcamCode":"v19.8","gcamValue":5.69181818181818},{"gcamCode":"v19.9","gcamValue":5.30818181818182},{"gcamCode":"v20.10","gcamValue":-0.5105},{"gcamCode":"v20.11","gcamValue":0.65625},{"gcamCode":"v20.12","gcamValue":-0.5105},{"gcamCode":"v20.13","gcamValue":0.401},{"gcamCode":"v20.14","gcamValue":-0.432888888888889},{"gcamCode":"v20.15","gcamValue":0.348730769230769},{"gcamCode":"v20.16","gcamValue":-0.352875},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.4","gcamValue":-0.396},{"gcamCode":"v20.5","gcamValue":0.875},{"gcamCode":"v20.6","gcamValue":-0.396},{"gcamCode":"v20.7","gcamValue":0.875},{"gcamCode":"v20.8","gcamValue":-0.396},{"gcamCode":"v20.9","gcamValue":0.708333333333333},{"gcamCode":"v21.1","gcamValue":5.40485401459854},{"gcamCode":"v26.1","gcamValue":0.191666666666667}]https://dur-duweb.newscyclecloud.com/storyimage/DU/20190523/AP/305239955/AR/0/AR-305239955.jpg?ts=1558608334[""][""][""][][{"name":"Jefferson City","charOffset":175},{"name":"Prime Minister Narendra Modi","charOffset":685},{"name":"Defense Department","charOffset":1078},{"name":"White House","charOffset":1116},{"name":"North Carolina","charOffset":1239},{"name":"Kailua Beach Park","charOffset":1571},{"name":"Elvis Presley","charOffset":1718}][{"amount":3,"amountType":"deaths","charOffset":222},{"amount":3,"amountType":"dozen","charOffset":1232},{"amount":3,"amountType":"museum","charOffset":1617}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>The Associated Press</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523104500</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://durangoherald.com/amp/278190-10-things-to-know-for-today</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":11}2019-05-23T12:15:00.000+0000WEBapnews.comhttps://apnews.com/Business%20Wire/eb093c1586f74077b50ee1dfa7a84c7b[][]["EPU_ECONOMY_HISTORIC","LEADER","TAX_FNCACT","TAX_FNCACT_PRESIDENT","USPEC_POLITICS_GENERAL1","TAX_FNCACT_EXECUTIVE","TAX_FNCACT_VICE_PRESIDENT","TAX_FNCACT_EXECUTIVE_VICE_PRESIDENT","WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","WB_332_CAPITAL_MARKETS","TAX_FNCACT_MANUFACTURER","AGRICULTURE","TAX_FNCACT_DISTRIBUTOR","TAX_FNCACT_INVESTOR","TAX_FNCACT_TREASURER","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_MASSACHUSETTS","WB_1331_HEALTH_TECHNOLOGIES","WB_1350_PHARMACEUTICALS","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1353_PHARMACEUTICAL_SUPPLY_CHAIN","WB_135_TRANSPORT","WB_1921_PRIVATE_SECTOR_DEVELOPMENT","WB_346_COMPETITIVE_INDUSTRIES","WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","WB_1281_MANUFACTURING","UNGP_FORESTS_RIVERS_OCEANS","SLFID_NATURAL_RESOURCES","WB_471_ECONOMIC_GROWTH","WB_1078_DETERMINANTS_OF_GROWTH","WB_1079_COMMODITIES_AND_RESOURCES","EPU_CATS_REGULATION"][{"theme":"AGRICULTURE","charOffset":500},{"theme":"TAX_WORLDLANGUAGES_MASSACHUSETTS","charOffset":916},{"theme":"WB_1920_FINANCIAL_SECTOR_DEVELOPMENT","charOffset":209},{"theme":"WB_332_CAPITAL_MARKETS","charOffset":209},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":134},{"theme":"TAX_FNCACT_VICE_PRESIDENT","charOffset":149},{"theme":"TAX_FNCACT_VICE_PRESIDENT","charOffset":831},{"theme":"TAX_FNCACT_INVESTOR","charOffset":842},{"theme":"TAX_FNCACT_EXECUTIVE_VICE_PRESIDENT","charOffset":149},{"theme":"EPU_CATS_REGULATION","charOffset":1357},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":966},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":1049},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":966},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":1049},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":966},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1049},{"theme":"WB_1353_PHARMACEUTICAL_SUPPLY_CHAIN","charOffset":966},{"theme":"WB_1353_PHARMACEUTICAL_SUPPLY_CHAIN","charOffset":1049},{"theme":"TAX_FNCACT_DISTRIBUTOR","charOffset":590},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":1015},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":1074},{"theme":"WB_1921_PRIVATE_SECTOR_DEVELOPMENT","charOffset":1123},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":1015},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":1074},{"theme":"WB_346_COMPETITIVE_INDUSTRIES","charOffset":1123},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":1015},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":1074},{"theme":"WB_818_INDUSTRY_POLICY_AND_REAL_SECTORS","charOffset":1123},{"theme":"WB_1281_MANUFACTURING","charOffset":1015},{"theme":"WB_1281_MANUFACTURING","charOffset":1074},{"theme":"WB_1281_MANUFACTURING","charOffset":1123},{"theme":"WB_135_TRANSPORT","charOffset":976},{"theme":"WB_135_TRANSPORT","charOffset":1001},{"theme":"SLFID_NATURAL_RESOURCES","charOffset":1141},{"theme":"SLFID_NATURAL_RESOURCES","charOffset":1177},{"theme":"WB_471_ECONOMIC_GROWTH","charOffset":1141},{"theme":"WB_471_ECONOMIC_GROWTH","charOffset":1177},{"theme":"WB_1078_DETERMINANTS_OF_GROWTH","charOffset":1141},{"theme":"WB_1078_DETERMINANTS_OF_GROWTH","charOffset":1177},{"theme":"WB_1079_COMMODITIES_AND_RESOURCES","charOffset":1141},{"theme":"WB_1079_COMMODITIES_AND_RESOURCES","charOffset":1177},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":23},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1366},{"theme":"TAX_FNCACT_TREASURER","charOffset":862},{"theme":"LEADER","charOffset":99},{"theme":"LEADER","charOffset":149},{"theme":"LEADER","charOffset":831},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":99},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":149},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":831},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":99},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":149},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":831},{"theme":"TAX_FNCACT_MANUFACTURER","charOffset":450},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1141},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1177}][{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},{"geoType":"USSTATE","geoName":"Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.2373,"longitude":-71.5314},"featureId":"MA"}][{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":258},{"location":{"geoType":"USSTATE","geoName":"Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.2373,"longitude":-71.5314},"featureId":"MA"},"charOffset":916}]["dave banyard","kevin brackman","monica vinay"][{"person":"Dave Banyard","charOffset":120},{"person":"Kevin Brackman","charOffset":172},{"person":"Monica Vinay","charOffset":801}]["myers industries","myers industries inc"][{"organisation":"Myers Industries","charOffset":50},{"organisation":"Myers Industries","charOffset":391},{"organisation":"Myers Industries","charOffset":410},{"organisation":"Myers Industries","charOffset":1338}]{"tone":1.3888888,"positiveScore":1.3888888,"negativeScore":0,"polarity":1.3888888,"activityReferenceDensity":18.055555,"selfGroupReferenceDensity":0,"wordCount":162}[][{"gcamCode":"wc","gcamValue":162},{"gcamCode":"c1.2","gcamValue":3},{"gcamCode":"c12.1","gcamValue":8},{"gcamCode":"c12.10","gcamValue":10},{"gcamCode":"c12.12","gcamValue":1},{"gcamCode":"c12.13","gcamValue":7},{"gcamCode":"c12.14","gcamValue":4},{"gcamCode":"c12.3","gcamValue":5},{"gcamCode":"c12.4","gcamValue":1},{"gcamCode":"c12.5","gcamValue":3},{"gcamCode":"c12.7","gcamValue":5},{"gcamCode":"c12.8","gcamValue":8},{"gcamCode":"c12.9","gcamValue":7},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.11","gcamValue":2},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":7},{"gcamCode":"c14.10","gcamValue":11},{"gcamCode":"c14.11","gcamValue":11},{"gcamCode":"c14.2","gcamValue":7},{"gcamCode":"c14.3","gcamValue":16},{"gcamCode":"c14.5","gcamValue":11},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.278","gcamValue":2},{"gcamCode":"c16.100","gcamValue":6},{"gcamCode":"c16.105","gcamValue":1},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":29},{"gcamCode":"c16.114","gcamValue":12},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":6},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":5},{"gcamCode":"c16.12","gcamValue":12},{"gcamCode":"c16.120","gcamValue":2},{"gcamCode":"c16.121","gcamValue":15},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":11},{"gcamCode":"c16.126","gcamValue":6},{"gcamCode":"c16.127","gcamValue":14},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":18},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.134","gcamValue":14},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.140","gcamValue":6},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.145","gcamValue":9},{"gcamCode":"c16.146","gcamValue":14},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":6},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":6},{"gcamCode":"c16.159","gcamValue":8},{"gcamCode":"c16.16","gcamValue":3},{"gcamCode":"c16.161","gcamValue":15},{"gcamCode":"c16.162","gcamValue":5},{"gcamCode":"c16.163","gcamValue":22},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.19","gcamValue":4},{"gcamCode":"c16.2","gcamValue":24},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":9},{"gcamCode":"c16.28","gcamValue":2},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":8},{"gcamCode":"c16.31","gcamValue":11},{"gcamCode":"c16.33","gcamValue":11},{"gcamCode":"c16.35","gcamValue":8},{"gcamCode":"c16.37","gcamValue":21},{"gcamCode":"c16.38","gcamValue":2},{"gcamCode":"c16.4","gcamValue":6},{"gcamCode":"c16.41","gcamValue":3},{"gcamCode":"c16.45","gcamValue":5},{"gcamCode":"c16.46","gcamValue":1},{"gcamCode":"c16.47","gcamValue":34},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":5},{"gcamCode":"c16.50","gcamValue":4},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":33},{"gcamCode":"c16.56","gcamValue":8},{"gcamCode":"c16.57","gcamValue":98},{"gcamCode":"c16.58","gcamValue":6},{"gcamCode":"c16.6","gcamValue":14},{"gcamCode":"c16.60","gcamValue":4},{"gcamCode":"c16.61","gcamValue":2},{"gcamCode":"c16.62","gcamValue":3},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":3},{"gcamCode":"c16.66","gcamValue":4},{"gcamCode":"c16.68","gcamValue":7},{"gcamCode":"c16.69","gcamValue":3},{"gcamCode":"c16.7","gcamValue":4},{"gcamCode":"c16.70","gcamValue":7},{"gcamCode":"c16.71","gcamValue":4},{"gcamCode":"c16.75","gcamValue":3},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":3},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.84","gcamValue":23},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":11},{"gcamCode":"c16.88","gcamValue":13},{"gcamCode":"c16.89","gcamValue":6},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":8},{"gcamCode":"c16.92","gcamValue":14},{"gcamCode":"c16.94","gcamValue":6},{"gcamCode":"c16.95","gcamValue":10},{"gcamCode":"c16.96","gcamValue":7},{"gcamCode":"c16.98","gcamValue":11},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":50},{"gcamCode":"c17.10","gcamValue":18},{"gcamCode":"c17.11","gcamValue":18},{"gcamCode":"c17.12","gcamValue":2},{"gcamCode":"c17.15","gcamValue":20},{"gcamCode":"c17.16","gcamValue":6},{"gcamCode":"c17.18","gcamValue":3},{"gcamCode":"c17.19","gcamValue":21},{"gcamCode":"c17.2","gcamValue":11},{"gcamCode":"c17.22","gcamValue":4},{"gcamCode":"c17.23","gcamValue":5},{"gcamCode":"c17.24","gcamValue":9},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.27","gcamValue":9},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":1},{"gcamCode":"c17.31","gcamValue":8},{"gcamCode":"c17.32","gcamValue":5},{"gcamCode":"c17.33","gcamValue":9},{"gcamCode":"c17.35","gcamValue":2},{"gcamCode":"c17.36","gcamValue":7},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":3},{"gcamCode":"c17.4","gcamValue":30},{"gcamCode":"c17.40","gcamValue":2},{"gcamCode":"c17.41","gcamValue":11},{"gcamCode":"c17.42","gcamValue":5},{"gcamCode":"c17.43","gcamValue":5},{"gcamCode":"c17.5","gcamValue":45},{"gcamCode":"c17.7","gcamValue":21},{"gcamCode":"c17.8","gcamValue":22},{"gcamCode":"c18.139","gcamValue":3},{"gcamCode":"c18.193","gcamValue":11},{"gcamCode":"c18.209","gcamValue":2},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.52","gcamValue":2},{"gcamCode":"c2.1","gcamValue":3},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":1},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":31},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.114","gcamValue":7},{"gcamCode":"c2.115","gcamValue":2},{"gcamCode":"c2.116","gcamValue":6},{"gcamCode":"c2.119","gcamValue":59},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":17},{"gcamCode":"c2.122","gcamValue":5},{"gcamCode":"c2.125","gcamValue":7},{"gcamCode":"c2.126","gcamValue":8},{"gcamCode":"c2.127","gcamValue":9},{"gcamCode":"c2.128","gcamValue":2},{"gcamCode":"c2.129","gcamValue":17},{"gcamCode":"c2.132","gcamValue":5},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.14","gcamValue":13},{"gcamCode":"c2.141","gcamValue":5},{"gcamCode":"c2.143","gcamValue":11},{"gcamCode":"c2.144","gcamValue":6},{"gcamCode":"c2.145","gcamValue":5},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":16},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.149","gcamValue":2},{"gcamCode":"c2.15","gcamValue":6},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.152","gcamValue":1},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":8},{"gcamCode":"c2.155","gcamValue":13},{"gcamCode":"c2.156","gcamValue":13},{"gcamCode":"c2.157","gcamValue":11},{"gcamCode":"c2.158","gcamValue":6},{"gcamCode":"c2.160","gcamValue":8},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":18},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":3},{"gcamCode":"c2.181","gcamValue":3},{"gcamCode":"c2.182","gcamValue":2},{"gcamCode":"c2.183","gcamValue":5},{"gcamCode":"c2.185","gcamValue":26},{"gcamCode":"c2.186","gcamValue":1},{"gcamCode":"c2.187","gcamValue":5},{"gcamCode":"c2.191","gcamValue":1},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":6},{"gcamCode":"c2.195","gcamValue":22},{"gcamCode":"c2.196","gcamValue":7},{"gcamCode":"c2.197","gcamValue":2},{"gcamCode":"c2.198","gcamValue":15},{"gcamCode":"c2.199","gcamValue":3},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":12},{"gcamCode":"c2.205","gcamValue":6},{"gcamCode":"c2.206","gcamValue":5},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":6},{"gcamCode":"c2.212","gcamValue":7},{"gcamCode":"c2.213","gcamValue":3},{"gcamCode":"c2.214","gcamValue":8},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.217","gcamValue":3},{"gcamCode":"c2.220","gcamValue":4},{"gcamCode":"c2.221","gcamValue":20},{"gcamCode":"c2.222","gcamValue":7},{"gcamCode":"c2.223","gcamValue":27},{"gcamCode":"c2.224","gcamValue":4},{"gcamCode":"c2.225","gcamValue":3},{"gcamCode":"c2.226","gcamValue":4},{"gcamCode":"c2.23","gcamValue":5},{"gcamCode":"c2.25","gcamValue":5},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.31","gcamValue":4},{"gcamCode":"c2.32","gcamValue":6},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":2},{"gcamCode":"c2.35","gcamValue":5},{"gcamCode":"c2.38","gcamValue":5},{"gcamCode":"c2.39","gcamValue":13},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":12},{"gcamCode":"c2.45","gcamValue":34},{"gcamCode":"c2.46","gcamValue":3},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":1},{"gcamCode":"c2.52","gcamValue":10},{"gcamCode":"c2.54","gcamValue":10},{"gcamCode":"c2.55","gcamValue":6},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":26},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.62","gcamValue":3},{"gcamCode":"c2.64","gcamValue":1},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.75","gcamValue":9},{"gcamCode":"c2.76","gcamValue":95},{"gcamCode":"c2.77","gcamValue":23},{"gcamCode":"c2.78","gcamValue":15},{"gcamCode":"c2.79","gcamValue":4},{"gcamCode":"c2.80","gcamValue":21},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.86","gcamValue":6},{"gcamCode":"c2.88","gcamValue":3},{"gcamCode":"c2.89","gcamValue":3},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.93","gcamValue":9},{"gcamCode":"c2.95","gcamValue":24},{"gcamCode":"c2.97","gcamValue":4},{"gcamCode":"c2.98","gcamValue":2},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c3.1","gcamValue":4},{"gcamCode":"c3.2","gcamValue":8},{"gcamCode":"c35.1","gcamValue":9},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.20","gcamValue":2},{"gcamCode":"c35.25","gcamValue":2},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.31","gcamValue":12},{"gcamCode":"c35.32","gcamValue":5},{"gcamCode":"c35.33","gcamValue":5},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.3","gcamValue":3},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":5},{"gcamCode":"c39.37","gcamValue":4},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.4","gcamValue":4},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":1},{"gcamCode":"c4.12","gcamValue":2},{"gcamCode":"c4.16","gcamValue":4},{"gcamCode":"c4.22","gcamValue":2},{"gcamCode":"c4.23","gcamValue":3},{"gcamCode":"c4.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":6},{"gcamCode":"c5.11","gcamValue":4},{"gcamCode":"c5.12","gcamValue":14},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.29","gcamValue":1},{"gcamCode":"c5.30","gcamValue":6},{"gcamCode":"c5.35","gcamValue":1},{"gcamCode":"c5.36","gcamValue":2},{"gcamCode":"c5.4","gcamValue":7},{"gcamCode":"c5.40","gcamValue":2},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":10},{"gcamCode":"c5.47","gcamValue":5},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":3},{"gcamCode":"c5.50","gcamValue":4},{"gcamCode":"c5.51","gcamValue":4},{"gcamCode":"c5.52","gcamValue":5},{"gcamCode":"c5.53","gcamValue":6},{"gcamCode":"c5.54","gcamValue":6},{"gcamCode":"c5.6","gcamValue":3},{"gcamCode":"c5.61","gcamValue":6},{"gcamCode":"c5.62","gcamValue":31},{"gcamCode":"c5.7","gcamValue":6},{"gcamCode":"c5.8","gcamValue":38},{"gcamCode":"c5.9","gcamValue":4},{"gcamCode":"c6.1","gcamValue":1},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.4","gcamValue":1},{"gcamCode":"c7.1","gcamValue":5},{"gcamCode":"c7.2","gcamValue":3},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.28","gcamValue":1},{"gcamCode":"c8.34","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":15},{"gcamCode":"c8.4","gcamValue":3},{"gcamCode":"c8.41","gcamValue":2},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c9.1","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.128","gcamValue":3},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.14","gcamValue":5},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.158","gcamValue":3},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.184","gcamValue":3},{"gcamCode":"c9.195","gcamValue":1},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.214","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.240","gcamValue":2},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.283","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.322","gcamValue":2},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":1},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.34","gcamValue":1},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.367","gcamValue":1},{"gcamCode":"c9.382","gcamValue":2},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.426","gcamValue":2},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":4},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":1},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.551","gcamValue":4},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.564","gcamValue":2},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.579","gcamValue":4},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.603","gcamValue":2},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.624","gcamValue":3},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.630","gcamValue":2},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.639","gcamValue":2},{"gcamCode":"c9.640","gcamValue":3},{"gcamCode":"c9.642","gcamValue":3},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":4},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":10},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":3},{"gcamCode":"c9.663","gcamValue":4},{"gcamCode":"c9.664","gcamValue":2},{"gcamCode":"c9.665","gcamValue":4},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.687","gcamValue":1},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":5},{"gcamCode":"c9.702","gcamValue":2},{"gcamCode":"c9.704","gcamValue":5},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.710","gcamValue":4},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.720","gcamValue":5},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":7},{"gcamCode":"c9.723","gcamValue":4},{"gcamCode":"c9.724","gcamValue":6},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.735","gcamValue":4},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.748","gcamValue":3},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.762","gcamValue":3},{"gcamCode":"c9.766","gcamValue":8},{"gcamCode":"c9.767","gcamValue":4},{"gcamCode":"c9.77","gcamValue":3},{"gcamCode":"c9.775","gcamValue":6},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.782","gcamValue":4},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.813","gcamValue":2},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.826","gcamValue":4},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":2},{"gcamCode":"c9.831","gcamValue":1},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":5},{"gcamCode":"c9.835","gcamValue":1},{"gcamCode":"c9.837","gcamValue":3},{"gcamCode":"c9.84","gcamValue":2},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":3},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.885","gcamValue":2},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.930","gcamValue":4},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":3},{"gcamCode":"c9.952","gcamValue":2},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.967","gcamValue":2},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.980","gcamValue":5},{"gcamCode":"c9.984","gcamValue":1},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.988","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.301649305555556},{"gcamCode":"v10.2","gcamValue":0.289244186046512},{"gcamCode":"v11.1","gcamValue":0.0400444561403509},{"gcamCode":"v19.1","gcamValue":5.510625},{"gcamCode":"v19.2","gcamValue":4.76625},{"gcamCode":"v19.3","gcamValue":5.180625},{"gcamCode":"v19.4","gcamValue":5.5825},{"gcamCode":"v19.5","gcamValue":4.896875},{"gcamCode":"v19.6","gcamValue":5.566875},{"gcamCode":"v19.7","gcamValue":5.47125},{"gcamCode":"v19.8","gcamValue":4.678125},{"gcamCode":"v19.9","gcamValue":4.856875},{"gcamCode":"v20.13","gcamValue":0.375},{"gcamCode":"v20.15","gcamValue":0.283333333333333},{"gcamCode":"v21.1","gcamValue":5.54908396946565},{"gcamCode":"v26.1","gcamValue":1.42}]https://apnews.com/images/PaidContent3.png[""][""]["https://youtube.com/user/AssociatedPress"][][{"name":"Dave Banyard","charOffset":135},{"name":"Executive Vice President","charOffset":169},{"name":"Kevin Brackman","charOffset":195},{"name":"KeyBanc Capital Market Industrials","charOffset":247},{"name":"Basic Materials Conference","charOffset":276},{"name":"Monica Vinay","charOffset":837},{"name":"Investor Relations","charOffset":894},{"name":"Myers Industries","charOffset":1052},{"name":"Business Wire","charOffset":1088}][{"amount":30,"amountType":"AM/DISC","charOffset":1213}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.myersindustries.com&esheet=51988404&newsitemid=20190523005025&lan=en-US&anchor=www.myersindustries.com&index=1&md5=b95ed0fc38f548cb4b5f5a60bda848de;https://www.businesswire.com/news/home/20190523005025/en/</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190523113000</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":13}2019-05-23T12:15:00.000+0000WEBnwitimes.comhttps://www.nwitimes.com/news/local/jasper/overnight-semi-rollover-likely-to-cause-gaper-delays-on-i/article_ab94d73a-f0f9-5987-adfa-46e0a5d4fed8.html[][]["WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","CRISISLEX_CRISISLEXREC","CRISISLEX_T02_INJURED","SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TRAFFIC","CRISISLEX_T11_UPDATESSYMPATHY","NATURAL_DISASTER","NATURAL_DISASTER_HEAVY_RAIN","CRISISLEX_O01_WEATHER","CRISISLEX_T01_CAUTION_ADVICE"][{"theme":"TRAFFIC","charOffset":287},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":778},{"theme":"CRISISLEX_O01_WEATHER","charOffset":778},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":778},{"theme":"SECURITY_SERVICES","charOffset":208},{"theme":"SECURITY_SERVICES","charOffset":414},{"theme":"SECURITY_SERVICES","charOffset":875},{"theme":"TAX_FNCACT_POLICE","charOffset":208},{"theme":"TAX_FNCACT_POLICE","charOffset":414},{"theme":"TAX_FNCACT_POLICE","charOffset":875},{"theme":"CRISISLEX_C07_SAFETY","charOffset":208},{"theme":"CRISISLEX_C07_SAFETY","charOffset":414},{"theme":"CRISISLEX_C07_SAFETY","charOffset":875},{"theme":"WB_1428_INJURY","charOffset":46},{"theme":"WB_1406_DISEASES","charOffset":46},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":46},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":46},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":46},{"theme":"CRISISLEX_T02_INJURED","charOffset":46},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":567}][{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},{"geoType":"USCITY","geoName":"Crown Point, Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":41.417,"longitude":-87.3653},"featureId":"449644"}][{"location":{"geoType":"USCITY","geoName":"Crown Point, Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"IN089","geoPoint":{"latitude":41.417,"longitude":-87.3653},"featureId":"449644"},"charOffset":11},{"location":{"geoType":"USCITY","geoName":"Crown Point, Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"IN089","geoPoint":{"latitude":41.417,"longitude":-87.3653},"featureId":"449644"},"charOffset":376},{"location":{"geoType":"USSTATE","geoName":"Indiana, United States","countryCode":"US","adm1Code":"USIN","adm2Code":"","geoPoint":{"latitude":39.8647,"longitude":-86.2604},"featureId":"IN"},"charOffset":401}][""][]["indiana state police"][{"organisation":"Indiana State Police","charOffset":414}]{"tone":-3.5460992,"positiveScore":2.8368795,"negativeScore":6.382979,"polarity":9.219858,"activityReferenceDensity":29.787233,"selfGroupReferenceDensity":0,"wordCount":134}[][{"gcamCode":"wc","gcamValue":134},{"gcamCode":"c12.1","gcamValue":6},{"gcamCode":"c12.10","gcamValue":9},{"gcamCode":"c12.12","gcamValue":3},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":4},{"gcamCode":"c12.3","gcamValue":2},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":5},{"gcamCode":"c12.8","gcamValue":4},{"gcamCode":"c12.9","gcamValue":7},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":12},{"gcamCode":"c14.10","gcamValue":3},{"gcamCode":"c14.11","gcamValue":11},{"gcamCode":"c14.2","gcamValue":8},{"gcamCode":"c14.3","gcamValue":7},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":10},{"gcamCode":"c14.7","gcamValue":2},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.107","gcamValue":1},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.126","gcamValue":2},{"gcamCode":"c15.130","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.137","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.227","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.245","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.32","gcamValue":1},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.55","gcamValue":1},{"gcamCode":"c15.61","gcamValue":2},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":6},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":4},{"gcamCode":"c16.106","gcamValue":6},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":8},{"gcamCode":"c16.110","gcamValue":24},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":13},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":4},{"gcamCode":"c16.117","gcamValue":8},{"gcamCode":"c16.118","gcamValue":11},{"gcamCode":"c16.12","gcamValue":13},{"gcamCode":"c16.120","gcamValue":10},{"gcamCode":"c16.121","gcamValue":10},{"gcamCode":"c16.122","gcamValue":1},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":1},{"gcamCode":"c16.125","gcamValue":7},{"gcamCode":"c16.126","gcamValue":7},{"gcamCode":"c16.127","gcamValue":16},{"gcamCode":"c16.129","gcamValue":14},{"gcamCode":"c16.130","gcamValue":1},{"gcamCode":"c16.131","gcamValue":6},{"gcamCode":"c16.134","gcamValue":17},{"gcamCode":"c16.139","gcamValue":6},{"gcamCode":"c16.140","gcamValue":3},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":8},{"gcamCode":"c16.146","gcamValue":15},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":3},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":16},{"gcamCode":"c16.16","gcamValue":4},{"gcamCode":"c16.161","gcamValue":11},{"gcamCode":"c16.162","gcamValue":7},{"gcamCode":"c16.163","gcamValue":20},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.19","gcamValue":3},{"gcamCode":"c16.2","gcamValue":9},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":1},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":18},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.31","gcamValue":7},{"gcamCode":"c16.32","gcamValue":3},{"gcamCode":"c16.33","gcamValue":14},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":7},{"gcamCode":"c16.37","gcamValue":18},{"gcamCode":"c16.38","gcamValue":6},{"gcamCode":"c16.4","gcamValue":15},{"gcamCode":"c16.41","gcamValue":9},{"gcamCode":"c16.42","gcamValue":2},{"gcamCode":"c16.45","gcamValue":8},{"gcamCode":"c16.47","gcamValue":18},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":7},{"gcamCode":"c16.56","gcamValue":5},{"gcamCode":"c16.57","gcamValue":82},{"gcamCode":"c16.58","gcamValue":8},{"gcamCode":"c16.6","gcamValue":14},{"gcamCode":"c16.60","gcamValue":1},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.64","gcamValue":2},{"gcamCode":"c16.65","gcamValue":1},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":5},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":13},{"gcamCode":"c16.71","gcamValue":11},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":6},{"gcamCode":"c16.78","gcamValue":1},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":1},{"gcamCode":"c16.86","gcamValue":2},{"gcamCode":"c16.87","gcamValue":12},{"gcamCode":"c16.88","gcamValue":24},{"gcamCode":"c16.89","gcamValue":4},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":3},{"gcamCode":"c16.91","gcamValue":6},{"gcamCode":"c16.92","gcamValue":13},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":13},{"gcamCode":"c16.95","gcamValue":14},{"gcamCode":"c16.96","gcamValue":3},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":12},{"gcamCode":"c17.1","gcamValue":38},{"gcamCode":"c17.10","gcamValue":18},{"gcamCode":"c17.11","gcamValue":35},{"gcamCode":"c17.12","gcamValue":9},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":7},{"gcamCode":"c17.16","gcamValue":10},{"gcamCode":"c17.17","gcamValue":1},{"gcamCode":"c17.18","gcamValue":4},{"gcamCode":"c17.19","gcamValue":4},{"gcamCode":"c17.2","gcamValue":1},{"gcamCode":"c17.20","gcamValue":1},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":8},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":15},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":13},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":4},{"gcamCode":"c17.30","gcamValue":3},{"gcamCode":"c17.31","gcamValue":13},{"gcamCode":"c17.32","gcamValue":3},{"gcamCode":"c17.33","gcamValue":9},{"gcamCode":"c17.34","gcamValue":6},{"gcamCode":"c17.35","gcamValue":1},{"gcamCode":"c17.36","gcamValue":6},{"gcamCode":"c17.37","gcamValue":5},{"gcamCode":"c17.38","gcamValue":3},{"gcamCode":"c17.39","gcamValue":8},{"gcamCode":"c17.4","gcamValue":33},{"gcamCode":"c17.40","gcamValue":1},{"gcamCode":"c17.41","gcamValue":5},{"gcamCode":"c17.42","gcamValue":12},{"gcamCode":"c17.43","gcamValue":10},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":32},{"gcamCode":"c17.7","gcamValue":24},{"gcamCode":"c17.8","gcamValue":11},{"gcamCode":"c17.9","gcamValue":5},{"gcamCode":"c18.156","gcamValue":2},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":3},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.71","gcamValue":3},{"gcamCode":"c2.1","gcamValue":4},{"gcamCode":"c2.10","gcamValue":4},{"gcamCode":"c2.100","gcamValue":1},{"gcamCode":"c2.101","gcamValue":2},{"gcamCode":"c2.102","gcamValue":3},{"gcamCode":"c2.104","gcamValue":23},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.11","gcamValue":2},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":3},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":2},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.119","gcamValue":43},{"gcamCode":"c2.12","gcamValue":6},{"gcamCode":"c2.121","gcamValue":13},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.125","gcamValue":7},{"gcamCode":"c2.126","gcamValue":6},{"gcamCode":"c2.127","gcamValue":18},{"gcamCode":"c2.128","gcamValue":6},{"gcamCode":"c2.129","gcamValue":10},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":5},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.14","gcamValue":12},{"gcamCode":"c2.141","gcamValue":4},{"gcamCode":"c2.143","gcamValue":13},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":18},{"gcamCode":"c2.148","gcamValue":7},{"gcamCode":"c2.15","gcamValue":6},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":1},{"gcamCode":"c2.154","gcamValue":6},{"gcamCode":"c2.155","gcamValue":16},{"gcamCode":"c2.156","gcamValue":8},{"gcamCode":"c2.157","gcamValue":11},{"gcamCode":"c2.158","gcamValue":9},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.160","gcamValue":6},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":2},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":3},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":6},{"gcamCode":"c2.180","gcamValue":6},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":36},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":7},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":9},{"gcamCode":"c2.195","gcamValue":13},{"gcamCode":"c2.196","gcamValue":2},{"gcamCode":"c2.197","gcamValue":4},{"gcamCode":"c2.198","gcamValue":22},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.203","gcamValue":1},{"gcamCode":"c2.204","gcamValue":18},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":5},{"gcamCode":"c2.210","gcamValue":12},{"gcamCode":"c2.214","gcamValue":5},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":3},{"gcamCode":"c2.223","gcamValue":3},{"gcamCode":"c2.225","gcamValue":2},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.228","gcamValue":4},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":13},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":2},{"gcamCode":"c2.29","gcamValue":1},{"gcamCode":"c2.30","gcamValue":14},{"gcamCode":"c2.31","gcamValue":7},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":20},{"gcamCode":"c2.44","gcamValue":7},{"gcamCode":"c2.45","gcamValue":5},{"gcamCode":"c2.46","gcamValue":14},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":2},{"gcamCode":"c2.50","gcamValue":5},{"gcamCode":"c2.52","gcamValue":13},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":16},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":6},{"gcamCode":"c2.64","gcamValue":10},{"gcamCode":"c2.65","gcamValue":1},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.73","gcamValue":4},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":20},{"gcamCode":"c2.76","gcamValue":88},{"gcamCode":"c2.77","gcamValue":13},{"gcamCode":"c2.78","gcamValue":19},{"gcamCode":"c2.79","gcamValue":4},{"gcamCode":"c2.80","gcamValue":19},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":1},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":1},{"gcamCode":"c2.88","gcamValue":2},{"gcamCode":"c2.89","gcamValue":4},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":5},{"gcamCode":"c2.95","gcamValue":25},{"gcamCode":"c2.97","gcamValue":4},{"gcamCode":"c2.98","gcamValue":4},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c3.1","gcamValue":8},{"gcamCode":"c3.2","gcamValue":9},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":4},{"gcamCode":"c35.20","gcamValue":5},{"gcamCode":"c35.25","gcamValue":2},{"gcamCode":"c35.31","gcamValue":4},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":7},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.2","gcamValue":2},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":9},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.39","gcamValue":2},{"gcamCode":"c39.4","gcamValue":10},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":2},{"gcamCode":"c39.6","gcamValue":2},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":3},{"gcamCode":"c4.12","gcamValue":1},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.23","gcamValue":6},{"gcamCode":"c40.3","gcamValue":2},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":1},{"gcamCode":"c5.10","gcamValue":13},{"gcamCode":"c5.11","gcamValue":5},{"gcamCode":"c5.12","gcamValue":28},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":2},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.27","gcamValue":3},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.30","gcamValue":11},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":3},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":8},{"gcamCode":"c5.43","gcamValue":2},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":17},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":9},{"gcamCode":"c5.50","gcamValue":15},{"gcamCode":"c5.51","gcamValue":9},{"gcamCode":"c5.52","gcamValue":17},{"gcamCode":"c5.53","gcamValue":13},{"gcamCode":"c5.54","gcamValue":1},{"gcamCode":"c5.57","gcamValue":4},{"gcamCode":"c5.6","gcamValue":7},{"gcamCode":"c5.60","gcamValue":4},{"gcamCode":"c5.61","gcamValue":5},{"gcamCode":"c5.62","gcamValue":50},{"gcamCode":"c5.7","gcamValue":2},{"gcamCode":"c5.8","gcamValue":4},{"gcamCode":"c5.9","gcamValue":10},{"gcamCode":"c6.3","gcamValue":1},{"gcamCode":"c6.4","gcamValue":2},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":5},{"gcamCode":"c7.2","gcamValue":4},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.18","gcamValue":2},{"gcamCode":"c8.19","gcamValue":2},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":5},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.4","gcamValue":7},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":6},{"gcamCode":"c8.43","gcamValue":2},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c9.1","gcamValue":7},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":2},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":3},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.116","gcamValue":2},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.119","gcamValue":1},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.130","gcamValue":2},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.15","gcamValue":1},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.178","gcamValue":3},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.184","gcamValue":1},{"gcamCode":"c9.189","gcamValue":2},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":3},{"gcamCode":"c9.198","gcamValue":1},{"gcamCode":"c9.199","gcamValue":1},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.206","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":2},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.225","gcamValue":1},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.235","gcamValue":2},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.245","gcamValue":2},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.257","gcamValue":2},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":2},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":4},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.349","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.355","gcamValue":2},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.362","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.402","gcamValue":1},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.42","gcamValue":2},{"gcamCode":"c9.44","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":1},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":1},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.551","gcamValue":3},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":6},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.597","gcamValue":2},{"gcamCode":"c9.599","gcamValue":2},{"gcamCode":"c9.601","gcamValue":2},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":2},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":2},{"gcamCode":"c9.653","gcamValue":7},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.66","gcamValue":3},{"gcamCode":"c9.660","gcamValue":1},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.671","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":6},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":6},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.757","gcamValue":3},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":6},{"gcamCode":"c9.766","gcamValue":1},{"gcamCode":"c9.767","gcamValue":6},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.777","gcamValue":2},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.812","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":3},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":8},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":1},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.875","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.879","gcamValue":2},{"gcamCode":"c9.880","gcamValue":3},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.903","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":2},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.926","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.956","gcamValue":1},{"gcamCode":"c9.957","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.966","gcamValue":1},{"gcamCode":"c9.972","gcamValue":1},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.985","gcamValue":1},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.99","gcamValue":3},{"gcamCode":"c9.995","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.252397486772487},{"gcamCode":"v10.2","gcamValue":0.264346764346764},{"gcamCode":"v11.1","gcamValue":0.0502377857142857},{"gcamCode":"v19.1","gcamValue":4.96411764705882},{"gcamCode":"v19.2","gcamValue":4.90470588235294},{"gcamCode":"v19.3","gcamValue":4.73176470588235},{"gcamCode":"v19.4","gcamValue":5.08117647058824},{"gcamCode":"v19.5","gcamValue":4.69117647058823},{"gcamCode":"v19.6","gcamValue":4.82529411764706},{"gcamCode":"v19.7","gcamValue":4.83411764705882},{"gcamCode":"v19.8","gcamValue":5.02176470588235},{"gcamCode":"v19.9","gcamValue":4.56352941176471},{"gcamCode":"v20.1","gcamValue":0.5155},{"gcamCode":"v20.11","gcamValue":0.5765},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.442727272727273},{"gcamCode":"v20.14","gcamValue":-0.48425},{"gcamCode":"v20.15","gcamValue":0.367777777777778},{"gcamCode":"v20.16","gcamValue":-0.354111111111111},{"gcamCode":"v20.3","gcamValue":0.6405},{"gcamCode":"v20.5","gcamValue":0.6405},{"gcamCode":"v20.7","gcamValue":0.6405},{"gcamCode":"v20.9","gcamValue":0.602},{"gcamCode":"v21.1","gcamValue":5.27810810810811},{"gcamCode":"v26.1","gcamValue":0.2875}]https://bloximages.chicago2.vip.townnews.com/nwitimes.com/content/tncms/assets/v3/editorial/1/32/132cff1d-8f5d-5486-9be9-a80ec3a8fb89/563d5f222d460.image.jpg?crop=620%2C349%2C0%2C25[""][""]["https://youtube.com/user/nwitimestv"][][{"name":"Crown Point","charOffset":377},{"name":"Indiana State Police","charOffset":403}][]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.nwitimes.com/news/local/jasper/overnight-semi-rollover-likely-to-cause-gaper-delays-on-i/article_ab94d73a-f0f9-5987-adfa-46e0a5d4fed8.html;https://www.nwitimes.com/users/admin/leefalcon/activate/</PAGE_LINKS><PAGE_AUTHORS>Sarah Reese sarah.reese@nwi.com;219-933-3351;Sarah Reese</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523115000</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.nwitimes.com/news/local/jasper/overnight-semi-rollover-likely-to-cause-gaper-delays-on-i/article_ab94d73a-f0f9-5987-adfa-46e0a5d4fed8.amp.html</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":17}2019-05-23T12:15:00.000+0000WEBsearchenginejournal.comhttps://www.searchenginejournal.com/boosting-local-seo-with-google-my-business-podcast/308437/[][]["LEADER","TAX_FNCACT","TAX_FNCACT_PRESIDENT","USPEC_POLITICS_GENERAL1","TAX_FNCACT_VICE_PRESIDENT","EPU_ECONOMY_HISTORIC","UNGP_FORESTS_RIVERS_OCEANS","TRAFFIC","CRISISLEX_T11_UPDATESSYMPATHY","WB_678_DIGITAL_GOVERNMENT","WB_667_ICT_INFRASTRUCTURE","WB_669_SOFTWARE_INFRASTRUCTURE","WB_2945_DATABASE","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","SANITATION","WB_855_LABOR_MARKETS","WB_1650_PUBLIC_EMPLOYMENT_SERVICES","WB_697_SOCIAL_PROTECTION_AND_LABOR","WB_1652_PLACEMENT","TAX_FNCACT_DEALER","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_HUMAN","TAX_FNCACT_EMPLOYEE"][{"theme":"TRAFFIC","charOffset":1395},{"theme":"TAX_FNCACT_DEALER","charOffset":7013},{"theme":"TAX_FNCACT_DEALER","charOffset":7114},{"theme":"TAX_FNCACT_DEALER","charOffset":7249},{"theme":"TAX_FNCACT_DEALER","charOffset":7317},{"theme":"TAX_FNCACT_DEALER","charOffset":7384},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":2256},{"theme":"WB_667_ICT_INFRASTRUCTURE","charOffset":2256},{"theme":"WB_669_SOFTWARE_INFRASTRUCTURE","charOffset":2256},{"theme":"WB_2945_DATABASE","charOffset":2256},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":2256},{"theme":"SANITATION","charOffset":3129},{"theme":"SANITATION","charOffset":3270},{"theme":"TAX_WORLDMAMMALS_HUMAN","charOffset":8086},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":177},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":315},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":345},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":810},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1102},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1146},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1237},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1515},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1660},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1734},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1961},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":2185},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":2668},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":3714},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4199},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4558},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4685},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4775},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":4820},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":5057},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":5281},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":5803},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":5953},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":6150},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":6188},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":6901},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":7646},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":8775},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":9136},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":9610},{"theme":"TAX_FNCACT_VICE_PRESIDENT","charOffset":109},{"theme":"WB_855_LABOR_MARKETS","charOffset":4857},{"theme":"WB_1650_PUBLIC_EMPLOYMENT_SERVICES","charOffset":4857},{"theme":"WB_697_SOCIAL_PROTECTION_AND_LABOR","charOffset":4857},{"theme":"WB_1652_PLACEMENT","charOffset":4857},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":467},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":833},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":896},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1832},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2522},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":4574},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":4992},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":5253},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":7562},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":8164},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":8403},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":9324},{"theme":"LEADER","charOffset":109},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":109},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":109},{"theme":"TAX_FNCACT_EMPLOYEE","charOffset":8689},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":1937},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":3853},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":4327},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":4436}][{"geoType":"USCITY","geoName":"Dallas, Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":32.7831,"longitude":-96.8067},"featureId":"1380944"},{"geoType":"USSTATE","geoName":"Wyoming, United States","countryCode":"US","adm1Code":"USWY","adm2Code":"","geoPoint":{"latitude":42.7475,"longitude":-107.209},"featureId":"WY"}][{"location":{"geoType":"USSTATE","geoName":"Wyoming, United States","countryCode":"US","adm1Code":"USWY","adm2Code":"","geoPoint":{"latitude":42.7475,"longitude":-107.209},"featureId":"WY"},"charOffset":7285},{"location":{"geoType":"USCITY","geoName":"Dallas, Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"TX113","geoPoint":{"latitude":32.7831,"longitude":-96.8067},"featureId":"1380944"},"charOffset":7060}]["paulo bobita","greg gifford"][{"person":"Paulo Bobita","charOffset":10332},{"person":"Greg Gifford","charOffset":92},{"person":"Greg Gifford","charOffset":433},{"person":"Greg Gifford","charOffset":9954}]["google","search at dealeron inc","yelp","facebook"][{"organisation":"Google","charOffset":165},{"organisation":"Google","charOffset":303},{"organisation":"Google","charOffset":333},{"organisation":"Google","charOffset":798},{"organisation":"Google","charOffset":1090},{"organisation":"Google","charOffset":1134},{"organisation":"Google","charOffset":1211},{"organisation":"Google","charOffset":1503},{"organisation":"Google","charOffset":1722},{"organisation":"Google","charOffset":1949},{"organisation":"Google","charOffset":2055},{"organisation":"Google","charOffset":2173},{"organisation":"Google","charOffset":2247},{"organisation":"Google","charOffset":2656},{"organisation":"Google","charOffset":3250},{"organisation":"Google","charOffset":3623},{"organisation":"Google","charOffset":3702},{"organisation":"Google","charOffset":4134},{"organisation":"Google","charOffset":4187},{"organisation":"Google","charOffset":4546},{"organisation":"Google","charOffset":4673},{"organisation":"Google","charOffset":5225},{"organisation":"Google","charOffset":8575},{"organisation":"Google","charOffset":8893},{"organisation":"Google","charOffset":9124},{"organisation":"Google","charOffset":9249},{"organisation":"Google","charOffset":9383},{"organisation":"Search At Dealeron Inc","charOffset":135},{"organisation":"Yelp","charOffset":3614},{"organisation":"Yelp","charOffset":8911},{"organisation":"Facebook","charOffset":8904}]{"tone":-0.0513347,"positiveScore":0.9753593,"negativeScore":1.026694,"polarity":2.0020535,"activityReferenceDensity":24.024641,"selfGroupReferenceDensity":4.0554414,"wordCount":1726}[][{"gcamCode":"wc","gcamValue":1726},{"gcamCode":"c1.2","gcamValue":1},{"gcamCode":"c12.1","gcamValue":122},{"gcamCode":"c12.10","gcamValue":143},{"gcamCode":"c12.12","gcamValue":26},{"gcamCode":"c12.13","gcamValue":69},{"gcamCode":"c12.14","gcamValue":60},{"gcamCode":"c12.3","gcamValue":22},{"gcamCode":"c12.4","gcamValue":45},{"gcamCode":"c12.5","gcamValue":58},{"gcamCode":"c12.7","gcamValue":45},{"gcamCode":"c12.8","gcamValue":103},{"gcamCode":"c12.9","gcamValue":95},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":5},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.7","gcamValue":3},{"gcamCode":"c14.1","gcamValue":144},{"gcamCode":"c14.10","gcamValue":43},{"gcamCode":"c14.11","gcamValue":210},{"gcamCode":"c14.2","gcamValue":84},{"gcamCode":"c14.3","gcamValue":158},{"gcamCode":"c14.4","gcamValue":28},{"gcamCode":"c14.5","gcamValue":215},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":29},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":20},{"gcamCode":"c15.10","gcamValue":9},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.105","gcamValue":11},{"gcamCode":"c15.110","gcamValue":5},{"gcamCode":"c15.116","gcamValue":4},{"gcamCode":"c15.120","gcamValue":4},{"gcamCode":"c15.123","gcamValue":2},{"gcamCode":"c15.134","gcamValue":2},{"gcamCode":"c15.143","gcamValue":2},{"gcamCode":"c15.147","gcamValue":11},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.149","gcamValue":3},{"gcamCode":"c15.154","gcamValue":5},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.170","gcamValue":2},{"gcamCode":"c15.173","gcamValue":4},{"gcamCode":"c15.175","gcamValue":6},{"gcamCode":"c15.176","gcamValue":5},{"gcamCode":"c15.18","gcamValue":8},{"gcamCode":"c15.185","gcamValue":2},{"gcamCode":"c15.198","gcamValue":9},{"gcamCode":"c15.20","gcamValue":3},{"gcamCode":"c15.202","gcamValue":2},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.209","gcamValue":4},{"gcamCode":"c15.212","gcamValue":11},{"gcamCode":"c15.213","gcamValue":2},{"gcamCode":"c15.215","gcamValue":4},{"gcamCode":"c15.224","gcamValue":2},{"gcamCode":"c15.227","gcamValue":5},{"gcamCode":"c15.229","gcamValue":7},{"gcamCode":"c15.231","gcamValue":4},{"gcamCode":"c15.233","gcamValue":4},{"gcamCode":"c15.251","gcamValue":9},{"gcamCode":"c15.252","gcamValue":9},{"gcamCode":"c15.255","gcamValue":2},{"gcamCode":"c15.257","gcamValue":5},{"gcamCode":"c15.26","gcamValue":4},{"gcamCode":"c15.261","gcamValue":2},{"gcamCode":"c15.274","gcamValue":1},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.3","gcamValue":7},{"gcamCode":"c15.36","gcamValue":2},{"gcamCode":"c15.42","gcamValue":4},{"gcamCode":"c15.43","gcamValue":4},{"gcamCode":"c15.48","gcamValue":3},{"gcamCode":"c15.51","gcamValue":6},{"gcamCode":"c15.57","gcamValue":3},{"gcamCode":"c15.58","gcamValue":5},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.83","gcamValue":4},{"gcamCode":"c15.94","gcamValue":6},{"gcamCode":"c16.1","gcamValue":12},{"gcamCode":"c16.100","gcamValue":42},{"gcamCode":"c16.101","gcamValue":21},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.103","gcamValue":4},{"gcamCode":"c16.105","gcamValue":13},{"gcamCode":"c16.106","gcamValue":50},{"gcamCode":"c16.108","gcamValue":4},{"gcamCode":"c16.109","gcamValue":101},{"gcamCode":"c16.11","gcamValue":6},{"gcamCode":"c16.110","gcamValue":292},{"gcamCode":"c16.111","gcamValue":16},{"gcamCode":"c16.113","gcamValue":16},{"gcamCode":"c16.114","gcamValue":90},{"gcamCode":"c16.115","gcamValue":54},{"gcamCode":"c16.116","gcamValue":46},{"gcamCode":"c16.117","gcamValue":68},{"gcamCode":"c16.118","gcamValue":77},{"gcamCode":"c16.119","gcamValue":3},{"gcamCode":"c16.12","gcamValue":191},{"gcamCode":"c16.120","gcamValue":84},{"gcamCode":"c16.121","gcamValue":124},{"gcamCode":"c16.122","gcamValue":28},{"gcamCode":"c16.123","gcamValue":1},{"gcamCode":"c16.124","gcamValue":18},{"gcamCode":"c16.125","gcamValue":154},{"gcamCode":"c16.126","gcamValue":152},{"gcamCode":"c16.127","gcamValue":149},{"gcamCode":"c16.128","gcamValue":32},{"gcamCode":"c16.129","gcamValue":194},{"gcamCode":"c16.13","gcamValue":6},{"gcamCode":"c16.130","gcamValue":31},{"gcamCode":"c16.131","gcamValue":81},{"gcamCode":"c16.132","gcamValue":5},{"gcamCode":"c16.133","gcamValue":11},{"gcamCode":"c16.134","gcamValue":147},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.137","gcamValue":1},{"gcamCode":"c16.138","gcamValue":50},{"gcamCode":"c16.139","gcamValue":44},{"gcamCode":"c16.14","gcamValue":2},{"gcamCode":"c16.140","gcamValue":63},{"gcamCode":"c16.142","gcamValue":2},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.144","gcamValue":2},{"gcamCode":"c16.145","gcamValue":100},{"gcamCode":"c16.146","gcamValue":124},{"gcamCode":"c16.147","gcamValue":8},{"gcamCode":"c16.150","gcamValue":3},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":97},{"gcamCode":"c16.154","gcamValue":2},{"gcamCode":"c16.155","gcamValue":20},{"gcamCode":"c16.156","gcamValue":5},{"gcamCode":"c16.157","gcamValue":73},{"gcamCode":"c16.158","gcamValue":2},{"gcamCode":"c16.159","gcamValue":107},{"gcamCode":"c16.16","gcamValue":22},{"gcamCode":"c16.160","gcamValue":1},{"gcamCode":"c16.161","gcamValue":179},{"gcamCode":"c16.162","gcamValue":78},{"gcamCode":"c16.163","gcamValue":171},{"gcamCode":"c16.164","gcamValue":32},{"gcamCode":"c16.165","gcamValue":8},{"gcamCode":"c16.168","gcamValue":3},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.18","gcamValue":17},{"gcamCode":"c16.19","gcamValue":62},{"gcamCode":"c16.2","gcamValue":112},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":16},{"gcamCode":"c16.22","gcamValue":48},{"gcamCode":"c16.23","gcamValue":8},{"gcamCode":"c16.24","gcamValue":12},{"gcamCode":"c16.26","gcamValue":216},{"gcamCode":"c16.27","gcamValue":8},{"gcamCode":"c16.28","gcamValue":46},{"gcamCode":"c16.29","gcamValue":13},{"gcamCode":"c16.3","gcamValue":54},{"gcamCode":"c16.30","gcamValue":2},{"gcamCode":"c16.31","gcamValue":154},{"gcamCode":"c16.32","gcamValue":30},{"gcamCode":"c16.33","gcamValue":105},{"gcamCode":"c16.34","gcamValue":6},{"gcamCode":"c16.35","gcamValue":114},{"gcamCode":"c16.36","gcamValue":3},{"gcamCode":"c16.37","gcamValue":200},{"gcamCode":"c16.38","gcamValue":82},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":118},{"gcamCode":"c16.41","gcamValue":53},{"gcamCode":"c16.42","gcamValue":8},{"gcamCode":"c16.43","gcamValue":5},{"gcamCode":"c16.45","gcamValue":59},{"gcamCode":"c16.46","gcamValue":13},{"gcamCode":"c16.47","gcamValue":301},{"gcamCode":"c16.48","gcamValue":12},{"gcamCode":"c16.49","gcamValue":20},{"gcamCode":"c16.5","gcamValue":7},{"gcamCode":"c16.50","gcamValue":10},{"gcamCode":"c16.51","gcamValue":4},{"gcamCode":"c16.52","gcamValue":110},{"gcamCode":"c16.53","gcamValue":13},{"gcamCode":"c16.54","gcamValue":5},{"gcamCode":"c16.55","gcamValue":8},{"gcamCode":"c16.56","gcamValue":47},{"gcamCode":"c16.57","gcamValue":940},{"gcamCode":"c16.58","gcamValue":92},{"gcamCode":"c16.59","gcamValue":1},{"gcamCode":"c16.6","gcamValue":157},{"gcamCode":"c16.60","gcamValue":74},{"gcamCode":"c16.61","gcamValue":32},{"gcamCode":"c16.62","gcamValue":53},{"gcamCode":"c16.63","gcamValue":33},{"gcamCode":"c16.64","gcamValue":12},{"gcamCode":"c16.65","gcamValue":49},{"gcamCode":"c16.66","gcamValue":38},{"gcamCode":"c16.68","gcamValue":122},{"gcamCode":"c16.69","gcamValue":48},{"gcamCode":"c16.7","gcamValue":38},{"gcamCode":"c16.70","gcamValue":75},{"gcamCode":"c16.71","gcamValue":25},{"gcamCode":"c16.72","gcamValue":20},{"gcamCode":"c16.73","gcamValue":11},{"gcamCode":"c16.74","gcamValue":14},{"gcamCode":"c16.75","gcamValue":45},{"gcamCode":"c16.76","gcamValue":9},{"gcamCode":"c16.77","gcamValue":6},{"gcamCode":"c16.78","gcamValue":38},{"gcamCode":"c16.79","gcamValue":6},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":9},{"gcamCode":"c16.83","gcamValue":6},{"gcamCode":"c16.84","gcamValue":121},{"gcamCode":"c16.85","gcamValue":6},{"gcamCode":"c16.86","gcamValue":11},{"gcamCode":"c16.87","gcamValue":141},{"gcamCode":"c16.88","gcamValue":281},{"gcamCode":"c16.89","gcamValue":78},{"gcamCode":"c16.9","gcamValue":2},{"gcamCode":"c16.90","gcamValue":70},{"gcamCode":"c16.91","gcamValue":64},{"gcamCode":"c16.92","gcamValue":171},{"gcamCode":"c16.93","gcamValue":12},{"gcamCode":"c16.94","gcamValue":105},{"gcamCode":"c16.95","gcamValue":115},{"gcamCode":"c16.96","gcamValue":27},{"gcamCode":"c16.97","gcamValue":7},{"gcamCode":"c16.98","gcamValue":116},{"gcamCode":"c16.99","gcamValue":14},{"gcamCode":"c17.1","gcamValue":456},{"gcamCode":"c17.10","gcamValue":207},{"gcamCode":"c17.11","gcamValue":266},{"gcamCode":"c17.12","gcamValue":76},{"gcamCode":"c17.13","gcamValue":28},{"gcamCode":"c17.14","gcamValue":15},{"gcamCode":"c17.15","gcamValue":123},{"gcamCode":"c17.16","gcamValue":65},{"gcamCode":"c17.17","gcamValue":4},{"gcamCode":"c17.18","gcamValue":34},{"gcamCode":"c17.19","gcamValue":59},{"gcamCode":"c17.2","gcamValue":15},{"gcamCode":"c17.20","gcamValue":20},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":48},{"gcamCode":"c17.23","gcamValue":13},{"gcamCode":"c17.24","gcamValue":130},{"gcamCode":"c17.25","gcamValue":27},{"gcamCode":"c17.26","gcamValue":8},{"gcamCode":"c17.27","gcamValue":167},{"gcamCode":"c17.28","gcamValue":19},{"gcamCode":"c17.29","gcamValue":65},{"gcamCode":"c17.3","gcamValue":8},{"gcamCode":"c17.30","gcamValue":54},{"gcamCode":"c17.31","gcamValue":156},{"gcamCode":"c17.32","gcamValue":183},{"gcamCode":"c17.33","gcamValue":132},{"gcamCode":"c17.34","gcamValue":68},{"gcamCode":"c17.35","gcamValue":77},{"gcamCode":"c17.36","gcamValue":115},{"gcamCode":"c17.37","gcamValue":88},{"gcamCode":"c17.38","gcamValue":32},{"gcamCode":"c17.39","gcamValue":93},{"gcamCode":"c17.4","gcamValue":415},{"gcamCode":"c17.40","gcamValue":77},{"gcamCode":"c17.41","gcamValue":94},{"gcamCode":"c17.42","gcamValue":149},{"gcamCode":"c17.43","gcamValue":156},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":342},{"gcamCode":"c17.6","gcamValue":6},{"gcamCode":"c17.7","gcamValue":235},{"gcamCode":"c17.8","gcamValue":171},{"gcamCode":"c17.9","gcamValue":37},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":8},{"gcamCode":"c18.301","gcamValue":1},{"gcamCode":"c18.342","gcamValue":6},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.352","gcamValue":2},{"gcamCode":"c18.95","gcamValue":2},{"gcamCode":"c2.1","gcamValue":63},{"gcamCode":"c2.10","gcamValue":78},{"gcamCode":"c2.100","gcamValue":5},{"gcamCode":"c2.101","gcamValue":54},{"gcamCode":"c2.102","gcamValue":75},{"gcamCode":"c2.103","gcamValue":17},{"gcamCode":"c2.104","gcamValue":307},{"gcamCode":"c2.107","gcamValue":16},{"gcamCode":"c2.108","gcamValue":8},{"gcamCode":"c2.109","gcamValue":8},{"gcamCode":"c2.11","gcamValue":43},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.111","gcamValue":10},{"gcamCode":"c2.112","gcamValue":15},{"gcamCode":"c2.113","gcamValue":30},{"gcamCode":"c2.114","gcamValue":82},{"gcamCode":"c2.115","gcamValue":13},{"gcamCode":"c2.116","gcamValue":70},{"gcamCode":"c2.117","gcamValue":4},{"gcamCode":"c2.119","gcamValue":420},{"gcamCode":"c2.12","gcamValue":49},{"gcamCode":"c2.120","gcamValue":8},{"gcamCode":"c2.121","gcamValue":131},{"gcamCode":"c2.122","gcamValue":52},{"gcamCode":"c2.123","gcamValue":20},{"gcamCode":"c2.124","gcamValue":7},{"gcamCode":"c2.125","gcamValue":164},{"gcamCode":"c2.126","gcamValue":50},{"gcamCode":"c2.127","gcamValue":186},{"gcamCode":"c2.128","gcamValue":48},{"gcamCode":"c2.129","gcamValue":34},{"gcamCode":"c2.130","gcamValue":13},{"gcamCode":"c2.131","gcamValue":12},{"gcamCode":"c2.132","gcamValue":5},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.135","gcamValue":22},{"gcamCode":"c2.136","gcamValue":11},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":11},{"gcamCode":"c2.14","gcamValue":172},{"gcamCode":"c2.140","gcamValue":4},{"gcamCode":"c2.141","gcamValue":22},{"gcamCode":"c2.143","gcamValue":77},{"gcamCode":"c2.144","gcamValue":72},{"gcamCode":"c2.145","gcamValue":25},{"gcamCode":"c2.146","gcamValue":47},{"gcamCode":"c2.147","gcamValue":272},{"gcamCode":"c2.148","gcamValue":341},{"gcamCode":"c2.149","gcamValue":6},{"gcamCode":"c2.15","gcamValue":75},{"gcamCode":"c2.150","gcamValue":27},{"gcamCode":"c2.151","gcamValue":33},{"gcamCode":"c2.152","gcamValue":3},{"gcamCode":"c2.153","gcamValue":94},{"gcamCode":"c2.154","gcamValue":13},{"gcamCode":"c2.155","gcamValue":144},{"gcamCode":"c2.156","gcamValue":50},{"gcamCode":"c2.157","gcamValue":134},{"gcamCode":"c2.158","gcamValue":164},{"gcamCode":"c2.159","gcamValue":21},{"gcamCode":"c2.160","gcamValue":133},{"gcamCode":"c2.161","gcamValue":6},{"gcamCode":"c2.162","gcamValue":36},{"gcamCode":"c2.163","gcamValue":8},{"gcamCode":"c2.166","gcamValue":44},{"gcamCode":"c2.167","gcamValue":7},{"gcamCode":"c2.168","gcamValue":2},{"gcamCode":"c2.169","gcamValue":12},{"gcamCode":"c2.17","gcamValue":13},{"gcamCode":"c2.170","gcamValue":21},{"gcamCode":"c2.172","gcamValue":9},{"gcamCode":"c2.173","gcamValue":34},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.176","gcamValue":7},{"gcamCode":"c2.177","gcamValue":60},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":101},{"gcamCode":"c2.18","gcamValue":43},{"gcamCode":"c2.180","gcamValue":43},{"gcamCode":"c2.181","gcamValue":47},{"gcamCode":"c2.183","gcamValue":47},{"gcamCode":"c2.185","gcamValue":492},{"gcamCode":"c2.186","gcamValue":52},{"gcamCode":"c2.187","gcamValue":126},{"gcamCode":"c2.188","gcamValue":37},{"gcamCode":"c2.189","gcamValue":37},{"gcamCode":"c2.19","gcamValue":5},{"gcamCode":"c2.191","gcamValue":28},{"gcamCode":"c2.192","gcamValue":83},{"gcamCode":"c2.193","gcamValue":131},{"gcamCode":"c2.194","gcamValue":2},{"gcamCode":"c2.195","gcamValue":217},{"gcamCode":"c2.196","gcamValue":58},{"gcamCode":"c2.197","gcamValue":17},{"gcamCode":"c2.198","gcamValue":186},{"gcamCode":"c2.199","gcamValue":46},{"gcamCode":"c2.2","gcamValue":12},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":10},{"gcamCode":"c2.201","gcamValue":2},{"gcamCode":"c2.203","gcamValue":129},{"gcamCode":"c2.204","gcamValue":110},{"gcamCode":"c2.205","gcamValue":57},{"gcamCode":"c2.206","gcamValue":37},{"gcamCode":"c2.207","gcamValue":69},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":69},{"gcamCode":"c2.21","gcamValue":1},{"gcamCode":"c2.210","gcamValue":222},{"gcamCode":"c2.211","gcamValue":28},{"gcamCode":"c2.212","gcamValue":3},{"gcamCode":"c2.213","gcamValue":20},{"gcamCode":"c2.214","gcamValue":71},{"gcamCode":"c2.215","gcamValue":2},{"gcamCode":"c2.216","gcamValue":1},{"gcamCode":"c2.217","gcamValue":6},{"gcamCode":"c2.218","gcamValue":2},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":73},{"gcamCode":"c2.222","gcamValue":7},{"gcamCode":"c2.223","gcamValue":83},{"gcamCode":"c2.224","gcamValue":4},{"gcamCode":"c2.225","gcamValue":37},{"gcamCode":"c2.226","gcamValue":70},{"gcamCode":"c2.227","gcamValue":52},{"gcamCode":"c2.228","gcamValue":78},{"gcamCode":"c2.23","gcamValue":24},{"gcamCode":"c2.25","gcamValue":107},{"gcamCode":"c2.26","gcamValue":143},{"gcamCode":"c2.27","gcamValue":143},{"gcamCode":"c2.28","gcamValue":32},{"gcamCode":"c2.30","gcamValue":81},{"gcamCode":"c2.31","gcamValue":59},{"gcamCode":"c2.32","gcamValue":29},{"gcamCode":"c2.33","gcamValue":29},{"gcamCode":"c2.34","gcamValue":145},{"gcamCode":"c2.35","gcamValue":93},{"gcamCode":"c2.36","gcamValue":70},{"gcamCode":"c2.37","gcamValue":77},{"gcamCode":"c2.38","gcamValue":14},{"gcamCode":"c2.39","gcamValue":320},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.43","gcamValue":2},{"gcamCode":"c2.44","gcamValue":78},{"gcamCode":"c2.45","gcamValue":86},{"gcamCode":"c2.46","gcamValue":188},{"gcamCode":"c2.47","gcamValue":14},{"gcamCode":"c2.48","gcamValue":114},{"gcamCode":"c2.49","gcamValue":11},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":35},{"gcamCode":"c2.52","gcamValue":143},{"gcamCode":"c2.54","gcamValue":158},{"gcamCode":"c2.55","gcamValue":29},{"gcamCode":"c2.56","gcamValue":23},{"gcamCode":"c2.57","gcamValue":46},{"gcamCode":"c2.58","gcamValue":77},{"gcamCode":"c2.59","gcamValue":6},{"gcamCode":"c2.6","gcamValue":14},{"gcamCode":"c2.60","gcamValue":3},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":51},{"gcamCode":"c2.64","gcamValue":43},{"gcamCode":"c2.65","gcamValue":9},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.70","gcamValue":14},{"gcamCode":"c2.71","gcamValue":29},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":63},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":345},{"gcamCode":"c2.76","gcamValue":1252},{"gcamCode":"c2.77","gcamValue":82},{"gcamCode":"c2.78","gcamValue":388},{"gcamCode":"c2.79","gcamValue":54},{"gcamCode":"c2.80","gcamValue":312},{"gcamCode":"c2.81","gcamValue":27},{"gcamCode":"c2.82","gcamValue":149},{"gcamCode":"c2.83","gcamValue":30},{"gcamCode":"c2.84","gcamValue":21},{"gcamCode":"c2.86","gcamValue":125},{"gcamCode":"c2.87","gcamValue":18},{"gcamCode":"c2.88","gcamValue":25},{"gcamCode":"c2.89","gcamValue":79},{"gcamCode":"c2.9","gcamValue":18},{"gcamCode":"c2.90","gcamValue":73},{"gcamCode":"c2.93","gcamValue":62},{"gcamCode":"c2.94","gcamValue":3},{"gcamCode":"c2.95","gcamValue":310},{"gcamCode":"c2.96","gcamValue":8},{"gcamCode":"c2.97","gcamValue":26},{"gcamCode":"c2.98","gcamValue":110},{"gcamCode":"c25.11","gcamValue":7},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":4},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":37},{"gcamCode":"c3.2","gcamValue":47},{"gcamCode":"c35.1","gcamValue":64},{"gcamCode":"c35.11","gcamValue":4},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":24},{"gcamCode":"c35.15","gcamValue":25},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":17},{"gcamCode":"c35.20","gcamValue":12},{"gcamCode":"c35.21","gcamValue":3},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":1},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.30","gcamValue":5},{"gcamCode":"c35.31","gcamValue":120},{"gcamCode":"c35.32","gcamValue":51},{"gcamCode":"c35.33","gcamValue":22},{"gcamCode":"c35.4","gcamValue":14},{"gcamCode":"c35.5","gcamValue":11},{"gcamCode":"c35.6","gcamValue":4},{"gcamCode":"c35.7","gcamValue":3},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.12","gcamValue":4},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.14","gcamValue":9},{"gcamCode":"c39.15","gcamValue":4},{"gcamCode":"c39.17","gcamValue":8},{"gcamCode":"c39.18","gcamValue":6},{"gcamCode":"c39.19","gcamValue":5},{"gcamCode":"c39.2","gcamValue":42},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":85},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":38},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":11},{"gcamCode":"c39.4","gcamValue":62},{"gcamCode":"c39.40","gcamValue":9},{"gcamCode":"c39.41","gcamValue":13},{"gcamCode":"c39.5","gcamValue":12},{"gcamCode":"c39.6","gcamValue":2},{"gcamCode":"c39.8","gcamValue":2},{"gcamCode":"c4.12","gcamValue":5},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.16","gcamValue":2},{"gcamCode":"c4.2","gcamValue":6},{"gcamCode":"c4.23","gcamValue":44},{"gcamCode":"c4.4","gcamValue":1},{"gcamCode":"c40.5","gcamValue":4},{"gcamCode":"c40.7","gcamValue":3},{"gcamCode":"c41.1","gcamValue":27},{"gcamCode":"c5.10","gcamValue":140},{"gcamCode":"c5.11","gcamValue":52},{"gcamCode":"c5.12","gcamValue":263},{"gcamCode":"c5.13","gcamValue":6},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":10},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":9},{"gcamCode":"c5.20","gcamValue":17},{"gcamCode":"c5.21","gcamValue":27},{"gcamCode":"c5.22","gcamValue":51},{"gcamCode":"c5.23","gcamValue":37},{"gcamCode":"c5.25","gcamValue":47},{"gcamCode":"c5.26","gcamValue":68},{"gcamCode":"c5.27","gcamValue":35},{"gcamCode":"c5.28","gcamValue":31},{"gcamCode":"c5.29","gcamValue":56},{"gcamCode":"c5.30","gcamValue":304},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.33","gcamValue":5},{"gcamCode":"c5.34","gcamValue":26},{"gcamCode":"c5.35","gcamValue":42},{"gcamCode":"c5.36","gcamValue":67},{"gcamCode":"c5.37","gcamValue":17},{"gcamCode":"c5.4","gcamValue":51},{"gcamCode":"c5.40","gcamValue":214},{"gcamCode":"c5.42","gcamValue":5},{"gcamCode":"c5.43","gcamValue":83},{"gcamCode":"c5.44","gcamValue":25},{"gcamCode":"c5.45","gcamValue":47},{"gcamCode":"c5.46","gcamValue":250},{"gcamCode":"c5.47","gcamValue":105},{"gcamCode":"c5.48","gcamValue":14},{"gcamCode":"c5.49","gcamValue":262},{"gcamCode":"c5.5","gcamValue":3},{"gcamCode":"c5.50","gcamValue":229},{"gcamCode":"c5.51","gcamValue":162},{"gcamCode":"c5.52","gcamValue":322},{"gcamCode":"c5.53","gcamValue":99},{"gcamCode":"c5.54","gcamValue":141},{"gcamCode":"c5.55","gcamValue":17},{"gcamCode":"c5.57","gcamValue":103},{"gcamCode":"c5.58","gcamValue":9},{"gcamCode":"c5.59","gcamValue":38},{"gcamCode":"c5.6","gcamValue":63},{"gcamCode":"c5.60","gcamValue":167},{"gcamCode":"c5.61","gcamValue":308},{"gcamCode":"c5.62","gcamValue":989},{"gcamCode":"c5.7","gcamValue":39},{"gcamCode":"c5.8","gcamValue":85},{"gcamCode":"c5.9","gcamValue":69},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":9},{"gcamCode":"c6.3","gcamValue":6},{"gcamCode":"c6.4","gcamValue":27},{"gcamCode":"c6.5","gcamValue":10},{"gcamCode":"c6.6","gcamValue":17},{"gcamCode":"c7.1","gcamValue":40},{"gcamCode":"c7.2","gcamValue":71},{"gcamCode":"c8.1","gcamValue":9},{"gcamCode":"c8.10","gcamValue":4},{"gcamCode":"c8.12","gcamValue":13},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":4},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.16","gcamValue":13},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":44},{"gcamCode":"c8.24","gcamValue":5},{"gcamCode":"c8.25","gcamValue":4},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":4},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.29","gcamValue":7},{"gcamCode":"c8.3","gcamValue":4},{"gcamCode":"c8.33","gcamValue":5},{"gcamCode":"c8.36","gcamValue":16},{"gcamCode":"c8.37","gcamValue":72},{"gcamCode":"c8.38","gcamValue":65},{"gcamCode":"c8.39","gcamValue":19},{"gcamCode":"c8.4","gcamValue":44},{"gcamCode":"c8.40","gcamValue":11},{"gcamCode":"c8.42","gcamValue":48},{"gcamCode":"c8.43","gcamValue":60},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":58},{"gcamCode":"c9.10","gcamValue":14},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1004","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":8},{"gcamCode":"c9.1014","gcamValue":6},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":30},{"gcamCode":"c9.1021","gcamValue":4},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":2},{"gcamCode":"c9.1024","gcamValue":8},{"gcamCode":"c9.1029","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":7},{"gcamCode":"c9.1038","gcamValue":7},{"gcamCode":"c9.104","gcamValue":4},{"gcamCode":"c9.1040","gcamValue":16},{"gcamCode":"c9.1041","gcamValue":4},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":32},{"gcamCode":"c9.109","gcamValue":8},{"gcamCode":"c9.110","gcamValue":3},{"gcamCode":"c9.111","gcamValue":22},{"gcamCode":"c9.113","gcamValue":4},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":8},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":9},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.122","gcamValue":11},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":8},{"gcamCode":"c9.125","gcamValue":16},{"gcamCode":"c9.127","gcamValue":7},{"gcamCode":"c9.128","gcamValue":102},{"gcamCode":"c9.129","gcamValue":6},{"gcamCode":"c9.130","gcamValue":4},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.134","gcamValue":6},{"gcamCode":"c9.135","gcamValue":5},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.14","gcamValue":8},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":5},{"gcamCode":"c9.142","gcamValue":3},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.148","gcamValue":5},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":12},{"gcamCode":"c9.150","gcamValue":2},{"gcamCode":"c9.151","gcamValue":13},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":3},{"gcamCode":"c9.158","gcamValue":136},{"gcamCode":"c9.159","gcamValue":10},{"gcamCode":"c9.16","gcamValue":4},{"gcamCode":"c9.160","gcamValue":18},{"gcamCode":"c9.161","gcamValue":7},{"gcamCode":"c9.162","gcamValue":27},{"gcamCode":"c9.163","gcamValue":7},{"gcamCode":"c9.164","gcamValue":11},{"gcamCode":"c9.165","gcamValue":4},{"gcamCode":"c9.166","gcamValue":6},{"gcamCode":"c9.167","gcamValue":1},{"gcamCode":"c9.168","gcamValue":16},{"gcamCode":"c9.169","gcamValue":36},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":8},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":19},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":9},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.181","gcamValue":4},{"gcamCode":"c9.182","gcamValue":29},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":21},{"gcamCode":"c9.187","gcamValue":5},{"gcamCode":"c9.188","gcamValue":15},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.19","gcamValue":5},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":2},{"gcamCode":"c9.192","gcamValue":28},{"gcamCode":"c9.193","gcamValue":17},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":40},{"gcamCode":"c9.196","gcamValue":40},{"gcamCode":"c9.197","gcamValue":16},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.199","gcamValue":3},{"gcamCode":"c9.2","gcamValue":27},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":13},{"gcamCode":"c9.201","gcamValue":6},{"gcamCode":"c9.202","gcamValue":4},{"gcamCode":"c9.203","gcamValue":4},{"gcamCode":"c9.204","gcamValue":4},{"gcamCode":"c9.205","gcamValue":10},{"gcamCode":"c9.206","gcamValue":8},{"gcamCode":"c9.207","gcamValue":3},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.212","gcamValue":12},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":5},{"gcamCode":"c9.215","gcamValue":4},{"gcamCode":"c9.216","gcamValue":3},{"gcamCode":"c9.217","gcamValue":3},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.221","gcamValue":6},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.224","gcamValue":8},{"gcamCode":"c9.227","gcamValue":2},{"gcamCode":"c9.23","gcamValue":11},{"gcamCode":"c9.230","gcamValue":11},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":5},{"gcamCode":"c9.233","gcamValue":6},{"gcamCode":"c9.234","gcamValue":5},{"gcamCode":"c9.235","gcamValue":22},{"gcamCode":"c9.237","gcamValue":8},{"gcamCode":"c9.238","gcamValue":7},{"gcamCode":"c9.24","gcamValue":7},{"gcamCode":"c9.240","gcamValue":4},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.244","gcamValue":2},{"gcamCode":"c9.246","gcamValue":5},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":6},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.250","gcamValue":9},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.253","gcamValue":4},{"gcamCode":"c9.255","gcamValue":3},{"gcamCode":"c9.256","gcamValue":11},{"gcamCode":"c9.258","gcamValue":5},{"gcamCode":"c9.259","gcamValue":5},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":3},{"gcamCode":"c9.262","gcamValue":17},{"gcamCode":"c9.263","gcamValue":5},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.267","gcamValue":4},{"gcamCode":"c9.269","gcamValue":2},{"gcamCode":"c9.27","gcamValue":22},{"gcamCode":"c9.270","gcamValue":19},{"gcamCode":"c9.273","gcamValue":2},{"gcamCode":"c9.274","gcamValue":26},{"gcamCode":"c9.275","gcamValue":6},{"gcamCode":"c9.276","gcamValue":25},{"gcamCode":"c9.28","gcamValue":4},{"gcamCode":"c9.280","gcamValue":6},{"gcamCode":"c9.282","gcamValue":17},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":4},{"gcamCode":"c9.285","gcamValue":10},{"gcamCode":"c9.286","gcamValue":3},{"gcamCode":"c9.288","gcamValue":11},{"gcamCode":"c9.289","gcamValue":4},{"gcamCode":"c9.29","gcamValue":3},{"gcamCode":"c9.290","gcamValue":4},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":5},{"gcamCode":"c9.294","gcamValue":2},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":56},{"gcamCode":"c9.30","gcamValue":7},{"gcamCode":"c9.300","gcamValue":3},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":9},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":5},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.306","gcamValue":2},{"gcamCode":"c9.307","gcamValue":12},{"gcamCode":"c9.308","gcamValue":6},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":6},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.314","gcamValue":11},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":11},{"gcamCode":"c9.322","gcamValue":14},{"gcamCode":"c9.326","gcamValue":12},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":48},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.339","gcamValue":4},{"gcamCode":"c9.34","gcamValue":29},{"gcamCode":"c9.340","gcamValue":1},{"gcamCode":"c9.346","gcamValue":4},{"gcamCode":"c9.35","gcamValue":38},{"gcamCode":"c9.351","gcamValue":2},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.36","gcamValue":15},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.368","gcamValue":2},{"gcamCode":"c9.37","gcamValue":2},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":28},{"gcamCode":"c9.373","gcamValue":4},{"gcamCode":"c9.375","gcamValue":1},{"gcamCode":"c9.378","gcamValue":4},{"gcamCode":"c9.383","gcamValue":21},{"gcamCode":"c9.386","gcamValue":2},{"gcamCode":"c9.387","gcamValue":2},{"gcamCode":"c9.39","gcamValue":29},{"gcamCode":"c9.393","gcamValue":2},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":2},{"gcamCode":"c9.396","gcamValue":5},{"gcamCode":"c9.398","gcamValue":6},{"gcamCode":"c9.4","gcamValue":11},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":5},{"gcamCode":"c9.41","gcamValue":3},{"gcamCode":"c9.416","gcamValue":5},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":4},{"gcamCode":"c9.42","gcamValue":5},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.422","gcamValue":2},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":2},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.430","gcamValue":4},{"gcamCode":"c9.432","gcamValue":7},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.435","gcamValue":10},{"gcamCode":"c9.44","gcamValue":12},{"gcamCode":"c9.440","gcamValue":3},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.448","gcamValue":2},{"gcamCode":"c9.45","gcamValue":4},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.458","gcamValue":7},{"gcamCode":"c9.459","gcamValue":13},{"gcamCode":"c9.46","gcamValue":6},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":4},{"gcamCode":"c9.463","gcamValue":8},{"gcamCode":"c9.464","gcamValue":3},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":15},{"gcamCode":"c9.467","gcamValue":28},{"gcamCode":"c9.468","gcamValue":7},{"gcamCode":"c9.47","gcamValue":7},{"gcamCode":"c9.470","gcamValue":10},{"gcamCode":"c9.472","gcamValue":10},{"gcamCode":"c9.473","gcamValue":36},{"gcamCode":"c9.474","gcamValue":7},{"gcamCode":"c9.476","gcamValue":33},{"gcamCode":"c9.478","gcamValue":6},{"gcamCode":"c9.479","gcamValue":16},{"gcamCode":"c9.48","gcamValue":18},{"gcamCode":"c9.480","gcamValue":59},{"gcamCode":"c9.481","gcamValue":15},{"gcamCode":"c9.482","gcamValue":11},{"gcamCode":"c9.483","gcamValue":3},{"gcamCode":"c9.484","gcamValue":3},{"gcamCode":"c9.485","gcamValue":4},{"gcamCode":"c9.487","gcamValue":2},{"gcamCode":"c9.488","gcamValue":10},{"gcamCode":"c9.489","gcamValue":16},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":4},{"gcamCode":"c9.494","gcamValue":8},{"gcamCode":"c9.496","gcamValue":14},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":25},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.5","gcamValue":7},{"gcamCode":"c9.500","gcamValue":2},{"gcamCode":"c9.501","gcamValue":13},{"gcamCode":"c9.502","gcamValue":12},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":28},{"gcamCode":"c9.508","gcamValue":2},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":77},{"gcamCode":"c9.513","gcamValue":40},{"gcamCode":"c9.517","gcamValue":46},{"gcamCode":"c9.518","gcamValue":11},{"gcamCode":"c9.519","gcamValue":8},{"gcamCode":"c9.520","gcamValue":2},{"gcamCode":"c9.521","gcamValue":19},{"gcamCode":"c9.522","gcamValue":25},{"gcamCode":"c9.523","gcamValue":23},{"gcamCode":"c9.524","gcamValue":4},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.527","gcamValue":1},{"gcamCode":"c9.528","gcamValue":30},{"gcamCode":"c9.53","gcamValue":23},{"gcamCode":"c9.530","gcamValue":5},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.537","gcamValue":10},{"gcamCode":"c9.539","gcamValue":9},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.540","gcamValue":10},{"gcamCode":"c9.541","gcamValue":2},{"gcamCode":"c9.542","gcamValue":2},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.545","gcamValue":7},{"gcamCode":"c9.546","gcamValue":4},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":10},{"gcamCode":"c9.55","gcamValue":64},{"gcamCode":"c9.550","gcamValue":8},{"gcamCode":"c9.551","gcamValue":21},{"gcamCode":"c9.552","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":15},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.556","gcamValue":9},{"gcamCode":"c9.557","gcamValue":15},{"gcamCode":"c9.558","gcamValue":2},{"gcamCode":"c9.559","gcamValue":18},{"gcamCode":"c9.56","gcamValue":11},{"gcamCode":"c9.560","gcamValue":13},{"gcamCode":"c9.561","gcamValue":5},{"gcamCode":"c9.562","gcamValue":8},{"gcamCode":"c9.564","gcamValue":5},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.566","gcamValue":5},{"gcamCode":"c9.567","gcamValue":1},{"gcamCode":"c9.568","gcamValue":22},{"gcamCode":"c9.569","gcamValue":2},{"gcamCode":"c9.57","gcamValue":4},{"gcamCode":"c9.570","gcamValue":25},{"gcamCode":"c9.571","gcamValue":7},{"gcamCode":"c9.574","gcamValue":11},{"gcamCode":"c9.575","gcamValue":13},{"gcamCode":"c9.576","gcamValue":9},{"gcamCode":"c9.579","gcamValue":59},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":8},{"gcamCode":"c9.582","gcamValue":4},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.585","gcamValue":1},{"gcamCode":"c9.587","gcamValue":2},{"gcamCode":"c9.588","gcamValue":8},{"gcamCode":"c9.589","gcamValue":5},{"gcamCode":"c9.59","gcamValue":8},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.591","gcamValue":2},{"gcamCode":"c9.595","gcamValue":2},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":4},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.601","gcamValue":6},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.603","gcamValue":3},{"gcamCode":"c9.605","gcamValue":1},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":4},{"gcamCode":"c9.61","gcamValue":35},{"gcamCode":"c9.610","gcamValue":4},{"gcamCode":"c9.611","gcamValue":4},{"gcamCode":"c9.613","gcamValue":4},{"gcamCode":"c9.615","gcamValue":5},{"gcamCode":"c9.616","gcamValue":13},{"gcamCode":"c9.617","gcamValue":4},{"gcamCode":"c9.618","gcamValue":8},{"gcamCode":"c9.619","gcamValue":9},{"gcamCode":"c9.62","gcamValue":19},{"gcamCode":"c9.620","gcamValue":9},{"gcamCode":"c9.621","gcamValue":8},{"gcamCode":"c9.622","gcamValue":4},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":4},{"gcamCode":"c9.626","gcamValue":7},{"gcamCode":"c9.627","gcamValue":36},{"gcamCode":"c9.629","gcamValue":3},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":4},{"gcamCode":"c9.631","gcamValue":4},{"gcamCode":"c9.632","gcamValue":5},{"gcamCode":"c9.635","gcamValue":11},{"gcamCode":"c9.636","gcamValue":2},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.64","gcamValue":6},{"gcamCode":"c9.640","gcamValue":16},{"gcamCode":"c9.641","gcamValue":5},{"gcamCode":"c9.642","gcamValue":28},{"gcamCode":"c9.644","gcamValue":3},{"gcamCode":"c9.646","gcamValue":6},{"gcamCode":"c9.647","gcamValue":6},{"gcamCode":"c9.648","gcamValue":31},{"gcamCode":"c9.649","gcamValue":8},{"gcamCode":"c9.65","gcamValue":1},{"gcamCode":"c9.650","gcamValue":44},{"gcamCode":"c9.652","gcamValue":2},{"gcamCode":"c9.653","gcamValue":92},{"gcamCode":"c9.654","gcamValue":18},{"gcamCode":"c9.655","gcamValue":14},{"gcamCode":"c9.656","gcamValue":2},{"gcamCode":"c9.658","gcamValue":18},{"gcamCode":"c9.659","gcamValue":5},{"gcamCode":"c9.66","gcamValue":6},{"gcamCode":"c9.660","gcamValue":23},{"gcamCode":"c9.661","gcamValue":6},{"gcamCode":"c9.663","gcamValue":3},{"gcamCode":"c9.664","gcamValue":19},{"gcamCode":"c9.665","gcamValue":5},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.667","gcamValue":27},{"gcamCode":"c9.668","gcamValue":19},{"gcamCode":"c9.669","gcamValue":20},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":50},{"gcamCode":"c9.671","gcamValue":13},{"gcamCode":"c9.672","gcamValue":39},{"gcamCode":"c9.673","gcamValue":9},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":15},{"gcamCode":"c9.677","gcamValue":12},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.679","gcamValue":14},{"gcamCode":"c9.680","gcamValue":3},{"gcamCode":"c9.681","gcamValue":10},{"gcamCode":"c9.682","gcamValue":3},{"gcamCode":"c9.683","gcamValue":13},{"gcamCode":"c9.684","gcamValue":2},{"gcamCode":"c9.686","gcamValue":15},{"gcamCode":"c9.687","gcamValue":41},{"gcamCode":"c9.688","gcamValue":3},{"gcamCode":"c9.690","gcamValue":5},{"gcamCode":"c9.691","gcamValue":5},{"gcamCode":"c9.692","gcamValue":23},{"gcamCode":"c9.693","gcamValue":4},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.696","gcamValue":4},{"gcamCode":"c9.698","gcamValue":29},{"gcamCode":"c9.699","gcamValue":1},{"gcamCode":"c9.7","gcamValue":13},{"gcamCode":"c9.70","gcamValue":13},{"gcamCode":"c9.701","gcamValue":36},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":45},{"gcamCode":"c9.705","gcamValue":8},{"gcamCode":"c9.708","gcamValue":46},{"gcamCode":"c9.71","gcamValue":17},{"gcamCode":"c9.710","gcamValue":43},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":4},{"gcamCode":"c9.714","gcamValue":4},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.72","gcamValue":2},{"gcamCode":"c9.720","gcamValue":42},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":7},{"gcamCode":"c9.723","gcamValue":16},{"gcamCode":"c9.724","gcamValue":10},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":94},{"gcamCode":"c9.727","gcamValue":4},{"gcamCode":"c9.73","gcamValue":3},{"gcamCode":"c9.730","gcamValue":51},{"gcamCode":"c9.731","gcamValue":3},{"gcamCode":"c9.732","gcamValue":5},{"gcamCode":"c9.733","gcamValue":3},{"gcamCode":"c9.734","gcamValue":9},{"gcamCode":"c9.735","gcamValue":8},{"gcamCode":"c9.736","gcamValue":19},{"gcamCode":"c9.737","gcamValue":2},{"gcamCode":"c9.739","gcamValue":9},{"gcamCode":"c9.74","gcamValue":7},{"gcamCode":"c9.740","gcamValue":5},{"gcamCode":"c9.741","gcamValue":12},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.744","gcamValue":16},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.746","gcamValue":41},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":29},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":6},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.752","gcamValue":2},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.756","gcamValue":3},{"gcamCode":"c9.757","gcamValue":25},{"gcamCode":"c9.759","gcamValue":15},{"gcamCode":"c9.76","gcamValue":21},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.761","gcamValue":1},{"gcamCode":"c9.762","gcamValue":45},{"gcamCode":"c9.763","gcamValue":5},{"gcamCode":"c9.765","gcamValue":7},{"gcamCode":"c9.766","gcamValue":4},{"gcamCode":"c9.767","gcamValue":83},{"gcamCode":"c9.769","gcamValue":14},{"gcamCode":"c9.770","gcamValue":27},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.774","gcamValue":4},{"gcamCode":"c9.775","gcamValue":1},{"gcamCode":"c9.776","gcamValue":6},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":3},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.785","gcamValue":2},{"gcamCode":"c9.788","gcamValue":4},{"gcamCode":"c9.789","gcamValue":1},{"gcamCode":"c9.79","gcamValue":7},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.795","gcamValue":9},{"gcamCode":"c9.8","gcamValue":5},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.802","gcamValue":7},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":22},{"gcamCode":"c9.808","gcamValue":18},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.812","gcamValue":19},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.814","gcamValue":2},{"gcamCode":"c9.816","gcamValue":11},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.818","gcamValue":8},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":30},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":12},{"gcamCode":"c9.826","gcamValue":39},{"gcamCode":"c9.827","gcamValue":8},{"gcamCode":"c9.828","gcamValue":3},{"gcamCode":"c9.829","gcamValue":5},{"gcamCode":"c9.83","gcamValue":76},{"gcamCode":"c9.830","gcamValue":4},{"gcamCode":"c9.831","gcamValue":4},{"gcamCode":"c9.833","gcamValue":6},{"gcamCode":"c9.834","gcamValue":16},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":18},{"gcamCode":"c9.839","gcamValue":3},{"gcamCode":"c9.840","gcamValue":5},{"gcamCode":"c9.841","gcamValue":3},{"gcamCode":"c9.842","gcamValue":4},{"gcamCode":"c9.843","gcamValue":2},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.845","gcamValue":7},{"gcamCode":"c9.846","gcamValue":17},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":7},{"gcamCode":"c9.85","gcamValue":6},{"gcamCode":"c9.853","gcamValue":19},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":17},{"gcamCode":"c9.860","gcamValue":17},{"gcamCode":"c9.861","gcamValue":4},{"gcamCode":"c9.863","gcamValue":36},{"gcamCode":"c9.864","gcamValue":48},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":17},{"gcamCode":"c9.868","gcamValue":44},{"gcamCode":"c9.87","gcamValue":4},{"gcamCode":"c9.870","gcamValue":5},{"gcamCode":"c9.872","gcamValue":5},{"gcamCode":"c9.873","gcamValue":2},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.88","gcamValue":7},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":18},{"gcamCode":"c9.883","gcamValue":12},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.885","gcamValue":2},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":15},{"gcamCode":"c9.890","gcamValue":7},{"gcamCode":"c9.893","gcamValue":2},{"gcamCode":"c9.894","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":25},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":9},{"gcamCode":"c9.900","gcamValue":5},{"gcamCode":"c9.902","gcamValue":3},{"gcamCode":"c9.903","gcamValue":27},{"gcamCode":"c9.908","gcamValue":71},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.910","gcamValue":1},{"gcamCode":"c9.911","gcamValue":22},{"gcamCode":"c9.912","gcamValue":7},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.914","gcamValue":6},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":12},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":6},{"gcamCode":"c9.926","gcamValue":17},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":2},{"gcamCode":"c9.930","gcamValue":9},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":4},{"gcamCode":"c9.935","gcamValue":33},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.939","gcamValue":5},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.943","gcamValue":1},{"gcamCode":"c9.945","gcamValue":6},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.95","gcamValue":5},{"gcamCode":"c9.955","gcamValue":12},{"gcamCode":"c9.96","gcamValue":12},{"gcamCode":"c9.962","gcamValue":19},{"gcamCode":"c9.963","gcamValue":8},{"gcamCode":"c9.964","gcamValue":11},{"gcamCode":"c9.965","gcamValue":5},{"gcamCode":"c9.966","gcamValue":38},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.969","gcamValue":7},{"gcamCode":"c9.97","gcamValue":2},{"gcamCode":"c9.972","gcamValue":74},{"gcamCode":"c9.973","gcamValue":11},{"gcamCode":"c9.974","gcamValue":4},{"gcamCode":"c9.978","gcamValue":15},{"gcamCode":"c9.979","gcamValue":2},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":26},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.982","gcamValue":2},{"gcamCode":"c9.984","gcamValue":4},{"gcamCode":"c9.985","gcamValue":29},{"gcamCode":"c9.986","gcamValue":17},{"gcamCode":"c9.987","gcamValue":4},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":11},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"v10.1","gcamValue":0.245125767136007},{"gcamCode":"v10.2","gcamValue":0.248203675813789},{"gcamCode":"v11.1","gcamValue":0.0947335283893393},{"gcamCode":"v19.1","gcamValue":5.8156462585034},{"gcamCode":"v19.2","gcamValue":5.17312925170068},{"gcamCode":"v19.3","gcamValue":5.39809523809524},{"gcamCode":"v19.4","gcamValue":5.7278231292517},{"gcamCode":"v19.5","gcamValue":5.0978231292517},{"gcamCode":"v19.6","gcamValue":5.44020408163265},{"gcamCode":"v19.7","gcamValue":5.91578231292517},{"gcamCode":"v19.8","gcamValue":5.28278911564626},{"gcamCode":"v19.9","gcamValue":5.35979591836735},{"gcamCode":"v20.1","gcamValue":0.537535714285714},{"gcamCode":"v20.10","gcamValue":-0.5792},{"gcamCode":"v20.11","gcamValue":0.554577777777778},{"gcamCode":"v20.12","gcamValue":-0.566},{"gcamCode":"v20.13","gcamValue":0.418196850393701},{"gcamCode":"v20.14","gcamValue":-0.408642857142857},{"gcamCode":"v20.15","gcamValue":0.368837078651686},{"gcamCode":"v20.16","gcamValue":-0.335423076923077},{"gcamCode":"v20.3","gcamValue":0.549},{"gcamCode":"v20.4","gcamValue":-0.475},{"gcamCode":"v20.5","gcamValue":0.560241379310345},{"gcamCode":"v20.6","gcamValue":-0.5625},{"gcamCode":"v20.7","gcamValue":0.572483870967742},{"gcamCode":"v20.8","gcamValue":-0.5625},{"gcamCode":"v20.9","gcamValue":0.572235294117647},{"gcamCode":"v21.1","gcamValue":5.48313038130379},{"gcamCode":"v26.1","gcamValue":0.465882352941177}]https://cdn.searchenginejournal.com/wp-content/uploads/2019/05/search-engine-nerds-ep152-banner.jpg[""][""]["https://youtube.com/user/searchenginejournal/","https://youtube.com/c/searchenginejournal?sub_confirmation=1"][{"charLength":26,"verb":"","quote":"how do I perform anywhere?","charOffset":2010}][{"name":"Search Engine Nerds","charOffset":40},{"name":"Greg Gifford","charOffset":93},{"name":"Vice President","charOffset":113},{"name":"Google My Business","charOffset":180},{"name":"Google My Business","charOffset":339},{"name":"Local Search Ranking","charOffset":662},{"name":"Google My Business","charOffset":1183},{"name":"Google My Business","charOffset":1797},{"name":"Google My Business","charOffset":2040},{"name":"Google My Business","charOffset":2278},{"name":"Google My Business","charOffset":2774},{"name":"Google My Business","charOffset":3897},{"name":"Google My Business","charOffset":4415},{"name":"Google My Business","charOffset":4789},{"name":"Google My Business","charOffset":9595},{"name":"Google Posts","charOffset":9715},{"name":"Google Posts","charOffset":9854},{"name":"Search Engine Nerds Podcast","charOffset":10431},{"name":"Greg Gifford","charOffset":10449},{"name":"Search Engine","charOffset":10565},{"name":"Search Engine Nerds","charOffset":10726},{"name":"Search Engine","charOffset":10767},{"name":"Local SearchSearch","charOffset":10852}][{"amount":152,"amountType":"of Search Engine Nerds","charOffset":14},{"amount":3,"amountType":"results underneath","charOffset":489},{"amount":6,"amountType":"months at conferences","charOffset":792},{"amount":10,"amountType":"slots for categories","charOffset":5364},{"amount":100,"amountType":"miles","charOffset":6058}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://www.stitcher.com/podcast/marketing-nerds-by-search-engine-journal;https://ifttt.com/recipes/240507-if-there-s-a-new-podcast-from-search-engine-journal-email-me;https://moz.com/local-search-ranking-factors;https://overcast.fm/itunes922993934/search-engine-nerds;https://twitter.com/GregGifford/;https://www.dealeron.com/blog/your-primary-gmb-category-carries-more-weight/;https://www.searchenginejournal.com/category/local-search/;https://www.searchenginejournal.com/category/search-engine-nerds-podcasts/;https://www.searchenginejournal.com/entity-seo/277231/;https://www.searchenginejournal.com/local-seo/;https://www.searchenginejournal.com/seo-zero-click-searches/286401/;https://www.slideshare.net/greggifford</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190521204500</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.searchenginejournal.com/boosting-local-seo-with-google-my-business-podcast/308437/amp/</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":22}2019-05-23T12:15:00.000+0000WEBwhig.comhttps://www.whig.com/article/20190523/AP/305239963[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":211},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1019},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1019},{"count":{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2854},{"count":{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":2854},{"count":{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}},"charOffset":4665}]["EPU_CATS_MIGRATION_FEAR_FEAR","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","WOUND","CRISISLEX_C03_WELLBEING_HEALTH","CRISISLEX_T02_INJURED","CRISISLEX_T03_DEAD","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","UNGP_CRIME_VIOLENCE","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","NATURAL_DISASTER_TORNADOES","NATURAL_DISASTER_TORRENTIAL_RAINS","TAX_FNCACT_SHERIFF","TAX_DISEASE","TAX_DISEASE_SHINGLES","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITALS","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","TAX_FNCACT_SPOKESWOMAN","GENERAL_HEALTH","SOC_POINTSOFINTEREST_HEALTH_CENTER","SHORTAGE","MANMADE_DISASTER","MANMADE_DISASTER_POWER_OUTAGES","POWER_OUTAGE","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","MANMADE_DISASTER_IMPLIED","NATURAL_DISASTER_TWISTER","SOC_POINTSOFINTEREST_AIRPORT","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_1804_AIRPORTS","MARITIME_INCIDENT","MARITIME","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_KANSAS","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_OFFICIALS","GOV_LOCALGOV","EVACUATION","CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","TAX_FNCACT_OFFICIAL","MEDIA_SOCIAL","AFFECT","NATURAL_DISASTER_DAM_BREAKS","MEDIA_MSM","TAX_FNCACT_WOMAN","NATURAL_DISASTER_HEAVY_RAIN","TRAFFIC","ROAD_INCIDENT","MANMADE_DISASTER_TRAFFIC_ACCIDENT","SOC_TRAFFICACCIDENT","WB_168_ROADS_AND_HIGHWAYS","WB_1809_HIGHWAYS","NATURAL_DISASTER_DROWNED","TAX_FNCACT_EXAMINER","TAX_FNCACT_MEDICAL_EXAMINER"][{"theme":"SHORTAGE","charOffset":2075},{"theme":"KILL","charOffset":228},{"theme":"KILL","charOffset":4468},{"theme":"KILL","charOffset":4742},{"theme":"TAX_FNCACT_WOMAN","charOffset":4512},{"theme":"TAX_FNCACT_WOMAN","charOffset":4914},{"theme":"TAX_FNCACT_WOMAN","charOffset":5077},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2565},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2608},{"theme":"SOC_POINTSOFINTEREST_HEALTH_CENTER","charOffset":2058},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":258},{"theme":"EVACUATION","charOffset":3611},{"theme":"CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","charOffset":3611},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":3147},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":3430},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":4416},{"theme":"TAX_FNCACT_SHERIFF","charOffset":1723},{"theme":"CRISISLEX_T03_DEAD","charOffset":816},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":133},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":133},{"theme":"WOUND","charOffset":765},{"theme":"WOUND","charOffset":1180},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":765},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1180},{"theme":"CRISISLEX_T02_INJURED","charOffset":765},{"theme":"CRISISLEX_T02_INJURED","charOffset":1180},{"theme":"MANMADE_DISASTER_POWER_OUTAGES","charOffset":2075},{"theme":"POWER_OUTAGE","charOffset":2075},{"theme":"MARITIME_INCIDENT","charOffset":3199},{"theme":"MARITIME_INCIDENT","charOffset":3778},{"theme":"MARITIME_INCIDENT","charOffset":3864},{"theme":"MARITIME_INCIDENT","charOffset":4037},{"theme":"MARITIME","charOffset":3199},{"theme":"MARITIME","charOffset":3778},{"theme":"MARITIME","charOffset":3864},{"theme":"MARITIME","charOffset":4037},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":1042},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":2136},{"theme":"AFFECT","charOffset":3811},{"theme":"NATURAL_DISASTER_DAM_BREAKS","charOffset":3938},{"theme":"SECURITY_SERVICES","charOffset":1292},{"theme":"TAX_FNCACT_POLICE","charOffset":1292},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1292},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":3721},{"theme":"TRAFFIC","charOffset":4767},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":2208},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":2208},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":4894},{"theme":"WB_1809_HIGHWAYS","charOffset":4894},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":4702},{"theme":"GOV_LOCALGOV","charOffset":3580},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":1567},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":3083},{"theme":"TAX_FNCACT_EXAMINER","charOffset":5121},{"theme":"LEADER","charOffset":839},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":839},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":56},{"theme":"NATURAL_DISASTER_DROWNED","charOffset":4933},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1416},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":3370},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":4686},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1416},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":3370},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":4686},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":3461},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":4272},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":176},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":4446},{"theme":"TAX_FNCACT_MEDICAL_EXAMINER","charOffset":5121},{"theme":"MEDIA_SOCIAL","charOffset":3730},{"theme":"GENERAL_HEALTH","charOffset":2051},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":2787},{"theme":"MEDIA_MSM","charOffset":4076},{"theme":"ROAD_INCIDENT","charOffset":4776},{"theme":"MANMADE_DISASTER_TRAFFIC_ACCIDENT","charOffset":4776},{"theme":"SOC_TRAFFICACCIDENT","charOffset":4776},{"theme":"MEDICAL","charOffset":1860},{"theme":"SOC_POINTSOFINTEREST_HOSPITALS","charOffset":1860},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":64},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":358},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1490},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2800},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2889},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2937},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":4608},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":64},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":358},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1490},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2800},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2889},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2937},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":4608},{"theme":"CRISISLEX_O01_WEATHER","charOffset":64},{"theme":"CRISISLEX_O01_WEATHER","charOffset":358},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1490},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2800},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2889},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2937},{"theme":"CRISISLEX_O01_WEATHER","charOffset":4608},{"theme":"SOC_POINTSOFINTEREST_AIRPORT","charOffset":3054},{"theme":"WB_135_TRANSPORT","charOffset":3054},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":3054},{"theme":"WB_1804_AIRPORTS","charOffset":3054},{"theme":"TAX_DISEASE_SHINGLES","charOffset":1785},{"theme":"WB_1428_INJURY","charOffset":1995},{"theme":"WB_1406_DISEASES","charOffset":1995},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1995},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":1995},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":2032},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":5215},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":3580},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":4561},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1548},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2191},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2695},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":4355}][{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}][{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":3165},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":4550},{"location":{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},"charOffset":1238},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":1108},{"location":{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO001","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},"charOffset":4649},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":95},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":388},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":1270},{"location":{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO077","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"},"charOffset":4801},{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":3121},{"location":{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},"charOffset":4265},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":3147},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":3430},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":4416},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":1145},{"location":{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK109","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},"charOffset":5038},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":145},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":604},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1028},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2122},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2852},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":3176},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4251},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4407},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4674},{"location":{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},"charOffset":1700},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":3520},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":3825},{"location":{"geoType":"USSTATE","geoName":"Missourians, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1017},{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":3187},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3138},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3281},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3421},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3546},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":4396},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":4874},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5033},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5168},{"location":{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},"charOffset":3158},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":1201},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":2985}]["mike parson","jessica royston","austin thomson","keli cain","david williams"][{"person":"Mike Parson","charOffset":851},{"person":"Jessica Royston","charOffset":2018},{"person":"Austin Thomson","charOffset":2226},{"person":"Keli Cain","charOffset":5225},{"person":"David Williams","charOffset":1311}]["jefferson city police","mary health center","national weather service","facebook","oklahoma department of emergency management"][{"organisation":"Mary Health Center","charOffset":2058},{"organisation":"National Weather Service","charOffset":2650},{"organisation":"Facebook","charOffset":3730},{"organisation":"Oklahoma Department Of Emergency Management","charOffset":5203}]{"tone":-5.1903114,"positiveScore":1.2687428,"negativeScore":6.459054,"polarity":7.727797,"activityReferenceDensity":20.530565,"selfGroupReferenceDensity":0.23068051,"wordCount":803}[][{"gcamCode":"wc","gcamValue":803},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":39},{"gcamCode":"c12.10","gcamValue":63},{"gcamCode":"c12.12","gcamValue":32},{"gcamCode":"c12.13","gcamValue":20},{"gcamCode":"c12.14","gcamValue":17},{"gcamCode":"c12.3","gcamValue":20},{"gcamCode":"c12.4","gcamValue":6},{"gcamCode":"c12.5","gcamValue":14},{"gcamCode":"c12.7","gcamValue":47},{"gcamCode":"c12.8","gcamValue":24},{"gcamCode":"c12.9","gcamValue":28},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":8},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.3","gcamValue":9},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":40},{"gcamCode":"c14.10","gcamValue":34},{"gcamCode":"c14.11","gcamValue":77},{"gcamCode":"c14.2","gcamValue":39},{"gcamCode":"c14.3","gcamValue":43},{"gcamCode":"c14.4","gcamValue":10},{"gcamCode":"c14.5","gcamValue":83},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.45","gcamValue":1},{"gcamCode":"c15.48","gcamValue":2},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.58","gcamValue":3},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.64","gcamValue":1},{"gcamCode":"c15.69","gcamValue":4},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":25},{"gcamCode":"c16.101","gcamValue":6},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":5},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.109","gcamValue":39},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":107},{"gcamCode":"c16.111","gcamValue":16},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":43},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":29},{"gcamCode":"c16.117","gcamValue":31},{"gcamCode":"c16.118","gcamValue":48},{"gcamCode":"c16.12","gcamValue":65},{"gcamCode":"c16.120","gcamValue":37},{"gcamCode":"c16.121","gcamValue":65},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":40},{"gcamCode":"c16.126","gcamValue":39},{"gcamCode":"c16.127","gcamValue":47},{"gcamCode":"c16.128","gcamValue":7},{"gcamCode":"c16.129","gcamValue":110},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":6},{"gcamCode":"c16.131","gcamValue":25},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":87},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":15},{"gcamCode":"c16.139","gcamValue":22},{"gcamCode":"c16.140","gcamValue":35},{"gcamCode":"c16.141","gcamValue":2},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":4},{"gcamCode":"c16.145","gcamValue":47},{"gcamCode":"c16.146","gcamValue":45},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":2},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":26},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":16},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":53},{"gcamCode":"c16.16","gcamValue":10},{"gcamCode":"c16.161","gcamValue":77},{"gcamCode":"c16.162","gcamValue":62},{"gcamCode":"c16.163","gcamValue":62},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":7},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":23},{"gcamCode":"c16.2","gcamValue":70},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":19},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.26","gcamValue":79},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":10},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":52},{"gcamCode":"c16.32","gcamValue":6},{"gcamCode":"c16.33","gcamValue":73},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":30},{"gcamCode":"c16.36","gcamValue":8},{"gcamCode":"c16.37","gcamValue":58},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":54},{"gcamCode":"c16.41","gcamValue":25},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":27},{"gcamCode":"c16.46","gcamValue":12},{"gcamCode":"c16.47","gcamValue":70},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":5},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.52","gcamValue":49},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.55","gcamValue":13},{"gcamCode":"c16.56","gcamValue":11},{"gcamCode":"c16.57","gcamValue":443},{"gcamCode":"c16.58","gcamValue":36},{"gcamCode":"c16.6","gcamValue":79},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.62","gcamValue":24},{"gcamCode":"c16.63","gcamValue":10},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":10},{"gcamCode":"c16.68","gcamValue":36},{"gcamCode":"c16.69","gcamValue":22},{"gcamCode":"c16.7","gcamValue":16},{"gcamCode":"c16.70","gcamValue":91},{"gcamCode":"c16.71","gcamValue":28},{"gcamCode":"c16.72","gcamValue":9},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":24},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":35},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":8},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":5},{"gcamCode":"c16.84","gcamValue":28},{"gcamCode":"c16.85","gcamValue":4},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":66},{"gcamCode":"c16.88","gcamValue":112},{"gcamCode":"c16.89","gcamValue":18},{"gcamCode":"c16.9","gcamValue":10},{"gcamCode":"c16.90","gcamValue":20},{"gcamCode":"c16.91","gcamValue":22},{"gcamCode":"c16.92","gcamValue":69},{"gcamCode":"c16.93","gcamValue":25},{"gcamCode":"c16.94","gcamValue":53},{"gcamCode":"c16.95","gcamValue":70},{"gcamCode":"c16.96","gcamValue":7},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":43},{"gcamCode":"c16.99","gcamValue":17},{"gcamCode":"c17.1","gcamValue":242},{"gcamCode":"c17.10","gcamValue":61},{"gcamCode":"c17.11","gcamValue":94},{"gcamCode":"c17.12","gcamValue":36},{"gcamCode":"c17.13","gcamValue":9},{"gcamCode":"c17.14","gcamValue":13},{"gcamCode":"c17.15","gcamValue":68},{"gcamCode":"c17.16","gcamValue":66},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":22},{"gcamCode":"c17.19","gcamValue":38},{"gcamCode":"c17.2","gcamValue":10},{"gcamCode":"c17.20","gcamValue":26},{"gcamCode":"c17.21","gcamValue":8},{"gcamCode":"c17.22","gcamValue":15},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":64},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":4},{"gcamCode":"c17.27","gcamValue":79},{"gcamCode":"c17.28","gcamValue":12},{"gcamCode":"c17.29","gcamValue":23},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":43},{"gcamCode":"c17.32","gcamValue":22},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":14},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":42},{"gcamCode":"c17.37","gcamValue":15},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":33},{"gcamCode":"c17.4","gcamValue":205},{"gcamCode":"c17.40","gcamValue":12},{"gcamCode":"c17.41","gcamValue":15},{"gcamCode":"c17.42","gcamValue":28},{"gcamCode":"c17.43","gcamValue":36},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":143},{"gcamCode":"c17.6","gcamValue":8},{"gcamCode":"c17.7","gcamValue":108},{"gcamCode":"c17.8","gcamValue":60},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.1","gcamValue":8},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.156","gcamValue":32},{"gcamCode":"c18.159","gcamValue":1},{"gcamCode":"c18.162","gcamValue":2},{"gcamCode":"c18.163","gcamValue":1},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":16},{"gcamCode":"c18.2","gcamValue":2},{"gcamCode":"c18.245","gcamValue":1},{"gcamCode":"c18.257","gcamValue":1},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":19},{"gcamCode":"c18.50","gcamValue":1},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.83","gcamValue":2},{"gcamCode":"c2.1","gcamValue":35},{"gcamCode":"c2.100","gcamValue":4},{"gcamCode":"c2.101","gcamValue":13},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":101},{"gcamCode":"c2.107","gcamValue":6},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":15},{"gcamCode":"c2.110","gcamValue":8},{"gcamCode":"c2.111","gcamValue":5},{"gcamCode":"c2.112","gcamValue":13},{"gcamCode":"c2.113","gcamValue":6},{"gcamCode":"c2.114","gcamValue":38},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":35},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":219},{"gcamCode":"c2.12","gcamValue":26},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":45},{"gcamCode":"c2.122","gcamValue":18},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":44},{"gcamCode":"c2.126","gcamValue":26},{"gcamCode":"c2.127","gcamValue":81},{"gcamCode":"c2.128","gcamValue":67},{"gcamCode":"c2.129","gcamValue":70},{"gcamCode":"c2.130","gcamValue":7},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":7},{"gcamCode":"c2.133","gcamValue":9},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":59},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":13},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":44},{"gcamCode":"c2.144","gcamValue":19},{"gcamCode":"c2.145","gcamValue":7},{"gcamCode":"c2.146","gcamValue":12},{"gcamCode":"c2.147","gcamValue":120},{"gcamCode":"c2.148","gcamValue":60},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":13},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":15},{"gcamCode":"c2.154","gcamValue":20},{"gcamCode":"c2.155","gcamValue":41},{"gcamCode":"c2.156","gcamValue":29},{"gcamCode":"c2.157","gcamValue":37},{"gcamCode":"c2.158","gcamValue":50},{"gcamCode":"c2.159","gcamValue":11},{"gcamCode":"c2.16","gcamValue":7},{"gcamCode":"c2.160","gcamValue":40},{"gcamCode":"c2.162","gcamValue":9},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":10},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":19},{"gcamCode":"c2.173","gcamValue":9},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":5},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":29},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":22},{"gcamCode":"c2.180","gcamValue":22},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":144},{"gcamCode":"c2.186","gcamValue":12},{"gcamCode":"c2.187","gcamValue":41},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.190","gcamValue":6},{"gcamCode":"c2.191","gcamValue":12},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":79},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":76},{"gcamCode":"c2.196","gcamValue":7},{"gcamCode":"c2.197","gcamValue":19},{"gcamCode":"c2.198","gcamValue":102},{"gcamCode":"c2.199","gcamValue":19},{"gcamCode":"c2.2","gcamValue":5},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":6},{"gcamCode":"c2.201","gcamValue":13},{"gcamCode":"c2.203","gcamValue":30},{"gcamCode":"c2.204","gcamValue":60},{"gcamCode":"c2.205","gcamValue":11},{"gcamCode":"c2.206","gcamValue":12},{"gcamCode":"c2.208","gcamValue":20},{"gcamCode":"c2.209","gcamValue":24},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":54},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.213","gcamValue":21},{"gcamCode":"c2.214","gcamValue":20},{"gcamCode":"c2.216","gcamValue":4},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.220","gcamValue":21},{"gcamCode":"c2.221","gcamValue":8},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":9},{"gcamCode":"c2.225","gcamValue":21},{"gcamCode":"c2.226","gcamValue":18},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":47},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":38},{"gcamCode":"c2.26","gcamValue":28},{"gcamCode":"c2.27","gcamValue":28},{"gcamCode":"c2.28","gcamValue":11},{"gcamCode":"c2.30","gcamValue":29},{"gcamCode":"c2.31","gcamValue":26},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":65},{"gcamCode":"c2.35","gcamValue":13},{"gcamCode":"c2.36","gcamValue":10},{"gcamCode":"c2.37","gcamValue":10},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":119},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":51},{"gcamCode":"c2.46","gcamValue":79},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":24},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":51},{"gcamCode":"c2.54","gcamValue":64},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.57","gcamValue":10},{"gcamCode":"c2.58","gcamValue":15},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":10},{"gcamCode":"c2.62","gcamValue":23},{"gcamCode":"c2.64","gcamValue":19},{"gcamCode":"c2.65","gcamValue":6},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.67","gcamValue":5},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":5},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":4},{"gcamCode":"c2.73","gcamValue":10},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":88},{"gcamCode":"c2.76","gcamValue":509},{"gcamCode":"c2.77","gcamValue":57},{"gcamCode":"c2.78","gcamValue":89},{"gcamCode":"c2.79","gcamValue":18},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":59},{"gcamCode":"c2.81","gcamValue":20},{"gcamCode":"c2.82","gcamValue":26},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":5},{"gcamCode":"c2.86","gcamValue":24},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":10},{"gcamCode":"c2.89","gcamValue":16},{"gcamCode":"c2.9","gcamValue":26},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.93","gcamValue":20},{"gcamCode":"c2.95","gcamValue":128},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":13},{"gcamCode":"c2.98","gcamValue":50},{"gcamCode":"c2.99","gcamValue":5},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.2","gcamValue":8},{"gcamCode":"c25.5","gcamValue":16},{"gcamCode":"c25.7","gcamValue":5},{"gcamCode":"c3.1","gcamValue":76},{"gcamCode":"c3.2","gcamValue":42},{"gcamCode":"c35.1","gcamValue":6},{"gcamCode":"c35.10","gcamValue":4},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":6},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":29},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.25","gcamValue":16},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":17},{"gcamCode":"c35.32","gcamValue":16},{"gcamCode":"c35.33","gcamValue":49},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":4},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":16},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":2},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":34},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":11},{"gcamCode":"c39.37","gcamValue":25},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":8},{"gcamCode":"c39.4","gcamValue":37},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":18},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":6},{"gcamCode":"c4.12","gcamValue":3},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":5},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":22},{"gcamCode":"c4.3","gcamValue":3},{"gcamCode":"c40.1","gcamValue":2},{"gcamCode":"c40.3","gcamValue":9},{"gcamCode":"c40.4","gcamValue":10},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":34},{"gcamCode":"c5.10","gcamValue":91},{"gcamCode":"c5.11","gcamValue":19},{"gcamCode":"c5.12","gcamValue":155},{"gcamCode":"c5.15","gcamValue":10},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":11},{"gcamCode":"c5.18","gcamValue":5},{"gcamCode":"c5.19","gcamValue":14},{"gcamCode":"c5.2","gcamValue":12},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":23},{"gcamCode":"c5.22","gcamValue":4},{"gcamCode":"c5.23","gcamValue":9},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":16},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":9},{"gcamCode":"c5.29","gcamValue":6},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":56},{"gcamCode":"c5.31","gcamValue":9},{"gcamCode":"c5.32","gcamValue":8},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":22},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":30},{"gcamCode":"c5.37","gcamValue":10},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":54},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":23},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":117},{"gcamCode":"c5.47","gcamValue":35},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":55},{"gcamCode":"c5.5","gcamValue":11},{"gcamCode":"c5.50","gcamValue":66},{"gcamCode":"c5.51","gcamValue":48},{"gcamCode":"c5.52","gcamValue":85},{"gcamCode":"c5.53","gcamValue":76},{"gcamCode":"c5.54","gcamValue":19},{"gcamCode":"c5.55","gcamValue":6},{"gcamCode":"c5.56","gcamValue":7},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":26},{"gcamCode":"c5.60","gcamValue":16},{"gcamCode":"c5.61","gcamValue":35},{"gcamCode":"c5.62","gcamValue":326},{"gcamCode":"c5.7","gcamValue":14},{"gcamCode":"c5.8","gcamValue":15},{"gcamCode":"c5.9","gcamValue":40},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":8},{"gcamCode":"c6.4","gcamValue":28},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":10},{"gcamCode":"c7.1","gcamValue":48},{"gcamCode":"c7.2","gcamValue":21},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":11},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":5},{"gcamCode":"c8.15","gcamValue":4},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":19},{"gcamCode":"c8.2","gcamValue":37},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":22},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.28","gcamValue":4},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":9},{"gcamCode":"c8.37","gcamValue":14},{"gcamCode":"c8.38","gcamValue":8},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":23},{"gcamCode":"c8.43","gcamValue":26},{"gcamCode":"c8.5","gcamValue":3},{"gcamCode":"c8.6","gcamValue":2},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":26},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1012","gcamValue":4},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":4},{"gcamCode":"c9.1018","gcamValue":8},{"gcamCode":"c9.1024","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":6},{"gcamCode":"c9.1040","gcamValue":8},{"gcamCode":"c9.1041","gcamValue":3},{"gcamCode":"c9.107","gcamValue":13},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":12},{"gcamCode":"c9.111","gcamValue":6},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":11},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":14},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":36},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.138","gcamValue":7},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.144","gcamValue":2},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.157","gcamValue":5},{"gcamCode":"c9.158","gcamValue":17},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":9},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":11},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":4},{"gcamCode":"c9.167","gcamValue":11},{"gcamCode":"c9.168","gcamValue":6},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":2},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":4},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":4},{"gcamCode":"c9.192","gcamValue":10},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":4},{"gcamCode":"c9.195","gcamValue":17},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":8},{"gcamCode":"c9.198","gcamValue":21},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":7},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":10},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":9},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":5},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":7},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":7},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":1},{"gcamCode":"c9.242","gcamValue":3},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":4},{"gcamCode":"c9.246","gcamValue":5},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":3},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":5},{"gcamCode":"c9.266","gcamValue":5},{"gcamCode":"c9.267","gcamValue":4},{"gcamCode":"c9.27","gcamValue":3},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":6},{"gcamCode":"c9.289","gcamValue":4},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":23},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.321","gcamValue":2},{"gcamCode":"c9.322","gcamValue":7},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":15},{"gcamCode":"c9.330","gcamValue":5},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":5},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":11},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.348","gcamValue":4},{"gcamCode":"c9.35","gcamValue":8},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":8},{"gcamCode":"c9.355","gcamValue":1},{"gcamCode":"c9.358","gcamValue":11},{"gcamCode":"c9.359","gcamValue":12},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":4},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":8},{"gcamCode":"c9.372","gcamValue":4},{"gcamCode":"c9.381","gcamValue":3},{"gcamCode":"c9.383","gcamValue":17},{"gcamCode":"c9.384","gcamValue":5},{"gcamCode":"c9.385","gcamValue":5},{"gcamCode":"c9.39","gcamValue":11},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":9},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":8},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":5},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":4},{"gcamCode":"c9.46","gcamValue":4},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":14},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":6},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":9},{"gcamCode":"c9.49","gcamValue":16},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":2},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":4},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.51","gcamValue":2},{"gcamCode":"c9.511","gcamValue":12},{"gcamCode":"c9.513","gcamValue":9},{"gcamCode":"c9.517","gcamValue":7},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":15},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":7},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":10},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":5},{"gcamCode":"c9.55","gcamValue":4},{"gcamCode":"c9.550","gcamValue":6},{"gcamCode":"c9.551","gcamValue":13},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":7},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":16},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":5},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":23},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.586","gcamValue":3},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.598","gcamValue":3},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.601","gcamValue":3},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":4},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":7},{"gcamCode":"c9.62","gcamValue":5},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":5},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":6},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":33},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.657","gcamValue":1},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":11},{"gcamCode":"c9.660","gcamValue":10},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.667","gcamValue":8},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":5},{"gcamCode":"c9.67","gcamValue":4},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.676","gcamValue":8},{"gcamCode":"c9.677","gcamValue":10},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.681","gcamValue":4},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":13},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.687","gcamValue":15},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.693","gcamValue":7},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.7","gcamValue":6},{"gcamCode":"c9.70","gcamValue":10},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":4},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":20},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":28},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":8},{"gcamCode":"c9.735","gcamValue":4},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":3},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":15},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":5},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":4},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":3},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":7},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.762","gcamValue":23},{"gcamCode":"c9.763","gcamValue":4},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":25},{"gcamCode":"c9.767","gcamValue":35},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":4},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":4},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":3},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":13},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.825","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":19},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":7},{"gcamCode":"c9.837","gcamValue":4},{"gcamCode":"c9.838","gcamValue":6},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.846","gcamValue":9},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":22},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":9},{"gcamCode":"c9.868","gcamValue":22},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.880","gcamValue":2},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.886","gcamValue":2},{"gcamCode":"c9.887","gcamValue":3},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":6},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.897","gcamValue":5},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":10},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":8},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":5},{"gcamCode":"c9.948","gcamValue":2},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":10},{"gcamCode":"c9.973","gcamValue":9},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":3},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":3},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.261185464406395},{"gcamCode":"v10.2","gcamValue":0.294286000457875},{"gcamCode":"v11.1","gcamValue":-0.000124415204678368},{"gcamCode":"v19.1","gcamValue":5.25177083333334},{"gcamCode":"v19.2","gcamValue":5.24375},{"gcamCode":"v19.3","gcamValue":5.14072916666667},{"gcamCode":"v19.4","gcamValue":5.3153125},{"gcamCode":"v19.5","gcamValue":4.95458333333333},{"gcamCode":"v19.6","gcamValue":5.16270833333333},{"gcamCode":"v19.7","gcamValue":5.216875},{"gcamCode":"v19.8","gcamValue":5.48666666666666},{"gcamCode":"v19.9","gcamValue":5.11010416666667},{"gcamCode":"v20.1","gcamValue":0.588666666666667},{"gcamCode":"v20.10","gcamValue":-0.5495625},{"gcamCode":"v20.11","gcamValue":0.5665},{"gcamCode":"v20.12","gcamValue":-0.537761904761905},{"gcamCode":"v20.13","gcamValue":0.376737704918033},{"gcamCode":"v20.14","gcamValue":-0.487241379310345},{"gcamCode":"v20.15","gcamValue":0.348307692307692},{"gcamCode":"v20.16","gcamValue":-0.426410256410256},{"gcamCode":"v20.2","gcamValue":-0.278},{"gcamCode":"v20.3","gcamValue":0.588666666666667},{"gcamCode":"v20.4","gcamValue":-0.278},{"gcamCode":"v20.5","gcamValue":0.588666666666667},{"gcamCode":"v20.6","gcamValue":-0.442875},{"gcamCode":"v20.7","gcamValue":0.588666666666667},{"gcamCode":"v20.8","gcamValue":-0.5043},{"gcamCode":"v20.9","gcamValue":0.588666666666667},{"gcamCode":"v21.1","gcamValue":5.24741159830268},{"gcamCode":"v26.1","gcamValue":-0.669230769230769}]https://www.whig.com/apps/pbcsi.dll/storyimage/WH/20190523/AP/305239963/AR/0/AR-305239963.jpg[""][""][""][{"charLength":39,"verb":"","quote":"confirmed large and destructive tornado","charOffset":353},{"charLength":165,"verb":"","quote":"Evacuate Webbers Falls immediately. The barges are loose and has the potential to hit the lock and dam 16. If the dam breaks , it will be catastrophic!! Leave now!!","charOffset":4005}][{"name":"Jefferson City","charOffset":82},{"name":"Jefferson City","charOffset":379},{"name":"Mike Parson","charOffset":880},{"name":"Public Safety","charOffset":1075},{"name":"Golden City","charOffset":1145},{"name":"Barton County","charOffset":1167},{"name":"Carl Junction","charOffset":1213},{"name":"City Police","charOffset":1258},{"name":"David Williams","charOffset":1277},{"name":"Southern Plains","charOffset":1577},{"name":"Cole County Sheriff","charOffset":1691},{"name":"Jessica Royston","charOffset":2002},{"name":"Public Safety","charOffset":2122},{"name":"National Weather Service","charOffset":2674},{"name":"Carl Junction","charOffset":3038},{"name":"Arkansas River","charOffset":3340},{"name":"Arkansas River","charOffset":3582},{"name":"Webbers Falls","charOffset":3604},{"name":"Webbers Falls","charOffset":3912},{"name":"Arkansas River","charOffset":4272},{"name":"Mississippi Rivers","charOffset":4363},{"name":"Highway Patrol","charOffset":4990},{"name":"Emergency Management","charOffset":5298},{"name":"Keli Cain","charOffset":5320}][{"amount":3,"amountType":"deaths","charOffset":167},{"amount":130,"amountType":"miles","charOffset":426},{"amount":209,"amountType":"kilometers","charOffset":435},{"amount":3,"amountType":"people","charOffset":674},{"amount":3,"amountType":"people were killed","charOffset":889},{"amount":2,"amountType":"stories","charOffset":2115},{"amount":22,"amountType":"reports of tornadoes by","charOffset":2168},{"amount":161,"amountType":"people","charOffset":2374},{"amount":4,"amountType":"miles","charOffset":2446},{"amount":44,"amountType":"kilometers","charOffset":2455},{"amount":2,"amountType":"barges broke loose","charOffset":2607},{"amount":600,"amountType":"residents","charOffset":3100},{"amount":12,"amountType":"of tornadoes","charOffset":3558},{"amount":2,"amountType":"people","charOffset":3893},{"amount":4,"amountType":"weather","charOffset":3948},{"amount":45,"amountType":"miles","charOffset":4096},{"amount":72,"amountType":"kilometers","charOffset":4104}]{"SRCLC":"","ENG":""}
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":23}2019-05-23T12:15:00.000+0000WEBnewstimes.comhttps://www.newstimes.com/entertainment/article/Inside-MeWe-the-Playground-for-Anti-Vaxxers-and-13878366.php[][]["EPU_CATS_REGULATION","MEDIA_SOCIAL","TAX_FNCACT","TAX_FNCACT_LEADER","TAX_RELIGION","TAX_RELIGION_PAGANISM","POVERTY","WB_695_POVERTY","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","UNREST_CRACKDOWN","ELECTION","MEDIA_CENSORSHIP","ECON_ENTREPRENEURSHIP","TAX_FNCACT_ENTREPRENEUR","TAX_FNCACT_MAN","WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","WB_652_ICT_APPLICATIONS","WB_662_SOCIAL_MEDIA","WB_658_ENTERPRISE_APPLICATIONS","TAX_FNCACT_SPY","CRISISLEX_T01_CAUTION_ADVICE","EXTREMISM","TERROR","ARMEDCONFLICT","USPEC_POLICY1","TAX_FNCACT_ANALYST","TAX_FNCACT_RESEARCH_ANALYST","BAN","DISASTER_FIRE","IDEOLOGY","USPEC_POLITICS_GENERAL1","EPU_POLICY_POLITICAL","LEADER","TAX_FNCACT_POLITICIANS","TAX_POLITICAL_PARTY","TAX_POLITICAL_PARTY_DEMOCRATS","TAX_POLITICAL_PARTY_LIBERAL_DEMOCRATS","ECON_MONOPOLY","TAX_POLITICAL_PARTY_LIBERTARIAN","EPU_ECONOMY_HISTORIC","HATE_SPEECH","UNREST_SELF_IDENTIFIED_HATE_SPEECH","REL_ISLAMOPHOBIA","DISCRIMINATION_RELIGION","DISCRIMINATION_RELIGION_ISLAMOPHOBIC","GENERAL_HEALTH","HEALTH_VACCINATION","WB_642_CHILD_HEALTH","WB_1459_IMMUNIZATIONS","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_639_REPRODUCTIVE_MATERNAL_AND_CHILD_HEALTH","UNGP_HEALTHCARE","EPU_CATS_MIGRATION_FEAR_FEAR","TAX_FNCACT_ADVERTISERS","TAX_RELIGION_MOSQUES","TAX_WORLDMAMMALS","TAX_WORLDMAMMALS_LION","CRISISLEX_C07_SAFETY","TAX_RELIGION_SYNAGOGUE","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE","TAX_WEAPONS","TAX_WEAPONS_GUN","FIREARM_OWNERSHIP","TAX_WEAPONS_FIREARMS","SELF_IDENTIFIED_HUMAN_RIGHTS","UNGP_POLITICAL_FREEDOMS","EPU_POLICY_POLICY","TAX_FNCACT_FOUNDER","REL_ANTISEMITISM","MOVEMENT_GENERAL","CRISISLEX_T11_UPDATESSYMPATHY","WB_290_TELECOMMUNICATIONS_ORGANIZATIONAL_DESIGN","WB_288_TELECOMMUNICATIONS_SECTOR_POLICY_AND_REGULATION","WB_286_TELECOMMUNICATIONS_AND_BROADBAND_ACCESS","TAX_FNCACT_BABY"][{"theme":"TAX_FNCACT_ADVERTISERS","charOffset":9861},{"theme":"ECON_MONOPOLY","charOffset":8143},{"theme":"TAX_FNCACT_SPY","charOffset":3067},{"theme":"EXTREMISM","charOffset":3806},{"theme":"EXTREMISM","charOffset":4410},{"theme":"EXTREMISM","charOffset":4911},{"theme":"EXTREMISM","charOffset":5848},{"theme":"EXTREMISM","charOffset":10486},{"theme":"EXTREMISM","charOffset":11149},{"theme":"TERROR","charOffset":3806},{"theme":"TERROR","charOffset":4410},{"theme":"TERROR","charOffset":4911},{"theme":"TERROR","charOffset":5848},{"theme":"TERROR","charOffset":10486},{"theme":"TERROR","charOffset":11149},{"theme":"ARMEDCONFLICT","charOffset":3806},{"theme":"ARMEDCONFLICT","charOffset":4410},{"theme":"ARMEDCONFLICT","charOffset":4911},{"theme":"ARMEDCONFLICT","charOffset":5848},{"theme":"ARMEDCONFLICT","charOffset":10486},{"theme":"ARMEDCONFLICT","charOffset":11149},{"theme":"TAX_FNCACT_RESEARCH_ANALYST","charOffset":4070},{"theme":"REL_ISLAMOPHOBIA","charOffset":8838},{"theme":"DISCRIMINATION_RELIGION_ISLAMOPHOBIC","charOffset":8838},{"theme":"EPU_CATS_REGULATION","charOffset":56},{"theme":"LEADER","charOffset":7530},{"theme":"TAX_FNCACT_POLITICIANS","charOffset":7530},{"theme":"HATE_SPEECH","charOffset":8758},{"theme":"HATE_SPEECH","charOffset":12548},{"theme":"HATE_SPEECH","charOffset":12701},{"theme":"HATE_SPEECH","charOffset":12838},{"theme":"UNREST_SELF_IDENTIFIED_HATE_SPEECH","charOffset":8758},{"theme":"UNREST_SELF_IDENTIFIED_HATE_SPEECH","charOffset":12548},{"theme":"UNREST_SELF_IDENTIFIED_HATE_SPEECH","charOffset":12701},{"theme":"UNREST_SELF_IDENTIFIED_HATE_SPEECH","charOffset":12838},{"theme":"IDEOLOGY","charOffset":5856},{"theme":"IDEOLOGY","charOffset":13236},{"theme":"IDEOLOGY","charOffset":13303},{"theme":"IDEOLOGY","charOffset":13526},{"theme":"BAN","charOffset":5731},{"theme":"CRISISLEX_C07_SAFETY","charOffset":11198},{"theme":"CRISISLEX_C07_SAFETY","charOffset":11243},{"theme":"TAX_RELIGION_PAGANISM","charOffset":616},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":8446},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":13950},{"theme":"POVERTY","charOffset":759},{"theme":"WB_695_POVERTY","charOffset":759},{"theme":"TAX_FNCACT_LEADER","charOffset":475},{"theme":"TAX_FNCACT_FOUNDER","charOffset":12139},{"theme":"DISASTER_FIRE","charOffset":5826},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":6187},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":6297},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":6349},{"theme":"TAX_POLITICAL_PARTY_LIBERTARIAN","charOffset":8193},{"theme":"WB_652_ICT_APPLICATIONS","charOffset":2430},{"theme":"WB_652_ICT_APPLICATIONS","charOffset":2512},{"theme":"WB_652_ICT_APPLICATIONS","charOffset":2818},{"theme":"WB_652_ICT_APPLICATIONS","charOffset":5037},{"theme":"WB_662_SOCIAL_MEDIA","charOffset":2430},{"theme":"WB_662_SOCIAL_MEDIA","charOffset":2512},{"theme":"WB_662_SOCIAL_MEDIA","charOffset":2818},{"theme":"WB_662_SOCIAL_MEDIA","charOffset":5037},{"theme":"WB_658_ENTERPRISE_APPLICATIONS","charOffset":2430},{"theme":"WB_658_ENTERPRISE_APPLICATIONS","charOffset":2512},{"theme":"WB_658_ENTERPRISE_APPLICATIONS","charOffset":2818},{"theme":"WB_658_ENTERPRISE_APPLICATIONS","charOffset":5037},{"theme":"GENERAL_HEALTH","charOffset":9376},{"theme":"HEALTH_VACCINATION","charOffset":9376},{"theme":"WB_642_CHILD_HEALTH","charOffset":9376},{"theme":"WB_1459_IMMUNIZATIONS","charOffset":9376},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":9376},{"theme":"WB_639_REPRODUCTIVE_MATERNAL_AND_CHILD_HEALTH","charOffset":9376},{"theme":"UNGP_HEALTHCARE","charOffset":9376},{"theme":"EPU_POLICY_POLITICAL","charOffset":6546},{"theme":"EPU_POLICY_POLITICAL","charOffset":6954},{"theme":"EPU_POLICY_POLITICAL","charOffset":8065},{"theme":"EPU_POLICY_POLITICAL","charOffset":8281},{"theme":"EPU_POLICY_POLITICAL","charOffset":8364},{"theme":"EPU_POLICY_POLITICAL","charOffset":12897},{"theme":"EPU_POLICY_POLITICAL","charOffset":12950},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":11399},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":11399},{"theme":"WB_840_JUSTICE","charOffset":11399},{"theme":"WB_2025_INVESTIGATION","charOffset":11399},{"theme":"WB_831_GOVERNANCE","charOffset":11399},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":11399},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":11399},{"theme":"TAX_RELIGION_MOSQUES","charOffset":10796},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":2430},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":2512},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":2818},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":5037},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":7635},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":7670},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":2430},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":2512},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":2818},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":5037},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":7635},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":7670},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":2430},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":2512},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":2818},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":5037},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":7635},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":7670},{"theme":"USPEC_POLICY1","charOffset":4008},{"theme":"USPEC_POLICY1","charOffset":5095},{"theme":"USPEC_POLICY1","charOffset":9428},{"theme":"USPEC_POLICY1","charOffset":12060},{"theme":"USPEC_POLICY1","charOffset":13346},{"theme":"UNREST_CRACKDOWN","charOffset":1320},{"theme":"MEDIA_CENSORSHIP","charOffset":2010},{"theme":"MEDIA_CENSORSHIP","charOffset":6659},{"theme":"MEDIA_CENSORSHIP","charOffset":9335},{"theme":"EPU_POLICY_POLICY","charOffset":12109},{"theme":"EPU_POLICY_POLICY","charOffset":12736},{"theme":"TAX_WORLDMAMMALS_LION","charOffset":10863},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":3732},{"theme":"TAX_POLITICAL_PARTY_DEMOCRATS","charOffset":7978},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":13000},{"theme":"CRISISLEX_T11_UPDATESSYMPATHY","charOffset":13965},{"theme":"MEDIA_SOCIAL","charOffset":434},{"theme":"MEDIA_SOCIAL","charOffset":1238},{"theme":"MEDIA_SOCIAL","charOffset":1303},{"theme":"MEDIA_SOCIAL","charOffset":1623},{"theme":"MEDIA_SOCIAL","charOffset":1921},{"theme":"MEDIA_SOCIAL","charOffset":2038},{"theme":"MEDIA_SOCIAL","charOffset":2709},{"theme":"MEDIA_SOCIAL","charOffset":4285},{"theme":"MEDIA_SOCIAL","charOffset":4321},{"theme":"MEDIA_SOCIAL","charOffset":4457},{"theme":"MEDIA_SOCIAL","charOffset":4864},{"theme":"MEDIA_SOCIAL","charOffset":5685},{"theme":"MEDIA_SOCIAL","charOffset":6001},{"theme":"MEDIA_SOCIAL","charOffset":6506},{"theme":"MEDIA_SOCIAL","charOffset":6625},{"theme":"MEDIA_SOCIAL","charOffset":7386},{"theme":"MEDIA_SOCIAL","charOffset":7590},{"theme":"MEDIA_SOCIAL","charOffset":7771},{"theme":"MEDIA_SOCIAL","charOffset":8735},{"theme":"MEDIA_SOCIAL","charOffset":9130},{"theme":"MEDIA_SOCIAL","charOffset":9324},{"theme":"MEDIA_SOCIAL","charOffset":9891},{"theme":"MEDIA_SOCIAL","charOffset":10984},{"theme":"MEDIA_SOCIAL","charOffset":14196},{"theme":"MEDIA_SOCIAL","charOffset":14484},{"theme":"MOVEMENT_GENERAL","charOffset":12656},{"theme":"TAX_FNCACT_ANALYST","charOffset":4070},{"theme":"SELF_IDENTIFIED_HUMAN_RIGHTS","charOffset":11987},{"theme":"UNGP_POLITICAL_FREEDOMS","charOffset":11987},{"theme":"ECON_ENTREPRENEURSHIP","charOffset":2261},{"theme":"TAX_FNCACT_ENTREPRENEUR","charOffset":2261},{"theme":"REL_ANTISEMITISM","charOffset":12325},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":9409},{"theme":"TAX_WEAPONS_FIREARMS","charOffset":11542},{"theme":"ELECTION","charOffset":1596},{"theme":"TAX_POLITICAL_PARTY_LIBERAL_DEMOCRATS","charOffset":7978},{"theme":"TAX_WEAPONS_GUN","charOffset":11498},{"theme":"TAX_FNCACT_MAN","charOffset":2325},{"theme":"TAX_FNCACT_MAN","charOffset":7869},{"theme":"TAX_FNCACT_MAN","charOffset":11018},{"theme":"LEGISLATION","charOffset":763},{"theme":"EPU_POLICY_LAW","charOffset":763},{"theme":"WB_290_TELECOMMUNICATIONS_ORGANIZATIONAL_DESIGN","charOffset":13956},{"theme":"WB_288_TELECOMMUNICATIONS_SECTOR_POLICY_AND_REGULATION","charOffset":13956},{"theme":"WB_286_TELECOMMUNICATIONS_AND_BROADBAND_ACCESS","charOffset":13956},{"theme":"TAX_FNCACT_BABY","charOffset":14220},{"theme":"FIREARM_OWNERSHIP","charOffset":11505},{"theme":"TAX_RELIGION_SYNAGOGUE","charOffset":11235}][{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},{"geoType":"USCITY","geoName":"Poway, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":32.9628,"longitude":-117.036},"featureId":"1661258"}][{"location":{"geoType":"COUNTRY","geoName":"New Zealand","countryCode":"NZ","adm1Code":"NZ","adm2Code":"","geoPoint":{"latitude":-42,"longitude":174},"featureId":"NZ"},"charOffset":10811},{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":564},{"location":{"geoType":"COUNTRY","geoName":"America","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":13089},{"location":{"geoType":"USCITY","geoName":"Poway, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA073","geoPoint":{"latitude":32.9628,"longitude":-117.036},"featureId":"1661258"},"charOffset":11210},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":6217},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":11225}]["chelsea lauren","sheila mcnallen","keegan hankes","james lyons weiler","mark weinsteinevan ross","mark zuckerberg","mark weinstein","milo yiannopolous","los angeles","alex jones","ted cruz","laura loomer","bernie sanders"][{"person":"Chelsea Lauren","charOffset":6401},{"person":"Sheila Mcnallen","charOffset":368},{"person":"Sheila Mcnallen","charOffset":1213},{"person":"Keegan Hankes","charOffset":4044},{"person":"James Lyons Weiler","charOffset":9226},{"person":"Mark Weinsteinevan Ross","charOffset":6154},{"person":"Mark Zuckerberg","charOffset":7914},{"person":"Mark Zuckerberg","charOffset":11581},{"person":"Mark Weinstein","charOffset":2295},{"person":"Mark Weinstein","charOffset":6312},{"person":"Milo Yiannopolous","charOffset":5772},{"person":"Los Angeles","charOffset":6201},{"person":"Los Angeles","charOffset":6364},{"person":"Alex Jones","charOffset":5785},{"person":"Ted Cruz","charOffset":7544},{"person":"Laura Loomer","charOffset":5800},{"person":"Bernie Sanders","charOffset":6729}]["instagram","google","cyber civil rights initiative","twitter","southern poverty law center","united states","mewe summer kick off party","folk assembly","internet watch foundation","youtube","facebook"][{"organisation":"Instagram","charOffset":14508},{"organisation":"Google","charOffset":3642},{"organisation":"Cyber Civil Rights Initiative","charOffset":11998},{"organisation":"Twitter","charOffset":4331},{"organisation":"Twitter","charOffset":4467},{"organisation":"Twitter","charOffset":4874},{"organisation":"Twitter","charOffset":6011},{"organisation":"Twitter","charOffset":8745},{"organisation":"Twitter","charOffset":14494},{"organisation":"Southern Poverty Law Center","charOffset":770},{"organisation":"United States","charOffset":6217},{"organisation":"United States","charOffset":11225},{"organisation":"Mewe Summer Kick Off Party","charOffset":6187},{"organisation":"Mewe Summer Kick Off Party","charOffset":6349},{"organisation":"Folk Assembly","charOffset":513},{"organisation":"Folk Assembly","charOffset":699},{"organisation":"Folk Assembly","charOffset":1816},{"organisation":"Internet Watch Foundation","charOffset":12026},{"organisation":"Youtube","charOffset":828},{"organisation":"Facebook","charOffset":434},{"organisation":"Facebook","charOffset":1238},{"organisation":"Facebook","charOffset":1303},{"organisation":"Facebook","charOffset":1623},{"organisation":"Facebook","charOffset":1921},{"organisation":"Facebook","charOffset":2038},{"organisation":"Facebook","charOffset":2709},{"organisation":"Facebook","charOffset":4285},{"organisation":"Facebook","charOffset":4321},{"organisation":"Facebook","charOffset":4457},{"organisation":"Facebook","charOffset":4864},{"organisation":"Facebook","charOffset":5685},{"organisation":"Facebook","charOffset":6001},{"organisation":"Facebook","charOffset":6506},{"organisation":"Facebook","charOffset":6625},{"organisation":"Facebook","charOffset":7386},{"organisation":"Facebook","charOffset":7590},{"organisation":"Facebook","charOffset":7771},{"organisation":"Facebook","charOffset":8735},{"organisation":"Facebook","charOffset":9130},{"organisation":"Facebook","charOffset":9324},{"organisation":"Facebook","charOffset":9891},{"organisation":"Facebook","charOffset":10984},{"organisation":"Facebook","charOffset":14196},{"organisation":"Facebook","charOffset":14484}]{"tone":-2.8933809,"positiveScore":2.338486,"negativeScore":5.231867,"polarity":7.5703526,"activityReferenceDensity":21.878716,"selfGroupReferenceDensity":1.6250496,"wordCount":2217}[{"dateResolution":1,"month":0,"day":0,"year":2001,"charOffset":2653}][{"gcamCode":"wc","gcamValue":2217},{"gcamCode":"c12.1","gcamValue":195},{"gcamCode":"c12.10","gcamValue":238},{"gcamCode":"c12.12","gcamValue":85},{"gcamCode":"c12.13","gcamValue":82},{"gcamCode":"c12.14","gcamValue":82},{"gcamCode":"c12.3","gcamValue":77},{"gcamCode":"c12.4","gcamValue":39},{"gcamCode":"c12.5","gcamValue":89},{"gcamCode":"c12.7","gcamValue":154},{"gcamCode":"c12.8","gcamValue":113},{"gcamCode":"c12.9","gcamValue":144},{"gcamCode":"c13.1","gcamValue":2},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.12","gcamValue":4},{"gcamCode":"c13.14","gcamValue":5},{"gcamCode":"c13.2","gcamValue":2},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.6","gcamValue":1},{"gcamCode":"c14.1","gcamValue":160},{"gcamCode":"c14.10","gcamValue":64},{"gcamCode":"c14.11","gcamValue":219},{"gcamCode":"c14.2","gcamValue":125},{"gcamCode":"c14.3","gcamValue":146},{"gcamCode":"c14.4","gcamValue":28},{"gcamCode":"c14.5","gcamValue":229},{"gcamCode":"c14.6","gcamValue":7},{"gcamCode":"c14.7","gcamValue":38},{"gcamCode":"c14.8","gcamValue":9},{"gcamCode":"c14.9","gcamValue":20},{"gcamCode":"c15.10","gcamValue":8},{"gcamCode":"c15.100","gcamValue":1},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.103","gcamValue":3},{"gcamCode":"c15.105","gcamValue":3},{"gcamCode":"c15.106","gcamValue":1},{"gcamCode":"c15.107","gcamValue":3},{"gcamCode":"c15.109","gcamValue":1},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.110","gcamValue":8},{"gcamCode":"c15.112","gcamValue":6},{"gcamCode":"c15.115","gcamValue":1},{"gcamCode":"c15.116","gcamValue":18},{"gcamCode":"c15.118","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":17},{"gcamCode":"c15.122","gcamValue":1},{"gcamCode":"c15.123","gcamValue":1},{"gcamCode":"c15.125","gcamValue":3},{"gcamCode":"c15.126","gcamValue":4},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.13","gcamValue":1},{"gcamCode":"c15.131","gcamValue":3},{"gcamCode":"c15.132","gcamValue":3},{"gcamCode":"c15.137","gcamValue":15},{"gcamCode":"c15.139","gcamValue":13},{"gcamCode":"c15.14","gcamValue":1},{"gcamCode":"c15.147","gcamValue":4},{"gcamCode":"c15.149","gcamValue":1},{"gcamCode":"c15.15","gcamValue":4},{"gcamCode":"c15.150","gcamValue":11},{"gcamCode":"c15.152","gcamValue":4},{"gcamCode":"c15.154","gcamValue":4},{"gcamCode":"c15.159","gcamValue":3},{"gcamCode":"c15.165","gcamValue":1},{"gcamCode":"c15.166","gcamValue":1},{"gcamCode":"c15.167","gcamValue":4},{"gcamCode":"c15.168","gcamValue":7},{"gcamCode":"c15.169","gcamValue":2},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.171","gcamValue":4},{"gcamCode":"c15.172","gcamValue":4},{"gcamCode":"c15.173","gcamValue":22},{"gcamCode":"c15.175","gcamValue":4},{"gcamCode":"c15.176","gcamValue":27},{"gcamCode":"c15.177","gcamValue":1},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.179","gcamValue":1},{"gcamCode":"c15.18","gcamValue":2},{"gcamCode":"c15.181","gcamValue":13},{"gcamCode":"c15.182","gcamValue":13},{"gcamCode":"c15.185","gcamValue":1},{"gcamCode":"c15.186","gcamValue":7},{"gcamCode":"c15.189","gcamValue":7},{"gcamCode":"c15.190","gcamValue":7},{"gcamCode":"c15.191","gcamValue":7},{"gcamCode":"c15.192","gcamValue":7},{"gcamCode":"c15.193","gcamValue":7},{"gcamCode":"c15.195","gcamValue":7},{"gcamCode":"c15.197","gcamValue":2},{"gcamCode":"c15.198","gcamValue":6},{"gcamCode":"c15.2","gcamValue":7},{"gcamCode":"c15.20","gcamValue":3},{"gcamCode":"c15.201","gcamValue":5},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.203","gcamValue":2},{"gcamCode":"c15.21","gcamValue":1},{"gcamCode":"c15.211","gcamValue":1},{"gcamCode":"c15.212","gcamValue":7},{"gcamCode":"c15.215","gcamValue":17},{"gcamCode":"c15.218","gcamValue":1},{"gcamCode":"c15.22","gcamValue":2},{"gcamCode":"c15.221","gcamValue":4},{"gcamCode":"c15.222","gcamValue":2},{"gcamCode":"c15.223","gcamValue":3},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.227","gcamValue":10},{"gcamCode":"c15.229","gcamValue":13},{"gcamCode":"c15.230","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.237","gcamValue":1},{"gcamCode":"c15.24","gcamValue":3},{"gcamCode":"c15.241","gcamValue":4},{"gcamCode":"c15.245","gcamValue":8},{"gcamCode":"c15.247","gcamValue":1},{"gcamCode":"c15.248","gcamValue":2},{"gcamCode":"c15.251","gcamValue":6},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.255","gcamValue":5},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.257","gcamValue":3},{"gcamCode":"c15.26","gcamValue":17},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.263","gcamValue":1},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.27","gcamValue":3},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.279","gcamValue":1},{"gcamCode":"c15.29","gcamValue":2},{"gcamCode":"c15.3","gcamValue":21},{"gcamCode":"c15.31","gcamValue":1},{"gcamCode":"c15.32","gcamValue":3},{"gcamCode":"c15.33","gcamValue":1},{"gcamCode":"c15.34","gcamValue":2},{"gcamCode":"c15.35","gcamValue":3},{"gcamCode":"c15.36","gcamValue":5},{"gcamCode":"c15.38","gcamValue":1},{"gcamCode":"c15.4","gcamValue":3},{"gcamCode":"c15.41","gcamValue":2},{"gcamCode":"c15.42","gcamValue":3},{"gcamCode":"c15.43","gcamValue":19},{"gcamCode":"c15.44","gcamValue":2},{"gcamCode":"c15.46","gcamValue":7},{"gcamCode":"c15.47","gcamValue":2},{"gcamCode":"c15.50","gcamValue":4},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":2},{"gcamCode":"c15.55","gcamValue":8},{"gcamCode":"c15.58","gcamValue":1},{"gcamCode":"c15.60","gcamValue":7},{"gcamCode":"c15.61","gcamValue":12},{"gcamCode":"c15.69","gcamValue":5},{"gcamCode":"c15.72","gcamValue":3},{"gcamCode":"c15.74","gcamValue":7},{"gcamCode":"c15.76","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.8","gcamValue":1},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.81","gcamValue":2},{"gcamCode":"c15.83","gcamValue":28},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.86","gcamValue":3},{"gcamCode":"c15.9","gcamValue":3},{"gcamCode":"c15.91","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c15.96","gcamValue":1},{"gcamCode":"c15.97","gcamValue":2},{"gcamCode":"c15.99","gcamValue":2},{"gcamCode":"c16.1","gcamValue":17},{"gcamCode":"c16.100","gcamValue":57},{"gcamCode":"c16.101","gcamValue":16},{"gcamCode":"c16.102","gcamValue":2},{"gcamCode":"c16.103","gcamValue":2},{"gcamCode":"c16.105","gcamValue":26},{"gcamCode":"c16.106","gcamValue":83},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":122},{"gcamCode":"c16.11","gcamValue":17},{"gcamCode":"c16.110","gcamValue":321},{"gcamCode":"c16.111","gcamValue":11},{"gcamCode":"c16.113","gcamValue":15},{"gcamCode":"c16.114","gcamValue":150},{"gcamCode":"c16.115","gcamValue":31},{"gcamCode":"c16.116","gcamValue":59},{"gcamCode":"c16.117","gcamValue":67},{"gcamCode":"c16.118","gcamValue":140},{"gcamCode":"c16.12","gcamValue":207},{"gcamCode":"c16.120","gcamValue":105},{"gcamCode":"c16.121","gcamValue":209},{"gcamCode":"c16.122","gcamValue":22},{"gcamCode":"c16.123","gcamValue":4},{"gcamCode":"c16.124","gcamValue":15},{"gcamCode":"c16.125","gcamValue":177},{"gcamCode":"c16.126","gcamValue":111},{"gcamCode":"c16.127","gcamValue":178},{"gcamCode":"c16.128","gcamValue":52},{"gcamCode":"c16.129","gcamValue":275},{"gcamCode":"c16.13","gcamValue":5},{"gcamCode":"c16.130","gcamValue":39},{"gcamCode":"c16.131","gcamValue":91},{"gcamCode":"c16.132","gcamValue":3},{"gcamCode":"c16.133","gcamValue":16},{"gcamCode":"c16.134","gcamValue":242},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.137","gcamValue":5},{"gcamCode":"c16.138","gcamValue":53},{"gcamCode":"c16.139","gcamValue":80},{"gcamCode":"c16.14","gcamValue":4},{"gcamCode":"c16.140","gcamValue":58},{"gcamCode":"c16.141","gcamValue":1},{"gcamCode":"c16.142","gcamValue":5},{"gcamCode":"c16.143","gcamValue":8},{"gcamCode":"c16.144","gcamValue":3},{"gcamCode":"c16.145","gcamValue":140},{"gcamCode":"c16.146","gcamValue":118},{"gcamCode":"c16.147","gcamValue":7},{"gcamCode":"c16.148","gcamValue":1},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":8},{"gcamCode":"c16.151","gcamValue":6},{"gcamCode":"c16.152","gcamValue":7},{"gcamCode":"c16.153","gcamValue":113},{"gcamCode":"c16.154","gcamValue":1},{"gcamCode":"c16.155","gcamValue":12},{"gcamCode":"c16.156","gcamValue":9},{"gcamCode":"c16.157","gcamValue":45},{"gcamCode":"c16.158","gcamValue":9},{"gcamCode":"c16.159","gcamValue":159},{"gcamCode":"c16.16","gcamValue":33},{"gcamCode":"c16.160","gcamValue":2},{"gcamCode":"c16.161","gcamValue":183},{"gcamCode":"c16.162","gcamValue":79},{"gcamCode":"c16.163","gcamValue":126},{"gcamCode":"c16.164","gcamValue":31},{"gcamCode":"c16.165","gcamValue":15},{"gcamCode":"c16.168","gcamValue":12},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":8},{"gcamCode":"c16.19","gcamValue":36},{"gcamCode":"c16.2","gcamValue":121},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":13},{"gcamCode":"c16.22","gcamValue":31},{"gcamCode":"c16.23","gcamValue":14},{"gcamCode":"c16.24","gcamValue":18},{"gcamCode":"c16.26","gcamValue":293},{"gcamCode":"c16.27","gcamValue":13},{"gcamCode":"c16.28","gcamValue":12},{"gcamCode":"c16.29","gcamValue":5},{"gcamCode":"c16.3","gcamValue":41},{"gcamCode":"c16.30","gcamValue":14},{"gcamCode":"c16.31","gcamValue":150},{"gcamCode":"c16.32","gcamValue":17},{"gcamCode":"c16.33","gcamValue":173},{"gcamCode":"c16.34","gcamValue":16},{"gcamCode":"c16.35","gcamValue":117},{"gcamCode":"c16.36","gcamValue":17},{"gcamCode":"c16.37","gcamValue":207},{"gcamCode":"c16.38","gcamValue":59},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":163},{"gcamCode":"c16.41","gcamValue":87},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":5},{"gcamCode":"c16.45","gcamValue":96},{"gcamCode":"c16.46","gcamValue":22},{"gcamCode":"c16.47","gcamValue":298},{"gcamCode":"c16.48","gcamValue":18},{"gcamCode":"c16.49","gcamValue":15},{"gcamCode":"c16.5","gcamValue":6},{"gcamCode":"c16.50","gcamValue":10},{"gcamCode":"c16.51","gcamValue":18},{"gcamCode":"c16.52","gcamValue":72},{"gcamCode":"c16.53","gcamValue":18},{"gcamCode":"c16.54","gcamValue":4},{"gcamCode":"c16.55","gcamValue":6},{"gcamCode":"c16.56","gcamValue":38},{"gcamCode":"c16.57","gcamValue":1151},{"gcamCode":"c16.58","gcamValue":161},{"gcamCode":"c16.59","gcamValue":4},{"gcamCode":"c16.6","gcamValue":235},{"gcamCode":"c16.60","gcamValue":21},{"gcamCode":"c16.61","gcamValue":6},{"gcamCode":"c16.62","gcamValue":83},{"gcamCode":"c16.63","gcamValue":34},{"gcamCode":"c16.64","gcamValue":33},{"gcamCode":"c16.65","gcamValue":60},{"gcamCode":"c16.66","gcamValue":33},{"gcamCode":"c16.68","gcamValue":98},{"gcamCode":"c16.69","gcamValue":79},{"gcamCode":"c16.7","gcamValue":54},{"gcamCode":"c16.70","gcamValue":103},{"gcamCode":"c16.71","gcamValue":29},{"gcamCode":"c16.72","gcamValue":25},{"gcamCode":"c16.73","gcamValue":7},{"gcamCode":"c16.74","gcamValue":36},{"gcamCode":"c16.75","gcamValue":82},{"gcamCode":"c16.76","gcamValue":8},{"gcamCode":"c16.77","gcamValue":11},{"gcamCode":"c16.78","gcamValue":44},{"gcamCode":"c16.79","gcamValue":9},{"gcamCode":"c16.8","gcamValue":4},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":5},{"gcamCode":"c16.82","gcamValue":14},{"gcamCode":"c16.83","gcamValue":7},{"gcamCode":"c16.84","gcamValue":92},{"gcamCode":"c16.85","gcamValue":4},{"gcamCode":"c16.86","gcamValue":10},{"gcamCode":"c16.87","gcamValue":223},{"gcamCode":"c16.88","gcamValue":316},{"gcamCode":"c16.89","gcamValue":62},{"gcamCode":"c16.9","gcamValue":9},{"gcamCode":"c16.90","gcamValue":51},{"gcamCode":"c16.91","gcamValue":58},{"gcamCode":"c16.92","gcamValue":134},{"gcamCode":"c16.93","gcamValue":8},{"gcamCode":"c16.94","gcamValue":181},{"gcamCode":"c16.95","gcamValue":128},{"gcamCode":"c16.96","gcamValue":46},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":190},{"gcamCode":"c16.99","gcamValue":7},{"gcamCode":"c17.1","gcamValue":509},{"gcamCode":"c17.10","gcamValue":294},{"gcamCode":"c17.11","gcamValue":373},{"gcamCode":"c17.12","gcamValue":80},{"gcamCode":"c17.13","gcamValue":48},{"gcamCode":"c17.14","gcamValue":17},{"gcamCode":"c17.15","gcamValue":135},{"gcamCode":"c17.16","gcamValue":64},{"gcamCode":"c17.17","gcamValue":5},{"gcamCode":"c17.18","gcamValue":53},{"gcamCode":"c17.19","gcamValue":113},{"gcamCode":"c17.2","gcamValue":27},{"gcamCode":"c17.20","gcamValue":20},{"gcamCode":"c17.21","gcamValue":11},{"gcamCode":"c17.22","gcamValue":44},{"gcamCode":"c17.23","gcamValue":14},{"gcamCode":"c17.24","gcamValue":169},{"gcamCode":"c17.25","gcamValue":37},{"gcamCode":"c17.26","gcamValue":15},{"gcamCode":"c17.27","gcamValue":213},{"gcamCode":"c17.28","gcamValue":21},{"gcamCode":"c17.29","gcamValue":63},{"gcamCode":"c17.3","gcamValue":8},{"gcamCode":"c17.30","gcamValue":36},{"gcamCode":"c17.31","gcamValue":127},{"gcamCode":"c17.32","gcamValue":95},{"gcamCode":"c17.33","gcamValue":134},{"gcamCode":"c17.34","gcamValue":76},{"gcamCode":"c17.35","gcamValue":48},{"gcamCode":"c17.36","gcamValue":101},{"gcamCode":"c17.37","gcamValue":64},{"gcamCode":"c17.38","gcamValue":52},{"gcamCode":"c17.39","gcamValue":71},{"gcamCode":"c17.4","gcamValue":513},{"gcamCode":"c17.40","gcamValue":58},{"gcamCode":"c17.41","gcamValue":77},{"gcamCode":"c17.42","gcamValue":143},{"gcamCode":"c17.43","gcamValue":109},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":389},{"gcamCode":"c17.6","gcamValue":24},{"gcamCode":"c17.7","gcamValue":301},{"gcamCode":"c17.8","gcamValue":259},{"gcamCode":"c17.9","gcamValue":29},{"gcamCode":"c18.11","gcamValue":4},{"gcamCode":"c18.113","gcamValue":1},{"gcamCode":"c18.116","gcamValue":1},{"gcamCode":"c18.130","gcamValue":3},{"gcamCode":"c18.136","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.14","gcamValue":33},{"gcamCode":"c18.140","gcamValue":1},{"gcamCode":"c18.154","gcamValue":1},{"gcamCode":"c18.178","gcamValue":1},{"gcamCode":"c18.179","gcamValue":3},{"gcamCode":"c18.180","gcamValue":6},{"gcamCode":"c18.191","gcamValue":1},{"gcamCode":"c18.193","gcamValue":12},{"gcamCode":"c18.195","gcamValue":3},{"gcamCode":"c18.197","gcamValue":4},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.224","gcamValue":1},{"gcamCode":"c18.235","gcamValue":2},{"gcamCode":"c18.238","gcamValue":1},{"gcamCode":"c18.27","gcamValue":3},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":17},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.356","gcamValue":1},{"gcamCode":"c18.44","gcamValue":24},{"gcamCode":"c18.75","gcamValue":7},{"gcamCode":"c18.76","gcamValue":7},{"gcamCode":"c2.1","gcamValue":59},{"gcamCode":"c2.10","gcamValue":5},{"gcamCode":"c2.100","gcamValue":8},{"gcamCode":"c2.101","gcamValue":42},{"gcamCode":"c2.102","gcamValue":60},{"gcamCode":"c2.103","gcamValue":14},{"gcamCode":"c2.104","gcamValue":328},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":32},{"gcamCode":"c2.108","gcamValue":21},{"gcamCode":"c2.109","gcamValue":7},{"gcamCode":"c2.11","gcamValue":34},{"gcamCode":"c2.110","gcamValue":14},{"gcamCode":"c2.111","gcamValue":2},{"gcamCode":"c2.112","gcamValue":23},{"gcamCode":"c2.113","gcamValue":19},{"gcamCode":"c2.114","gcamValue":124},{"gcamCode":"c2.115","gcamValue":24},{"gcamCode":"c2.116","gcamValue":96},{"gcamCode":"c2.117","gcamValue":3},{"gcamCode":"c2.118","gcamValue":2},{"gcamCode":"c2.119","gcamValue":551},{"gcamCode":"c2.12","gcamValue":91},{"gcamCode":"c2.120","gcamValue":7},{"gcamCode":"c2.121","gcamValue":157},{"gcamCode":"c2.122","gcamValue":49},{"gcamCode":"c2.123","gcamValue":4},{"gcamCode":"c2.124","gcamValue":21},{"gcamCode":"c2.125","gcamValue":152},{"gcamCode":"c2.126","gcamValue":99},{"gcamCode":"c2.127","gcamValue":211},{"gcamCode":"c2.128","gcamValue":47},{"gcamCode":"c2.129","gcamValue":94},{"gcamCode":"c2.130","gcamValue":10},{"gcamCode":"c2.131","gcamValue":38},{"gcamCode":"c2.132","gcamValue":10},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":27},{"gcamCode":"c2.136","gcamValue":18},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":5},{"gcamCode":"c2.139","gcamValue":16},{"gcamCode":"c2.14","gcamValue":177},{"gcamCode":"c2.140","gcamValue":5},{"gcamCode":"c2.141","gcamValue":53},{"gcamCode":"c2.142","gcamValue":14},{"gcamCode":"c2.143","gcamValue":144},{"gcamCode":"c2.144","gcamValue":68},{"gcamCode":"c2.145","gcamValue":22},{"gcamCode":"c2.146","gcamValue":46},{"gcamCode":"c2.147","gcamValue":374},{"gcamCode":"c2.148","gcamValue":243},{"gcamCode":"c2.149","gcamValue":6},{"gcamCode":"c2.15","gcamValue":104},{"gcamCode":"c2.150","gcamValue":27},{"gcamCode":"c2.151","gcamValue":11},{"gcamCode":"c2.152","gcamValue":21},{"gcamCode":"c2.153","gcamValue":79},{"gcamCode":"c2.154","gcamValue":62},{"gcamCode":"c2.155","gcamValue":219},{"gcamCode":"c2.156","gcamValue":75},{"gcamCode":"c2.157","gcamValue":194},{"gcamCode":"c2.158","gcamValue":211},{"gcamCode":"c2.159","gcamValue":24},{"gcamCode":"c2.16","gcamValue":1},{"gcamCode":"c2.160","gcamValue":135},{"gcamCode":"c2.162","gcamValue":38},{"gcamCode":"c2.163","gcamValue":7},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":43},{"gcamCode":"c2.167","gcamValue":9},{"gcamCode":"c2.168","gcamValue":2},{"gcamCode":"c2.169","gcamValue":25},{"gcamCode":"c2.17","gcamValue":42},{"gcamCode":"c2.170","gcamValue":36},{"gcamCode":"c2.171","gcamValue":10},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":52},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":6},{"gcamCode":"c2.176","gcamValue":17},{"gcamCode":"c2.177","gcamValue":132},{"gcamCode":"c2.178","gcamValue":8},{"gcamCode":"c2.179","gcamValue":88},{"gcamCode":"c2.18","gcamValue":78},{"gcamCode":"c2.180","gcamValue":80},{"gcamCode":"c2.181","gcamValue":87},{"gcamCode":"c2.182","gcamValue":9},{"gcamCode":"c2.183","gcamValue":97},{"gcamCode":"c2.185","gcamValue":506},{"gcamCode":"c2.186","gcamValue":56},{"gcamCode":"c2.187","gcamValue":152},{"gcamCode":"c2.188","gcamValue":17},{"gcamCode":"c2.189","gcamValue":17},{"gcamCode":"c2.19","gcamValue":17},{"gcamCode":"c2.190","gcamValue":2},{"gcamCode":"c2.191","gcamValue":21},{"gcamCode":"c2.192","gcamValue":45},{"gcamCode":"c2.193","gcamValue":128},{"gcamCode":"c2.194","gcamValue":10},{"gcamCode":"c2.195","gcamValue":213},{"gcamCode":"c2.196","gcamValue":24},{"gcamCode":"c2.197","gcamValue":25},{"gcamCode":"c2.198","gcamValue":186},{"gcamCode":"c2.199","gcamValue":54},{"gcamCode":"c2.2","gcamValue":20},{"gcamCode":"c2.20","gcamValue":13},{"gcamCode":"c2.200","gcamValue":21},{"gcamCode":"c2.201","gcamValue":16},{"gcamCode":"c2.203","gcamValue":121},{"gcamCode":"c2.204","gcamValue":154},{"gcamCode":"c2.205","gcamValue":42},{"gcamCode":"c2.206","gcamValue":23},{"gcamCode":"c2.207","gcamValue":24},{"gcamCode":"c2.209","gcamValue":64},{"gcamCode":"c2.21","gcamValue":4},{"gcamCode":"c2.210","gcamValue":229},{"gcamCode":"c2.211","gcamValue":9},{"gcamCode":"c2.213","gcamValue":35},{"gcamCode":"c2.214","gcamValue":61},{"gcamCode":"c2.215","gcamValue":9},{"gcamCode":"c2.216","gcamValue":4},{"gcamCode":"c2.217","gcamValue":24},{"gcamCode":"c2.218","gcamValue":9},{"gcamCode":"c2.219","gcamValue":2},{"gcamCode":"c2.220","gcamValue":46},{"gcamCode":"c2.221","gcamValue":28},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":30},{"gcamCode":"c2.224","gcamValue":3},{"gcamCode":"c2.225","gcamValue":64},{"gcamCode":"c2.226","gcamValue":55},{"gcamCode":"c2.227","gcamValue":8},{"gcamCode":"c2.228","gcamValue":5},{"gcamCode":"c2.23","gcamValue":66},{"gcamCode":"c2.24","gcamValue":7},{"gcamCode":"c2.25","gcamValue":142},{"gcamCode":"c2.26","gcamValue":181},{"gcamCode":"c2.27","gcamValue":180},{"gcamCode":"c2.28","gcamValue":41},{"gcamCode":"c2.3","gcamValue":1},{"gcamCode":"c2.30","gcamValue":95},{"gcamCode":"c2.31","gcamValue":100},{"gcamCode":"c2.32","gcamValue":25},{"gcamCode":"c2.33","gcamValue":16},{"gcamCode":"c2.34","gcamValue":144},{"gcamCode":"c2.35","gcamValue":67},{"gcamCode":"c2.36","gcamValue":45},{"gcamCode":"c2.37","gcamValue":58},{"gcamCode":"c2.38","gcamValue":7},{"gcamCode":"c2.39","gcamValue":332},{"gcamCode":"c2.4","gcamValue":11},{"gcamCode":"c2.40","gcamValue":9},{"gcamCode":"c2.42","gcamValue":6},{"gcamCode":"c2.43","gcamValue":1},{"gcamCode":"c2.44","gcamValue":125},{"gcamCode":"c2.45","gcamValue":63},{"gcamCode":"c2.46","gcamValue":200},{"gcamCode":"c2.47","gcamValue":55},{"gcamCode":"c2.48","gcamValue":40},{"gcamCode":"c2.49","gcamValue":6},{"gcamCode":"c2.5","gcamValue":7},{"gcamCode":"c2.50","gcamValue":38},{"gcamCode":"c2.52","gcamValue":176},{"gcamCode":"c2.53","gcamValue":10},{"gcamCode":"c2.54","gcamValue":203},{"gcamCode":"c2.55","gcamValue":25},{"gcamCode":"c2.56","gcamValue":21},{"gcamCode":"c2.57","gcamValue":41},{"gcamCode":"c2.58","gcamValue":62},{"gcamCode":"c2.59","gcamValue":5},{"gcamCode":"c2.6","gcamValue":36},{"gcamCode":"c2.60","gcamValue":3},{"gcamCode":"c2.61","gcamValue":21},{"gcamCode":"c2.62","gcamValue":94},{"gcamCode":"c2.64","gcamValue":63},{"gcamCode":"c2.65","gcamValue":9},{"gcamCode":"c2.66","gcamValue":7},{"gcamCode":"c2.67","gcamValue":3},{"gcamCode":"c2.68","gcamValue":6},{"gcamCode":"c2.69","gcamValue":1},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":8},{"gcamCode":"c2.71","gcamValue":11},{"gcamCode":"c2.73","gcamValue":37},{"gcamCode":"c2.74","gcamValue":5},{"gcamCode":"c2.75","gcamValue":336},{"gcamCode":"c2.76","gcamValue":1419},{"gcamCode":"c2.77","gcamValue":182},{"gcamCode":"c2.78","gcamValue":359},{"gcamCode":"c2.79","gcamValue":79},{"gcamCode":"c2.80","gcamValue":268},{"gcamCode":"c2.81","gcamValue":42},{"gcamCode":"c2.82","gcamValue":119},{"gcamCode":"c2.83","gcamValue":38},{"gcamCode":"c2.84","gcamValue":23},{"gcamCode":"c2.85","gcamValue":2},{"gcamCode":"c2.86","gcamValue":104},{"gcamCode":"c2.87","gcamValue":28},{"gcamCode":"c2.88","gcamValue":36},{"gcamCode":"c2.89","gcamValue":77},{"gcamCode":"c2.9","gcamValue":34},{"gcamCode":"c2.90","gcamValue":34},{"gcamCode":"c2.91","gcamValue":5},{"gcamCode":"c2.92","gcamValue":5},{"gcamCode":"c2.93","gcamValue":86},{"gcamCode":"c2.94","gcamValue":5},{"gcamCode":"c2.95","gcamValue":358},{"gcamCode":"c2.96","gcamValue":8},{"gcamCode":"c2.97","gcamValue":22},{"gcamCode":"c2.98","gcamValue":127},{"gcamCode":"c2.99","gcamValue":26},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.10","gcamValue":2},{"gcamCode":"c25.11","gcamValue":9},{"gcamCode":"c25.2","gcamValue":3},{"gcamCode":"c25.3","gcamValue":2},{"gcamCode":"c25.4","gcamValue":4},{"gcamCode":"c25.5","gcamValue":11},{"gcamCode":"c25.6","gcamValue":1},{"gcamCode":"c25.7","gcamValue":5},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":135},{"gcamCode":"c3.2","gcamValue":128},{"gcamCode":"c3.3","gcamValue":1},{"gcamCode":"c3.4","gcamValue":3},{"gcamCode":"c35.1","gcamValue":34},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.11","gcamValue":4},{"gcamCode":"c35.12","gcamValue":18},{"gcamCode":"c35.13","gcamValue":5},{"gcamCode":"c35.14","gcamValue":34},{"gcamCode":"c35.15","gcamValue":45},{"gcamCode":"c35.17","gcamValue":6},{"gcamCode":"c35.18","gcamValue":3},{"gcamCode":"c35.2","gcamValue":4},{"gcamCode":"c35.20","gcamValue":43},{"gcamCode":"c35.24","gcamValue":16},{"gcamCode":"c35.25","gcamValue":8},{"gcamCode":"c35.28","gcamValue":1},{"gcamCode":"c35.29","gcamValue":3},{"gcamCode":"c35.3","gcamValue":2},{"gcamCode":"c35.30","gcamValue":5},{"gcamCode":"c35.31","gcamValue":102},{"gcamCode":"c35.32","gcamValue":93},{"gcamCode":"c35.33","gcamValue":76},{"gcamCode":"c35.4","gcamValue":7},{"gcamCode":"c35.5","gcamValue":12},{"gcamCode":"c35.6","gcamValue":5},{"gcamCode":"c35.7","gcamValue":10},{"gcamCode":"c35.8","gcamValue":3},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.10","gcamValue":2},{"gcamCode":"c39.12","gcamValue":3},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.14","gcamValue":4},{"gcamCode":"c39.17","gcamValue":10},{"gcamCode":"c39.18","gcamValue":9},{"gcamCode":"c39.19","gcamValue":18},{"gcamCode":"c39.2","gcamValue":28},{"gcamCode":"c39.20","gcamValue":1},{"gcamCode":"c39.21","gcamValue":3},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":106},{"gcamCode":"c39.30","gcamValue":4},{"gcamCode":"c39.32","gcamValue":4},{"gcamCode":"c39.36","gcamValue":24},{"gcamCode":"c39.37","gcamValue":54},{"gcamCode":"c39.38","gcamValue":4},{"gcamCode":"c39.39","gcamValue":14},{"gcamCode":"c39.4","gcamValue":64},{"gcamCode":"c39.40","gcamValue":4},{"gcamCode":"c39.41","gcamValue":29},{"gcamCode":"c39.5","gcamValue":17},{"gcamCode":"c39.6","gcamValue":10},{"gcamCode":"c39.7","gcamValue":2},{"gcamCode":"c39.8","gcamValue":4},{"gcamCode":"c39.9","gcamValue":10},{"gcamCode":"c4.1","gcamValue":1},{"gcamCode":"c4.10","gcamValue":1},{"gcamCode":"c4.13","gcamValue":4},{"gcamCode":"c4.14","gcamValue":1},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.2","gcamValue":6},{"gcamCode":"c4.20","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":78},{"gcamCode":"c4.28","gcamValue":2},{"gcamCode":"c40.2","gcamValue":1},{"gcamCode":"c40.3","gcamValue":1},{"gcamCode":"c40.5","gcamValue":2},{"gcamCode":"c40.6","gcamValue":5},{"gcamCode":"c40.7","gcamValue":13},{"gcamCode":"c40.8","gcamValue":7},{"gcamCode":"c41.1","gcamValue":77},{"gcamCode":"c5.10","gcamValue":151},{"gcamCode":"c5.11","gcamValue":33},{"gcamCode":"c5.12","gcamValue":271},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.14","gcamValue":3},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":7},{"gcamCode":"c5.17","gcamValue":15},{"gcamCode":"c5.18","gcamValue":7},{"gcamCode":"c5.19","gcamValue":21},{"gcamCode":"c5.2","gcamValue":3},{"gcamCode":"c5.20","gcamValue":33},{"gcamCode":"c5.21","gcamValue":61},{"gcamCode":"c5.22","gcamValue":34},{"gcamCode":"c5.23","gcamValue":38},{"gcamCode":"c5.24","gcamValue":16},{"gcamCode":"c5.25","gcamValue":29},{"gcamCode":"c5.26","gcamValue":50},{"gcamCode":"c5.27","gcamValue":11},{"gcamCode":"c5.28","gcamValue":33},{"gcamCode":"c5.29","gcamValue":40},{"gcamCode":"c5.3","gcamValue":11},{"gcamCode":"c5.30","gcamValue":245},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":24},{"gcamCode":"c5.33","gcamValue":4},{"gcamCode":"c5.34","gcamValue":40},{"gcamCode":"c5.35","gcamValue":90},{"gcamCode":"c5.36","gcamValue":136},{"gcamCode":"c5.37","gcamValue":30},{"gcamCode":"c5.39","gcamValue":4},{"gcamCode":"c5.4","gcamValue":10},{"gcamCode":"c5.40","gcamValue":225},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":65},{"gcamCode":"c5.44","gcamValue":35},{"gcamCode":"c5.45","gcamValue":64},{"gcamCode":"c5.46","gcamValue":334},{"gcamCode":"c5.47","gcamValue":78},{"gcamCode":"c5.48","gcamValue":10},{"gcamCode":"c5.49","gcamValue":238},{"gcamCode":"c5.5","gcamValue":1},{"gcamCode":"c5.50","gcamValue":270},{"gcamCode":"c5.51","gcamValue":184},{"gcamCode":"c5.52","gcamValue":328},{"gcamCode":"c5.53","gcamValue":158},{"gcamCode":"c5.54","gcamValue":126},{"gcamCode":"c5.55","gcamValue":13},{"gcamCode":"c5.56","gcamValue":21},{"gcamCode":"c5.57","gcamValue":12},{"gcamCode":"c5.58","gcamValue":23},{"gcamCode":"c5.59","gcamValue":20},{"gcamCode":"c5.6","gcamValue":99},{"gcamCode":"c5.60","gcamValue":89},{"gcamCode":"c5.61","gcamValue":215},{"gcamCode":"c5.62","gcamValue":1015},{"gcamCode":"c5.7","gcamValue":39},{"gcamCode":"c5.8","gcamValue":33},{"gcamCode":"c5.9","gcamValue":96},{"gcamCode":"c6.1","gcamValue":13},{"gcamCode":"c6.2","gcamValue":18},{"gcamCode":"c6.3","gcamValue":5},{"gcamCode":"c6.4","gcamValue":66},{"gcamCode":"c6.5","gcamValue":24},{"gcamCode":"c6.6","gcamValue":12},{"gcamCode":"c7.1","gcamValue":128},{"gcamCode":"c7.2","gcamValue":92},{"gcamCode":"c8.1","gcamValue":26},{"gcamCode":"c8.10","gcamValue":11},{"gcamCode":"c8.11","gcamValue":7},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.16","gcamValue":3},{"gcamCode":"c8.17","gcamValue":8},{"gcamCode":"c8.18","gcamValue":1},{"gcamCode":"c8.2","gcamValue":32},{"gcamCode":"c8.20","gcamValue":2},{"gcamCode":"c8.21","gcamValue":2},{"gcamCode":"c8.22","gcamValue":5},{"gcamCode":"c8.23","gcamValue":58},{"gcamCode":"c8.24","gcamValue":2},{"gcamCode":"c8.25","gcamValue":9},{"gcamCode":"c8.26","gcamValue":4},{"gcamCode":"c8.27","gcamValue":5},{"gcamCode":"c8.29","gcamValue":2},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.30","gcamValue":7},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.33","gcamValue":3},{"gcamCode":"c8.34","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":25},{"gcamCode":"c8.37","gcamValue":73},{"gcamCode":"c8.38","gcamValue":31},{"gcamCode":"c8.39","gcamValue":4},{"gcamCode":"c8.4","gcamValue":82},{"gcamCode":"c8.40","gcamValue":14},{"gcamCode":"c8.41","gcamValue":18},{"gcamCode":"c8.42","gcamValue":71},{"gcamCode":"c8.43","gcamValue":59},{"gcamCode":"c8.5","gcamValue":12},{"gcamCode":"c8.6","gcamValue":4},{"gcamCode":"c8.8","gcamValue":3},{"gcamCode":"c8.9","gcamValue":2},{"gcamCode":"c9.1","gcamValue":103},{"gcamCode":"c9.10","gcamValue":21},{"gcamCode":"c9.100","gcamValue":3},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":6},{"gcamCode":"c9.1009","gcamValue":1},{"gcamCode":"c9.1010","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":5},{"gcamCode":"c9.1012","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":11},{"gcamCode":"c9.1015","gcamValue":3},{"gcamCode":"c9.1017","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":19},{"gcamCode":"c9.1021","gcamValue":20},{"gcamCode":"c9.1022","gcamValue":1},{"gcamCode":"c9.1023","gcamValue":4},{"gcamCode":"c9.1024","gcamValue":3},{"gcamCode":"c9.1025","gcamValue":5},{"gcamCode":"c9.1027","gcamValue":1},{"gcamCode":"c9.1029","gcamValue":18},{"gcamCode":"c9.1030","gcamValue":24},{"gcamCode":"c9.1033","gcamValue":3},{"gcamCode":"c9.1034","gcamValue":5},{"gcamCode":"c9.1035","gcamValue":5},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.104","gcamValue":6},{"gcamCode":"c9.1040","gcamValue":21},{"gcamCode":"c9.1041","gcamValue":5},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.106","gcamValue":1},{"gcamCode":"c9.107","gcamValue":30},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":23},{"gcamCode":"c9.11","gcamValue":2},{"gcamCode":"c9.110","gcamValue":5},{"gcamCode":"c9.111","gcamValue":30},{"gcamCode":"c9.113","gcamValue":5},{"gcamCode":"c9.115","gcamValue":3},{"gcamCode":"c9.116","gcamValue":9},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":9},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.12","gcamValue":5},{"gcamCode":"c9.120","gcamValue":2},{"gcamCode":"c9.122","gcamValue":21},{"gcamCode":"c9.123","gcamValue":6},{"gcamCode":"c9.124","gcamValue":2},{"gcamCode":"c9.125","gcamValue":9},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":3},{"gcamCode":"c9.128","gcamValue":125},{"gcamCode":"c9.129","gcamValue":9},{"gcamCode":"c9.13","gcamValue":1},{"gcamCode":"c9.130","gcamValue":10},{"gcamCode":"c9.131","gcamValue":4},{"gcamCode":"c9.132","gcamValue":4},{"gcamCode":"c9.134","gcamValue":10},{"gcamCode":"c9.135","gcamValue":4},{"gcamCode":"c9.137","gcamValue":4},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.14","gcamValue":6},{"gcamCode":"c9.140","gcamValue":2},{"gcamCode":"c9.141","gcamValue":14},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":17},{"gcamCode":"c9.144","gcamValue":3},{"gcamCode":"c9.145","gcamValue":11},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":7},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":27},{"gcamCode":"c9.150","gcamValue":4},{"gcamCode":"c9.151","gcamValue":5},{"gcamCode":"c9.152","gcamValue":1},{"gcamCode":"c9.153","gcamValue":2},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.157","gcamValue":4},{"gcamCode":"c9.158","gcamValue":87},{"gcamCode":"c9.159","gcamValue":5},{"gcamCode":"c9.16","gcamValue":7},{"gcamCode":"c9.160","gcamValue":22},{"gcamCode":"c9.161","gcamValue":8},{"gcamCode":"c9.162","gcamValue":40},{"gcamCode":"c9.163","gcamValue":2},{"gcamCode":"c9.164","gcamValue":9},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":28},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":14},{"gcamCode":"c9.169","gcamValue":12},{"gcamCode":"c9.17","gcamValue":2},{"gcamCode":"c9.170","gcamValue":2},{"gcamCode":"c9.171","gcamValue":1},{"gcamCode":"c9.173","gcamValue":6},{"gcamCode":"c9.174","gcamValue":9},{"gcamCode":"c9.175","gcamValue":9},{"gcamCode":"c9.176","gcamValue":3},{"gcamCode":"c9.177","gcamValue":16},{"gcamCode":"c9.178","gcamValue":7},{"gcamCode":"c9.179","gcamValue":4},{"gcamCode":"c9.18","gcamValue":28},{"gcamCode":"c9.180","gcamValue":7},{"gcamCode":"c9.181","gcamValue":12},{"gcamCode":"c9.182","gcamValue":23},{"gcamCode":"c9.184","gcamValue":41},{"gcamCode":"c9.185","gcamValue":5},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":6},{"gcamCode":"c9.188","gcamValue":36},{"gcamCode":"c9.189","gcamValue":7},{"gcamCode":"c9.19","gcamValue":3},{"gcamCode":"c9.190","gcamValue":6},{"gcamCode":"c9.191","gcamValue":5},{"gcamCode":"c9.192","gcamValue":14},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":30},{"gcamCode":"c9.196","gcamValue":6},{"gcamCode":"c9.197","gcamValue":15},{"gcamCode":"c9.198","gcamValue":8},{"gcamCode":"c9.199","gcamValue":9},{"gcamCode":"c9.2","gcamValue":5},{"gcamCode":"c9.20","gcamValue":11},{"gcamCode":"c9.200","gcamValue":15},{"gcamCode":"c9.201","gcamValue":20},{"gcamCode":"c9.202","gcamValue":10},{"gcamCode":"c9.203","gcamValue":9},{"gcamCode":"c9.204","gcamValue":4},{"gcamCode":"c9.205","gcamValue":14},{"gcamCode":"c9.206","gcamValue":18},{"gcamCode":"c9.207","gcamValue":4},{"gcamCode":"c9.208","gcamValue":2},{"gcamCode":"c9.209","gcamValue":9},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.212","gcamValue":22},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":20},{"gcamCode":"c9.215","gcamValue":9},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.217","gcamValue":6},{"gcamCode":"c9.219","gcamValue":5},{"gcamCode":"c9.220","gcamValue":5},{"gcamCode":"c9.221","gcamValue":3},{"gcamCode":"c9.222","gcamValue":18},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":24},{"gcamCode":"c9.227","gcamValue":5},{"gcamCode":"c9.229","gcamValue":6},{"gcamCode":"c9.23","gcamValue":28},{"gcamCode":"c9.230","gcamValue":3},{"gcamCode":"c9.231","gcamValue":11},{"gcamCode":"c9.232","gcamValue":4},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.234","gcamValue":2},{"gcamCode":"c9.235","gcamValue":12},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":12},{"gcamCode":"c9.238","gcamValue":5},{"gcamCode":"c9.239","gcamValue":2},{"gcamCode":"c9.24","gcamValue":7},{"gcamCode":"c9.241","gcamValue":4},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":5},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":7},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":5},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.25","gcamValue":5},{"gcamCode":"c9.250","gcamValue":3},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":2},{"gcamCode":"c9.256","gcamValue":4},{"gcamCode":"c9.257","gcamValue":1},{"gcamCode":"c9.258","gcamValue":18},{"gcamCode":"c9.259","gcamValue":22},{"gcamCode":"c9.26","gcamValue":3},{"gcamCode":"c9.260","gcamValue":5},{"gcamCode":"c9.261","gcamValue":4},{"gcamCode":"c9.262","gcamValue":11},{"gcamCode":"c9.263","gcamValue":8},{"gcamCode":"c9.264","gcamValue":1},{"gcamCode":"c9.265","gcamValue":11},{"gcamCode":"c9.266","gcamValue":8},{"gcamCode":"c9.267","gcamValue":7},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":14},{"gcamCode":"c9.270","gcamValue":13},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.274","gcamValue":4},{"gcamCode":"c9.275","gcamValue":6},{"gcamCode":"c9.276","gcamValue":11},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.278","gcamValue":1},{"gcamCode":"c9.279","gcamValue":4},{"gcamCode":"c9.28","gcamValue":16},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":7},{"gcamCode":"c9.284","gcamValue":9},{"gcamCode":"c9.285","gcamValue":20},{"gcamCode":"c9.286","gcamValue":7},{"gcamCode":"c9.287","gcamValue":7},{"gcamCode":"c9.288","gcamValue":8},{"gcamCode":"c9.289","gcamValue":18},{"gcamCode":"c9.29","gcamValue":5},{"gcamCode":"c9.290","gcamValue":5},{"gcamCode":"c9.291","gcamValue":8},{"gcamCode":"c9.292","gcamValue":2},{"gcamCode":"c9.293","gcamValue":20},{"gcamCode":"c9.294","gcamValue":10},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.298","gcamValue":3},{"gcamCode":"c9.3","gcamValue":86},{"gcamCode":"c9.30","gcamValue":6},{"gcamCode":"c9.300","gcamValue":1},{"gcamCode":"c9.301","gcamValue":3},{"gcamCode":"c9.302","gcamValue":11},{"gcamCode":"c9.303","gcamValue":6},{"gcamCode":"c9.304","gcamValue":7},{"gcamCode":"c9.305","gcamValue":10},{"gcamCode":"c9.306","gcamValue":4},{"gcamCode":"c9.307","gcamValue":4},{"gcamCode":"c9.308","gcamValue":6},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.312","gcamValue":4},{"gcamCode":"c9.314","gcamValue":2},{"gcamCode":"c9.315","gcamValue":1},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":3},{"gcamCode":"c9.318","gcamValue":1},{"gcamCode":"c9.319","gcamValue":3},{"gcamCode":"c9.32","gcamValue":13},{"gcamCode":"c9.320","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":3},{"gcamCode":"c9.324","gcamValue":6},{"gcamCode":"c9.325","gcamValue":7},{"gcamCode":"c9.326","gcamValue":2},{"gcamCode":"c9.328","gcamValue":5},{"gcamCode":"c9.329","gcamValue":6},{"gcamCode":"c9.33","gcamValue":52},{"gcamCode":"c9.330","gcamValue":7},{"gcamCode":"c9.331","gcamValue":9},{"gcamCode":"c9.333","gcamValue":7},{"gcamCode":"c9.334","gcamValue":4},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.339","gcamValue":2},{"gcamCode":"c9.34","gcamValue":46},{"gcamCode":"c9.340","gcamValue":4},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.35","gcamValue":22},{"gcamCode":"c9.351","gcamValue":5},{"gcamCode":"c9.352","gcamValue":4},{"gcamCode":"c9.353","gcamValue":5},{"gcamCode":"c9.354","gcamValue":6},{"gcamCode":"c9.358","gcamValue":13},{"gcamCode":"c9.359","gcamValue":1},{"gcamCode":"c9.36","gcamValue":8},{"gcamCode":"c9.360","gcamValue":3},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.365","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.37","gcamValue":10},{"gcamCode":"c9.370","gcamValue":5},{"gcamCode":"c9.371","gcamValue":5},{"gcamCode":"c9.372","gcamValue":14},{"gcamCode":"c9.373","gcamValue":18},{"gcamCode":"c9.374","gcamValue":7},{"gcamCode":"c9.377","gcamValue":1},{"gcamCode":"c9.378","gcamValue":20},{"gcamCode":"c9.38","gcamValue":7},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":40},{"gcamCode":"c9.384","gcamValue":24},{"gcamCode":"c9.385","gcamValue":1},{"gcamCode":"c9.386","gcamValue":4},{"gcamCode":"c9.387","gcamValue":3},{"gcamCode":"c9.388","gcamValue":2},{"gcamCode":"c9.389","gcamValue":3},{"gcamCode":"c9.39","gcamValue":42},{"gcamCode":"c9.390","gcamValue":2},{"gcamCode":"c9.391","gcamValue":3},{"gcamCode":"c9.394","gcamValue":4},{"gcamCode":"c9.396","gcamValue":8},{"gcamCode":"c9.398","gcamValue":2},{"gcamCode":"c9.4","gcamValue":12},{"gcamCode":"c9.40","gcamValue":9},{"gcamCode":"c9.400","gcamValue":3},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.404","gcamValue":1},{"gcamCode":"c9.405","gcamValue":3},{"gcamCode":"c9.409","gcamValue":24},{"gcamCode":"c9.412","gcamValue":2},{"gcamCode":"c9.415","gcamValue":2},{"gcamCode":"c9.416","gcamValue":4},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":3},{"gcamCode":"c9.42","gcamValue":8},{"gcamCode":"c9.420","gcamValue":2},{"gcamCode":"c9.422","gcamValue":4},{"gcamCode":"c9.423","gcamValue":7},{"gcamCode":"c9.424","gcamValue":5},{"gcamCode":"c9.427","gcamValue":5},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.429","gcamValue":4},{"gcamCode":"c9.430","gcamValue":9},{"gcamCode":"c9.431","gcamValue":2},{"gcamCode":"c9.432","gcamValue":5},{"gcamCode":"c9.433","gcamValue":5},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.44","gcamValue":18},{"gcamCode":"c9.440","gcamValue":9},{"gcamCode":"c9.441","gcamValue":2},{"gcamCode":"c9.442","gcamValue":1},{"gcamCode":"c9.446","gcamValue":5},{"gcamCode":"c9.447","gcamValue":7},{"gcamCode":"c9.448","gcamValue":6},{"gcamCode":"c9.45","gcamValue":5},{"gcamCode":"c9.450","gcamValue":6},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.455","gcamValue":1},{"gcamCode":"c9.456","gcamValue":1},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.458","gcamValue":12},{"gcamCode":"c9.459","gcamValue":28},{"gcamCode":"c9.46","gcamValue":7},{"gcamCode":"c9.460","gcamValue":8},{"gcamCode":"c9.461","gcamValue":7},{"gcamCode":"c9.462","gcamValue":4},{"gcamCode":"c9.463","gcamValue":15},{"gcamCode":"c9.464","gcamValue":3},{"gcamCode":"c9.465","gcamValue":6},{"gcamCode":"c9.466","gcamValue":10},{"gcamCode":"c9.467","gcamValue":2},{"gcamCode":"c9.468","gcamValue":11},{"gcamCode":"c9.47","gcamValue":11},{"gcamCode":"c9.470","gcamValue":3},{"gcamCode":"c9.472","gcamValue":7},{"gcamCode":"c9.473","gcamValue":10},{"gcamCode":"c9.474","gcamValue":15},{"gcamCode":"c9.476","gcamValue":24},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":8},{"gcamCode":"c9.479","gcamValue":30},{"gcamCode":"c9.48","gcamValue":27},{"gcamCode":"c9.480","gcamValue":45},{"gcamCode":"c9.481","gcamValue":5},{"gcamCode":"c9.482","gcamValue":12},{"gcamCode":"c9.485","gcamValue":3},{"gcamCode":"c9.488","gcamValue":9},{"gcamCode":"c9.489","gcamValue":10},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":25},{"gcamCode":"c9.492","gcamValue":3},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":14},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.496","gcamValue":21},{"gcamCode":"c9.497","gcamValue":5},{"gcamCode":"c9.498","gcamValue":40},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.5","gcamValue":5},{"gcamCode":"c9.50","gcamValue":2},{"gcamCode":"c9.500","gcamValue":8},{"gcamCode":"c9.501","gcamValue":16},{"gcamCode":"c9.502","gcamValue":13},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":9},{"gcamCode":"c9.507","gcamValue":19},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":79},{"gcamCode":"c9.512","gcamValue":10},{"gcamCode":"c9.513","gcamValue":38},{"gcamCode":"c9.514","gcamValue":4},{"gcamCode":"c9.517","gcamValue":28},{"gcamCode":"c9.518","gcamValue":10},{"gcamCode":"c9.519","gcamValue":23},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":24},{"gcamCode":"c9.522","gcamValue":53},{"gcamCode":"c9.523","gcamValue":7},{"gcamCode":"c9.524","gcamValue":2},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":5},{"gcamCode":"c9.528","gcamValue":3},{"gcamCode":"c9.53","gcamValue":9},{"gcamCode":"c9.530","gcamValue":8},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":2},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.536","gcamValue":1},{"gcamCode":"c9.537","gcamValue":14},{"gcamCode":"c9.539","gcamValue":22},{"gcamCode":"c9.54","gcamValue":11},{"gcamCode":"c9.540","gcamValue":7},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.542","gcamValue":4},{"gcamCode":"c9.544","gcamValue":2},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":4},{"gcamCode":"c9.547","gcamValue":4},{"gcamCode":"c9.549","gcamValue":7},{"gcamCode":"c9.55","gcamValue":21},{"gcamCode":"c9.550","gcamValue":6},{"gcamCode":"c9.551","gcamValue":12},{"gcamCode":"c9.553","gcamValue":5},{"gcamCode":"c9.554","gcamValue":15},{"gcamCode":"c9.555","gcamValue":2},{"gcamCode":"c9.556","gcamValue":13},{"gcamCode":"c9.557","gcamValue":27},{"gcamCode":"c9.559","gcamValue":6},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":35},{"gcamCode":"c9.561","gcamValue":17},{"gcamCode":"c9.562","gcamValue":12},{"gcamCode":"c9.563","gcamValue":2},{"gcamCode":"c9.564","gcamValue":6},{"gcamCode":"c9.565","gcamValue":2},{"gcamCode":"c9.566","gcamValue":5},{"gcamCode":"c9.567","gcamValue":10},{"gcamCode":"c9.568","gcamValue":10},{"gcamCode":"c9.569","gcamValue":6},{"gcamCode":"c9.57","gcamValue":3},{"gcamCode":"c9.570","gcamValue":20},{"gcamCode":"c9.571","gcamValue":12},{"gcamCode":"c9.572","gcamValue":1},{"gcamCode":"c9.573","gcamValue":2},{"gcamCode":"c9.574","gcamValue":4},{"gcamCode":"c9.575","gcamValue":18},{"gcamCode":"c9.576","gcamValue":13},{"gcamCode":"c9.579","gcamValue":101},{"gcamCode":"c9.580","gcamValue":6},{"gcamCode":"c9.581","gcamValue":5},{"gcamCode":"c9.582","gcamValue":1},{"gcamCode":"c9.583","gcamValue":5},{"gcamCode":"c9.585","gcamValue":7},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.587","gcamValue":5},{"gcamCode":"c9.588","gcamValue":12},{"gcamCode":"c9.589","gcamValue":12},{"gcamCode":"c9.59","gcamValue":11},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.591","gcamValue":3},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.593","gcamValue":2},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.595","gcamValue":1},{"gcamCode":"c9.597","gcamValue":5},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":6},{"gcamCode":"c9.600","gcamValue":3},{"gcamCode":"c9.601","gcamValue":9},{"gcamCode":"c9.602","gcamValue":7},{"gcamCode":"c9.603","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.605","gcamValue":2},{"gcamCode":"c9.606","gcamValue":7},{"gcamCode":"c9.607","gcamValue":17},{"gcamCode":"c9.609","gcamValue":2},{"gcamCode":"c9.61","gcamValue":8},{"gcamCode":"c9.611","gcamValue":16},{"gcamCode":"c9.613","gcamValue":8},{"gcamCode":"c9.615","gcamValue":5},{"gcamCode":"c9.616","gcamValue":6},{"gcamCode":"c9.617","gcamValue":2},{"gcamCode":"c9.618","gcamValue":4},{"gcamCode":"c9.619","gcamValue":8},{"gcamCode":"c9.62","gcamValue":11},{"gcamCode":"c9.620","gcamValue":5},{"gcamCode":"c9.621","gcamValue":11},{"gcamCode":"c9.622","gcamValue":4},{"gcamCode":"c9.624","gcamValue":6},{"gcamCode":"c9.625","gcamValue":8},{"gcamCode":"c9.626","gcamValue":3},{"gcamCode":"c9.627","gcamValue":21},{"gcamCode":"c9.629","gcamValue":13},{"gcamCode":"c9.63","gcamValue":2},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":13},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":23},{"gcamCode":"c9.636","gcamValue":2},{"gcamCode":"c9.638","gcamValue":6},{"gcamCode":"c9.64","gcamValue":19},{"gcamCode":"c9.640","gcamValue":23},{"gcamCode":"c9.641","gcamValue":2},{"gcamCode":"c9.642","gcamValue":54},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.645","gcamValue":3},{"gcamCode":"c9.646","gcamValue":15},{"gcamCode":"c9.647","gcamValue":5},{"gcamCode":"c9.648","gcamValue":52},{"gcamCode":"c9.649","gcamValue":13},{"gcamCode":"c9.650","gcamValue":10},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.653","gcamValue":96},{"gcamCode":"c9.654","gcamValue":30},{"gcamCode":"c9.655","gcamValue":13},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":12},{"gcamCode":"c9.66","gcamValue":15},{"gcamCode":"c9.660","gcamValue":17},{"gcamCode":"c9.661","gcamValue":4},{"gcamCode":"c9.663","gcamValue":8},{"gcamCode":"c9.664","gcamValue":14},{"gcamCode":"c9.665","gcamValue":3},{"gcamCode":"c9.666","gcamValue":3},{"gcamCode":"c9.667","gcamValue":16},{"gcamCode":"c9.668","gcamValue":14},{"gcamCode":"c9.669","gcamValue":21},{"gcamCode":"c9.67","gcamValue":8},{"gcamCode":"c9.670","gcamValue":36},{"gcamCode":"c9.671","gcamValue":18},{"gcamCode":"c9.672","gcamValue":13},{"gcamCode":"c9.673","gcamValue":15},{"gcamCode":"c9.674","gcamValue":5},{"gcamCode":"c9.675","gcamValue":3},{"gcamCode":"c9.676","gcamValue":20},{"gcamCode":"c9.677","gcamValue":22},{"gcamCode":"c9.678","gcamValue":7},{"gcamCode":"c9.679","gcamValue":18},{"gcamCode":"c9.68","gcamValue":4},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.681","gcamValue":9},{"gcamCode":"c9.682","gcamValue":6},{"gcamCode":"c9.683","gcamValue":23},{"gcamCode":"c9.684","gcamValue":4},{"gcamCode":"c9.685","gcamValue":6},{"gcamCode":"c9.686","gcamValue":11},{"gcamCode":"c9.687","gcamValue":33},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.689","gcamValue":1},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":11},{"gcamCode":"c9.691","gcamValue":4},{"gcamCode":"c9.692","gcamValue":11},{"gcamCode":"c9.693","gcamValue":10},{"gcamCode":"c9.694","gcamValue":9},{"gcamCode":"c9.695","gcamValue":1},{"gcamCode":"c9.696","gcamValue":4},{"gcamCode":"c9.698","gcamValue":15},{"gcamCode":"c9.699","gcamValue":4},{"gcamCode":"c9.7","gcamValue":10},{"gcamCode":"c9.70","gcamValue":17},{"gcamCode":"c9.701","gcamValue":52},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.703","gcamValue":4},{"gcamCode":"c9.704","gcamValue":35},{"gcamCode":"c9.705","gcamValue":11},{"gcamCode":"c9.708","gcamValue":16},{"gcamCode":"c9.71","gcamValue":20},{"gcamCode":"c9.710","gcamValue":13},{"gcamCode":"c9.711","gcamValue":2},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.718","gcamValue":3},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.72","gcamValue":2},{"gcamCode":"c9.720","gcamValue":16},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":11},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":112},{"gcamCode":"c9.727","gcamValue":6},{"gcamCode":"c9.729","gcamValue":1},{"gcamCode":"c9.73","gcamValue":13},{"gcamCode":"c9.730","gcamValue":83},{"gcamCode":"c9.731","gcamValue":6},{"gcamCode":"c9.732","gcamValue":11},{"gcamCode":"c9.733","gcamValue":4},{"gcamCode":"c9.734","gcamValue":10},{"gcamCode":"c9.735","gcamValue":14},{"gcamCode":"c9.736","gcamValue":33},{"gcamCode":"c9.737","gcamValue":3},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":19},{"gcamCode":"c9.740","gcamValue":25},{"gcamCode":"c9.741","gcamValue":27},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.744","gcamValue":15},{"gcamCode":"c9.745","gcamValue":8},{"gcamCode":"c9.746","gcamValue":6},{"gcamCode":"c9.747","gcamValue":5},{"gcamCode":"c9.748","gcamValue":57},{"gcamCode":"c9.75","gcamValue":13},{"gcamCode":"c9.750","gcamValue":26},{"gcamCode":"c9.751","gcamValue":9},{"gcamCode":"c9.752","gcamValue":3},{"gcamCode":"c9.754","gcamValue":12},{"gcamCode":"c9.755","gcamValue":16},{"gcamCode":"c9.756","gcamValue":11},{"gcamCode":"c9.757","gcamValue":23},{"gcamCode":"c9.759","gcamValue":17},{"gcamCode":"c9.76","gcamValue":24},{"gcamCode":"c9.760","gcamValue":9},{"gcamCode":"c9.762","gcamValue":83},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.764","gcamValue":7},{"gcamCode":"c9.765","gcamValue":6},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":150},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":10},{"gcamCode":"c9.77","gcamValue":6},{"gcamCode":"c9.770","gcamValue":8},{"gcamCode":"c9.771","gcamValue":7},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.773","gcamValue":1},{"gcamCode":"c9.774","gcamValue":3},{"gcamCode":"c9.775","gcamValue":3},{"gcamCode":"c9.776","gcamValue":8},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":7},{"gcamCode":"c9.779","gcamValue":4},{"gcamCode":"c9.78","gcamValue":5},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":3},{"gcamCode":"c9.782","gcamValue":5},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.786","gcamValue":1},{"gcamCode":"c9.788","gcamValue":4},{"gcamCode":"c9.789","gcamValue":3},{"gcamCode":"c9.79","gcamValue":9},{"gcamCode":"c9.790","gcamValue":11},{"gcamCode":"c9.791","gcamValue":4},{"gcamCode":"c9.792","gcamValue":9},{"gcamCode":"c9.793","gcamValue":2},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.797","gcamValue":1},{"gcamCode":"c9.798","gcamValue":3},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":14},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":3},{"gcamCode":"c9.801","gcamValue":4},{"gcamCode":"c9.802","gcamValue":11},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":2},{"gcamCode":"c9.805","gcamValue":3},{"gcamCode":"c9.806","gcamValue":11},{"gcamCode":"c9.808","gcamValue":16},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.810","gcamValue":3},{"gcamCode":"c9.812","gcamValue":17},{"gcamCode":"c9.813","gcamValue":3},{"gcamCode":"c9.816","gcamValue":13},{"gcamCode":"c9.817","gcamValue":3},{"gcamCode":"c9.818","gcamValue":6},{"gcamCode":"c9.82","gcamValue":16},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":9},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":2},{"gcamCode":"c9.826","gcamValue":5},{"gcamCode":"c9.827","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.829","gcamValue":1},{"gcamCode":"c9.83","gcamValue":64},{"gcamCode":"c9.830","gcamValue":17},{"gcamCode":"c9.831","gcamValue":6},{"gcamCode":"c9.832","gcamValue":3},{"gcamCode":"c9.833","gcamValue":4},{"gcamCode":"c9.834","gcamValue":6},{"gcamCode":"c9.837","gcamValue":6},{"gcamCode":"c9.838","gcamValue":4},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.845","gcamValue":3},{"gcamCode":"c9.846","gcamValue":7},{"gcamCode":"c9.848","gcamValue":4},{"gcamCode":"c9.849","gcamValue":7},{"gcamCode":"c9.85","gcamValue":7},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.852","gcamValue":4},{"gcamCode":"c9.853","gcamValue":7},{"gcamCode":"c9.854","gcamValue":2},{"gcamCode":"c9.855","gcamValue":3},{"gcamCode":"c9.857","gcamValue":9},{"gcamCode":"c9.858","gcamValue":12},{"gcamCode":"c9.859","gcamValue":1},{"gcamCode":"c9.86","gcamValue":21},{"gcamCode":"c9.860","gcamValue":38},{"gcamCode":"c9.861","gcamValue":11},{"gcamCode":"c9.862","gcamValue":13},{"gcamCode":"c9.863","gcamValue":22},{"gcamCode":"c9.864","gcamValue":116},{"gcamCode":"c9.865","gcamValue":14},{"gcamCode":"c9.866","gcamValue":23},{"gcamCode":"c9.867","gcamValue":20},{"gcamCode":"c9.868","gcamValue":94},{"gcamCode":"c9.869","gcamValue":3},{"gcamCode":"c9.87","gcamValue":8},{"gcamCode":"c9.870","gcamValue":4},{"gcamCode":"c9.871","gcamValue":2},{"gcamCode":"c9.872","gcamValue":4},{"gcamCode":"c9.873","gcamValue":10},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.875","gcamValue":3},{"gcamCode":"c9.877","gcamValue":11},{"gcamCode":"c9.878","gcamValue":6},{"gcamCode":"c9.879","gcamValue":5},{"gcamCode":"c9.88","gcamValue":7},{"gcamCode":"c9.880","gcamValue":6},{"gcamCode":"c9.882","gcamValue":20},{"gcamCode":"c9.883","gcamValue":9},{"gcamCode":"c9.884","gcamValue":6},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.887","gcamValue":2},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":12},{"gcamCode":"c9.891","gcamValue":1},{"gcamCode":"c9.893","gcamValue":3},{"gcamCode":"c9.896","gcamValue":12},{"gcamCode":"c9.897","gcamValue":2},{"gcamCode":"c9.898","gcamValue":5},{"gcamCode":"c9.899","gcamValue":10},{"gcamCode":"c9.9","gcamValue":3},{"gcamCode":"c9.90","gcamValue":21},{"gcamCode":"c9.900","gcamValue":25},{"gcamCode":"c9.901","gcamValue":3},{"gcamCode":"c9.902","gcamValue":7},{"gcamCode":"c9.903","gcamValue":30},{"gcamCode":"c9.904","gcamValue":2},{"gcamCode":"c9.905","gcamValue":10},{"gcamCode":"c9.906","gcamValue":1},{"gcamCode":"c9.908","gcamValue":22},{"gcamCode":"c9.909","gcamValue":4},{"gcamCode":"c9.910","gcamValue":2},{"gcamCode":"c9.911","gcamValue":20},{"gcamCode":"c9.912","gcamValue":7},{"gcamCode":"c9.913","gcamValue":5},{"gcamCode":"c9.914","gcamValue":3},{"gcamCode":"c9.915","gcamValue":5},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":2},{"gcamCode":"c9.920","gcamValue":4},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.922","gcamValue":4},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.924","gcamValue":4},{"gcamCode":"c9.926","gcamValue":31},{"gcamCode":"c9.927","gcamValue":11},{"gcamCode":"c9.928","gcamValue":7},{"gcamCode":"c9.93","gcamValue":3},{"gcamCode":"c9.930","gcamValue":27},{"gcamCode":"c9.931","gcamValue":6},{"gcamCode":"c9.932","gcamValue":15},{"gcamCode":"c9.933","gcamValue":18},{"gcamCode":"c9.935","gcamValue":70},{"gcamCode":"c9.936","gcamValue":12},{"gcamCode":"c9.937","gcamValue":1},{"gcamCode":"c9.938","gcamValue":16},{"gcamCode":"c9.939","gcamValue":7},{"gcamCode":"c9.940","gcamValue":2},{"gcamCode":"c9.941","gcamValue":1},{"gcamCode":"c9.942","gcamValue":6},{"gcamCode":"c9.945","gcamValue":18},{"gcamCode":"c9.946","gcamValue":15},{"gcamCode":"c9.949","gcamValue":2},{"gcamCode":"c9.95","gcamValue":8},{"gcamCode":"c9.953","gcamValue":4},{"gcamCode":"c9.955","gcamValue":16},{"gcamCode":"c9.959","gcamValue":1},{"gcamCode":"c9.96","gcamValue":16},{"gcamCode":"c9.960","gcamValue":2},{"gcamCode":"c9.962","gcamValue":10},{"gcamCode":"c9.963","gcamValue":12},{"gcamCode":"c9.964","gcamValue":11},{"gcamCode":"c9.965","gcamValue":5},{"gcamCode":"c9.966","gcamValue":8},{"gcamCode":"c9.968","gcamValue":2},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.97","gcamValue":2},{"gcamCode":"c9.971","gcamValue":3},{"gcamCode":"c9.972","gcamValue":79},{"gcamCode":"c9.973","gcamValue":8},{"gcamCode":"c9.974","gcamValue":19},{"gcamCode":"c9.975","gcamValue":3},{"gcamCode":"c9.976","gcamValue":3},{"gcamCode":"c9.977","gcamValue":4},{"gcamCode":"c9.978","gcamValue":34},{"gcamCode":"c9.98","gcamValue":8},{"gcamCode":"c9.980","gcamValue":24},{"gcamCode":"c9.981","gcamValue":9},{"gcamCode":"c9.983","gcamValue":5},{"gcamCode":"c9.984","gcamValue":8},{"gcamCode":"c9.985","gcamValue":37},{"gcamCode":"c9.986","gcamValue":16},{"gcamCode":"c9.987","gcamValue":19},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":3},{"gcamCode":"c9.990","gcamValue":4},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.992","gcamValue":3},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"c9.997","gcamValue":5},{"gcamCode":"c9.999","gcamValue":7},{"gcamCode":"v10.1","gcamValue":0.25281931830616},{"gcamCode":"v10.2","gcamValue":0.274839102329895},{"gcamCode":"v11.1","gcamValue":0.0593203200000001},{"gcamCode":"v19.1","gcamValue":5.92810185185184},{"gcamCode":"v19.2","gcamValue":5.4638425925926},{"gcamCode":"v19.3","gcamValue":5.39981481481482},{"gcamCode":"v19.4","gcamValue":5.91574074074074},{"gcamCode":"v19.5","gcamValue":5.2549074074074},{"gcamCode":"v19.6","gcamValue":5.44050925925926},{"gcamCode":"v19.7","gcamValue":5.95592592592593},{"gcamCode":"v19.8","gcamValue":5.70217592592593},{"gcamCode":"v19.9","gcamValue":5.35861111111111},{"gcamCode":"v20.1","gcamValue":0.509636363636364},{"gcamCode":"v20.10","gcamValue":-0.7064375},{"gcamCode":"v20.11","gcamValue":0.678058823529412},{"gcamCode":"v20.12","gcamValue":-0.661121951219512},{"gcamCode":"v20.13","gcamValue":0.442135294117647},{"gcamCode":"v20.14","gcamValue":-0.556736842105263},{"gcamCode":"v20.15","gcamValue":0.392027149321267},{"gcamCode":"v20.16","gcamValue":-0.435956043956044},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.67568},{"gcamCode":"v20.4","gcamValue":-0.656941176470588},{"gcamCode":"v20.5","gcamValue":0.737272727272727},{"gcamCode":"v20.6","gcamValue":-0.734909090909091},{"gcamCode":"v20.7","gcamValue":0.738333333333333},{"gcamCode":"v20.8","gcamValue":-0.737703703703704},{"gcamCode":"v20.9","gcamValue":0.719190476190476},{"gcamCode":"v21.1","gcamValue":5.35890879478824},{"gcamCode":"v26.1","gcamValue":0.165868263473054}]https://s.hdnux.com/photos/01/02/67/47/17529324/3/rawImage.jpg["https://www.rollingstone.com/wp-content/uploads/2019/05/mark-weinstein-mewe.jpg"][""][""][][{"name":"Sheila McNallen","charOffset":542},{"name":"Folk Assembly","charOffset":704},{"name":"Germanic Paganism","charOffset":813},{"name":"Folk Assembly","charOffset":905},{"name":"Southern Poverty Law Center","charOffset":976},{"name":"Sheila McNallen","charOffset":1464},{"name":"Folk Assembly","charOffset":2121},{"name":"Mark Weinstein","charOffset":2631},{"name":"Google Play","charOffset":4077},{"name":"Keegan Hankes","charOffset":4522},{"name":"Milo Yiannopolous","charOffset":6367},{"name":"Alex Jones","charOffset":6383},{"name":"Laura Loomer","charOffset":6400},{"name":"WeinsteinEvan Ross","charOffset":6775},{"name":"MeWe Summer Kick Off Party","charOffset":6808},{"name":"Los Angeles","charOffset":6825},{"name":"United States","charOffset":6844},{"name":"Evan Ross Host","charOffset":6909},{"name":"Summer Kick Off Party","charOffset":6933},{"name":"Mark Weinstein","charOffset":6950},{"name":"MeWe Summer Kick Off Party","charOffset":6987},{"name":"Los Angeles","charOffset":7002},{"name":"Bernie Sanders","charOffset":7391},{"name":"Ted Cruz","charOffset":8259},{"name":"Flat Earthers","charOffset":9878},{"name":"James Lyons Weiler","charOffset":10064},{"name":"Rolling Stone","charOffset":10095},{"name":"New Zealand","charOffset":11724},{"name":"Lion Is Awake","charOffset":11785},{"name":"Rolling Stone","charOffset":12333},{"name":"Mark Zuckerberg","charOffset":12541},{"name":"Cyber Civil Rights Initiative","charOffset":12975},{"name":"Internet Watch Foundation","charOffset":13005},{"name":"Rolling Stone","charOffset":13434},{"name":"Rolling Stone","charOffset":15571}][{"amount":145000000,"amountType":"users","charOffset":3403},{"amount":5000000,"amountType":"members","charOffset":4537},{"amount":2,"amountType":"mosques","charOffset":9173}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://bit.ly/2DNynp3;http://bit.ly/2FYWLq5;http://bit.ly/2Tpvmka;https://pages.email.rollingstone.com/newsletters/;https://www.engadget.com/2018/05/15/discord-user-base-nearly-triples-in-one-year/;https://www.rollingstone.com/t/conspiracy/;https://www.rollingstone.com/t/facebook/;https://www.rollingstone.com/t/internet/;https://www.theguardian.com/commentisfree/2019/mar/05/anti-vaxx-propaganda-internet-tech;https://www.theverge.com/2019/4/10/18305268/republicans-facebook-twitter-concerns-conservative-bias-ted-cruz</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190523105800</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_MOBILE>https://m.newstimes.com/entertainment/article/Inside-MeWe-the-Playground-for-Anti-Vaxxers-and-13878366.php</PAGE_ALTURL_MOBILE>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":24}2019-05-23T12:15:00.000+0000WEBktucam.comhttp://www.ktucam.com/news/mario-batali-faces-criminal-charge-in-alleged-boston-groping-incident/[][]["TAX_FNCACT","TAX_FNCACT_CHEF","TAX_FNCACT_CRIMINAL","TAX_FNCACT_WOMAN","UNGP_CRIME_VIOLENCE","TRIAL","TAX_FNCACT_ATTORNEY","TAX_FNCACT_DISTRICT_ATTORNEY","LEGISLATION","EPU_POLICY","EPU_POLICY_LAW","TAX_FNCACT_WOMEN","SOC_EXPRESSREGRET","RAPE","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","WB_2024_ANTI_CORRUPTION_AUTHORITIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_2025_INVESTIGATION","WB_831_GOVERNANCE","WB_832_ANTI_CORRUPTION","WB_1014_CRIMINAL_JUSTICE"][{"theme":"TAX_FNCACT_WOMEN","charOffset":1650},{"theme":"TAX_FNCACT_WOMAN","charOffset":94},{"theme":"TAX_FNCACT_WOMAN","charOffset":858},{"theme":"TAX_FNCACT_WOMAN","charOffset":956},{"theme":"TAX_FNCACT_CHEF","charOffset":14},{"theme":"TAX_FNCACT_CHEF","charOffset":422},{"theme":"TAX_FNCACT_CHEF","charOffset":1702},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":174},{"theme":"TRIAL","charOffset":366},{"theme":"TRIAL","charOffset":555},{"theme":"TRIAL","charOffset":706},{"theme":"TRIAL","charOffset":1511},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":366},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":555},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":706},{"theme":"TAX_FNCACT_ATTORNEY","charOffset":1511},{"theme":"WB_2024_ANTI_CORRUPTION_AUTHORITIES","charOffset":2395},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":2395},{"theme":"WB_840_JUSTICE","charOffset":2395},{"theme":"WB_2025_INVESTIGATION","charOffset":2395},{"theme":"WB_831_GOVERNANCE","charOffset":2395},{"theme":"WB_832_ANTI_CORRUPTION","charOffset":2395},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":2395},{"theme":"TAX_FNCACT_CRIMINAL","charOffset":48},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":366},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":555},{"theme":"TAX_FNCACT_DISTRICT_ATTORNEY","charOffset":706},{"theme":"RAPE","charOffset":2351},{"theme":"SECURITY_SERVICES","charOffset":2381},{"theme":"TAX_FNCACT_POLICE","charOffset":2381},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2381},{"theme":"LEGISLATION","charOffset":578},{"theme":"EPU_POLICY_LAW","charOffset":578},{"theme":"SOC_EXPRESSREGRET","charOffset":1869}][{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"}][{"location":{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"},"charOffset":333},{"location":{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"},"charOffset":522},{"location":{"geoType":"USCITY","geoName":"Suffolk County, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3334,"longitude":-71.0828},"featureId":"606939"},"charOffset":673},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":65},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":260},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":470},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":833},{"location":{"geoType":"USCITY","geoName":"Boston, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3584,"longitude":-71.0598},"featureId":"617565"},"charOffset":931},{"location":{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},"charOffset":284},{"location":{"geoType":"USCITY","geoName":"Back Bay, Massachusetts, United States","countryCode":"US","adm1Code":"USMA","adm2Code":"MA025","geoPoint":{"latitude":42.3501,"longitude":-71.087},"featureId":"617071"},"charOffset":1011}]["mario batali"][{"person":"Mario Batali","charOffset":27}]["boston municipal court","suffolk county district attorney office","cnn","food network"][{"organisation":"Cnn","charOffset":865},{"organisation":"Cnn","charOffset":1830},{"organisation":"Cnn","charOffset":1938},{"organisation":"Food Network","charOffset":2176}]{"tone":-6.1381073,"positiveScore":1.0230179,"negativeScore":7.161125,"polarity":8.184143,"activityReferenceDensity":18.92583,"selfGroupReferenceDensity":0,"wordCount":370}[][{"gcamCode":"wc","gcamValue":370},{"gcamCode":"c12.1","gcamValue":25},{"gcamCode":"c12.10","gcamValue":25},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":5},{"gcamCode":"c12.14","gcamValue":8},{"gcamCode":"c12.3","gcamValue":13},{"gcamCode":"c12.4","gcamValue":7},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":24},{"gcamCode":"c12.8","gcamValue":12},{"gcamCode":"c12.9","gcamValue":13},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c13.3","gcamValue":2},{"gcamCode":"c13.9","gcamValue":2},{"gcamCode":"c14.1","gcamValue":20},{"gcamCode":"c14.10","gcamValue":9},{"gcamCode":"c14.11","gcamValue":25},{"gcamCode":"c14.2","gcamValue":18},{"gcamCode":"c14.3","gcamValue":19},{"gcamCode":"c14.4","gcamValue":4},{"gcamCode":"c14.5","gcamValue":39},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":7},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.107","gcamValue":2},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.15","gcamValue":1},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.167","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":1},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.198","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.220","gcamValue":2},{"gcamCode":"c15.221","gcamValue":1},{"gcamCode":"c15.222","gcamValue":3},{"gcamCode":"c15.227","gcamValue":3},{"gcamCode":"c15.234","gcamValue":1},{"gcamCode":"c15.239","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":2},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.29","gcamValue":3},{"gcamCode":"c15.32","gcamValue":2},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":3},{"gcamCode":"c15.47","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":3},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.79","gcamValue":1},{"gcamCode":"c15.81","gcamValue":1},{"gcamCode":"c15.83","gcamValue":1},{"gcamCode":"c15.84","gcamValue":1},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":2},{"gcamCode":"c16.100","gcamValue":8},{"gcamCode":"c16.101","gcamValue":3},{"gcamCode":"c16.105","gcamValue":3},{"gcamCode":"c16.106","gcamValue":15},{"gcamCode":"c16.109","gcamValue":18},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":55},{"gcamCode":"c16.111","gcamValue":1},{"gcamCode":"c16.113","gcamValue":3},{"gcamCode":"c16.114","gcamValue":36},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":7},{"gcamCode":"c16.117","gcamValue":13},{"gcamCode":"c16.118","gcamValue":21},{"gcamCode":"c16.12","gcamValue":24},{"gcamCode":"c16.120","gcamValue":10},{"gcamCode":"c16.121","gcamValue":24},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":22},{"gcamCode":"c16.126","gcamValue":14},{"gcamCode":"c16.127","gcamValue":28},{"gcamCode":"c16.128","gcamValue":5},{"gcamCode":"c16.129","gcamValue":32},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":8},{"gcamCode":"c16.131","gcamValue":16},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":38},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.138","gcamValue":11},{"gcamCode":"c16.139","gcamValue":13},{"gcamCode":"c16.140","gcamValue":25},{"gcamCode":"c16.145","gcamValue":24},{"gcamCode":"c16.146","gcamValue":14},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":1},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.152","gcamValue":5},{"gcamCode":"c16.153","gcamValue":20},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":4},{"gcamCode":"c16.159","gcamValue":26},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":31},{"gcamCode":"c16.162","gcamValue":23},{"gcamCode":"c16.163","gcamValue":19},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.167","gcamValue":2},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":3},{"gcamCode":"c16.19","gcamValue":8},{"gcamCode":"c16.2","gcamValue":35},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":4},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":5},{"gcamCode":"c16.26","gcamValue":33},{"gcamCode":"c16.3","gcamValue":1},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":31},{"gcamCode":"c16.32","gcamValue":6},{"gcamCode":"c16.33","gcamValue":28},{"gcamCode":"c16.35","gcamValue":17},{"gcamCode":"c16.36","gcamValue":5},{"gcamCode":"c16.37","gcamValue":37},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.4","gcamValue":28},{"gcamCode":"c16.41","gcamValue":13},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":15},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":45},{"gcamCode":"c16.48","gcamValue":7},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.51","gcamValue":1},{"gcamCode":"c16.52","gcamValue":26},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":183},{"gcamCode":"c16.58","gcamValue":23},{"gcamCode":"c16.6","gcamValue":48},{"gcamCode":"c16.60","gcamValue":4},{"gcamCode":"c16.62","gcamValue":13},{"gcamCode":"c16.63","gcamValue":3},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":4},{"gcamCode":"c16.66","gcamValue":12},{"gcamCode":"c16.68","gcamValue":16},{"gcamCode":"c16.69","gcamValue":14},{"gcamCode":"c16.7","gcamValue":4},{"gcamCode":"c16.70","gcamValue":20},{"gcamCode":"c16.71","gcamValue":2},{"gcamCode":"c16.72","gcamValue":2},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":13},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":2},{"gcamCode":"c16.78","gcamValue":10},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.82","gcamValue":3},{"gcamCode":"c16.84","gcamValue":20},{"gcamCode":"c16.85","gcamValue":4},{"gcamCode":"c16.87","gcamValue":50},{"gcamCode":"c16.88","gcamValue":46},{"gcamCode":"c16.89","gcamValue":14},{"gcamCode":"c16.90","gcamValue":10},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":32},{"gcamCode":"c16.93","gcamValue":1},{"gcamCode":"c16.94","gcamValue":23},{"gcamCode":"c16.95","gcamValue":20},{"gcamCode":"c16.96","gcamValue":10},{"gcamCode":"c16.98","gcamValue":24},{"gcamCode":"c16.99","gcamValue":3},{"gcamCode":"c17.1","gcamValue":97},{"gcamCode":"c17.10","gcamValue":32},{"gcamCode":"c17.11","gcamValue":63},{"gcamCode":"c17.12","gcamValue":10},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":6},{"gcamCode":"c17.15","gcamValue":25},{"gcamCode":"c17.16","gcamValue":17},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":4},{"gcamCode":"c17.19","gcamValue":31},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":4},{"gcamCode":"c17.21","gcamValue":3},{"gcamCode":"c17.22","gcamValue":10},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":38},{"gcamCode":"c17.25","gcamValue":3},{"gcamCode":"c17.26","gcamValue":1},{"gcamCode":"c17.27","gcamValue":32},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":3},{"gcamCode":"c17.30","gcamValue":5},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.32","gcamValue":6},{"gcamCode":"c17.33","gcamValue":17},{"gcamCode":"c17.34","gcamValue":9},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":11},{"gcamCode":"c17.37","gcamValue":9},{"gcamCode":"c17.38","gcamValue":4},{"gcamCode":"c17.39","gcamValue":9},{"gcamCode":"c17.4","gcamValue":83},{"gcamCode":"c17.40","gcamValue":5},{"gcamCode":"c17.41","gcamValue":17},{"gcamCode":"c17.42","gcamValue":24},{"gcamCode":"c17.43","gcamValue":17},{"gcamCode":"c17.44","gcamValue":1},{"gcamCode":"c17.5","gcamValue":81},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":47},{"gcamCode":"c17.8","gcamValue":33},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c18.115","gcamValue":1},{"gcamCode":"c18.137","gcamValue":7},{"gcamCode":"c18.193","gcamValue":16},{"gcamCode":"c18.21","gcamValue":1},{"gcamCode":"c18.278","gcamValue":2},{"gcamCode":"c18.342","gcamValue":5},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c2.1","gcamValue":11},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":9},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":34},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":3},{"gcamCode":"c2.11","gcamValue":3},{"gcamCode":"c2.110","gcamValue":5},{"gcamCode":"c2.112","gcamValue":4},{"gcamCode":"c2.113","gcamValue":3},{"gcamCode":"c2.114","gcamValue":15},{"gcamCode":"c2.115","gcamValue":6},{"gcamCode":"c2.116","gcamValue":12},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.119","gcamValue":98},{"gcamCode":"c2.12","gcamValue":13},{"gcamCode":"c2.121","gcamValue":17},{"gcamCode":"c2.122","gcamValue":17},{"gcamCode":"c2.125","gcamValue":9},{"gcamCode":"c2.126","gcamValue":19},{"gcamCode":"c2.127","gcamValue":29},{"gcamCode":"c2.128","gcamValue":19},{"gcamCode":"c2.129","gcamValue":27},{"gcamCode":"c2.132","gcamValue":7},{"gcamCode":"c2.133","gcamValue":4},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":25},{"gcamCode":"c2.140","gcamValue":3},{"gcamCode":"c2.141","gcamValue":3},{"gcamCode":"c2.143","gcamValue":29},{"gcamCode":"c2.144","gcamValue":2},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":58},{"gcamCode":"c2.148","gcamValue":29},{"gcamCode":"c2.149","gcamValue":3},{"gcamCode":"c2.15","gcamValue":9},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":7},{"gcamCode":"c2.154","gcamValue":8},{"gcamCode":"c2.155","gcamValue":28},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":24},{"gcamCode":"c2.158","gcamValue":22},{"gcamCode":"c2.159","gcamValue":4},{"gcamCode":"c2.16","gcamValue":2},{"gcamCode":"c2.160","gcamValue":6},{"gcamCode":"c2.162","gcamValue":6},{"gcamCode":"c2.166","gcamValue":6},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.172","gcamValue":7},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":25},{"gcamCode":"c2.179","gcamValue":11},{"gcamCode":"c2.18","gcamValue":13},{"gcamCode":"c2.180","gcamValue":13},{"gcamCode":"c2.181","gcamValue":13},{"gcamCode":"c2.183","gcamValue":13},{"gcamCode":"c2.185","gcamValue":60},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":20},{"gcamCode":"c2.188","gcamValue":2},{"gcamCode":"c2.189","gcamValue":2},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.191","gcamValue":7},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":25},{"gcamCode":"c2.195","gcamValue":19},{"gcamCode":"c2.196","gcamValue":1},{"gcamCode":"c2.197","gcamValue":8},{"gcamCode":"c2.198","gcamValue":34},{"gcamCode":"c2.199","gcamValue":6},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.203","gcamValue":25},{"gcamCode":"c2.204","gcamValue":32},{"gcamCode":"c2.205","gcamValue":2},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":4},{"gcamCode":"c2.21","gcamValue":4},{"gcamCode":"c2.210","gcamValue":32},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":6},{"gcamCode":"c2.214","gcamValue":7},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":6},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.225","gcamValue":7},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":9},{"gcamCode":"c2.25","gcamValue":23},{"gcamCode":"c2.26","gcamValue":8},{"gcamCode":"c2.27","gcamValue":8},{"gcamCode":"c2.30","gcamValue":16},{"gcamCode":"c2.31","gcamValue":14},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":15},{"gcamCode":"c2.35","gcamValue":20},{"gcamCode":"c2.36","gcamValue":7},{"gcamCode":"c2.37","gcamValue":19},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":53},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.44","gcamValue":17},{"gcamCode":"c2.45","gcamValue":19},{"gcamCode":"c2.46","gcamValue":29},{"gcamCode":"c2.47","gcamValue":4},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.50","gcamValue":8},{"gcamCode":"c2.52","gcamValue":24},{"gcamCode":"c2.54","gcamValue":26},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":2},{"gcamCode":"c2.58","gcamValue":11},{"gcamCode":"c2.59","gcamValue":3},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.60","gcamValue":2},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":14},{"gcamCode":"c2.63","gcamValue":1},{"gcamCode":"c2.64","gcamValue":14},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.69","gcamValue":11},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":11},{"gcamCode":"c2.75","gcamValue":51},{"gcamCode":"c2.76","gcamValue":226},{"gcamCode":"c2.77","gcamValue":34},{"gcamCode":"c2.78","gcamValue":43},{"gcamCode":"c2.79","gcamValue":9},{"gcamCode":"c2.80","gcamValue":31},{"gcamCode":"c2.81","gcamValue":2},{"gcamCode":"c2.82","gcamValue":8},{"gcamCode":"c2.83","gcamValue":3},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":10},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":14},{"gcamCode":"c2.9","gcamValue":4},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":52},{"gcamCode":"c2.97","gcamValue":10},{"gcamCode":"c2.98","gcamValue":7},{"gcamCode":"c2.99","gcamValue":8},{"gcamCode":"c25.10","gcamValue":2},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.5","gcamValue":11},{"gcamCode":"c25.7","gcamValue":2},{"gcamCode":"c3.1","gcamValue":27},{"gcamCode":"c3.2","gcamValue":27},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.20","gcamValue":16},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":12},{"gcamCode":"c35.31","gcamValue":9},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":29},{"gcamCode":"c35.5","gcamValue":4},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":5},{"gcamCode":"c39.16","gcamValue":1},{"gcamCode":"c39.17","gcamValue":4},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":4},{"gcamCode":"c39.3","gcamValue":18},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":4},{"gcamCode":"c39.37","gcamValue":15},{"gcamCode":"c39.38","gcamValue":2},{"gcamCode":"c39.39","gcamValue":7},{"gcamCode":"c39.4","gcamValue":18},{"gcamCode":"c39.41","gcamValue":7},{"gcamCode":"c39.5","gcamValue":7},{"gcamCode":"c4.13","gcamValue":5},{"gcamCode":"c4.23","gcamValue":13},{"gcamCode":"c4.24","gcamValue":1},{"gcamCode":"c40.3","gcamValue":2},{"gcamCode":"c40.5","gcamValue":2},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":32},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":59},{"gcamCode":"c5.13","gcamValue":6},{"gcamCode":"c5.14","gcamValue":3},{"gcamCode":"c5.16","gcamValue":3},{"gcamCode":"c5.17","gcamValue":11},{"gcamCode":"c5.18","gcamValue":3},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":8},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.25","gcamValue":1},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":4},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":23},{"gcamCode":"c5.31","gcamValue":1},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":12},{"gcamCode":"c5.37","gcamValue":7},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":37},{"gcamCode":"c5.43","gcamValue":5},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":1},{"gcamCode":"c5.46","gcamValue":57},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":37},{"gcamCode":"c5.50","gcamValue":30},{"gcamCode":"c5.51","gcamValue":34},{"gcamCode":"c5.52","gcamValue":47},{"gcamCode":"c5.53","gcamValue":34},{"gcamCode":"c5.54","gcamValue":12},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.56","gcamValue":15},{"gcamCode":"c5.59","gcamValue":2},{"gcamCode":"c5.6","gcamValue":19},{"gcamCode":"c5.60","gcamValue":18},{"gcamCode":"c5.61","gcamValue":30},{"gcamCode":"c5.62","gcamValue":158},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":22},{"gcamCode":"c6.1","gcamValue":15},{"gcamCode":"c6.2","gcamValue":1},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":24},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":20},{"gcamCode":"c7.2","gcamValue":10},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.14","gcamValue":2},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.19","gcamValue":2},{"gcamCode":"c8.2","gcamValue":7},{"gcamCode":"c8.20","gcamValue":4},{"gcamCode":"c8.21","gcamValue":4},{"gcamCode":"c8.23","gcamValue":7},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.27","gcamValue":2},{"gcamCode":"c8.35","gcamValue":2},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":13},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":4},{"gcamCode":"c8.42","gcamValue":8},{"gcamCode":"c8.43","gcamValue":6},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c8.9","gcamValue":2},{"gcamCode":"c9.1","gcamValue":13},{"gcamCode":"c9.10","gcamValue":5},{"gcamCode":"c9.1004","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":7},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1009","gcamValue":2},{"gcamCode":"c9.1010","gcamValue":5},{"gcamCode":"c9.1011","gcamValue":6},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":3},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.107","gcamValue":3},{"gcamCode":"c9.109","gcamValue":5},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":4},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":7},{"gcamCode":"c9.128","gcamValue":20},{"gcamCode":"c9.129","gcamValue":5},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.137","gcamValue":4},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.139","gcamValue":3},{"gcamCode":"c9.140","gcamValue":4},{"gcamCode":"c9.141","gcamValue":1},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":8},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.164","gcamValue":1},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":2},{"gcamCode":"c9.186","gcamValue":1},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":1},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":1},{"gcamCode":"c9.195","gcamValue":3},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.198","gcamValue":6},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":6},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":4},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.217","gcamValue":2},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.237","gcamValue":3},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.242","gcamValue":1},{"gcamCode":"c9.243","gcamValue":1},{"gcamCode":"c9.245","gcamValue":6},{"gcamCode":"c9.247","gcamValue":4},{"gcamCode":"c9.249","gcamValue":1},{"gcamCode":"c9.25","gcamValue":1},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.260","gcamValue":3},{"gcamCode":"c9.262","gcamValue":3},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":1},{"gcamCode":"c9.285","gcamValue":4},{"gcamCode":"c9.286","gcamValue":2},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":3},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":3},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":13},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.308","gcamValue":3},{"gcamCode":"c9.316","gcamValue":1},{"gcamCode":"c9.33","gcamValue":2},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.34","gcamValue":5},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.341","gcamValue":1},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.370","gcamValue":1},{"gcamCode":"c9.371","gcamValue":3},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":8},{"gcamCode":"c9.385","gcamValue":11},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.387","gcamValue":1},{"gcamCode":"c9.39","gcamValue":5},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.396","gcamValue":2},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":4},{"gcamCode":"c9.400","gcamValue":2},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.406","gcamValue":1},{"gcamCode":"c9.411","gcamValue":1},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.423","gcamValue":1},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":4},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.447","gcamValue":3},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.451","gcamValue":2},{"gcamCode":"c9.458","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.48","gcamValue":6},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.482","gcamValue":1},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.487","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":11},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":1},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":5},{"gcamCode":"c9.513","gcamValue":4},{"gcamCode":"c9.518","gcamValue":3},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.531","gcamValue":1},{"gcamCode":"c9.534","gcamValue":2},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":8},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":2},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":14},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.586","gcamValue":1},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":3},{"gcamCode":"c9.589","gcamValue":2},{"gcamCode":"c9.590","gcamValue":3},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":3},{"gcamCode":"c9.632","gcamValue":4},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.642","gcamValue":6},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.650","gcamValue":5},{"gcamCode":"c9.653","gcamValue":19},{"gcamCode":"c9.654","gcamValue":2},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.658","gcamValue":2},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.671","gcamValue":4},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":2},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":6},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.692","gcamValue":1},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.7","gcamValue":1},{"gcamCode":"c9.701","gcamValue":6},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":4},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.723","gcamValue":4},{"gcamCode":"c9.724","gcamValue":12},{"gcamCode":"c9.725","gcamValue":3},{"gcamCode":"c9.726","gcamValue":13},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":13},{"gcamCode":"c9.733","gcamValue":2},{"gcamCode":"c9.735","gcamValue":4},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":10},{"gcamCode":"c9.744","gcamValue":3},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.76","gcamValue":1},{"gcamCode":"c9.761","gcamValue":2},{"gcamCode":"c9.762","gcamValue":13},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":5},{"gcamCode":"c9.767","gcamValue":20},{"gcamCode":"c9.771","gcamValue":3},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.785","gcamValue":4},{"gcamCode":"c9.788","gcamValue":4},{"gcamCode":"c9.790","gcamValue":3},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":3},{"gcamCode":"c9.799","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.810","gcamValue":1},{"gcamCode":"c9.814","gcamValue":1},{"gcamCode":"c9.816","gcamValue":1},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":2},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.829","gcamValue":2},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.841","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.858","gcamValue":1},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":2},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.864","gcamValue":13},{"gcamCode":"c9.865","gcamValue":5},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":13},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.876","gcamValue":2},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":1},{"gcamCode":"c9.883","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":4},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.905","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":3},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.914","gcamValue":4},{"gcamCode":"c9.915","gcamValue":3},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.924","gcamValue":3},{"gcamCode":"c9.925","gcamValue":3},{"gcamCode":"c9.926","gcamValue":5},{"gcamCode":"c9.935","gcamValue":7},{"gcamCode":"c9.936","gcamValue":2},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.954","gcamValue":2},{"gcamCode":"c9.955","gcamValue":4},{"gcamCode":"c9.958","gcamValue":1},{"gcamCode":"c9.96","gcamValue":5},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.963","gcamValue":1},{"gcamCode":"c9.964","gcamValue":4},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":5},{"gcamCode":"c9.973","gcamValue":1},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.979","gcamValue":5},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":4},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"c9.997","gcamValue":2},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.266007834757835},{"gcamCode":"v10.2","gcamValue":0.27020474137931},{"gcamCode":"v11.1","gcamValue":-0.0106035767790262},{"gcamCode":"v19.1","gcamValue":5.18575757575758},{"gcamCode":"v19.2","gcamValue":5.21818181818182},{"gcamCode":"v19.3","gcamValue":4.94121212121212},{"gcamCode":"v19.4","gcamValue":5.28363636363637},{"gcamCode":"v19.5","gcamValue":5.1469696969697},{"gcamCode":"v19.6","gcamValue":5.1330303030303},{"gcamCode":"v19.7","gcamValue":5.1039393939394},{"gcamCode":"v19.8","gcamValue":5.31757575757576},{"gcamCode":"v19.9","gcamValue":4.76},{"gcamCode":"v20.10","gcamValue":-0.4375},{"gcamCode":"v20.11","gcamValue":0.666666666666667},{"gcamCode":"v20.12","gcamValue":-0.464285714285714},{"gcamCode":"v20.13","gcamValue":0.402736842105263},{"gcamCode":"v20.14","gcamValue":-0.3978},{"gcamCode":"v20.15","gcamValue":0.353642857142857},{"gcamCode":"v20.16","gcamValue":-0.35045},{"gcamCode":"v20.2","gcamValue":-0.5},{"gcamCode":"v20.4","gcamValue":-0.4375},{"gcamCode":"v20.5","gcamValue":1},{"gcamCode":"v20.6","gcamValue":-0.4375},{"gcamCode":"v20.7","gcamValue":1},{"gcamCode":"v20.8","gcamValue":-0.4375},{"gcamCode":"v20.9","gcamValue":1},{"gcamCode":"v21.1","gcamValue":5.31089230769231},{"gcamCode":"v26.1","gcamValue":0.0515151515151516}][""][""][""][][{"name":"Mario Batali","charOffset":28},{"name":"Back Bay","charOffset":276},{"name":"Suffolk County District Attorney","charOffset":331},{"name":"Boston Municipal Court","charOffset":451},{"name":"Suffolk County District Attorney","charOffset":493},{"name":"Suffolk County District Attorney","charOffset":628},{"name":"Natali Tene","charOffset":877},{"name":"Back Bay","charOffset":920},{"name":"Food Network","charOffset":2154}][{"amount":2,"amountType":"decades","charOffset":1398}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://money.cnn.com/2017/12/11/media/mario-batali-sexual-misconduct-allegations/;https://www.cnn.com/2018/05/21/celebrities/nypd-investigating-mario-batali/;https://www.cnn.com/2018/08/24/entertainment/mario-batali-sexual-assault-lawsuit/</PAGE_LINKS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":26}2019-05-23T12:15:00.000+0000WEBfoxnews.comhttps://www.foxnews.com/opinion/alice-marie-johnson-i-was-sentenced-to-life-in-prison-heres-why-i-never-lost-hope[][]["SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_PRISON","WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","WB_2490_NATIONAL_PROTECTION_AND_SECURITY","WB_1331_HEALTH_TECHNOLOGIES","WB_2453_ORGANIZED_CRIME","WB_1350_PHARMACEUTICALS","WB_2433_CONFLICT_AND_VIOLENCE","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_2456_DRUGS_AND_NARCOTICS","CRIME_CARTELS","LEADER","TAX_FNCACT","TAX_FNCACT_PRESIDENT","USPEC_POLITICS_GENERAL1","ARREST","GENERAL_HEALTH","MEDICAL","CRISISLEX_C03_WELLBEING_HEALTH","SOC_POINTSOFINTEREST_MEDICAL_CENTER","TAX_FNCACT_WOMEN","TRIAL","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_MANAGER","TAX_FNCACT_WOMAN","STRIKE","MEDIA_MSM","WB_678_DIGITAL_GOVERNMENT","WB_694_BROADCAST_AND_MEDIA","WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES"][{"theme":"STRIKE","charOffset":2607},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":74},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":149},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":437},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":1157},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":1766},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":2108},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":2552},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":3098},{"theme":"SOC_POINTSOFINTEREST_PRISON","charOffset":3447},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":74},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":149},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":437},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":1157},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":1766},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":2108},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":2552},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":3098},{"theme":"WB_2495_DETENTION_PRISON_AND_CORRECTIONS_REFORM","charOffset":3447},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":74},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":149},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":437},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":1157},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":1766},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":2108},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":2552},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":3098},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":3447},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":74},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":149},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":437},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":1157},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":1766},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":2108},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":2552},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":3098},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":3447},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":74},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":149},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":437},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":1157},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":1766},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":2108},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":2552},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":3098},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":3447},{"theme":"MEDIA_MSM","charOffset":2910},{"theme":"TAX_FNCACT_WOMEN","charOffset":631},{"theme":"TAX_FNCACT_WOMEN","charOffset":3084},{"theme":"TAX_FNCACT_WOMAN","charOffset":2499},{"theme":"TAX_FNCACT_WOMAN","charOffset":3402},{"theme":"TAX_FNCACT_MANAGER","charOffset":2378},{"theme":"WB_678_DIGITAL_GOVERNMENT","charOffset":3289},{"theme":"WB_694_BROADCAST_AND_MEDIA","charOffset":3289},{"theme":"WB_133_INFORMATION_AND_COMMUNICATION_TECHNOLOGIES","charOffset":3289},{"theme":"TRIAL","charOffset":1683},{"theme":"GENERAL_HEALTH","charOffset":408},{"theme":"MEDICAL","charOffset":408},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":408},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":205},{"theme":"WB_1331_HEALTH_TECHNOLOGIES","charOffset":1718},{"theme":"WB_2453_ORGANIZED_CRIME","charOffset":205},{"theme":"WB_2453_ORGANIZED_CRIME","charOffset":1718},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":205},{"theme":"WB_1350_PHARMACEUTICALS","charOffset":1718},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":205},{"theme":"WB_2433_CONFLICT_AND_VIOLENCE","charOffset":1718},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":205},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":1718},{"theme":"WB_2456_DRUGS_AND_NARCOTICS","charOffset":205},{"theme":"WB_2456_DRUGS_AND_NARCOTICS","charOffset":1718},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":2081},{"theme":"ARREST","charOffset":356},{"theme":"LEADER","charOffset":243},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":243},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":243},{"theme":"CRIME_CARTELS","charOffset":217},{"theme":"SOC_POINTSOFINTEREST_MEDICAL_CENTER","charOffset":415}][{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"}][{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":446}]["alice johnson"][{"person":"Alice Johnson","charOffset":13},{"person":"Alice Johnson","charOffset":88},{"person":"Alice Johnson","charOffset":163},{"person":"Alice Johnson","charOffset":1394}][""][]{"tone":-2.0491803,"positiveScore":2.3224044,"negativeScore":4.371585,"polarity":6.6939893,"activityReferenceDensity":24.043716,"selfGroupReferenceDensity":2.8688524,"wordCount":659}[{"dateResolution":1,"month":0,"day":0,"year":1996,"charOffset":1596}][{"gcamCode":"wc","gcamValue":659},{"gcamCode":"c1.1","gcamValue":2},{"gcamCode":"c1.3","gcamValue":2},{"gcamCode":"c12.1","gcamValue":48},{"gcamCode":"c12.10","gcamValue":69},{"gcamCode":"c12.12","gcamValue":29},{"gcamCode":"c12.13","gcamValue":18},{"gcamCode":"c12.14","gcamValue":26},{"gcamCode":"c12.3","gcamValue":17},{"gcamCode":"c12.4","gcamValue":8},{"gcamCode":"c12.5","gcamValue":28},{"gcamCode":"c12.7","gcamValue":43},{"gcamCode":"c12.8","gcamValue":25},{"gcamCode":"c12.9","gcamValue":46},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.12","gcamValue":3},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.9","gcamValue":1},{"gcamCode":"c14.1","gcamValue":45},{"gcamCode":"c14.10","gcamValue":22},{"gcamCode":"c14.11","gcamValue":68},{"gcamCode":"c14.2","gcamValue":39},{"gcamCode":"c14.3","gcamValue":50},{"gcamCode":"c14.4","gcamValue":10},{"gcamCode":"c14.5","gcamValue":84},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":16},{"gcamCode":"c14.8","gcamValue":1},{"gcamCode":"c14.9","gcamValue":8},{"gcamCode":"c15.10","gcamValue":6},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.103","gcamValue":2},{"gcamCode":"c15.105","gcamValue":2},{"gcamCode":"c15.11","gcamValue":2},{"gcamCode":"c15.110","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.114","gcamValue":1},{"gcamCode":"c15.116","gcamValue":2},{"gcamCode":"c15.119","gcamValue":2},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":2},{"gcamCode":"c15.128","gcamValue":2},{"gcamCode":"c15.129","gcamValue":1},{"gcamCode":"c15.131","gcamValue":1},{"gcamCode":"c15.132","gcamValue":2},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.147","gcamValue":4},{"gcamCode":"c15.148","gcamValue":5},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.154","gcamValue":1},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.159","gcamValue":1},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.171","gcamValue":1},{"gcamCode":"c15.173","gcamValue":3},{"gcamCode":"c15.175","gcamValue":2},{"gcamCode":"c15.176","gcamValue":3},{"gcamCode":"c15.178","gcamValue":1},{"gcamCode":"c15.18","gcamValue":3},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.198","gcamValue":1},{"gcamCode":"c15.20","gcamValue":2},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.202","gcamValue":1},{"gcamCode":"c15.203","gcamValue":2},{"gcamCode":"c15.207","gcamValue":2},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":5},{"gcamCode":"c15.215","gcamValue":1},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.22","gcamValue":1},{"gcamCode":"c15.222","gcamValue":1},{"gcamCode":"c15.225","gcamValue":2},{"gcamCode":"c15.227","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.24","gcamValue":1},{"gcamCode":"c15.241","gcamValue":1},{"gcamCode":"c15.251","gcamValue":3},{"gcamCode":"c15.252","gcamValue":4},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.257","gcamValue":1},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.260","gcamValue":2},{"gcamCode":"c15.267","gcamValue":1},{"gcamCode":"c15.27","gcamValue":1},{"gcamCode":"c15.270","gcamValue":1},{"gcamCode":"c15.29","gcamValue":1},{"gcamCode":"c15.3","gcamValue":1},{"gcamCode":"c15.39","gcamValue":2},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.42","gcamValue":2},{"gcamCode":"c15.43","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.53","gcamValue":1},{"gcamCode":"c15.58","gcamValue":2},{"gcamCode":"c15.62","gcamValue":2},{"gcamCode":"c15.68","gcamValue":1},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":4},{"gcamCode":"c15.75","gcamValue":2},{"gcamCode":"c15.80","gcamValue":2},{"gcamCode":"c15.83","gcamValue":2},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.89","gcamValue":2},{"gcamCode":"c15.9","gcamValue":2},{"gcamCode":"c15.93","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c16.1","gcamValue":5},{"gcamCode":"c16.100","gcamValue":10},{"gcamCode":"c16.101","gcamValue":5},{"gcamCode":"c16.102","gcamValue":5},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":10},{"gcamCode":"c16.106","gcamValue":28},{"gcamCode":"c16.108","gcamValue":2},{"gcamCode":"c16.109","gcamValue":41},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":105},{"gcamCode":"c16.111","gcamValue":7},{"gcamCode":"c16.113","gcamValue":1},{"gcamCode":"c16.114","gcamValue":44},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":14},{"gcamCode":"c16.117","gcamValue":42},{"gcamCode":"c16.118","gcamValue":43},{"gcamCode":"c16.12","gcamValue":67},{"gcamCode":"c16.120","gcamValue":36},{"gcamCode":"c16.121","gcamValue":33},{"gcamCode":"c16.122","gcamValue":9},{"gcamCode":"c16.123","gcamValue":5},{"gcamCode":"c16.124","gcamValue":7},{"gcamCode":"c16.125","gcamValue":56},{"gcamCode":"c16.126","gcamValue":54},{"gcamCode":"c16.127","gcamValue":49},{"gcamCode":"c16.128","gcamValue":9},{"gcamCode":"c16.129","gcamValue":72},{"gcamCode":"c16.13","gcamValue":6},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":31},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":73},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":17},{"gcamCode":"c16.139","gcamValue":28},{"gcamCode":"c16.14","gcamValue":3},{"gcamCode":"c16.140","gcamValue":27},{"gcamCode":"c16.145","gcamValue":31},{"gcamCode":"c16.146","gcamValue":45},{"gcamCode":"c16.147","gcamValue":1},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.15","gcamValue":4},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.153","gcamValue":23},{"gcamCode":"c16.155","gcamValue":10},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":11},{"gcamCode":"c16.159","gcamValue":60},{"gcamCode":"c16.16","gcamValue":14},{"gcamCode":"c16.161","gcamValue":64},{"gcamCode":"c16.162","gcamValue":34},{"gcamCode":"c16.163","gcamValue":54},{"gcamCode":"c16.164","gcamValue":9},{"gcamCode":"c16.165","gcamValue":2},{"gcamCode":"c16.18","gcamValue":12},{"gcamCode":"c16.19","gcamValue":17},{"gcamCode":"c16.2","gcamValue":23},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":22},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":2},{"gcamCode":"c16.26","gcamValue":87},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":3},{"gcamCode":"c16.3","gcamValue":3},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":64},{"gcamCode":"c16.32","gcamValue":6},{"gcamCode":"c16.33","gcamValue":51},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":38},{"gcamCode":"c16.36","gcamValue":1},{"gcamCode":"c16.37","gcamValue":57},{"gcamCode":"c16.38","gcamValue":12},{"gcamCode":"c16.39","gcamValue":1},{"gcamCode":"c16.4","gcamValue":64},{"gcamCode":"c16.41","gcamValue":31},{"gcamCode":"c16.42","gcamValue":4},{"gcamCode":"c16.43","gcamValue":2},{"gcamCode":"c16.45","gcamValue":30},{"gcamCode":"c16.46","gcamValue":7},{"gcamCode":"c16.47","gcamValue":83},{"gcamCode":"c16.48","gcamValue":5},{"gcamCode":"c16.49","gcamValue":8},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":4},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":27},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":8},{"gcamCode":"c16.57","gcamValue":350},{"gcamCode":"c16.58","gcamValue":58},{"gcamCode":"c16.6","gcamValue":63},{"gcamCode":"c16.60","gcamValue":5},{"gcamCode":"c16.62","gcamValue":29},{"gcamCode":"c16.63","gcamValue":9},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":28},{"gcamCode":"c16.66","gcamValue":13},{"gcamCode":"c16.68","gcamValue":30},{"gcamCode":"c16.69","gcamValue":30},{"gcamCode":"c16.7","gcamValue":15},{"gcamCode":"c16.70","gcamValue":20},{"gcamCode":"c16.71","gcamValue":11},{"gcamCode":"c16.72","gcamValue":5},{"gcamCode":"c16.73","gcamValue":6},{"gcamCode":"c16.74","gcamValue":12},{"gcamCode":"c16.75","gcamValue":31},{"gcamCode":"c16.76","gcamValue":2},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":14},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":4},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":37},{"gcamCode":"c16.85","gcamValue":3},{"gcamCode":"c16.87","gcamValue":64},{"gcamCode":"c16.88","gcamValue":87},{"gcamCode":"c16.89","gcamValue":29},{"gcamCode":"c16.90","gcamValue":18},{"gcamCode":"c16.91","gcamValue":24},{"gcamCode":"c16.92","gcamValue":49},{"gcamCode":"c16.93","gcamValue":6},{"gcamCode":"c16.94","gcamValue":59},{"gcamCode":"c16.95","gcamValue":43},{"gcamCode":"c16.96","gcamValue":11},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":54},{"gcamCode":"c16.99","gcamValue":13},{"gcamCode":"c17.1","gcamValue":182},{"gcamCode":"c17.10","gcamValue":86},{"gcamCode":"c17.11","gcamValue":96},{"gcamCode":"c17.12","gcamValue":18},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":8},{"gcamCode":"c17.15","gcamValue":29},{"gcamCode":"c17.16","gcamValue":24},{"gcamCode":"c17.17","gcamValue":4},{"gcamCode":"c17.18","gcamValue":13},{"gcamCode":"c17.19","gcamValue":35},{"gcamCode":"c17.2","gcamValue":4},{"gcamCode":"c17.20","gcamValue":11},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":12},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":61},{"gcamCode":"c17.25","gcamValue":10},{"gcamCode":"c17.26","gcamValue":2},{"gcamCode":"c17.27","gcamValue":79},{"gcamCode":"c17.28","gcamValue":2},{"gcamCode":"c17.29","gcamValue":34},{"gcamCode":"c17.30","gcamValue":14},{"gcamCode":"c17.31","gcamValue":36},{"gcamCode":"c17.32","gcamValue":31},{"gcamCode":"c17.33","gcamValue":36},{"gcamCode":"c17.34","gcamValue":27},{"gcamCode":"c17.35","gcamValue":25},{"gcamCode":"c17.36","gcamValue":33},{"gcamCode":"c17.37","gcamValue":16},{"gcamCode":"c17.38","gcamValue":13},{"gcamCode":"c17.39","gcamValue":34},{"gcamCode":"c17.4","gcamValue":169},{"gcamCode":"c17.40","gcamValue":19},{"gcamCode":"c17.41","gcamValue":24},{"gcamCode":"c17.42","gcamValue":34},{"gcamCode":"c17.43","gcamValue":32},{"gcamCode":"c17.5","gcamValue":122},{"gcamCode":"c17.6","gcamValue":5},{"gcamCode":"c17.7","gcamValue":111},{"gcamCode":"c17.8","gcamValue":68},{"gcamCode":"c17.9","gcamValue":23},{"gcamCode":"c18.13","gcamValue":2},{"gcamCode":"c18.137","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.146","gcamValue":3},{"gcamCode":"c18.149","gcamValue":1},{"gcamCode":"c18.180","gcamValue":10},{"gcamCode":"c18.193","gcamValue":6},{"gcamCode":"c18.298","gcamValue":10},{"gcamCode":"c18.34","gcamValue":1},{"gcamCode":"c18.342","gcamValue":18},{"gcamCode":"c18.37","gcamValue":1},{"gcamCode":"c18.66","gcamValue":1},{"gcamCode":"c18.77","gcamValue":2},{"gcamCode":"c2.1","gcamValue":26},{"gcamCode":"c2.10","gcamValue":7},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":12},{"gcamCode":"c2.102","gcamValue":14},{"gcamCode":"c2.103","gcamValue":12},{"gcamCode":"c2.104","gcamValue":99},{"gcamCode":"c2.107","gcamValue":3},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":7},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":14},{"gcamCode":"c2.113","gcamValue":8},{"gcamCode":"c2.114","gcamValue":51},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":45},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":175},{"gcamCode":"c2.12","gcamValue":30},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":62},{"gcamCode":"c2.122","gcamValue":39},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.124","gcamValue":7},{"gcamCode":"c2.125","gcamValue":40},{"gcamCode":"c2.126","gcamValue":39},{"gcamCode":"c2.127","gcamValue":81},{"gcamCode":"c2.128","gcamValue":28},{"gcamCode":"c2.129","gcamValue":20},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":2},{"gcamCode":"c2.132","gcamValue":4},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":2},{"gcamCode":"c2.135","gcamValue":23},{"gcamCode":"c2.136","gcamValue":3},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.139","gcamValue":7},{"gcamCode":"c2.14","gcamValue":46},{"gcamCode":"c2.140","gcamValue":5},{"gcamCode":"c2.141","gcamValue":13},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":50},{"gcamCode":"c2.144","gcamValue":15},{"gcamCode":"c2.145","gcamValue":9},{"gcamCode":"c2.146","gcamValue":6},{"gcamCode":"c2.147","gcamValue":123},{"gcamCode":"c2.148","gcamValue":140},{"gcamCode":"c2.149","gcamValue":5},{"gcamCode":"c2.15","gcamValue":30},{"gcamCode":"c2.150","gcamValue":10},{"gcamCode":"c2.151","gcamValue":3},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":21},{"gcamCode":"c2.154","gcamValue":7},{"gcamCode":"c2.155","gcamValue":63},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":53},{"gcamCode":"c2.158","gcamValue":68},{"gcamCode":"c2.159","gcamValue":13},{"gcamCode":"c2.160","gcamValue":39},{"gcamCode":"c2.161","gcamValue":6},{"gcamCode":"c2.162","gcamValue":13},{"gcamCode":"c2.163","gcamValue":3},{"gcamCode":"c2.166","gcamValue":19},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":6},{"gcamCode":"c2.17","gcamValue":4},{"gcamCode":"c2.170","gcamValue":7},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":13},{"gcamCode":"c2.174","gcamValue":6},{"gcamCode":"c2.175","gcamValue":2},{"gcamCode":"c2.177","gcamValue":52},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":27},{"gcamCode":"c2.18","gcamValue":28},{"gcamCode":"c2.180","gcamValue":30},{"gcamCode":"c2.181","gcamValue":33},{"gcamCode":"c2.182","gcamValue":1},{"gcamCode":"c2.183","gcamValue":36},{"gcamCode":"c2.185","gcamValue":157},{"gcamCode":"c2.186","gcamValue":17},{"gcamCode":"c2.187","gcamValue":54},{"gcamCode":"c2.188","gcamValue":55},{"gcamCode":"c2.189","gcamValue":55},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":1},{"gcamCode":"c2.191","gcamValue":25},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":70},{"gcamCode":"c2.194","gcamValue":4},{"gcamCode":"c2.195","gcamValue":57},{"gcamCode":"c2.196","gcamValue":12},{"gcamCode":"c2.197","gcamValue":16},{"gcamCode":"c2.198","gcamValue":91},{"gcamCode":"c2.199","gcamValue":21},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.20","gcamValue":5},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.202","gcamValue":1},{"gcamCode":"c2.203","gcamValue":50},{"gcamCode":"c2.204","gcamValue":59},{"gcamCode":"c2.205","gcamValue":20},{"gcamCode":"c2.206","gcamValue":18},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.209","gcamValue":24},{"gcamCode":"c2.21","gcamValue":5},{"gcamCode":"c2.210","gcamValue":77},{"gcamCode":"c2.211","gcamValue":6},{"gcamCode":"c2.213","gcamValue":13},{"gcamCode":"c2.214","gcamValue":14},{"gcamCode":"c2.215","gcamValue":1},{"gcamCode":"c2.217","gcamValue":8},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":14},{"gcamCode":"c2.223","gcamValue":14},{"gcamCode":"c2.225","gcamValue":14},{"gcamCode":"c2.226","gcamValue":16},{"gcamCode":"c2.227","gcamValue":7},{"gcamCode":"c2.228","gcamValue":7},{"gcamCode":"c2.23","gcamValue":10},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":44},{"gcamCode":"c2.26","gcamValue":30},{"gcamCode":"c2.27","gcamValue":30},{"gcamCode":"c2.28","gcamValue":10},{"gcamCode":"c2.30","gcamValue":19},{"gcamCode":"c2.31","gcamValue":32},{"gcamCode":"c2.32","gcamValue":5},{"gcamCode":"c2.33","gcamValue":7},{"gcamCode":"c2.34","gcamValue":49},{"gcamCode":"c2.35","gcamValue":91},{"gcamCode":"c2.36","gcamValue":61},{"gcamCode":"c2.37","gcamValue":85},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":110},{"gcamCode":"c2.4","gcamValue":5},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.41","gcamValue":2},{"gcamCode":"c2.44","gcamValue":34},{"gcamCode":"c2.45","gcamValue":21},{"gcamCode":"c2.46","gcamValue":84},{"gcamCode":"c2.47","gcamValue":11},{"gcamCode":"c2.48","gcamValue":19},{"gcamCode":"c2.5","gcamValue":4},{"gcamCode":"c2.50","gcamValue":10},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":46},{"gcamCode":"c2.53","gcamValue":1},{"gcamCode":"c2.54","gcamValue":54},{"gcamCode":"c2.55","gcamValue":5},{"gcamCode":"c2.56","gcamValue":2},{"gcamCode":"c2.57","gcamValue":9},{"gcamCode":"c2.58","gcamValue":21},{"gcamCode":"c2.59","gcamValue":4},{"gcamCode":"c2.6","gcamValue":10},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":29},{"gcamCode":"c2.64","gcamValue":11},{"gcamCode":"c2.65","gcamValue":11},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":30},{"gcamCode":"c2.70","gcamValue":7},{"gcamCode":"c2.71","gcamValue":6},{"gcamCode":"c2.72","gcamValue":2},{"gcamCode":"c2.73","gcamValue":41},{"gcamCode":"c2.75","gcamValue":124},{"gcamCode":"c2.76","gcamValue":499},{"gcamCode":"c2.77","gcamValue":58},{"gcamCode":"c2.78","gcamValue":110},{"gcamCode":"c2.79","gcamValue":27},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":72},{"gcamCode":"c2.81","gcamValue":14},{"gcamCode":"c2.82","gcamValue":29},{"gcamCode":"c2.83","gcamValue":10},{"gcamCode":"c2.84","gcamValue":4},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":27},{"gcamCode":"c2.87","gcamValue":2},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":24},{"gcamCode":"c2.9","gcamValue":2},{"gcamCode":"c2.90","gcamValue":12},{"gcamCode":"c2.91","gcamValue":2},{"gcamCode":"c2.92","gcamValue":2},{"gcamCode":"c2.93","gcamValue":16},{"gcamCode":"c2.95","gcamValue":140},{"gcamCode":"c2.97","gcamValue":15},{"gcamCode":"c2.98","gcamValue":34},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c25.5","gcamValue":2},{"gcamCode":"c25.8","gcamValue":1},{"gcamCode":"c3.1","gcamValue":39},{"gcamCode":"c3.2","gcamValue":26},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":13},{"gcamCode":"c35.17","gcamValue":1},{"gcamCode":"c35.2","gcamValue":13},{"gcamCode":"c35.20","gcamValue":6},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":2},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.3","gcamValue":2},{"gcamCode":"c35.31","gcamValue":25},{"gcamCode":"c35.32","gcamValue":19},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.6","gcamValue":1},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":3},{"gcamCode":"c39.17","gcamValue":1},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":16},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.3","gcamValue":33},{"gcamCode":"c39.31","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":12},{"gcamCode":"c39.37","gcamValue":12},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":5},{"gcamCode":"c39.4","gcamValue":28},{"gcamCode":"c39.41","gcamValue":5},{"gcamCode":"c39.5","gcamValue":13},{"gcamCode":"c39.6","gcamValue":3},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.8","gcamValue":1},{"gcamCode":"c4.12","gcamValue":5},{"gcamCode":"c4.13","gcamValue":10},{"gcamCode":"c4.15","gcamValue":1},{"gcamCode":"c4.23","gcamValue":29},{"gcamCode":"c4.28","gcamValue":3},{"gcamCode":"c4.3","gcamValue":1},{"gcamCode":"c40.5","gcamValue":2},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":12},{"gcamCode":"c5.10","gcamValue":59},{"gcamCode":"c5.11","gcamValue":25},{"gcamCode":"c5.12","gcamValue":120},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.15","gcamValue":8},{"gcamCode":"c5.16","gcamValue":7},{"gcamCode":"c5.17","gcamValue":15},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":8},{"gcamCode":"c5.21","gcamValue":13},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":18},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":9},{"gcamCode":"c5.26","gcamValue":10},{"gcamCode":"c5.27","gcamValue":15},{"gcamCode":"c5.28","gcamValue":10},{"gcamCode":"c5.29","gcamValue":7},{"gcamCode":"c5.3","gcamValue":3},{"gcamCode":"c5.30","gcamValue":77},{"gcamCode":"c5.31","gcamValue":5},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.33","gcamValue":5},{"gcamCode":"c5.34","gcamValue":15},{"gcamCode":"c5.35","gcamValue":17},{"gcamCode":"c5.36","gcamValue":29},{"gcamCode":"c5.37","gcamValue":6},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.39","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":85},{"gcamCode":"c5.42","gcamValue":1},{"gcamCode":"c5.43","gcamValue":19},{"gcamCode":"c5.44","gcamValue":14},{"gcamCode":"c5.45","gcamValue":15},{"gcamCode":"c5.46","gcamValue":113},{"gcamCode":"c5.47","gcamValue":31},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":110},{"gcamCode":"c5.5","gcamValue":4},{"gcamCode":"c5.50","gcamValue":110},{"gcamCode":"c5.51","gcamValue":82},{"gcamCode":"c5.52","gcamValue":149},{"gcamCode":"c5.53","gcamValue":43},{"gcamCode":"c5.54","gcamValue":26},{"gcamCode":"c5.55","gcamValue":8},{"gcamCode":"c5.56","gcamValue":23},{"gcamCode":"c5.57","gcamValue":8},{"gcamCode":"c5.58","gcamValue":8},{"gcamCode":"c5.59","gcamValue":57},{"gcamCode":"c5.6","gcamValue":39},{"gcamCode":"c5.60","gcamValue":104},{"gcamCode":"c5.61","gcamValue":130},{"gcamCode":"c5.62","gcamValue":392},{"gcamCode":"c5.7","gcamValue":9},{"gcamCode":"c5.8","gcamValue":9},{"gcamCode":"c5.9","gcamValue":36},{"gcamCode":"c6.1","gcamValue":5},{"gcamCode":"c6.2","gcamValue":6},{"gcamCode":"c6.3","gcamValue":3},{"gcamCode":"c6.4","gcamValue":19},{"gcamCode":"c6.5","gcamValue":8},{"gcamCode":"c6.6","gcamValue":6},{"gcamCode":"c7.1","gcamValue":39},{"gcamCode":"c7.2","gcamValue":29},{"gcamCode":"c8.1","gcamValue":2},{"gcamCode":"c8.10","gcamValue":3},{"gcamCode":"c8.11","gcamValue":2},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.15","gcamValue":1},{"gcamCode":"c8.2","gcamValue":1},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":20},{"gcamCode":"c8.24","gcamValue":10},{"gcamCode":"c8.25","gcamValue":8},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.29","gcamValue":5},{"gcamCode":"c8.3","gcamValue":2},{"gcamCode":"c8.32","gcamValue":1},{"gcamCode":"c8.33","gcamValue":2},{"gcamCode":"c8.36","gcamValue":3},{"gcamCode":"c8.37","gcamValue":14},{"gcamCode":"c8.38","gcamValue":10},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":28},{"gcamCode":"c8.40","gcamValue":2},{"gcamCode":"c8.41","gcamValue":13},{"gcamCode":"c8.42","gcamValue":15},{"gcamCode":"c8.43","gcamValue":27},{"gcamCode":"c8.6","gcamValue":1},{"gcamCode":"c8.7","gcamValue":2},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":31},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1006","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":4},{"gcamCode":"c9.1013","gcamValue":1},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1017","gcamValue":9},{"gcamCode":"c9.1018","gcamValue":12},{"gcamCode":"c9.1021","gcamValue":6},{"gcamCode":"c9.1023","gcamValue":6},{"gcamCode":"c9.1024","gcamValue":2},{"gcamCode":"c9.1029","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":3},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1040","gcamValue":2},{"gcamCode":"c9.105","gcamValue":2},{"gcamCode":"c9.107","gcamValue":5},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":2},{"gcamCode":"c9.111","gcamValue":10},{"gcamCode":"c9.112","gcamValue":4},{"gcamCode":"c9.113","gcamValue":5},{"gcamCode":"c9.115","gcamValue":2},{"gcamCode":"c9.116","gcamValue":5},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":9},{"gcamCode":"c9.119","gcamValue":5},{"gcamCode":"c9.12","gcamValue":5},{"gcamCode":"c9.122","gcamValue":4},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":5},{"gcamCode":"c9.125","gcamValue":4},{"gcamCode":"c9.126","gcamValue":3},{"gcamCode":"c9.127","gcamValue":5},{"gcamCode":"c9.128","gcamValue":46},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":6},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.134","gcamValue":5},{"gcamCode":"c9.135","gcamValue":4},{"gcamCode":"c9.137","gcamValue":4},{"gcamCode":"c9.14","gcamValue":5},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":8},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.147","gcamValue":3},{"gcamCode":"c9.148","gcamValue":6},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":5},{"gcamCode":"c9.151","gcamValue":5},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.156","gcamValue":3},{"gcamCode":"c9.158","gcamValue":11},{"gcamCode":"c9.159","gcamValue":5},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":15},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":5},{"gcamCode":"c9.177","gcamValue":4},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.179","gcamValue":4},{"gcamCode":"c9.18","gcamValue":11},{"gcamCode":"c9.180","gcamValue":2},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.184","gcamValue":6},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.190","gcamValue":4},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":8},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":13},{"gcamCode":"c9.196","gcamValue":8},{"gcamCode":"c9.197","gcamValue":2},{"gcamCode":"c9.198","gcamValue":5},{"gcamCode":"c9.2","gcamValue":6},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.200","gcamValue":11},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":2},{"gcamCode":"c9.206","gcamValue":4},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":4},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.214","gcamValue":1},{"gcamCode":"c9.215","gcamValue":3},{"gcamCode":"c9.219","gcamValue":3},{"gcamCode":"c9.22","gcamValue":2},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.224","gcamValue":6},{"gcamCode":"c9.229","gcamValue":2},{"gcamCode":"c9.23","gcamValue":8},{"gcamCode":"c9.230","gcamValue":10},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":4},{"gcamCode":"c9.235","gcamValue":14},{"gcamCode":"c9.237","gcamValue":4},{"gcamCode":"c9.241","gcamValue":3},{"gcamCode":"c9.242","gcamValue":11},{"gcamCode":"c9.244","gcamValue":6},{"gcamCode":"c9.245","gcamValue":3},{"gcamCode":"c9.247","gcamValue":3},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.251","gcamValue":1},{"gcamCode":"c9.252","gcamValue":3},{"gcamCode":"c9.253","gcamValue":2},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.259","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":17},{"gcamCode":"c9.265","gcamValue":3},{"gcamCode":"c9.266","gcamValue":2},{"gcamCode":"c9.267","gcamValue":1},{"gcamCode":"c9.269","gcamValue":1},{"gcamCode":"c9.27","gcamValue":2},{"gcamCode":"c9.270","gcamValue":15},{"gcamCode":"c9.274","gcamValue":8},{"gcamCode":"c9.275","gcamValue":3},{"gcamCode":"c9.276","gcamValue":13},{"gcamCode":"c9.28","gcamValue":3},{"gcamCode":"c9.280","gcamValue":2},{"gcamCode":"c9.282","gcamValue":7},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":6},{"gcamCode":"c9.291","gcamValue":5},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":2},{"gcamCode":"c9.296","gcamValue":4},{"gcamCode":"c9.3","gcamValue":29},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.301","gcamValue":2},{"gcamCode":"c9.302","gcamValue":10},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":3},{"gcamCode":"c9.305","gcamValue":3},{"gcamCode":"c9.307","gcamValue":7},{"gcamCode":"c9.308","gcamValue":2},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.314","gcamValue":2},{"gcamCode":"c9.32","gcamValue":2},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":7},{"gcamCode":"c9.325","gcamValue":2},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":11},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.337","gcamValue":2},{"gcamCode":"c9.34","gcamValue":12},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.35","gcamValue":4},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.363","gcamValue":2},{"gcamCode":"c9.370","gcamValue":5},{"gcamCode":"c9.371","gcamValue":12},{"gcamCode":"c9.373","gcamValue":2},{"gcamCode":"c9.374","gcamValue":3},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":9},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.385","gcamValue":27},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.387","gcamValue":2},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.391","gcamValue":1},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":8},{"gcamCode":"c9.40","gcamValue":3},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":4},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.428","gcamValue":2},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":5},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":4},{"gcamCode":"c9.437","gcamValue":4},{"gcamCode":"c9.439","gcamValue":1},{"gcamCode":"c9.447","gcamValue":2},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.458","gcamValue":2},{"gcamCode":"c9.459","gcamValue":6},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.463","gcamValue":1},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":2},{"gcamCode":"c9.467","gcamValue":6},{"gcamCode":"c9.468","gcamValue":4},{"gcamCode":"c9.47","gcamValue":4},{"gcamCode":"c9.470","gcamValue":5},{"gcamCode":"c9.472","gcamValue":2},{"gcamCode":"c9.473","gcamValue":5},{"gcamCode":"c9.474","gcamValue":2},{"gcamCode":"c9.476","gcamValue":6},{"gcamCode":"c9.477","gcamValue":8},{"gcamCode":"c9.478","gcamValue":4},{"gcamCode":"c9.479","gcamValue":8},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":7},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.485","gcamValue":3},{"gcamCode":"c9.487","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.493","gcamValue":3},{"gcamCode":"c9.494","gcamValue":4},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.497","gcamValue":3},{"gcamCode":"c9.498","gcamValue":8},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.50","gcamValue":1},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.502","gcamValue":5},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":12},{"gcamCode":"c9.509","gcamValue":3},{"gcamCode":"c9.511","gcamValue":7},{"gcamCode":"c9.513","gcamValue":11},{"gcamCode":"c9.514","gcamValue":3},{"gcamCode":"c9.517","gcamValue":9},{"gcamCode":"c9.518","gcamValue":12},{"gcamCode":"c9.519","gcamValue":3},{"gcamCode":"c9.521","gcamValue":14},{"gcamCode":"c9.522","gcamValue":10},{"gcamCode":"c9.523","gcamValue":5},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.526","gcamValue":2},{"gcamCode":"c9.527","gcamValue":1},{"gcamCode":"c9.528","gcamValue":4},{"gcamCode":"c9.53","gcamValue":5},{"gcamCode":"c9.530","gcamValue":4},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.539","gcamValue":12},{"gcamCode":"c9.54","gcamValue":2},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":7},{"gcamCode":"c9.550","gcamValue":3},{"gcamCode":"c9.551","gcamValue":5},{"gcamCode":"c9.554","gcamValue":7},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":6},{"gcamCode":"c9.559","gcamValue":5},{"gcamCode":"c9.56","gcamValue":3},{"gcamCode":"c9.560","gcamValue":7},{"gcamCode":"c9.561","gcamValue":4},{"gcamCode":"c9.562","gcamValue":4},{"gcamCode":"c9.566","gcamValue":2},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":17},{"gcamCode":"c9.571","gcamValue":4},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":8},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":30},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.581","gcamValue":6},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":4},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.590","gcamValue":2},{"gcamCode":"c9.591","gcamValue":3},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.596","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.605","gcamValue":2},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":1},{"gcamCode":"c9.608","gcamValue":1},{"gcamCode":"c9.609","gcamValue":1},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.616","gcamValue":4},{"gcamCode":"c9.618","gcamValue":4},{"gcamCode":"c9.619","gcamValue":7},{"gcamCode":"c9.62","gcamValue":4},{"gcamCode":"c9.620","gcamValue":1},{"gcamCode":"c9.621","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":8},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.626","gcamValue":4},{"gcamCode":"c9.627","gcamValue":5},{"gcamCode":"c9.628","gcamValue":1},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":4},{"gcamCode":"c9.632","gcamValue":3},{"gcamCode":"c9.633","gcamValue":1},{"gcamCode":"c9.635","gcamValue":2},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.640","gcamValue":5},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":15},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.648","gcamValue":8},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.65","gcamValue":1},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":42},{"gcamCode":"c9.654","gcamValue":16},{"gcamCode":"c9.655","gcamValue":9},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":6},{"gcamCode":"c9.660","gcamValue":5},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.664","gcamValue":12},{"gcamCode":"c9.667","gcamValue":13},{"gcamCode":"c9.668","gcamValue":9},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.67","gcamValue":3},{"gcamCode":"c9.670","gcamValue":14},{"gcamCode":"c9.671","gcamValue":6},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.676","gcamValue":2},{"gcamCode":"c9.677","gcamValue":6},{"gcamCode":"c9.678","gcamValue":2},{"gcamCode":"c9.679","gcamValue":5},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.681","gcamValue":4},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":5},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":18},{"gcamCode":"c9.690","gcamValue":4},{"gcamCode":"c9.691","gcamValue":1},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":9},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.698","gcamValue":5},{"gcamCode":"c9.70","gcamValue":6},{"gcamCode":"c9.701","gcamValue":15},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":6},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":1},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":10},{"gcamCode":"c9.710","gcamValue":7},{"gcamCode":"c9.711","gcamValue":5},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.713","gcamValue":3},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":10},{"gcamCode":"c9.722","gcamValue":4},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.726","gcamValue":36},{"gcamCode":"c9.727","gcamValue":2},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":31},{"gcamCode":"c9.732","gcamValue":5},{"gcamCode":"c9.733","gcamValue":1},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":2},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.74","gcamValue":2},{"gcamCode":"c9.740","gcamValue":3},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.744","gcamValue":12},{"gcamCode":"c9.745","gcamValue":5},{"gcamCode":"c9.746","gcamValue":6},{"gcamCode":"c9.747","gcamValue":4},{"gcamCode":"c9.748","gcamValue":7},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":3},{"gcamCode":"c9.754","gcamValue":1},{"gcamCode":"c9.756","gcamValue":3},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.759","gcamValue":3},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.760","gcamValue":3},{"gcamCode":"c9.762","gcamValue":28},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":55},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.770","gcamValue":2},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.773","gcamValue":3},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":3},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.781","gcamValue":2},{"gcamCode":"c9.782","gcamValue":13},{"gcamCode":"c9.784","gcamValue":4},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":5},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.795","gcamValue":4},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":3},{"gcamCode":"c9.806","gcamValue":8},{"gcamCode":"c9.807","gcamValue":5},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":2},{"gcamCode":"c9.814","gcamValue":2},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":6},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.826","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":16},{"gcamCode":"c9.831","gcamValue":6},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":3},{"gcamCode":"c9.834","gcamValue":4},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.838","gcamValue":4},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":4},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.85","gcamValue":3},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.858","gcamValue":7},{"gcamCode":"c9.86","gcamValue":2},{"gcamCode":"c9.860","gcamValue":9},{"gcamCode":"c9.861","gcamValue":8},{"gcamCode":"c9.862","gcamValue":5},{"gcamCode":"c9.863","gcamValue":6},{"gcamCode":"c9.864","gcamValue":29},{"gcamCode":"c9.865","gcamValue":7},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.867","gcamValue":3},{"gcamCode":"c9.868","gcamValue":28},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.870","gcamValue":1},{"gcamCode":"c9.872","gcamValue":1},{"gcamCode":"c9.873","gcamValue":7},{"gcamCode":"c9.874","gcamValue":3},{"gcamCode":"c9.877","gcamValue":6},{"gcamCode":"c9.878","gcamValue":4},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":6},{"gcamCode":"c9.883","gcamValue":4},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":7},{"gcamCode":"c9.897","gcamValue":5},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.900","gcamValue":4},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":2},{"gcamCode":"c9.903","gcamValue":8},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.908","gcamValue":10},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.912","gcamValue":1},{"gcamCode":"c9.914","gcamValue":2},{"gcamCode":"c9.921","gcamValue":3},{"gcamCode":"c9.923","gcamValue":5},{"gcamCode":"c9.924","gcamValue":2},{"gcamCode":"c9.925","gcamValue":1},{"gcamCode":"c9.926","gcamValue":4},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":6},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":9},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.939","gcamValue":1},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":6},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.95","gcamValue":1},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.954","gcamValue":1},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.960","gcamValue":1},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.963","gcamValue":3},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":4},{"gcamCode":"c9.966","gcamValue":5},{"gcamCode":"c9.968","gcamValue":4},{"gcamCode":"c9.969","gcamValue":3},{"gcamCode":"c9.970","gcamValue":1},{"gcamCode":"c9.972","gcamValue":6},{"gcamCode":"c9.973","gcamValue":4},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.98","gcamValue":5},{"gcamCode":"c9.980","gcamValue":10},{"gcamCode":"c9.981","gcamValue":5},{"gcamCode":"c9.984","gcamValue":3},{"gcamCode":"c9.985","gcamValue":5},{"gcamCode":"c9.986","gcamValue":1},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.99","gcamValue":7},{"gcamCode":"c9.992","gcamValue":2},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.254591346153846},{"gcamCode":"v10.2","gcamValue":0.244120060696148},{"gcamCode":"v11.1","gcamValue":0.00497967426710098},{"gcamCode":"v19.1","gcamValue":5.83721649484536},{"gcamCode":"v19.2","gcamValue":5.34072164948454},{"gcamCode":"v19.3","gcamValue":5.42618556701031},{"gcamCode":"v19.4","gcamValue":5.78350515463918},{"gcamCode":"v19.5","gcamValue":5.3459793814433},{"gcamCode":"v19.6","gcamValue":5.49185567010309},{"gcamCode":"v19.7","gcamValue":5.90154639175258},{"gcamCode":"v19.8","gcamValue":5.35639175257732},{"gcamCode":"v19.9","gcamValue":5.36443298969072},{"gcamCode":"v20.1","gcamValue":0.4186},{"gcamCode":"v20.10","gcamValue":-0.481555555555556},{"gcamCode":"v20.11","gcamValue":0.633545454545455},{"gcamCode":"v20.12","gcamValue":-0.481555555555556},{"gcamCode":"v20.13","gcamValue":0.447277777777778},{"gcamCode":"v20.14","gcamValue":-0.430642857142857},{"gcamCode":"v20.15","gcamValue":0.37459649122807},{"gcamCode":"v20.16","gcamValue":-0.335034482758621},{"gcamCode":"v20.2","gcamValue":-0.299},{"gcamCode":"v20.3","gcamValue":0.4186},{"gcamCode":"v20.4","gcamValue":-0.3168},{"gcamCode":"v20.5","gcamValue":0.635444444444444},{"gcamCode":"v20.6","gcamValue":-0.3168},{"gcamCode":"v20.7","gcamValue":0.6469},{"gcamCode":"v20.8","gcamValue":-0.440571428571429},{"gcamCode":"v20.9","gcamValue":0.6469},{"gcamCode":"v21.1","gcamValue":5.40642857142857},{"gcamCode":"v26.1","gcamValue":0.0271186440677966}]https://media2.foxnews.com/BrightCove/694940094001/2019/05/22/694940094001_6039962428001_6039961119001-vs.jpg["https://media2.foxnews.com/BrightCove/694940094001/2019/05/20/694940094001_6038692677001_6038689794001-vs.jpg"][""][""][{"charLength":45,"verb":"","quote":"I need to talk to you. Can you step out here?","charOffset":933},{"charLength":29,"verb":"","quote":"But was that the whole dream?","charOffset":2848},{"charLength":25,"verb":"","quote":"Who could that have been?","charOffset":3732},{"charLength":63,"verb":"","quote":"Maybe. Who else would care enough to try to get me out of here?","charOffset":3830}][{"name":"Alice Johnson","charOffset":14},{"name":"Alice Johnson","charOffset":93},{"name":"Alice Johnson","charOffset":172},{"name":"President Trump","charOffset":262},{"name":"After Life","charOffset":349},{"name":"Journey From Incarceration","charOffset":382},{"name":"Federal Medical Center","charOffset":442},{"name":"Alice Johnson","charOffset":1500},{"name":"Miss Alice","charOffset":3411}][{"amount":2,"amountType":"before we had","charOffset":411},{"amount":2,"amountType":"bunks","charOffset":483}]{"SRCLC":"","ENG":""}<PAGE_LINKS>http://video.foxnews.com/v/6039961119001;http://www.foxnews.com/entertainment/2018/05/30/kim-kardashian-advocates-for-alice-johnson-others-who-are-jailed.html</PAGE_LINKS><PAGE_PRECISEPUBTIMESTAMP>20190521000000</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://www.foxnews.com/opinion/alice-marie-johnson-i-was-sentenced-to-life-in-prison-heres-why-i-never-lost-hope.amp</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":28}2019-05-23T12:15:00.000+0000WEByahoo.comhttps://news.yahoo.com/tornado-strike-kills-three-missouri-113927528.html[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"WOUND","count":9,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},{"countType":"WOUND","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_CRISISLEXREC","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_C03_WELLBEING_HEALTH","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T02_INJURED","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":74},{"count":{"countType":"WOUND","count":9,"objectType":"","location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"}},"charOffset":290},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":568},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":568},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":568},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}},"charOffset":568},{"count":{"countType":"WOUND","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":718},{"count":{"countType":"CRISISLEX_CRISISLEXREC","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":718},{"count":{"countType":"CRISISLEX_C03_WELLBEING_HEALTH","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":718},{"count":{"countType":"CRISISLEX_T02_INJURED","count":9,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":718}]["NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","KILL","TAX_FNCACT","TAX_FNCACT_OFFICIALS","WOUND","NATURAL_DISASTER_TWISTER","NATURAL_DISASTER_HEAVY_RAIN","CRISISLEX_T01_CAUTION_ADVICE","EPU_CATS_MIGRATION_FEAR_FEAR","CRISISLEX_T03_DEAD","UNGP_CRIME_VIOLENCE","CRISISLEX_C03_WELLBEING_HEALTH","CRISISLEX_T02_INJURED","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_EMPLOYEES","MANMADE_DISASTER_IMPLIED","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","MANMADE_DISASTER","MANMADE_DISASTER_WITHOUT_ELECTRICITY","POWER_OUTAGE","SHORTAGE","NATURAL_DISASTER_SEVERE_WEATHER","ECON_ELECTRICALGENERATION","MEDIA_SOCIAL","LEADER","TAX_FNCACT_MAYOR","AFFECT","EVACUATION"][{"theme":"NATURAL_DISASTER_FLOODING","charOffset":1159},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":1615},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":1159},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":1615},{"theme":"KILL","charOffset":82},{"theme":"SHORTAGE","charOffset":1238},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":400},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":400},{"theme":"MANMADE_DISASTER_WITHOUT_ELECTRICITY","charOffset":1212},{"theme":"POWER_OUTAGE","charOffset":1212},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":497},{"theme":"WOUND","charOffset":326},{"theme":"ECON_ELECTRICALGENERATION","charOffset":1283},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1134},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1134},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":1267},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":1003},{"theme":"TAX_FNCACT_EMPLOYEES","charOffset":925},{"theme":"CRISISLEX_T03_DEAD","charOffset":581},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":752},{"theme":"CRISISLEX_T02_INJURED","charOffset":752},{"theme":"MEDIA_SOCIAL","charOffset":1335},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":350},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":711},{"theme":"AFFECT","charOffset":1575},{"theme":"EVACUATION","charOffset":1575},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":50},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":505},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1346},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":50},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":505},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1346},{"theme":"CRISISLEX_O01_WEATHER","charOffset":50},{"theme":"CRISISLEX_O01_WEATHER","charOffset":505},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1346},{"theme":"LEADER","charOffset":1467},{"theme":"TAX_FNCACT_MAYOR","charOffset":1467},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":194},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":1048},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":130},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":802}][{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Keystone Lake, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":36.1487,"longitude":-96.2533},"featureId":"1101491"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"}][{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":72},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":683},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":909},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1413},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":477},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":1453},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":486},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":611},{"location":{"geoType":"USCITY","geoName":"Keystone Lake, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK117","geoPoint":{"latitude":36.1487,"longitude":-96.2533},"featureId":"1101491"},"charOffset":1526},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":273},{"location":{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":10}][""][]["missouri department of public safety","facebook","national weather service","cnn"][{"organisation":"Missouri Department Of Public Safety","charOffset":711},{"organisation":"Facebook","charOffset":1335},{"organisation":"National Weather Service","charOffset":565},{"organisation":"Cnn","charOffset":782}]{"tone":-7.9166665,"positiveScore":2.0833333,"negativeScore":10,"polarity":12.083333,"activityReferenceDensity":25.833334,"selfGroupReferenceDensity":0,"wordCount":228}[][{"gcamCode":"wc","gcamValue":228},{"gcamCode":"c12.1","gcamValue":7},{"gcamCode":"c12.10","gcamValue":22},{"gcamCode":"c12.12","gcamValue":17},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":6},{"gcamCode":"c12.3","gcamValue":3},{"gcamCode":"c12.5","gcamValue":5},{"gcamCode":"c12.7","gcamValue":18},{"gcamCode":"c12.8","gcamValue":4},{"gcamCode":"c12.9","gcamValue":11},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.14","gcamValue":4},{"gcamCode":"c13.3","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":15},{"gcamCode":"c14.10","gcamValue":9},{"gcamCode":"c14.11","gcamValue":33},{"gcamCode":"c14.2","gcamValue":14},{"gcamCode":"c14.3","gcamValue":17},{"gcamCode":"c14.4","gcamValue":3},{"gcamCode":"c14.5","gcamValue":27},{"gcamCode":"c14.7","gcamValue":11},{"gcamCode":"c14.9","gcamValue":1},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.273","gcamValue":1},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.50","gcamValue":1},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":3},{"gcamCode":"c16.100","gcamValue":10},{"gcamCode":"c16.101","gcamValue":1},{"gcamCode":"c16.106","gcamValue":8},{"gcamCode":"c16.109","gcamValue":11},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":36},{"gcamCode":"c16.111","gcamValue":4},{"gcamCode":"c16.114","gcamValue":11},{"gcamCode":"c16.115","gcamValue":4},{"gcamCode":"c16.116","gcamValue":13},{"gcamCode":"c16.117","gcamValue":9},{"gcamCode":"c16.118","gcamValue":14},{"gcamCode":"c16.12","gcamValue":23},{"gcamCode":"c16.120","gcamValue":9},{"gcamCode":"c16.121","gcamValue":25},{"gcamCode":"c16.125","gcamValue":10},{"gcamCode":"c16.126","gcamValue":15},{"gcamCode":"c16.127","gcamValue":14},{"gcamCode":"c16.129","gcamValue":44},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":9},{"gcamCode":"c16.134","gcamValue":24},{"gcamCode":"c16.138","gcamValue":4},{"gcamCode":"c16.139","gcamValue":7},{"gcamCode":"c16.140","gcamValue":10},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":19},{"gcamCode":"c16.146","gcamValue":12},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.151","gcamValue":1},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":15},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":1},{"gcamCode":"c16.157","gcamValue":6},{"gcamCode":"c16.159","gcamValue":14},{"gcamCode":"c16.16","gcamValue":2},{"gcamCode":"c16.161","gcamValue":27},{"gcamCode":"c16.162","gcamValue":21},{"gcamCode":"c16.163","gcamValue":14},{"gcamCode":"c16.164","gcamValue":4},{"gcamCode":"c16.165","gcamValue":4},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":22},{"gcamCode":"c16.20","gcamValue":1},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":11},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":26},{"gcamCode":"c16.3","gcamValue":2},{"gcamCode":"c16.31","gcamValue":17},{"gcamCode":"c16.33","gcamValue":24},{"gcamCode":"c16.35","gcamValue":10},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":24},{"gcamCode":"c16.38","gcamValue":1},{"gcamCode":"c16.4","gcamValue":11},{"gcamCode":"c16.41","gcamValue":8},{"gcamCode":"c16.45","gcamValue":9},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":22},{"gcamCode":"c16.48","gcamValue":4},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":2},{"gcamCode":"c16.50","gcamValue":1},{"gcamCode":"c16.52","gcamValue":18},{"gcamCode":"c16.55","gcamValue":2},{"gcamCode":"c16.56","gcamValue":7},{"gcamCode":"c16.57","gcamValue":136},{"gcamCode":"c16.58","gcamValue":14},{"gcamCode":"c16.6","gcamValue":24},{"gcamCode":"c16.62","gcamValue":7},{"gcamCode":"c16.63","gcamValue":1},{"gcamCode":"c16.65","gcamValue":5},{"gcamCode":"c16.66","gcamValue":2},{"gcamCode":"c16.68","gcamValue":7},{"gcamCode":"c16.69","gcamValue":7},{"gcamCode":"c16.7","gcamValue":6},{"gcamCode":"c16.70","gcamValue":24},{"gcamCode":"c16.71","gcamValue":6},{"gcamCode":"c16.74","gcamValue":1},{"gcamCode":"c16.75","gcamValue":8},{"gcamCode":"c16.78","gcamValue":9},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.83","gcamValue":1},{"gcamCode":"c16.84","gcamValue":11},{"gcamCode":"c16.85","gcamValue":1},{"gcamCode":"c16.87","gcamValue":27},{"gcamCode":"c16.88","gcamValue":40},{"gcamCode":"c16.89","gcamValue":5},{"gcamCode":"c16.9","gcamValue":4},{"gcamCode":"c16.90","gcamValue":7},{"gcamCode":"c16.91","gcamValue":7},{"gcamCode":"c16.92","gcamValue":16},{"gcamCode":"c16.93","gcamValue":10},{"gcamCode":"c16.94","gcamValue":15},{"gcamCode":"c16.95","gcamValue":22},{"gcamCode":"c16.96","gcamValue":4},{"gcamCode":"c16.98","gcamValue":14},{"gcamCode":"c16.99","gcamValue":1},{"gcamCode":"c17.1","gcamValue":76},{"gcamCode":"c17.10","gcamValue":17},{"gcamCode":"c17.11","gcamValue":27},{"gcamCode":"c17.12","gcamValue":9},{"gcamCode":"c17.13","gcamValue":3},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":26},{"gcamCode":"c17.16","gcamValue":19},{"gcamCode":"c17.18","gcamValue":5},{"gcamCode":"c17.19","gcamValue":13},{"gcamCode":"c17.2","gcamValue":2},{"gcamCode":"c17.20","gcamValue":12},{"gcamCode":"c17.22","gcamValue":9},{"gcamCode":"c17.23","gcamValue":1},{"gcamCode":"c17.24","gcamValue":17},{"gcamCode":"c17.25","gcamValue":1},{"gcamCode":"c17.27","gcamValue":27},{"gcamCode":"c17.28","gcamValue":4},{"gcamCode":"c17.29","gcamValue":8},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":2},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.32","gcamValue":4},{"gcamCode":"c17.33","gcamValue":9},{"gcamCode":"c17.34","gcamValue":4},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":11},{"gcamCode":"c17.37","gcamValue":1},{"gcamCode":"c17.39","gcamValue":9},{"gcamCode":"c17.4","gcamValue":57},{"gcamCode":"c17.40","gcamValue":3},{"gcamCode":"c17.41","gcamValue":5},{"gcamCode":"c17.42","gcamValue":9},{"gcamCode":"c17.43","gcamValue":15},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":42},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":28},{"gcamCode":"c17.8","gcamValue":18},{"gcamCode":"c17.9","gcamValue":4},{"gcamCode":"c18.1","gcamValue":2},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.14","gcamValue":1},{"gcamCode":"c18.156","gcamValue":12},{"gcamCode":"c18.162","gcamValue":1},{"gcamCode":"c18.163","gcamValue":1},{"gcamCode":"c18.193","gcamValue":5},{"gcamCode":"c18.2","gcamValue":2},{"gcamCode":"c18.323","gcamValue":1},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.50","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.83","gcamValue":1},{"gcamCode":"c2.1","gcamValue":11},{"gcamCode":"c2.102","gcamValue":4},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":30},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.11","gcamValue":5},{"gcamCode":"c2.110","gcamValue":4},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.113","gcamValue":1},{"gcamCode":"c2.114","gcamValue":13},{"gcamCode":"c2.115","gcamValue":1},{"gcamCode":"c2.116","gcamValue":10},{"gcamCode":"c2.119","gcamValue":69},{"gcamCode":"c2.12","gcamValue":8},{"gcamCode":"c2.121","gcamValue":8},{"gcamCode":"c2.122","gcamValue":1},{"gcamCode":"c2.125","gcamValue":7},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":23},{"gcamCode":"c2.128","gcamValue":21},{"gcamCode":"c2.129","gcamValue":23},{"gcamCode":"c2.132","gcamValue":3},{"gcamCode":"c2.133","gcamValue":5},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":1},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.137","gcamValue":2},{"gcamCode":"c2.14","gcamValue":17},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":7},{"gcamCode":"c2.142","gcamValue":3},{"gcamCode":"c2.143","gcamValue":21},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.147","gcamValue":39},{"gcamCode":"c2.148","gcamValue":5},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":6},{"gcamCode":"c2.154","gcamValue":14},{"gcamCode":"c2.155","gcamValue":17},{"gcamCode":"c2.156","gcamValue":12},{"gcamCode":"c2.157","gcamValue":15},{"gcamCode":"c2.158","gcamValue":8},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.16","gcamValue":1},{"gcamCode":"c2.160","gcamValue":8},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.166","gcamValue":1},{"gcamCode":"c2.172","gcamValue":3},{"gcamCode":"c2.173","gcamValue":2},{"gcamCode":"c2.174","gcamValue":1},{"gcamCode":"c2.176","gcamValue":1},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.179","gcamValue":1},{"gcamCode":"c2.18","gcamValue":7},{"gcamCode":"c2.180","gcamValue":7},{"gcamCode":"c2.181","gcamValue":7},{"gcamCode":"c2.183","gcamValue":7},{"gcamCode":"c2.185","gcamValue":47},{"gcamCode":"c2.186","gcamValue":2},{"gcamCode":"c2.187","gcamValue":7},{"gcamCode":"c2.19","gcamValue":1},{"gcamCode":"c2.190","gcamValue":4},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":2},{"gcamCode":"c2.193","gcamValue":21},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":23},{"gcamCode":"c2.196","gcamValue":5},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":27},{"gcamCode":"c2.199","gcamValue":4},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.203","gcamValue":3},{"gcamCode":"c2.204","gcamValue":19},{"gcamCode":"c2.205","gcamValue":1},{"gcamCode":"c2.206","gcamValue":4},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.208","gcamValue":6},{"gcamCode":"c2.209","gcamValue":2},{"gcamCode":"c2.210","gcamValue":13},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":6},{"gcamCode":"c2.214","gcamValue":8},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":5},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":6},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":2},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":23},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":9},{"gcamCode":"c2.26","gcamValue":4},{"gcamCode":"c2.27","gcamValue":4},{"gcamCode":"c2.28","gcamValue":4},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":7},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":1},{"gcamCode":"c2.34","gcamValue":22},{"gcamCode":"c2.39","gcamValue":13},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":1},{"gcamCode":"c2.44","gcamValue":10},{"gcamCode":"c2.45","gcamValue":18},{"gcamCode":"c2.46","gcamValue":19},{"gcamCode":"c2.48","gcamValue":1},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":9},{"gcamCode":"c2.52","gcamValue":15},{"gcamCode":"c2.54","gcamValue":19},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":5},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.60","gcamValue":1},{"gcamCode":"c2.61","gcamValue":4},{"gcamCode":"c2.62","gcamValue":8},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.67","gcamValue":1},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":1},{"gcamCode":"c2.73","gcamValue":1},{"gcamCode":"c2.75","gcamValue":26},{"gcamCode":"c2.76","gcamValue":127},{"gcamCode":"c2.77","gcamValue":25},{"gcamCode":"c2.78","gcamValue":27},{"gcamCode":"c2.79","gcamValue":6},{"gcamCode":"c2.80","gcamValue":19},{"gcamCode":"c2.81","gcamValue":1},{"gcamCode":"c2.82","gcamValue":4},{"gcamCode":"c2.83","gcamValue":1},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":3},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":4},{"gcamCode":"c2.89","gcamValue":6},{"gcamCode":"c2.9","gcamValue":10},{"gcamCode":"c2.90","gcamValue":1},{"gcamCode":"c2.93","gcamValue":6},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":33},{"gcamCode":"c2.97","gcamValue":1},{"gcamCode":"c2.98","gcamValue":13},{"gcamCode":"c25.1","gcamValue":3},{"gcamCode":"c25.2","gcamValue":4},{"gcamCode":"c25.5","gcamValue":5},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":29},{"gcamCode":"c3.2","gcamValue":19},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.10","gcamValue":2},{"gcamCode":"c35.14","gcamValue":1},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.18","gcamValue":2},{"gcamCode":"c35.20","gcamValue":14},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":4},{"gcamCode":"c35.26","gcamValue":2},{"gcamCode":"c35.31","gcamValue":9},{"gcamCode":"c35.32","gcamValue":5},{"gcamCode":"c35.33","gcamValue":21},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c39.1","gcamValue":1},{"gcamCode":"c39.13","gcamValue":2},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.2","gcamValue":3},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.28","gcamValue":1},{"gcamCode":"c39.3","gcamValue":6},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":6},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":11},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":6},{"gcamCode":"c39.9","gcamValue":2},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.14","gcamValue":2},{"gcamCode":"c4.15","gcamValue":2},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.22","gcamValue":1},{"gcamCode":"c4.23","gcamValue":7},{"gcamCode":"c4.24","gcamValue":1},{"gcamCode":"c40.3","gcamValue":1},{"gcamCode":"c40.4","gcamValue":5},{"gcamCode":"c41.1","gcamValue":14},{"gcamCode":"c5.10","gcamValue":28},{"gcamCode":"c5.11","gcamValue":6},{"gcamCode":"c5.12","gcamValue":46},{"gcamCode":"c5.15","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.18","gcamValue":2},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.2","gcamValue":2},{"gcamCode":"c5.21","gcamValue":6},{"gcamCode":"c5.22","gcamValue":1},{"gcamCode":"c5.23","gcamValue":5},{"gcamCode":"c5.24","gcamValue":1},{"gcamCode":"c5.28","gcamValue":3},{"gcamCode":"c5.30","gcamValue":11},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":8},{"gcamCode":"c5.35","gcamValue":3},{"gcamCode":"c5.36","gcamValue":11},{"gcamCode":"c5.37","gcamValue":4},{"gcamCode":"c5.38","gcamValue":1},{"gcamCode":"c5.40","gcamValue":13},{"gcamCode":"c5.43","gcamValue":5},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":5},{"gcamCode":"c5.46","gcamValue":37},{"gcamCode":"c5.47","gcamValue":2},{"gcamCode":"c5.49","gcamValue":10},{"gcamCode":"c5.5","gcamValue":7},{"gcamCode":"c5.50","gcamValue":17},{"gcamCode":"c5.51","gcamValue":7},{"gcamCode":"c5.52","gcamValue":17},{"gcamCode":"c5.53","gcamValue":11},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.55","gcamValue":1},{"gcamCode":"c5.6","gcamValue":9},{"gcamCode":"c5.60","gcamValue":1},{"gcamCode":"c5.61","gcamValue":4},{"gcamCode":"c5.62","gcamValue":67},{"gcamCode":"c5.7","gcamValue":4},{"gcamCode":"c5.8","gcamValue":10},{"gcamCode":"c5.9","gcamValue":10},{"gcamCode":"c6.1","gcamValue":2},{"gcamCode":"c6.4","gcamValue":11},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":1},{"gcamCode":"c7.1","gcamValue":15},{"gcamCode":"c7.2","gcamValue":8},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.16","gcamValue":1},{"gcamCode":"c8.17","gcamValue":1},{"gcamCode":"c8.18","gcamValue":5},{"gcamCode":"c8.2","gcamValue":14},{"gcamCode":"c8.22","gcamValue":5},{"gcamCode":"c8.23","gcamValue":9},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":1},{"gcamCode":"c8.38","gcamValue":5},{"gcamCode":"c8.4","gcamValue":7},{"gcamCode":"c8.42","gcamValue":12},{"gcamCode":"c8.43","gcamValue":3},{"gcamCode":"c8.5","gcamValue":2},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c9.1","gcamValue":8},{"gcamCode":"c9.10","gcamValue":2},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1011","gcamValue":4},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":3},{"gcamCode":"c9.1024","gcamValue":1},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.1040","gcamValue":4},{"gcamCode":"c9.1041","gcamValue":1},{"gcamCode":"c9.107","gcamValue":5},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.118","gcamValue":1},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.122","gcamValue":5},{"gcamCode":"c9.123","gcamValue":2},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":7},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.138","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":1},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":1},{"gcamCode":"c9.160","gcamValue":2},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":2},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":4},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":3},{"gcamCode":"c9.167","gcamValue":5},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.173","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":1},{"gcamCode":"c9.18","gcamValue":1},{"gcamCode":"c9.180","gcamValue":3},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.183","gcamValue":3},{"gcamCode":"c9.190","gcamValue":4},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":2},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.194","gcamValue":2},{"gcamCode":"c9.195","gcamValue":5},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":7},{"gcamCode":"c9.20","gcamValue":1},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.206","gcamValue":4},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":3},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.234","gcamValue":1},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.249","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.298","gcamValue":1},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.30","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.305","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.322","gcamValue":4},{"gcamCode":"c9.325","gcamValue":1},{"gcamCode":"c9.329","gcamValue":1},{"gcamCode":"c9.33","gcamValue":6},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.34","gcamValue":2},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.345","gcamValue":1},{"gcamCode":"c9.348","gcamValue":2},{"gcamCode":"c9.35","gcamValue":1},{"gcamCode":"c9.353","gcamValue":2},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.359","gcamValue":7},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.373","gcamValue":1},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.383","gcamValue":10},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.396","gcamValue":1},{"gcamCode":"c9.40","gcamValue":3},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":4},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.452","gcamValue":1},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.46","gcamValue":1},{"gcamCode":"c9.462","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.489","gcamValue":5},{"gcamCode":"c9.49","gcamValue":4},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":1},{"gcamCode":"c9.499","gcamValue":1},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.50","gcamValue":1},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.507","gcamValue":1},{"gcamCode":"c9.511","gcamValue":1},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.535","gcamValue":1},{"gcamCode":"c9.54","gcamValue":4},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.543","gcamValue":1},{"gcamCode":"c9.549","gcamValue":3},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":7},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.562","gcamValue":1},{"gcamCode":"c9.567","gcamValue":4},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.576","gcamValue":1},{"gcamCode":"c9.579","gcamValue":8},{"gcamCode":"c9.580","gcamValue":1},{"gcamCode":"c9.586","gcamValue":2},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.598","gcamValue":2},{"gcamCode":"c9.599","gcamValue":3},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.601","gcamValue":1},{"gcamCode":"c9.604","gcamValue":1},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":4},{"gcamCode":"c9.62","gcamValue":1},{"gcamCode":"c9.624","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.642","gcamValue":2},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.647","gcamValue":2},{"gcamCode":"c9.649","gcamValue":2},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":11},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":4},{"gcamCode":"c9.667","gcamValue":2},{"gcamCode":"c9.668","gcamValue":1},{"gcamCode":"c9.669","gcamValue":2},{"gcamCode":"c9.67","gcamValue":2},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.671","gcamValue":4},{"gcamCode":"c9.672","gcamValue":1},{"gcamCode":"c9.673","gcamValue":2},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.676","gcamValue":1},{"gcamCode":"c9.677","gcamValue":4},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.680","gcamValue":1},{"gcamCode":"c9.685","gcamValue":2},{"gcamCode":"c9.687","gcamValue":5},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.694","gcamValue":3},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.7","gcamValue":4},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":1},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.71","gcamValue":3},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.712","gcamValue":2},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":8},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.727","gcamValue":3},{"gcamCode":"c9.730","gcamValue":7},{"gcamCode":"c9.732","gcamValue":1},{"gcamCode":"c9.734","gcamValue":3},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":3},{"gcamCode":"c9.740","gcamValue":1},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":4},{"gcamCode":"c9.744","gcamValue":1},{"gcamCode":"c9.745","gcamValue":4},{"gcamCode":"c9.748","gcamValue":2},{"gcamCode":"c9.75","gcamValue":1},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":2},{"gcamCode":"c9.76","gcamValue":2},{"gcamCode":"c9.762","gcamValue":7},{"gcamCode":"c9.763","gcamValue":1},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":10},{"gcamCode":"c9.767","gcamValue":9},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":2},{"gcamCode":"c9.771","gcamValue":1},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":2},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.780","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":1},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":2},{"gcamCode":"c9.809","gcamValue":1},{"gcamCode":"c9.812","gcamValue":6},{"gcamCode":"c9.814","gcamValue":2},{"gcamCode":"c9.817","gcamValue":1},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.83","gcamValue":5},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.834","gcamValue":2},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":3},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":1},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.855","gcamValue":1},{"gcamCode":"c9.856","gcamValue":1},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.862","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":7},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.866","gcamValue":2},{"gcamCode":"c9.867","gcamValue":2},{"gcamCode":"c9.868","gcamValue":7},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.874","gcamValue":2},{"gcamCode":"c9.876","gcamValue":1},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.898","gcamValue":1},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":5},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":3},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":1},{"gcamCode":"c9.935","gcamValue":2},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":4},{"gcamCode":"c9.964","gcamValue":3},{"gcamCode":"c9.966","gcamValue":3},{"gcamCode":"c9.968","gcamValue":1},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.991","gcamValue":1},{"gcamCode":"c9.995","gcamValue":3},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.278764985014985},{"gcamCode":"v10.2","gcamValue":0.30883729757085},{"gcamCode":"v11.1","gcamValue":-0.00183759259259259},{"gcamCode":"v19.1","gcamValue":5.4237037037037},{"gcamCode":"v19.2","gcamValue":5.70888888888889},{"gcamCode":"v19.3","gcamValue":5.29851851851852},{"gcamCode":"v19.4","gcamValue":5.57037037037037},{"gcamCode":"v19.5","gcamValue":5.45222222222222},{"gcamCode":"v19.6","gcamValue":5.41444444444445},{"gcamCode":"v19.7","gcamValue":5.33037037037037},{"gcamCode":"v19.8","gcamValue":5.95407407407408},{"gcamCode":"v19.9","gcamValue":5.22},{"gcamCode":"v20.1","gcamValue":0.583},{"gcamCode":"v20.10","gcamValue":-0.55},{"gcamCode":"v20.11","gcamValue":0.611},{"gcamCode":"v20.12","gcamValue":-0.55},{"gcamCode":"v20.13","gcamValue":0.440666666666667},{"gcamCode":"v20.14","gcamValue":-0.441444444444444},{"gcamCode":"v20.15","gcamValue":0.341304347826087},{"gcamCode":"v20.16","gcamValue":-0.373071428571429},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.604},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.604},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.604},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v20.9","gcamValue":0.611},{"gcamCode":"v21.1","gcamValue":5.25497461928934},{"gcamCode":"v26.1","gcamValue":-0.620833333333333}]https://s.yimg.com/uu/api/res/1.2/dU9DH79qKxSiTcIBrscPOg--~B/aD01Mjg7dz0xMDIwO3NtPTE7YXBwaWQ9eXRhY2h5b24-/http://media.zenfs.com/en_us/News/afp.com/f517d0c85a268875ad11e9decc66c3e9ff64403a.jpg[""][""][""][][{"name":"Jefferson City","charOffset":278},{"name":"National Weather","charOffset":565},{"name":"Golden City","charOffset":622},{"name":"Missouri Department","charOffset":710},{"name":"Public Safety","charOffset":727},{"name":"Liberty Utilities Empire District","charOffset":1354},{"name":"Keystone Lake","charOffset":1571}][{"amount":3,"amountType":"people","charOffset":64},{"amount":9,"amountType":"people were hospitalized after","charOffset":238},{"amount":3,"amountType":"fatalities were confirmed","charOffset":472},{"amount":170,"amountType":"miles","charOffset":511},{"amount":270,"amountType":"kilometres","charOffset":520},{"amount":9,"amountType":"injured","charOffset":616},{"amount":500,"amountType":"people were left without","charOffset":981}]{"SRCLC":"","ENG":""}<PAGE_PRECISEPUBTIMESTAMP>20190523113900</PAGE_PRECISEPUBTIMESTAMP><PAGE_ALTURL_AMP>https://news.yahoo.com/amphtml/tornado-strike-kills-three-missouri-113927528.html</PAGE_ALTURL_AMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":35}2019-05-23T12:15:00.000+0000WEBwitn.comhttps://www.witn.com/content/news/A-violent-tornado-has-touched-down-in-Missouri-510314461.html[{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}}][{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":211},{"count":{"countType":"KILL","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1188},{"count":{"countType":"CRISISLEX_T03_DEAD","count":3,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":1188},{"count":{"countType":"KILL","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":3023},{"count":{"countType":"CRISISLEX_T03_DEAD","count":161,"objectType":"","location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"}},"charOffset":3023},{"count":{"countType":"KILL","count":2,"objectType":"","location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"}},"charOffset":4834}]["EPU_CATS_MIGRATION_FEAR_FEAR","NATURAL_DISASTER","NATURAL_DISASTER_TORNADO","CRISISLEX_CRISISLEXREC","CRISISLEX_O01_WEATHER","CRISISLEX_C04_LOGISTICS_TRANSPORT","CRISISLEX_T01_CAUTION_ADVICE","NATURAL_DISASTER_SEVERE_WEATHER","KILL","CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","MEDIA_SOCIAL","WOUND","CRISISLEX_C03_WELLBEING_HEALTH","CRISISLEX_T02_INJURED","CRISISLEX_T03_DEAD","LEADER","TAX_FNCACT","TAX_FNCACT_GOVERNOR","UNGP_CRIME_VIOLENCE","SECURITY_SERVICES","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_AUTHORITIES","EPU_POLICY","EPU_POLICY_AUTHORITIES","NATURAL_DISASTER_TORNADOES","NATURAL_DISASTER_TORRENTIAL_RAINS","TAX_FNCACT_SHERIFF","TAX_DISEASE","TAX_DISEASE_SHINGLES","MEDICAL","SOC_POINTSOFINTEREST","SOC_POINTSOFINTEREST_HOSPITALS","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","TAX_FNCACT_SPOKESWOMAN","GENERAL_HEALTH","SOC_POINTSOFINTEREST_HEALTH_CENTER","SHORTAGE","MANMADE_DISASTER","MANMADE_DISASTER_POWER_OUTAGES","POWER_OUTAGE","NATURAL_DISASTER_FLOODING","CRISISLEX_C06_WATER_SANITATION","MANMADE_DISASTER_IMPLIED","NATURAL_DISASTER_TWISTER","SOC_POINTSOFINTEREST_AIRPORT","WB_135_TRANSPORT","WB_1803_TRANSPORT_INFRASTRUCTURE","WB_1804_AIRPORTS","MARITIME_INCIDENT","MARITIME","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_KANSAS","UNGP_FORESTS_RIVERS_OCEANS","TAX_FNCACT_OFFICIALS","GOV_LOCALGOV","EVACUATION","CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","TAX_FNCACT_OFFICIAL","AFFECT","NATURAL_DISASTER_DAM_BREAKS","MEDIA_MSM","TAX_FNCACT_WOMAN","NATURAL_DISASTER_HEAVY_RAIN","TRAFFIC","ROAD_INCIDENT","MANMADE_DISASTER_TRAFFIC_ACCIDENT","SOC_TRAFFICACCIDENT","WB_168_ROADS_AND_HIGHWAYS","WB_1809_HIGHWAYS","NATURAL_DISASTER_DROWNED","TAX_FNCACT_EXAMINER","TAX_FNCACT_MEDICAL_EXAMINER"][{"theme":"SHORTAGE","charOffset":2244},{"theme":"KILL","charOffset":228},{"theme":"KILL","charOffset":4637},{"theme":"KILL","charOffset":4911},{"theme":"TAX_FNCACT_WOMAN","charOffset":4681},{"theme":"TAX_FNCACT_WOMAN","charOffset":5083},{"theme":"TAX_FNCACT_WOMAN","charOffset":5246},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2734},{"theme":"MANMADE_DISASTER_IMPLIED","charOffset":2777},{"theme":"SOC_POINTSOFINTEREST_HEALTH_CENTER","charOffset":2227},{"theme":"CRISISLEX_T08_MISSINGFOUNDTRAPPEDPEOPLE","charOffset":258},{"theme":"EVACUATION","charOffset":3780},{"theme":"CRISISLEX_T09_DISPLACEDRELOCATEDEVACUATED","charOffset":3780},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":3316},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":3599},{"theme":"TAX_WORLDLANGUAGES_KANSAS","charOffset":4585},{"theme":"TAX_FNCACT_SHERIFF","charOffset":1892},{"theme":"CRISISLEX_T03_DEAD","charOffset":985},{"theme":"CRISISLEX_C04_LOGISTICS_TRANSPORT","charOffset":133},{"theme":"CRISISLEX_T01_CAUTION_ADVICE","charOffset":133},{"theme":"WOUND","charOffset":934},{"theme":"WOUND","charOffset":1349},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":934},{"theme":"CRISISLEX_C03_WELLBEING_HEALTH","charOffset":1349},{"theme":"CRISISLEX_T02_INJURED","charOffset":934},{"theme":"CRISISLEX_T02_INJURED","charOffset":1349},{"theme":"MANMADE_DISASTER_POWER_OUTAGES","charOffset":2244},{"theme":"POWER_OUTAGE","charOffset":2244},{"theme":"MARITIME_INCIDENT","charOffset":3368},{"theme":"MARITIME_INCIDENT","charOffset":3947},{"theme":"MARITIME_INCIDENT","charOffset":4033},{"theme":"MARITIME_INCIDENT","charOffset":4206},{"theme":"MARITIME","charOffset":3368},{"theme":"MARITIME","charOffset":3947},{"theme":"MARITIME","charOffset":4033},{"theme":"MARITIME","charOffset":4206},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":1211},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":2305},{"theme":"AFFECT","charOffset":3980},{"theme":"NATURAL_DISASTER_DAM_BREAKS","charOffset":4107},{"theme":"SECURITY_SERVICES","charOffset":1461},{"theme":"TAX_FNCACT_POLICE","charOffset":1461},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1461},{"theme":"TAX_FNCACT_OFFICIAL","charOffset":3890},{"theme":"TRAFFIC","charOffset":4936},{"theme":"NATURAL_DISASTER_FLOODING","charOffset":2377},{"theme":"CRISISLEX_C06_WATER_SANITATION","charOffset":2377},{"theme":"WB_168_ROADS_AND_HIGHWAYS","charOffset":5063},{"theme":"WB_1809_HIGHWAYS","charOffset":5063},{"theme":"NATURAL_DISASTER_HEAVY_RAIN","charOffset":4871},{"theme":"GOV_LOCALGOV","charOffset":3749},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":1736},{"theme":"NATURAL_DISASTER_TORRENTIAL_RAINS","charOffset":3252},{"theme":"TAX_FNCACT_EXAMINER","charOffset":5290},{"theme":"LEADER","charOffset":1008},{"theme":"TAX_FNCACT_GOVERNOR","charOffset":1008},{"theme":"EPU_CATS_MIGRATION_FEAR_FEAR","charOffset":56},{"theme":"NATURAL_DISASTER_DROWNED","charOffset":5102},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":1585},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":3539},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":4855},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":1585},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":3539},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":4855},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":3630},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":4441},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":176},{"theme":"NATURAL_DISASTER_SEVERE_WEATHER","charOffset":4615},{"theme":"TAX_FNCACT_MEDICAL_EXAMINER","charOffset":5290},{"theme":"GENERAL_HEALTH","charOffset":2220},{"theme":"NATURAL_DISASTER_TWISTER","charOffset":2956},{"theme":"MEDIA_MSM","charOffset":4245},{"theme":"ROAD_INCIDENT","charOffset":4945},{"theme":"MANMADE_DISASTER_TRAFFIC_ACCIDENT","charOffset":4945},{"theme":"SOC_TRAFFICACCIDENT","charOffset":4945},{"theme":"MEDICAL","charOffset":2029},{"theme":"SOC_POINTSOFINTEREST_HOSPITALS","charOffset":2029},{"theme":"MEDIA_SOCIAL","charOffset":440},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":64},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":304},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":527},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":1659},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":2969},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":3058},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":3106},{"theme":"NATURAL_DISASTER_TORNADO","charOffset":4777},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":64},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":304},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":527},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1659},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2969},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3058},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":3106},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":4777},{"theme":"CRISISLEX_O01_WEATHER","charOffset":64},{"theme":"CRISISLEX_O01_WEATHER","charOffset":304},{"theme":"CRISISLEX_O01_WEATHER","charOffset":527},{"theme":"CRISISLEX_O01_WEATHER","charOffset":1659},{"theme":"CRISISLEX_O01_WEATHER","charOffset":2969},{"theme":"CRISISLEX_O01_WEATHER","charOffset":3058},{"theme":"CRISISLEX_O01_WEATHER","charOffset":3106},{"theme":"CRISISLEX_O01_WEATHER","charOffset":4777},{"theme":"SOC_POINTSOFINTEREST_AIRPORT","charOffset":3223},{"theme":"WB_135_TRANSPORT","charOffset":3223},{"theme":"WB_1803_TRANSPORT_INFRASTRUCTURE","charOffset":3223},{"theme":"WB_1804_AIRPORTS","charOffset":3223},{"theme":"TAX_DISEASE_SHINGLES","charOffset":1954},{"theme":"WB_1428_INJURY","charOffset":2164},{"theme":"WB_1406_DISEASES","charOffset":2164},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":2164},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":2164},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":2201},{"theme":"TAX_FNCACT_SPOKESWOMAN","charOffset":5384},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":3749},{"theme":"TAX_FNCACT_OFFICIALS","charOffset":4730},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":1717},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2360},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":2864},{"theme":"NATURAL_DISASTER_TORNADOES","charOffset":4524}][{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"}][{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":3334},{"location":{"geoType":"USSTATE","geoName":"Iowa, United States","countryCode":"US","adm1Code":"USIA","adm2Code":"","geoPoint":{"latitude":42.0046,"longitude":-93.214},"featureId":"IA"},"charOffset":4719},{"location":{"geoType":"USCITY","geoName":"Jasper County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.2001,"longitude":-94.3502},"featureId":"758503"},"charOffset":1407},{"location":{"geoType":"USCITY","geoName":"Golden City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.3931,"longitude":-94.0938},"featureId":"718543"},"charOffset":1277},{"location":{"geoType":"USCITY","geoName":"Adair County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO001","geoPoint":{"latitude":40.2,"longitude":-92.6002},"featureId":"765805"},"charOffset":4818},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":14},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":95},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":557},{"location":{"geoType":"USCITY","geoName":"Jefferson City, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5767,"longitude":-92.1735},"featureId":"758233"},"charOffset":1439},{"location":{"geoType":"USCITY","geoName":"Springfield, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO077","geoPoint":{"latitude":37.2153,"longitude":-93.2982},"featureId":"735864"},"charOffset":4970},{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":3290},{"location":{"geoType":"USSTATE","geoName":"Mississippi, United States","countryCode":"US","adm1Code":"USMS","adm2Code":"","geoPoint":{"latitude":32.7673,"longitude":-89.6812},"featureId":"MS"},"charOffset":4434},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":3316},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":3599},{"location":{"geoType":"USSTATE","geoName":"Kansas, United States","countryCode":"US","adm1Code":"USKS","adm2Code":"","geoPoint":{"latitude":38.5111,"longitude":-96.8005},"featureId":"KS"},"charOffset":4585},{"location":{"geoType":"USCITY","geoName":"Barton County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO011","geoPoint":{"latitude":37.5003,"longitude":-94.3502},"featureId":"758460"},"charOffset":1314},{"location":{"geoType":"USCITY","geoName":"Oklahoma City, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK109","geoPoint":{"latitude":35.4676,"longitude":-97.5164},"featureId":"1102140"},"charOffset":5207},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":145},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":356},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":773},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1197},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":2291},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":3021},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":3345},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4420},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4576},{"location":{"geoType":"USSTATE","geoName":"Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":4843},{"location":{"geoType":"USCITY","geoName":"Cole County, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO051","geoPoint":{"latitude":38.5003,"longitude":-92.2835},"featureId":"758480"},"charOffset":1869},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":3689},{"location":{"geoType":"USCITY","geoName":"Webbers Falls, Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"OK101","geoPoint":{"latitude":35.5109,"longitude":-95.13},"featureId":"1099460"},"charOffset":3994},{"location":{"geoType":"USSTATE","geoName":"Missourians, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"","geoPoint":{"latitude":38.4623,"longitude":-92.302},"featureId":"MO"},"charOffset":1186},{"location":{"geoType":"USSTATE","geoName":"Illinois, United States","countryCode":"US","adm1Code":"USIL","adm2Code":"","geoPoint":{"latitude":40.3363,"longitude":-89.0022},"featureId":"IL"},"charOffset":3356},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3307},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3450},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3590},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":3715},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":4565},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5043},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5202},{"location":{"geoType":"USSTATE","geoName":"Oklahoma, United States","countryCode":"US","adm1Code":"USOK","adm2Code":"","geoPoint":{"latitude":35.5376,"longitude":-96.9247},"featureId":"OK"},"charOffset":5337},{"location":{"geoType":"USSTATE","geoName":"Nebraska, United States","countryCode":"US","adm1Code":"USNE","adm2Code":"","geoPoint":{"latitude":41.1289,"longitude":-98.2883},"featureId":"NE"},"charOffset":3327},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":407},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":1370},{"location":{"geoType":"USCITY","geoName":"Carl Junction, Missouri, United States","countryCode":"US","adm1Code":"USMO","adm2Code":"MO097","geoPoint":{"latitude":37.1767,"longitude":-94.5655},"featureId":"715396"},"charOffset":3154}]["mike parson","jessica royston","austin thomson","keli cain","david williams"][{"person":"Mike Parson","charOffset":1020},{"person":"Jessica Royston","charOffset":2187},{"person":"Austin Thomson","charOffset":2395},{"person":"Keli Cain","charOffset":5394},{"person":"David Williams","charOffset":1480}]["jefferson city police","mary health center","twitter","national weather service","facebook","cnn","oklahoma department of emergency management"][{"organisation":"Mary Health Center","charOffset":2227},{"organisation":"Twitter","charOffset":440},{"organisation":"National Weather Service","charOffset":2819},{"organisation":"Facebook","charOffset":3899},{"organisation":"Cnn","charOffset":459},{"organisation":"Oklahoma Department Of Emergency Management","charOffset":5372}]{"tone":-5.274972,"positiveScore":1.2345679,"negativeScore":6.50954,"polarity":7.7441077,"activityReferenceDensity":20.314253,"selfGroupReferenceDensity":0.22446689,"wordCount":826}[][{"gcamCode":"wc","gcamValue":826},{"gcamCode":"c1.3","gcamValue":1},{"gcamCode":"c12.1","gcamValue":40},{"gcamCode":"c12.10","gcamValue":65},{"gcamCode":"c12.12","gcamValue":33},{"gcamCode":"c12.13","gcamValue":20},{"gcamCode":"c12.14","gcamValue":18},{"gcamCode":"c12.3","gcamValue":20},{"gcamCode":"c12.4","gcamValue":6},{"gcamCode":"c12.5","gcamValue":15},{"gcamCode":"c12.7","gcamValue":48},{"gcamCode":"c12.8","gcamValue":24},{"gcamCode":"c12.9","gcamValue":29},{"gcamCode":"c13.10","gcamValue":2},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.14","gcamValue":9},{"gcamCode":"c13.2","gcamValue":1},{"gcamCode":"c13.3","gcamValue":9},{"gcamCode":"c13.4","gcamValue":1},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":41},{"gcamCode":"c14.10","gcamValue":36},{"gcamCode":"c14.11","gcamValue":78},{"gcamCode":"c14.2","gcamValue":41},{"gcamCode":"c14.3","gcamValue":43},{"gcamCode":"c14.4","gcamValue":11},{"gcamCode":"c14.5","gcamValue":85},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":14},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.102","gcamValue":1},{"gcamCode":"c15.105","gcamValue":1},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":1},{"gcamCode":"c15.149","gcamValue":2},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.152","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.155","gcamValue":2},{"gcamCode":"c15.168","gcamValue":1},{"gcamCode":"c15.175","gcamValue":1},{"gcamCode":"c15.198","gcamValue":2},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.229","gcamValue":2},{"gcamCode":"c15.231","gcamValue":2},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.251","gcamValue":1},{"gcamCode":"c15.252","gcamValue":2},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.45","gcamValue":1},{"gcamCode":"c15.48","gcamValue":2},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.58","gcamValue":3},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.64","gcamValue":1},{"gcamCode":"c15.69","gcamValue":4},{"gcamCode":"c15.7","gcamValue":2},{"gcamCode":"c15.71","gcamValue":1},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c15.9","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.98","gcamValue":1},{"gcamCode":"c16.1","gcamValue":9},{"gcamCode":"c16.100","gcamValue":26},{"gcamCode":"c16.101","gcamValue":6},{"gcamCode":"c16.103","gcamValue":1},{"gcamCode":"c16.105","gcamValue":5},{"gcamCode":"c16.106","gcamValue":25},{"gcamCode":"c16.109","gcamValue":39},{"gcamCode":"c16.11","gcamValue":3},{"gcamCode":"c16.110","gcamValue":108},{"gcamCode":"c16.111","gcamValue":17},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":44},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":29},{"gcamCode":"c16.117","gcamValue":32},{"gcamCode":"c16.118","gcamValue":48},{"gcamCode":"c16.12","gcamValue":67},{"gcamCode":"c16.120","gcamValue":37},{"gcamCode":"c16.121","gcamValue":66},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":40},{"gcamCode":"c16.126","gcamValue":39},{"gcamCode":"c16.127","gcamValue":47},{"gcamCode":"c16.128","gcamValue":7},{"gcamCode":"c16.129","gcamValue":113},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":6},{"gcamCode":"c16.131","gcamValue":25},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":87},{"gcamCode":"c16.135","gcamValue":1},{"gcamCode":"c16.138","gcamValue":15},{"gcamCode":"c16.139","gcamValue":22},{"gcamCode":"c16.140","gcamValue":36},{"gcamCode":"c16.141","gcamValue":2},{"gcamCode":"c16.142","gcamValue":1},{"gcamCode":"c16.143","gcamValue":4},{"gcamCode":"c16.145","gcamValue":49},{"gcamCode":"c16.146","gcamValue":45},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.150","gcamValue":2},{"gcamCode":"c16.151","gcamValue":2},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":26},{"gcamCode":"c16.156","gcamValue":6},{"gcamCode":"c16.157","gcamValue":16},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":53},{"gcamCode":"c16.16","gcamValue":10},{"gcamCode":"c16.161","gcamValue":77},{"gcamCode":"c16.162","gcamValue":64},{"gcamCode":"c16.163","gcamValue":63},{"gcamCode":"c16.164","gcamValue":8},{"gcamCode":"c16.165","gcamValue":7},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":24},{"gcamCode":"c16.2","gcamValue":71},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":2},{"gcamCode":"c16.22","gcamValue":19},{"gcamCode":"c16.23","gcamValue":1},{"gcamCode":"c16.26","gcamValue":79},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.29","gcamValue":4},{"gcamCode":"c16.3","gcamValue":10},{"gcamCode":"c16.30","gcamValue":3},{"gcamCode":"c16.31","gcamValue":52},{"gcamCode":"c16.32","gcamValue":6},{"gcamCode":"c16.33","gcamValue":75},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":30},{"gcamCode":"c16.36","gcamValue":8},{"gcamCode":"c16.37","gcamValue":59},{"gcamCode":"c16.38","gcamValue":11},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":55},{"gcamCode":"c16.41","gcamValue":25},{"gcamCode":"c16.42","gcamValue":1},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.44","gcamValue":1},{"gcamCode":"c16.45","gcamValue":27},{"gcamCode":"c16.46","gcamValue":13},{"gcamCode":"c16.47","gcamValue":72},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":5},{"gcamCode":"c16.5","gcamValue":1},{"gcamCode":"c16.50","gcamValue":6},{"gcamCode":"c16.52","gcamValue":50},{"gcamCode":"c16.53","gcamValue":4},{"gcamCode":"c16.55","gcamValue":13},{"gcamCode":"c16.56","gcamValue":12},{"gcamCode":"c16.57","gcamValue":455},{"gcamCode":"c16.58","gcamValue":36},{"gcamCode":"c16.6","gcamValue":81},{"gcamCode":"c16.60","gcamValue":3},{"gcamCode":"c16.62","gcamValue":24},{"gcamCode":"c16.63","gcamValue":10},{"gcamCode":"c16.64","gcamValue":6},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":10},{"gcamCode":"c16.68","gcamValue":36},{"gcamCode":"c16.69","gcamValue":22},{"gcamCode":"c16.7","gcamValue":16},{"gcamCode":"c16.70","gcamValue":93},{"gcamCode":"c16.71","gcamValue":29},{"gcamCode":"c16.72","gcamValue":9},{"gcamCode":"c16.73","gcamValue":4},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":24},{"gcamCode":"c16.76","gcamValue":4},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":36},{"gcamCode":"c16.79","gcamValue":2},{"gcamCode":"c16.80","gcamValue":8},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":5},{"gcamCode":"c16.84","gcamValue":28},{"gcamCode":"c16.85","gcamValue":4},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":67},{"gcamCode":"c16.88","gcamValue":116},{"gcamCode":"c16.89","gcamValue":18},{"gcamCode":"c16.9","gcamValue":10},{"gcamCode":"c16.90","gcamValue":20},{"gcamCode":"c16.91","gcamValue":22},{"gcamCode":"c16.92","gcamValue":69},{"gcamCode":"c16.93","gcamValue":26},{"gcamCode":"c16.94","gcamValue":53},{"gcamCode":"c16.95","gcamValue":72},{"gcamCode":"c16.96","gcamValue":7},{"gcamCode":"c16.97","gcamValue":3},{"gcamCode":"c16.98","gcamValue":43},{"gcamCode":"c16.99","gcamValue":17},{"gcamCode":"c17.1","gcamValue":249},{"gcamCode":"c17.10","gcamValue":61},{"gcamCode":"c17.11","gcamValue":94},{"gcamCode":"c17.12","gcamValue":38},{"gcamCode":"c17.13","gcamValue":9},{"gcamCode":"c17.14","gcamValue":13},{"gcamCode":"c17.15","gcamValue":70},{"gcamCode":"c17.16","gcamValue":68},{"gcamCode":"c17.17","gcamValue":2},{"gcamCode":"c17.18","gcamValue":22},{"gcamCode":"c17.19","gcamValue":38},{"gcamCode":"c17.2","gcamValue":10},{"gcamCode":"c17.20","gcamValue":27},{"gcamCode":"c17.21","gcamValue":8},{"gcamCode":"c17.22","gcamValue":16},{"gcamCode":"c17.23","gcamValue":6},{"gcamCode":"c17.24","gcamValue":65},{"gcamCode":"c17.25","gcamValue":12},{"gcamCode":"c17.26","gcamValue":5},{"gcamCode":"c17.27","gcamValue":80},{"gcamCode":"c17.28","gcamValue":12},{"gcamCode":"c17.29","gcamValue":23},{"gcamCode":"c17.3","gcamValue":2},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":44},{"gcamCode":"c17.32","gcamValue":22},{"gcamCode":"c17.33","gcamValue":29},{"gcamCode":"c17.34","gcamValue":14},{"gcamCode":"c17.35","gcamValue":11},{"gcamCode":"c17.36","gcamValue":42},{"gcamCode":"c17.37","gcamValue":15},{"gcamCode":"c17.38","gcamValue":5},{"gcamCode":"c17.39","gcamValue":33},{"gcamCode":"c17.4","gcamValue":210},{"gcamCode":"c17.40","gcamValue":12},{"gcamCode":"c17.41","gcamValue":15},{"gcamCode":"c17.42","gcamValue":28},{"gcamCode":"c17.43","gcamValue":36},{"gcamCode":"c17.44","gcamValue":2},{"gcamCode":"c17.5","gcamValue":147},{"gcamCode":"c17.6","gcamValue":8},{"gcamCode":"c17.7","gcamValue":110},{"gcamCode":"c17.8","gcamValue":62},{"gcamCode":"c17.9","gcamValue":24},{"gcamCode":"c18.1","gcamValue":8},{"gcamCode":"c18.13","gcamValue":1},{"gcamCode":"c18.139","gcamValue":1},{"gcamCode":"c18.14","gcamValue":2},{"gcamCode":"c18.149","gcamValue":3},{"gcamCode":"c18.156","gcamValue":34},{"gcamCode":"c18.159","gcamValue":1},{"gcamCode":"c18.162","gcamValue":2},{"gcamCode":"c18.163","gcamValue":1},{"gcamCode":"c18.165","gcamValue":4},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.181","gcamValue":1},{"gcamCode":"c18.184","gcamValue":1},{"gcamCode":"c18.193","gcamValue":16},{"gcamCode":"c18.2","gcamValue":2},{"gcamCode":"c18.245","gcamValue":1},{"gcamCode":"c18.257","gcamValue":1},{"gcamCode":"c18.298","gcamValue":3},{"gcamCode":"c18.34","gcamValue":3},{"gcamCode":"c18.342","gcamValue":19},{"gcamCode":"c18.50","gcamValue":1},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.78","gcamValue":1},{"gcamCode":"c18.83","gcamValue":2},{"gcamCode":"c2.1","gcamValue":35},{"gcamCode":"c2.100","gcamValue":4},{"gcamCode":"c2.101","gcamValue":13},{"gcamCode":"c2.102","gcamValue":12},{"gcamCode":"c2.103","gcamValue":3},{"gcamCode":"c2.104","gcamValue":103},{"gcamCode":"c2.107","gcamValue":6},{"gcamCode":"c2.108","gcamValue":4},{"gcamCode":"c2.109","gcamValue":2},{"gcamCode":"c2.11","gcamValue":15},{"gcamCode":"c2.110","gcamValue":9},{"gcamCode":"c2.111","gcamValue":5},{"gcamCode":"c2.112","gcamValue":13},{"gcamCode":"c2.113","gcamValue":6},{"gcamCode":"c2.114","gcamValue":39},{"gcamCode":"c2.115","gcamValue":4},{"gcamCode":"c2.116","gcamValue":36},{"gcamCode":"c2.117","gcamValue":2},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":222},{"gcamCode":"c2.12","gcamValue":26},{"gcamCode":"c2.120","gcamValue":2},{"gcamCode":"c2.121","gcamValue":45},{"gcamCode":"c2.122","gcamValue":18},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":46},{"gcamCode":"c2.126","gcamValue":26},{"gcamCode":"c2.127","gcamValue":83},{"gcamCode":"c2.128","gcamValue":68},{"gcamCode":"c2.129","gcamValue":72},{"gcamCode":"c2.130","gcamValue":7},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":7},{"gcamCode":"c2.133","gcamValue":9},{"gcamCode":"c2.134","gcamValue":6},{"gcamCode":"c2.135","gcamValue":3},{"gcamCode":"c2.137","gcamValue":3},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":60},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":13},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":44},{"gcamCode":"c2.144","gcamValue":21},{"gcamCode":"c2.145","gcamValue":8},{"gcamCode":"c2.146","gcamValue":13},{"gcamCode":"c2.147","gcamValue":123},{"gcamCode":"c2.148","gcamValue":62},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":13},{"gcamCode":"c2.150","gcamValue":5},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":15},{"gcamCode":"c2.154","gcamValue":20},{"gcamCode":"c2.155","gcamValue":42},{"gcamCode":"c2.156","gcamValue":29},{"gcamCode":"c2.157","gcamValue":38},{"gcamCode":"c2.158","gcamValue":50},{"gcamCode":"c2.159","gcamValue":11},{"gcamCode":"c2.16","gcamValue":7},{"gcamCode":"c2.160","gcamValue":43},{"gcamCode":"c2.162","gcamValue":10},{"gcamCode":"c2.163","gcamValue":2},{"gcamCode":"c2.166","gcamValue":11},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.17","gcamValue":1},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.172","gcamValue":19},{"gcamCode":"c2.173","gcamValue":9},{"gcamCode":"c2.174","gcamValue":2},{"gcamCode":"c2.175","gcamValue":5},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":29},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":22},{"gcamCode":"c2.18","gcamValue":22},{"gcamCode":"c2.180","gcamValue":22},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":145},{"gcamCode":"c2.186","gcamValue":12},{"gcamCode":"c2.187","gcamValue":41},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":8},{"gcamCode":"c2.190","gcamValue":6},{"gcamCode":"c2.191","gcamValue":13},{"gcamCode":"c2.192","gcamValue":14},{"gcamCode":"c2.193","gcamValue":81},{"gcamCode":"c2.194","gcamValue":3},{"gcamCode":"c2.195","gcamValue":78},{"gcamCode":"c2.196","gcamValue":7},{"gcamCode":"c2.197","gcamValue":19},{"gcamCode":"c2.198","gcamValue":104},{"gcamCode":"c2.199","gcamValue":19},{"gcamCode":"c2.2","gcamValue":5},{"gcamCode":"c2.20","gcamValue":3},{"gcamCode":"c2.200","gcamValue":6},{"gcamCode":"c2.201","gcamValue":14},{"gcamCode":"c2.203","gcamValue":30},{"gcamCode":"c2.204","gcamValue":61},{"gcamCode":"c2.205","gcamValue":11},{"gcamCode":"c2.206","gcamValue":12},{"gcamCode":"c2.208","gcamValue":20},{"gcamCode":"c2.209","gcamValue":26},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":54},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.213","gcamValue":22},{"gcamCode":"c2.214","gcamValue":21},{"gcamCode":"c2.216","gcamValue":4},{"gcamCode":"c2.217","gcamValue":18},{"gcamCode":"c2.220","gcamValue":21},{"gcamCode":"c2.221","gcamValue":8},{"gcamCode":"c2.222","gcamValue":1},{"gcamCode":"c2.223","gcamValue":9},{"gcamCode":"c2.225","gcamValue":22},{"gcamCode":"c2.226","gcamValue":18},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":47},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":38},{"gcamCode":"c2.26","gcamValue":28},{"gcamCode":"c2.27","gcamValue":28},{"gcamCode":"c2.28","gcamValue":11},{"gcamCode":"c2.30","gcamValue":29},{"gcamCode":"c2.31","gcamValue":26},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":3},{"gcamCode":"c2.34","gcamValue":65},{"gcamCode":"c2.35","gcamValue":13},{"gcamCode":"c2.36","gcamValue":10},{"gcamCode":"c2.37","gcamValue":10},{"gcamCode":"c2.38","gcamValue":3},{"gcamCode":"c2.39","gcamValue":123},{"gcamCode":"c2.40","gcamValue":3},{"gcamCode":"c2.41","gcamValue":1},{"gcamCode":"c2.42","gcamValue":1},{"gcamCode":"c2.44","gcamValue":27},{"gcamCode":"c2.45","gcamValue":52},{"gcamCode":"c2.46","gcamValue":79},{"gcamCode":"c2.47","gcamValue":2},{"gcamCode":"c2.48","gcamValue":4},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":24},{"gcamCode":"c2.51","gcamValue":1},{"gcamCode":"c2.52","gcamValue":51},{"gcamCode":"c2.54","gcamValue":64},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":4},{"gcamCode":"c2.57","gcamValue":10},{"gcamCode":"c2.58","gcamValue":15},{"gcamCode":"c2.6","gcamValue":5},{"gcamCode":"c2.61","gcamValue":11},{"gcamCode":"c2.62","gcamValue":23},{"gcamCode":"c2.64","gcamValue":19},{"gcamCode":"c2.65","gcamValue":6},{"gcamCode":"c2.66","gcamValue":4},{"gcamCode":"c2.67","gcamValue":5},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.69","gcamValue":5},{"gcamCode":"c2.70","gcamValue":2},{"gcamCode":"c2.71","gcamValue":4},{"gcamCode":"c2.73","gcamValue":10},{"gcamCode":"c2.74","gcamValue":1},{"gcamCode":"c2.75","gcamValue":88},{"gcamCode":"c2.76","gcamValue":520},{"gcamCode":"c2.77","gcamValue":57},{"gcamCode":"c2.78","gcamValue":89},{"gcamCode":"c2.79","gcamValue":19},{"gcamCode":"c2.8","gcamValue":1},{"gcamCode":"c2.80","gcamValue":60},{"gcamCode":"c2.81","gcamValue":20},{"gcamCode":"c2.82","gcamValue":28},{"gcamCode":"c2.83","gcamValue":6},{"gcamCode":"c2.84","gcamValue":5},{"gcamCode":"c2.86","gcamValue":26},{"gcamCode":"c2.87","gcamValue":8},{"gcamCode":"c2.88","gcamValue":10},{"gcamCode":"c2.89","gcamValue":16},{"gcamCode":"c2.9","gcamValue":27},{"gcamCode":"c2.90","gcamValue":6},{"gcamCode":"c2.93","gcamValue":20},{"gcamCode":"c2.95","gcamValue":130},{"gcamCode":"c2.96","gcamValue":2},{"gcamCode":"c2.97","gcamValue":14},{"gcamCode":"c2.98","gcamValue":50},{"gcamCode":"c2.99","gcamValue":5},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.2","gcamValue":9},{"gcamCode":"c25.5","gcamValue":17},{"gcamCode":"c25.7","gcamValue":5},{"gcamCode":"c3.1","gcamValue":78},{"gcamCode":"c3.2","gcamValue":43},{"gcamCode":"c35.1","gcamValue":6},{"gcamCode":"c35.10","gcamValue":5},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.14","gcamValue":5},{"gcamCode":"c35.15","gcamValue":7},{"gcamCode":"c35.18","gcamValue":4},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":29},{"gcamCode":"c35.21","gcamValue":1},{"gcamCode":"c35.24","gcamValue":2},{"gcamCode":"c35.25","gcamValue":17},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":18},{"gcamCode":"c35.32","gcamValue":17},{"gcamCode":"c35.33","gcamValue":50},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.1","gcamValue":2},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.13","gcamValue":4},{"gcamCode":"c39.14","gcamValue":3},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":3},{"gcamCode":"c39.2","gcamValue":16},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":2},{"gcamCode":"c39.28","gcamValue":3},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":35},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.34","gcamValue":1},{"gcamCode":"c39.36","gcamValue":11},{"gcamCode":"c39.37","gcamValue":25},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":8},{"gcamCode":"c39.4","gcamValue":38},{"gcamCode":"c39.40","gcamValue":3},{"gcamCode":"c39.41","gcamValue":9},{"gcamCode":"c39.5","gcamValue":18},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":6},{"gcamCode":"c4.12","gcamValue":3},{"gcamCode":"c4.13","gcamValue":3},{"gcamCode":"c4.15","gcamValue":5},{"gcamCode":"c4.18","gcamValue":2},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.22","gcamValue":4},{"gcamCode":"c4.23","gcamValue":22},{"gcamCode":"c4.3","gcamValue":3},{"gcamCode":"c40.1","gcamValue":2},{"gcamCode":"c40.3","gcamValue":9},{"gcamCode":"c40.4","gcamValue":11},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":35},{"gcamCode":"c5.10","gcamValue":95},{"gcamCode":"c5.11","gcamValue":19},{"gcamCode":"c5.12","gcamValue":159},{"gcamCode":"c5.15","gcamValue":10},{"gcamCode":"c5.16","gcamValue":2},{"gcamCode":"c5.17","gcamValue":11},{"gcamCode":"c5.18","gcamValue":5},{"gcamCode":"c5.19","gcamValue":14},{"gcamCode":"c5.2","gcamValue":12},{"gcamCode":"c5.20","gcamValue":4},{"gcamCode":"c5.21","gcamValue":23},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":9},{"gcamCode":"c5.24","gcamValue":2},{"gcamCode":"c5.25","gcamValue":4},{"gcamCode":"c5.26","gcamValue":17},{"gcamCode":"c5.27","gcamValue":6},{"gcamCode":"c5.28","gcamValue":10},{"gcamCode":"c5.29","gcamValue":6},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":59},{"gcamCode":"c5.31","gcamValue":10},{"gcamCode":"c5.32","gcamValue":8},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":23},{"gcamCode":"c5.35","gcamValue":8},{"gcamCode":"c5.36","gcamValue":31},{"gcamCode":"c5.37","gcamValue":10},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.4","gcamValue":1},{"gcamCode":"c5.40","gcamValue":54},{"gcamCode":"c5.42","gcamValue":3},{"gcamCode":"c5.43","gcamValue":25},{"gcamCode":"c5.44","gcamValue":5},{"gcamCode":"c5.45","gcamValue":11},{"gcamCode":"c5.46","gcamValue":120},{"gcamCode":"c5.47","gcamValue":36},{"gcamCode":"c5.48","gcamValue":3},{"gcamCode":"c5.49","gcamValue":55},{"gcamCode":"c5.5","gcamValue":11},{"gcamCode":"c5.50","gcamValue":66},{"gcamCode":"c5.51","gcamValue":48},{"gcamCode":"c5.52","gcamValue":85},{"gcamCode":"c5.53","gcamValue":78},{"gcamCode":"c5.54","gcamValue":19},{"gcamCode":"c5.55","gcamValue":6},{"gcamCode":"c5.56","gcamValue":7},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":26},{"gcamCode":"c5.60","gcamValue":16},{"gcamCode":"c5.61","gcamValue":35},{"gcamCode":"c5.62","gcamValue":334},{"gcamCode":"c5.7","gcamValue":14},{"gcamCode":"c5.8","gcamValue":15},{"gcamCode":"c5.9","gcamValue":40},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.2","gcamValue":4},{"gcamCode":"c6.3","gcamValue":8},{"gcamCode":"c6.4","gcamValue":29},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":10},{"gcamCode":"c7.1","gcamValue":49},{"gcamCode":"c7.2","gcamValue":22},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":11},{"gcamCode":"c8.11","gcamValue":3},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.13","gcamValue":5},{"gcamCode":"c8.15","gcamValue":4},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.18","gcamValue":19},{"gcamCode":"c8.2","gcamValue":39},{"gcamCode":"c8.22","gcamValue":3},{"gcamCode":"c8.23","gcamValue":22},{"gcamCode":"c8.25","gcamValue":2},{"gcamCode":"c8.28","gcamValue":5},{"gcamCode":"c8.3","gcamValue":3},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.35","gcamValue":1},{"gcamCode":"c8.36","gcamValue":9},{"gcamCode":"c8.37","gcamValue":15},{"gcamCode":"c8.38","gcamValue":8},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":22},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":3},{"gcamCode":"c8.42","gcamValue":23},{"gcamCode":"c8.43","gcamValue":26},{"gcamCode":"c8.5","gcamValue":3},{"gcamCode":"c8.6","gcamValue":2},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":26},{"gcamCode":"c9.10","gcamValue":3},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1007","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":7},{"gcamCode":"c9.1012","gcamValue":5},{"gcamCode":"c9.1014","gcamValue":1},{"gcamCode":"c9.1016","gcamValue":5},{"gcamCode":"c9.1018","gcamValue":8},{"gcamCode":"c9.1024","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1035","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":3},{"gcamCode":"c9.1039","gcamValue":1},{"gcamCode":"c9.104","gcamValue":8},{"gcamCode":"c9.1040","gcamValue":8},{"gcamCode":"c9.1041","gcamValue":3},{"gcamCode":"c9.107","gcamValue":13},{"gcamCode":"c9.108","gcamValue":2},{"gcamCode":"c9.109","gcamValue":12},{"gcamCode":"c9.111","gcamValue":6},{"gcamCode":"c9.113","gcamValue":2},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":2},{"gcamCode":"c9.118","gcamValue":11},{"gcamCode":"c9.119","gcamValue":4},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":14},{"gcamCode":"c9.123","gcamValue":4},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":4},{"gcamCode":"c9.128","gcamValue":36},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":3},{"gcamCode":"c9.135","gcamValue":1},{"gcamCode":"c9.137","gcamValue":3},{"gcamCode":"c9.138","gcamValue":7},{"gcamCode":"c9.139","gcamValue":2},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":2},{"gcamCode":"c9.144","gcamValue":3},{"gcamCode":"c9.145","gcamValue":4},{"gcamCode":"c9.148","gcamValue":1},{"gcamCode":"c9.149","gcamValue":4},{"gcamCode":"c9.15","gcamValue":7},{"gcamCode":"c9.157","gcamValue":5},{"gcamCode":"c9.158","gcamValue":17},{"gcamCode":"c9.159","gcamValue":4},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":10},{"gcamCode":"c9.161","gcamValue":1},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.163","gcamValue":12},{"gcamCode":"c9.164","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":4},{"gcamCode":"c9.167","gcamValue":11},{"gcamCode":"c9.168","gcamValue":6},{"gcamCode":"c9.169","gcamValue":8},{"gcamCode":"c9.170","gcamValue":1},{"gcamCode":"c9.173","gcamValue":3},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":2},{"gcamCode":"c9.177","gcamValue":6},{"gcamCode":"c9.178","gcamValue":4},{"gcamCode":"c9.179","gcamValue":2},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":4},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":4},{"gcamCode":"c9.183","gcamValue":1},{"gcamCode":"c9.184","gcamValue":4},{"gcamCode":"c9.185","gcamValue":2},{"gcamCode":"c9.187","gcamValue":2},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.189","gcamValue":1},{"gcamCode":"c9.190","gcamValue":7},{"gcamCode":"c9.191","gcamValue":4},{"gcamCode":"c9.192","gcamValue":10},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.194","gcamValue":4},{"gcamCode":"c9.195","gcamValue":17},{"gcamCode":"c9.196","gcamValue":1},{"gcamCode":"c9.197","gcamValue":8},{"gcamCode":"c9.198","gcamValue":22},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":7},{"gcamCode":"c9.201","gcamValue":2},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":3},{"gcamCode":"c9.204","gcamValue":1},{"gcamCode":"c9.206","gcamValue":10},{"gcamCode":"c9.208","gcamValue":3},{"gcamCode":"c9.209","gcamValue":3},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.215","gcamValue":9},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":5},{"gcamCode":"c9.220","gcamValue":2},{"gcamCode":"c9.221","gcamValue":1},{"gcamCode":"c9.222","gcamValue":4},{"gcamCode":"c9.223","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.227","gcamValue":1},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":2},{"gcamCode":"c9.231","gcamValue":1},{"gcamCode":"c9.232","gcamValue":1},{"gcamCode":"c9.233","gcamValue":7},{"gcamCode":"c9.235","gcamValue":6},{"gcamCode":"c9.236","gcamValue":1},{"gcamCode":"c9.237","gcamValue":7},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":2},{"gcamCode":"c9.242","gcamValue":3},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.245","gcamValue":4},{"gcamCode":"c9.246","gcamValue":6},{"gcamCode":"c9.247","gcamValue":2},{"gcamCode":"c9.248","gcamValue":1},{"gcamCode":"c9.249","gcamValue":3},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.254","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.258","gcamValue":1},{"gcamCode":"c9.260","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":5},{"gcamCode":"c9.266","gcamValue":5},{"gcamCode":"c9.267","gcamValue":4},{"gcamCode":"c9.27","gcamValue":5},{"gcamCode":"c9.271","gcamValue":3},{"gcamCode":"c9.274","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":4},{"gcamCode":"c9.288","gcamValue":7},{"gcamCode":"c9.289","gcamValue":4},{"gcamCode":"c9.29","gcamValue":2},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":4},{"gcamCode":"c9.296","gcamValue":3},{"gcamCode":"c9.3","gcamValue":23},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.302","gcamValue":5},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.307","gcamValue":2},{"gcamCode":"c9.309","gcamValue":1},{"gcamCode":"c9.314","gcamValue":1},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":3},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":4},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.321","gcamValue":2},{"gcamCode":"c9.322","gcamValue":8},{"gcamCode":"c9.325","gcamValue":2},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.329","gcamValue":2},{"gcamCode":"c9.33","gcamValue":15},{"gcamCode":"c9.330","gcamValue":5},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":5},{"gcamCode":"c9.335","gcamValue":1},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.34","gcamValue":13},{"gcamCode":"c9.340","gcamValue":2},{"gcamCode":"c9.345","gcamValue":2},{"gcamCode":"c9.347","gcamValue":1},{"gcamCode":"c9.348","gcamValue":4},{"gcamCode":"c9.35","gcamValue":8},{"gcamCode":"c9.352","gcamValue":2},{"gcamCode":"c9.353","gcamValue":3},{"gcamCode":"c9.354","gcamValue":8},{"gcamCode":"c9.355","gcamValue":1},{"gcamCode":"c9.358","gcamValue":11},{"gcamCode":"c9.359","gcamValue":13},{"gcamCode":"c9.36","gcamValue":3},{"gcamCode":"c9.360","gcamValue":4},{"gcamCode":"c9.361","gcamValue":1},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":8},{"gcamCode":"c9.372","gcamValue":4},{"gcamCode":"c9.381","gcamValue":3},{"gcamCode":"c9.383","gcamValue":17},{"gcamCode":"c9.384","gcamValue":5},{"gcamCode":"c9.385","gcamValue":5},{"gcamCode":"c9.39","gcamValue":12},{"gcamCode":"c9.394","gcamValue":2},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.398","gcamValue":1},{"gcamCode":"c9.4","gcamValue":9},{"gcamCode":"c9.401","gcamValue":1},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.405","gcamValue":2},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.415","gcamValue":3},{"gcamCode":"c9.416","gcamValue":2},{"gcamCode":"c9.418","gcamValue":1},{"gcamCode":"c9.419","gcamValue":8},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":3},{"gcamCode":"c9.421","gcamValue":1},{"gcamCode":"c9.422","gcamValue":1},{"gcamCode":"c9.424","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":2},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.433","gcamValue":1},{"gcamCode":"c9.434","gcamValue":1},{"gcamCode":"c9.435","gcamValue":1},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.438","gcamValue":1},{"gcamCode":"c9.44","gcamValue":6},{"gcamCode":"c9.440","gcamValue":1},{"gcamCode":"c9.446","gcamValue":2},{"gcamCode":"c9.451","gcamValue":1},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.454","gcamValue":1},{"gcamCode":"c9.458","gcamValue":3},{"gcamCode":"c9.459","gcamValue":4},{"gcamCode":"c9.46","gcamValue":5},{"gcamCode":"c9.460","gcamValue":1},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.465","gcamValue":1},{"gcamCode":"c9.466","gcamValue":3},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":14},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":1},{"gcamCode":"c9.48","gcamValue":7},{"gcamCode":"c9.480","gcamValue":6},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.485","gcamValue":1},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":9},{"gcamCode":"c9.49","gcamValue":17},{"gcamCode":"c9.491","gcamValue":5},{"gcamCode":"c9.492","gcamValue":2},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.495","gcamValue":2},{"gcamCode":"c9.496","gcamValue":4},{"gcamCode":"c9.498","gcamValue":3},{"gcamCode":"c9.499","gcamValue":4},{"gcamCode":"c9.5","gcamValue":1},{"gcamCode":"c9.50","gcamValue":3},{"gcamCode":"c9.500","gcamValue":1},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.51","gcamValue":3},{"gcamCode":"c9.511","gcamValue":12},{"gcamCode":"c9.513","gcamValue":9},{"gcamCode":"c9.517","gcamValue":8},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":15},{"gcamCode":"c9.521","gcamValue":4},{"gcamCode":"c9.522","gcamValue":8},{"gcamCode":"c9.523","gcamValue":3},{"gcamCode":"c9.525","gcamValue":1},{"gcamCode":"c9.526","gcamValue":1},{"gcamCode":"c9.53","gcamValue":7},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.534","gcamValue":1},{"gcamCode":"c9.537","gcamValue":2},{"gcamCode":"c9.539","gcamValue":2},{"gcamCode":"c9.54","gcamValue":10},{"gcamCode":"c9.541","gcamValue":1},{"gcamCode":"c9.543","gcamValue":2},{"gcamCode":"c9.544","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":5},{"gcamCode":"c9.55","gcamValue":4},{"gcamCode":"c9.550","gcamValue":6},{"gcamCode":"c9.551","gcamValue":13},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":3},{"gcamCode":"c9.557","gcamValue":7},{"gcamCode":"c9.559","gcamValue":2},{"gcamCode":"c9.56","gcamValue":1},{"gcamCode":"c9.560","gcamValue":16},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":2},{"gcamCode":"c9.564","gcamValue":1},{"gcamCode":"c9.565","gcamValue":1},{"gcamCode":"c9.567","gcamValue":5},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":1},{"gcamCode":"c9.571","gcamValue":1},{"gcamCode":"c9.573","gcamValue":1},{"gcamCode":"c9.574","gcamValue":1},{"gcamCode":"c9.575","gcamValue":2},{"gcamCode":"c9.576","gcamValue":2},{"gcamCode":"c9.579","gcamValue":23},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.586","gcamValue":3},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.598","gcamValue":3},{"gcamCode":"c9.599","gcamValue":1},{"gcamCode":"c9.6","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.601","gcamValue":3},{"gcamCode":"c9.602","gcamValue":3},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":1},{"gcamCode":"c9.616","gcamValue":4},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":7},{"gcamCode":"c9.62","gcamValue":5},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.624","gcamValue":2},{"gcamCode":"c9.625","gcamValue":2},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":2},{"gcamCode":"c9.63","gcamValue":1},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.631","gcamValue":1},{"gcamCode":"c9.632","gcamValue":1},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":4},{"gcamCode":"c9.642","gcamValue":8},{"gcamCode":"c9.644","gcamValue":1},{"gcamCode":"c9.646","gcamValue":2},{"gcamCode":"c9.647","gcamValue":6},{"gcamCode":"c9.648","gcamValue":2},{"gcamCode":"c9.649","gcamValue":7},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.651","gcamValue":1},{"gcamCode":"c9.652","gcamValue":1},{"gcamCode":"c9.653","gcamValue":33},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.657","gcamValue":1},{"gcamCode":"c9.658","gcamValue":3},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":11},{"gcamCode":"c9.660","gcamValue":10},{"gcamCode":"c9.663","gcamValue":1},{"gcamCode":"c9.667","gcamValue":8},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":5},{"gcamCode":"c9.67","gcamValue":4},{"gcamCode":"c9.670","gcamValue":9},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.672","gcamValue":3},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.676","gcamValue":8},{"gcamCode":"c9.677","gcamValue":11},{"gcamCode":"c9.679","gcamValue":2},{"gcamCode":"c9.680","gcamValue":2},{"gcamCode":"c9.681","gcamValue":4},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":13},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.685","gcamValue":3},{"gcamCode":"c9.687","gcamValue":16},{"gcamCode":"c9.688","gcamValue":1},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":5},{"gcamCode":"c9.693","gcamValue":7},{"gcamCode":"c9.696","gcamValue":3},{"gcamCode":"c9.697","gcamValue":2},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.7","gcamValue":6},{"gcamCode":"c9.70","gcamValue":11},{"gcamCode":"c9.701","gcamValue":4},{"gcamCode":"c9.704","gcamValue":1},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.71","gcamValue":4},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.712","gcamValue":4},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.716","gcamValue":4},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":2},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":3},{"gcamCode":"c9.723","gcamValue":1},{"gcamCode":"c9.724","gcamValue":21},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":28},{"gcamCode":"c9.727","gcamValue":5},{"gcamCode":"c9.73","gcamValue":1},{"gcamCode":"c9.730","gcamValue":23},{"gcamCode":"c9.731","gcamValue":2},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":8},{"gcamCode":"c9.735","gcamValue":4},{"gcamCode":"c9.736","gcamValue":6},{"gcamCode":"c9.739","gcamValue":2},{"gcamCode":"c9.74","gcamValue":3},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.741","gcamValue":4},{"gcamCode":"c9.742","gcamValue":16},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":5},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":4},{"gcamCode":"c9.753","gcamValue":1},{"gcamCode":"c9.754","gcamValue":4},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.756","gcamValue":3},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":7},{"gcamCode":"c9.76","gcamValue":3},{"gcamCode":"c9.760","gcamValue":5},{"gcamCode":"c9.762","gcamValue":23},{"gcamCode":"c9.763","gcamValue":4},{"gcamCode":"c9.765","gcamValue":2},{"gcamCode":"c9.766","gcamValue":25},{"gcamCode":"c9.767","gcamValue":35},{"gcamCode":"c9.768","gcamValue":2},{"gcamCode":"c9.769","gcamValue":4},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":4},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":4},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.779","gcamValue":2},{"gcamCode":"c9.78","gcamValue":1},{"gcamCode":"c9.780","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":2},{"gcamCode":"c9.783","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.789","gcamValue":2},{"gcamCode":"c9.79","gcamValue":2},{"gcamCode":"c9.790","gcamValue":2},{"gcamCode":"c9.792","gcamValue":1},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":4},{"gcamCode":"c9.80","gcamValue":2},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.806","gcamValue":1},{"gcamCode":"c9.807","gcamValue":4},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":13},{"gcamCode":"c9.814","gcamValue":3},{"gcamCode":"c9.816","gcamValue":3},{"gcamCode":"c9.817","gcamValue":2},{"gcamCode":"c9.82","gcamValue":4},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.825","gcamValue":1},{"gcamCode":"c9.826","gcamValue":2},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":19},{"gcamCode":"c9.831","gcamValue":2},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":7},{"gcamCode":"c9.837","gcamValue":4},{"gcamCode":"c9.838","gcamValue":6},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.846","gcamValue":10},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":1},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.853","gcamValue":2},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":5},{"gcamCode":"c9.860","gcamValue":1},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":3},{"gcamCode":"c9.863","gcamValue":3},{"gcamCode":"c9.864","gcamValue":22},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":3},{"gcamCode":"c9.867","gcamValue":9},{"gcamCode":"c9.868","gcamValue":22},{"gcamCode":"c9.87","gcamValue":2},{"gcamCode":"c9.874","gcamValue":5},{"gcamCode":"c9.877","gcamValue":2},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":4},{"gcamCode":"c9.880","gcamValue":2},{"gcamCode":"c9.882","gcamValue":3},{"gcamCode":"c9.884","gcamValue":3},{"gcamCode":"c9.885","gcamValue":1},{"gcamCode":"c9.886","gcamValue":2},{"gcamCode":"c9.887","gcamValue":3},{"gcamCode":"c9.889","gcamValue":2},{"gcamCode":"c9.89","gcamValue":3},{"gcamCode":"c9.890","gcamValue":7},{"gcamCode":"c9.893","gcamValue":1},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.897","gcamValue":5},{"gcamCode":"c9.898","gcamValue":4},{"gcamCode":"c9.899","gcamValue":3},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.901","gcamValue":1},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.911","gcamValue":10},{"gcamCode":"c9.913","gcamValue":1},{"gcamCode":"c9.915","gcamValue":2},{"gcamCode":"c9.916","gcamValue":2},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":8},{"gcamCode":"c9.922","gcamValue":1},{"gcamCode":"c9.923","gcamValue":4},{"gcamCode":"c9.925","gcamValue":2},{"gcamCode":"c9.926","gcamValue":6},{"gcamCode":"c9.930","gcamValue":3},{"gcamCode":"c9.931","gcamValue":4},{"gcamCode":"c9.932","gcamValue":3},{"gcamCode":"c9.933","gcamValue":2},{"gcamCode":"c9.935","gcamValue":4},{"gcamCode":"c9.938","gcamValue":3},{"gcamCode":"c9.942","gcamValue":3},{"gcamCode":"c9.945","gcamValue":1},{"gcamCode":"c9.946","gcamValue":5},{"gcamCode":"c9.948","gcamValue":2},{"gcamCode":"c9.949","gcamValue":3},{"gcamCode":"c9.953","gcamValue":1},{"gcamCode":"c9.955","gcamValue":3},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.962","gcamValue":3},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":2},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.972","gcamValue":10},{"gcamCode":"c9.973","gcamValue":9},{"gcamCode":"c9.974","gcamValue":1},{"gcamCode":"c9.975","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":1},{"gcamCode":"c9.98","gcamValue":3},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.983","gcamValue":3},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.995","gcamValue":2},{"gcamCode":"c9.997","gcamValue":3},{"gcamCode":"c9.998","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.262619559057295},{"gcamCode":"v10.2","gcamValue":0.295545591840955},{"gcamCode":"v11.1","gcamValue":-0.00193001622060017},{"gcamCode":"v19.1","gcamValue":5.20909090909091},{"gcamCode":"v19.2","gcamValue":5.25343434343434},{"gcamCode":"v19.3","gcamValue":5.11444444444444},{"gcamCode":"v19.4","gcamValue":5.2829292929293},{"gcamCode":"v19.5","gcamValue":4.9550505050505},{"gcamCode":"v19.6","gcamValue":5.14858585858586},{"gcamCode":"v19.7","gcamValue":5.16727272727273},{"gcamCode":"v19.8","gcamValue":5.50454545454545},{"gcamCode":"v19.9","gcamValue":5.07909090909091},{"gcamCode":"v20.1","gcamValue":0.6055},{"gcamCode":"v20.10","gcamValue":-0.554},{"gcamCode":"v20.11","gcamValue":0.5844},{"gcamCode":"v20.12","gcamValue":-0.541727272727273},{"gcamCode":"v20.13","gcamValue":0.381142857142857},{"gcamCode":"v20.14","gcamValue":-0.491833333333333},{"gcamCode":"v20.15","gcamValue":0.351222222222222},{"gcamCode":"v20.16","gcamValue":-0.431375},{"gcamCode":"v20.2","gcamValue":-0.278},{"gcamCode":"v20.3","gcamValue":0.6055},{"gcamCode":"v20.4","gcamValue":-0.278},{"gcamCode":"v20.5","gcamValue":0.6055},{"gcamCode":"v20.6","gcamValue":-0.442875},{"gcamCode":"v20.7","gcamValue":0.6055},{"gcamCode":"v20.8","gcamValue":-0.5043},{"gcamCode":"v20.9","gcamValue":0.6055},{"gcamCode":"v21.1","gcamValue":5.24363636363636},{"gcamCode":"v26.1","gcamValue":-0.655223880597015}]https://media.graytvinc.com/images/possible+MO+tornado.JPG[""]["https://pic.twitter.com/cPWQi1tzCJ"][""][{"charLength":39,"verb":"","quote":"confirmed large and destructive tornado","charOffset":520},{"charLength":165,"verb":"","quote":"Evacuate Webbers Falls immediately. The barges are loose and has the potential to hit the lock and dam 16. If the dam breaks , it will be catastrophic!! Leave now!!","charOffset":4172}][{"name":"Jefferson City","charOffset":82},{"name":"Jefferson City","charOffset":544},{"name":"Mike Parson","charOffset":1045},{"name":"Public Safety","charOffset":1240},{"name":"Golden City","charOffset":1310},{"name":"Barton County","charOffset":1332},{"name":"Carl Junction","charOffset":1378},{"name":"City Police","charOffset":1423},{"name":"David Williams","charOffset":1442},{"name":"Southern Plains","charOffset":1742},{"name":"Cole County Sheriff","charOffset":1856},{"name":"Jessica Royston","charOffset":2167},{"name":"Public Safety","charOffset":2287},{"name":"National Weather Service","charOffset":2839},{"name":"Carl Junction","charOffset":3203},{"name":"Arkansas River","charOffset":3505},{"name":"Arkansas River","charOffset":3747},{"name":"Webbers Falls","charOffset":3769},{"name":"Webbers Falls","charOffset":4077},{"name":"Arkansas River","charOffset":4437},{"name":"Mississippi Rivers","charOffset":4528},{"name":"Highway Patrol","charOffset":5155},{"name":"Emergency Management","charOffset":5463},{"name":"Keli Cain","charOffset":5485}][{"amount":3,"amountType":"deaths","charOffset":167},{"amount":130,"amountType":"miles","charOffset":558},{"amount":209,"amountType":"kilometers","charOffset":567},{"amount":3,"amountType":"people","charOffset":806},{"amount":3,"amountType":"people were killed","charOffset":1021},{"amount":2,"amountType":"stories","charOffset":2247},{"amount":22,"amountType":"reports of tornadoes by","charOffset":2300},{"amount":161,"amountType":"people","charOffset":2506},{"amount":4,"amountType":"miles","charOffset":2578},{"amount":44,"amountType":"kilometers","charOffset":2587},{"amount":2,"amountType":"barges broke loose","charOffset":2739},{"amount":600,"amountType":"residents","charOffset":3232},{"amount":12,"amountType":"of tornadoes","charOffset":3690},{"amount":2,"amountType":"people","charOffset":4025},{"amount":4,"amountType":"weather","charOffset":4080},{"amount":45,"amountType":"miles","charOffset":4228},{"amount":72,"amountType":"kilometers","charOffset":4236}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>DAVID A. LIEB Associated Press</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":36}2019-05-23T12:15:00.000+0000WEBmarketpulse.comhttps://www.marketpulse.com/20190523/oil-prices-fall-surging-us-crude-stockpiles-economic-concerns/[][]["ENV_OIL","TAX_ECON_PRICE","ECON_OILPRICE","WB_539_OIL_AND_GAS_POLICY_STRATEGY_AND_INSTITUTIONS","WB_507_ENERGY_AND_EXTRACTIVES","WB_548_PPP_IN_OIL_AND_GAS","WB_2298_REFINERIES","TAX_FNCACT","TAX_FNCACT_ANALYST","USPEC_POLICY1","EPU_ECONOMY","EPU_ECONOMY_HISTORIC","WB_698_TRADE","ARMEDCONFLICT","EPU_CATS_NATIONAL_SECURITY","ECON_TRADE_DISPUTE","EPU_POLICY","EPU_POLICY_POLITICAL","USPEC_UNCERTAINTY1","TAX_ETHNICITY","TAX_ETHNICITY_FRENCH","TAX_WORLDLANGUAGES","TAX_WORLDLANGUAGES_FRENCH"][{"theme":"USPEC_UNCERTAINTY1","charOffset":1864},{"theme":"TAX_ETHNICITY_FRENCH","charOffset":2401},{"theme":"TAX_WORLDLANGUAGES_FRENCH","charOffset":2401},{"theme":"EPU_POLICY_POLITICAL","charOffset":1645},{"theme":"ARMEDCONFLICT","charOffset":1539},{"theme":"EPU_CATS_NATIONAL_SECURITY","charOffset":1539},{"theme":"USPEC_POLICY1","charOffset":1511},{"theme":"EPU_ECONOMY","charOffset":1511},{"theme":"EPU_ECONOMY_HISTORIC","charOffset":1511},{"theme":"TAX_ECON_PRICE","charOffset":10},{"theme":"TAX_ECON_PRICE","charOffset":208},{"theme":"TAX_ECON_PRICE","charOffset":596},{"theme":"TAX_ECON_PRICE","charOffset":1572},{"theme":"TAX_FNCACT_ANALYST","charOffset":632},{"theme":"ENV_OIL","charOffset":3},{"theme":"ENV_OIL","charOffset":201},{"theme":"ENV_OIL","charOffset":677},{"theme":"ENV_OIL","charOffset":1047},{"theme":"ENV_OIL","charOffset":1213},{"theme":"ENV_OIL","charOffset":1448},{"theme":"ENV_OIL","charOffset":1565},{"theme":"ENV_OIL","charOffset":1971},{"theme":"ENV_OIL","charOffset":2083},{"theme":"WB_698_TRADE","charOffset":1535},{"theme":"WB_698_TRADE","charOffset":2335},{"theme":"ECON_OILPRICE","charOffset":10},{"theme":"ECON_OILPRICE","charOffset":208},{"theme":"ECON_OILPRICE","charOffset":1572},{"theme":"WB_539_OIL_AND_GAS_POLICY_STRATEGY_AND_INSTITUTIONS","charOffset":140},{"theme":"WB_507_ENERGY_AND_EXTRACTIVES","charOffset":140},{"theme":"WB_548_PPP_IN_OIL_AND_GAS","charOffset":140},{"theme":"WB_2298_REFINERIES","charOffset":140},{"theme":"ECON_TRADE_DISPUTE","charOffset":1539}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},{"geoType":"COUNTRY","geoName":"Iran","countryCode":"IR","adm1Code":"IR","adm2Code":"","geoPoint":{"latitude":32,"longitude":53},"featureId":"IR"},{"geoType":"COUNTRY","geoName":"France","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"}][{"location":{"geoType":"USSTATE","geoName":"Texas, United States","countryCode":"US","adm1Code":"USTX","adm2Code":"","geoPoint":{"latitude":31.106,"longitude":-97.6475},"featureId":"TX"},"charOffset":319},{"location":{"geoType":"COUNTRY","geoName":"French","countryCode":"FR","adm1Code":"FR","adm2Code":"","geoPoint":{"latitude":46,"longitude":2},"featureId":"FR"},"charOffset":2401},{"location":{"geoType":"COUNTRY","geoName":"Iran","countryCode":"IR","adm1Code":"IR","adm2Code":"","geoPoint":{"latitude":32,"longitude":53},"featureId":"IR"},"charOffset":1686},{"location":{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":1679}]["edward moya","ole hansen"][{"person":"Edward Moya","charOffset":615},{"person":"Ole Hansen","charOffset":1372}]["morgan stanley","energy information administration","organization of the petroleum exporting countries","saxo bank","united states"][{"organisation":"Morgan Stanley","charOffset":1949},{"organisation":"Morgan Stanley","charOffset":2294},{"organisation":"Energy Information Administration","charOffset":818},{"organisation":"Organization Of The Petroleum Exporting Countries","charOffset":1780},{"organisation":"Saxo Bank","charOffset":1414},{"organisation":"United States","charOffset":1679}]{"tone":-5.442177,"positiveScore":0.6802721,"negativeScore":6.122449,"polarity":6.802721,"activityReferenceDensity":21.768707,"selfGroupReferenceDensity":0.45351472,"wordCount":410}[{"dateResolution":4,"month":5,"day":17,"year":0,"charOffset":914}][{"gcamCode":"wc","gcamValue":410},{"gcamCode":"c1.2","gcamValue":7},{"gcamCode":"c12.1","gcamValue":29},{"gcamCode":"c12.10","gcamValue":46},{"gcamCode":"c12.11","gcamValue":6},{"gcamCode":"c12.12","gcamValue":22},{"gcamCode":"c12.13","gcamValue":11},{"gcamCode":"c12.14","gcamValue":7},{"gcamCode":"c12.2","gcamValue":6},{"gcamCode":"c12.3","gcamValue":11},{"gcamCode":"c12.4","gcamValue":4},{"gcamCode":"c12.5","gcamValue":8},{"gcamCode":"c12.6","gcamValue":6},{"gcamCode":"c12.7","gcamValue":28},{"gcamCode":"c12.8","gcamValue":15},{"gcamCode":"c12.9","gcamValue":15},{"gcamCode":"c13.11","gcamValue":4},{"gcamCode":"c13.12","gcamValue":2},{"gcamCode":"c13.14","gcamValue":3},{"gcamCode":"c14.1","gcamValue":18},{"gcamCode":"c14.10","gcamValue":16},{"gcamCode":"c14.11","gcamValue":46},{"gcamCode":"c14.2","gcamValue":25},{"gcamCode":"c14.3","gcamValue":22},{"gcamCode":"c14.4","gcamValue":1},{"gcamCode":"c14.5","gcamValue":43},{"gcamCode":"c14.6","gcamValue":2},{"gcamCode":"c14.7","gcamValue":7},{"gcamCode":"c14.9","gcamValue":5},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.150","gcamValue":1},{"gcamCode":"c15.154","gcamValue":2},{"gcamCode":"c15.197","gcamValue":1},{"gcamCode":"c15.201","gcamValue":1},{"gcamCode":"c15.207","gcamValue":2},{"gcamCode":"c15.209","gcamValue":1},{"gcamCode":"c15.215","gcamValue":4},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.248","gcamValue":1},{"gcamCode":"c15.260","gcamValue":1},{"gcamCode":"c15.272","gcamValue":4},{"gcamCode":"c15.34","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.51","gcamValue":1},{"gcamCode":"c15.69","gcamValue":2},{"gcamCode":"c15.77","gcamValue":1},{"gcamCode":"c15.82","gcamValue":1},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.86","gcamValue":1},{"gcamCode":"c15.94","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c16.1","gcamValue":3},{"gcamCode":"c16.100","gcamValue":7},{"gcamCode":"c16.101","gcamValue":8},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":17},{"gcamCode":"c16.108","gcamValue":1},{"gcamCode":"c16.109","gcamValue":15},{"gcamCode":"c16.11","gcamValue":5},{"gcamCode":"c16.110","gcamValue":38},{"gcamCode":"c16.111","gcamValue":12},{"gcamCode":"c16.114","gcamValue":13},{"gcamCode":"c16.115","gcamValue":5},{"gcamCode":"c16.116","gcamValue":11},{"gcamCode":"c16.117","gcamValue":15},{"gcamCode":"c16.118","gcamValue":21},{"gcamCode":"c16.12","gcamValue":20},{"gcamCode":"c16.120","gcamValue":16},{"gcamCode":"c16.121","gcamValue":26},{"gcamCode":"c16.122","gcamValue":2},{"gcamCode":"c16.124","gcamValue":3},{"gcamCode":"c16.125","gcamValue":24},{"gcamCode":"c16.126","gcamValue":14},{"gcamCode":"c16.127","gcamValue":32},{"gcamCode":"c16.128","gcamValue":6},{"gcamCode":"c16.129","gcamValue":54},{"gcamCode":"c16.13","gcamValue":1},{"gcamCode":"c16.130","gcamValue":3},{"gcamCode":"c16.131","gcamValue":8},{"gcamCode":"c16.134","gcamValue":41},{"gcamCode":"c16.138","gcamValue":11},{"gcamCode":"c16.139","gcamValue":7},{"gcamCode":"c16.140","gcamValue":10},{"gcamCode":"c16.143","gcamValue":1},{"gcamCode":"c16.145","gcamValue":17},{"gcamCode":"c16.146","gcamValue":21},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":8},{"gcamCode":"c16.157","gcamValue":8},{"gcamCode":"c16.159","gcamValue":31},{"gcamCode":"c16.16","gcamValue":8},{"gcamCode":"c16.161","gcamValue":26},{"gcamCode":"c16.162","gcamValue":10},{"gcamCode":"c16.163","gcamValue":27},{"gcamCode":"c16.164","gcamValue":3},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":23},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":9},{"gcamCode":"c16.23","gcamValue":3},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":32},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":15},{"gcamCode":"c16.31","gcamValue":32},{"gcamCode":"c16.32","gcamValue":12},{"gcamCode":"c16.33","gcamValue":51},{"gcamCode":"c16.35","gcamValue":18},{"gcamCode":"c16.36","gcamValue":12},{"gcamCode":"c16.37","gcamValue":47},{"gcamCode":"c16.38","gcamValue":16},{"gcamCode":"c16.4","gcamValue":19},{"gcamCode":"c16.41","gcamValue":7},{"gcamCode":"c16.45","gcamValue":8},{"gcamCode":"c16.46","gcamValue":4},{"gcamCode":"c16.47","gcamValue":82},{"gcamCode":"c16.48","gcamValue":6},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.5","gcamValue":6},{"gcamCode":"c16.50","gcamValue":5},{"gcamCode":"c16.51","gcamValue":2},{"gcamCode":"c16.52","gcamValue":35},{"gcamCode":"c16.53","gcamValue":3},{"gcamCode":"c16.56","gcamValue":20},{"gcamCode":"c16.57","gcamValue":217},{"gcamCode":"c16.58","gcamValue":23},{"gcamCode":"c16.6","gcamValue":44},{"gcamCode":"c16.60","gcamValue":8},{"gcamCode":"c16.62","gcamValue":7},{"gcamCode":"c16.63","gcamValue":15},{"gcamCode":"c16.64","gcamValue":1},{"gcamCode":"c16.65","gcamValue":14},{"gcamCode":"c16.66","gcamValue":8},{"gcamCode":"c16.68","gcamValue":25},{"gcamCode":"c16.69","gcamValue":7},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":19},{"gcamCode":"c16.71","gcamValue":13},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":8},{"gcamCode":"c16.75","gcamValue":8},{"gcamCode":"c16.76","gcamValue":3},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":8},{"gcamCode":"c16.8","gcamValue":4},{"gcamCode":"c16.80","gcamValue":3},{"gcamCode":"c16.83","gcamValue":5},{"gcamCode":"c16.84","gcamValue":36},{"gcamCode":"c16.85","gcamValue":6},{"gcamCode":"c16.86","gcamValue":1},{"gcamCode":"c16.87","gcamValue":36},{"gcamCode":"c16.88","gcamValue":33},{"gcamCode":"c16.89","gcamValue":18},{"gcamCode":"c16.9","gcamValue":2},{"gcamCode":"c16.90","gcamValue":16},{"gcamCode":"c16.91","gcamValue":15},{"gcamCode":"c16.92","gcamValue":26},{"gcamCode":"c16.93","gcamValue":5},{"gcamCode":"c16.94","gcamValue":49},{"gcamCode":"c16.95","gcamValue":21},{"gcamCode":"c16.96","gcamValue":22},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":25},{"gcamCode":"c16.99","gcamValue":3},{"gcamCode":"c17.1","gcamValue":109},{"gcamCode":"c17.10","gcamValue":40},{"gcamCode":"c17.11","gcamValue":58},{"gcamCode":"c17.12","gcamValue":14},{"gcamCode":"c17.13","gcamValue":5},{"gcamCode":"c17.14","gcamValue":12},{"gcamCode":"c17.15","gcamValue":23},{"gcamCode":"c17.16","gcamValue":12},{"gcamCode":"c17.18","gcamValue":15},{"gcamCode":"c17.19","gcamValue":10},{"gcamCode":"c17.2","gcamValue":6},{"gcamCode":"c17.20","gcamValue":7},{"gcamCode":"c17.21","gcamValue":10},{"gcamCode":"c17.22","gcamValue":14},{"gcamCode":"c17.23","gcamValue":13},{"gcamCode":"c17.24","gcamValue":49},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":5},{"gcamCode":"c17.27","gcamValue":42},{"gcamCode":"c17.28","gcamValue":27},{"gcamCode":"c17.29","gcamValue":17},{"gcamCode":"c17.3","gcamValue":3},{"gcamCode":"c17.30","gcamValue":11},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.32","gcamValue":13},{"gcamCode":"c17.33","gcamValue":21},{"gcamCode":"c17.34","gcamValue":9},{"gcamCode":"c17.35","gcamValue":12},{"gcamCode":"c17.36","gcamValue":37},{"gcamCode":"c17.37","gcamValue":6},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":17},{"gcamCode":"c17.4","gcamValue":102},{"gcamCode":"c17.40","gcamValue":7},{"gcamCode":"c17.41","gcamValue":20},{"gcamCode":"c17.42","gcamValue":19},{"gcamCode":"c17.43","gcamValue":22},{"gcamCode":"c17.5","gcamValue":86},{"gcamCode":"c17.6","gcamValue":6},{"gcamCode":"c17.7","gcamValue":59},{"gcamCode":"c17.8","gcamValue":55},{"gcamCode":"c17.9","gcamValue":5},{"gcamCode":"c18.172","gcamValue":9},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.193","gcamValue":1},{"gcamCode":"c18.314","gcamValue":8},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.47","gcamValue":1},{"gcamCode":"c18.76","gcamValue":1},{"gcamCode":"c2.1","gcamValue":21},{"gcamCode":"c2.101","gcamValue":6},{"gcamCode":"c2.102","gcamValue":15},{"gcamCode":"c2.104","gcamValue":71},{"gcamCode":"c2.106","gcamValue":1},{"gcamCode":"c2.107","gcamValue":1},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.109","gcamValue":5},{"gcamCode":"c2.11","gcamValue":7},{"gcamCode":"c2.110","gcamValue":2},{"gcamCode":"c2.111","gcamValue":12},{"gcamCode":"c2.112","gcamValue":10},{"gcamCode":"c2.113","gcamValue":2},{"gcamCode":"c2.114","gcamValue":12},{"gcamCode":"c2.116","gcamValue":3},{"gcamCode":"c2.119","gcamValue":109},{"gcamCode":"c2.12","gcamValue":11},{"gcamCode":"c2.120","gcamValue":4},{"gcamCode":"c2.121","gcamValue":36},{"gcamCode":"c2.122","gcamValue":3},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":25},{"gcamCode":"c2.126","gcamValue":7},{"gcamCode":"c2.127","gcamValue":34},{"gcamCode":"c2.128","gcamValue":10},{"gcamCode":"c2.129","gcamValue":10},{"gcamCode":"c2.130","gcamValue":9},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":2},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":3},{"gcamCode":"c2.138","gcamValue":10},{"gcamCode":"c2.139","gcamValue":3},{"gcamCode":"c2.14","gcamValue":40},{"gcamCode":"c2.140","gcamValue":1},{"gcamCode":"c2.141","gcamValue":6},{"gcamCode":"c2.143","gcamValue":25},{"gcamCode":"c2.144","gcamValue":1},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":74},{"gcamCode":"c2.148","gcamValue":13},{"gcamCode":"c2.15","gcamValue":12},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.153","gcamValue":7},{"gcamCode":"c2.154","gcamValue":4},{"gcamCode":"c2.155","gcamValue":16},{"gcamCode":"c2.156","gcamValue":20},{"gcamCode":"c2.157","gcamValue":9},{"gcamCode":"c2.158","gcamValue":17},{"gcamCode":"c2.159","gcamValue":5},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.161","gcamValue":2},{"gcamCode":"c2.162","gcamValue":2},{"gcamCode":"c2.166","gcamValue":4},{"gcamCode":"c2.169","gcamValue":2},{"gcamCode":"c2.170","gcamValue":2},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":10},{"gcamCode":"c2.175","gcamValue":4},{"gcamCode":"c2.176","gcamValue":2},{"gcamCode":"c2.177","gcamValue":9},{"gcamCode":"c2.179","gcamValue":12},{"gcamCode":"c2.18","gcamValue":7},{"gcamCode":"c2.180","gcamValue":7},{"gcamCode":"c2.181","gcamValue":23},{"gcamCode":"c2.183","gcamValue":23},{"gcamCode":"c2.185","gcamValue":79},{"gcamCode":"c2.187","gcamValue":13},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":5},{"gcamCode":"c2.193","gcamValue":38},{"gcamCode":"c2.194","gcamValue":1},{"gcamCode":"c2.195","gcamValue":39},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":14},{"gcamCode":"c2.198","gcamValue":46},{"gcamCode":"c2.199","gcamValue":8},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.200","gcamValue":7},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":11},{"gcamCode":"c2.204","gcamValue":38},{"gcamCode":"c2.205","gcamValue":14},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":2},{"gcamCode":"c2.209","gcamValue":9},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":23},{"gcamCode":"c2.211","gcamValue":1},{"gcamCode":"c2.213","gcamValue":13},{"gcamCode":"c2.214","gcamValue":19},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.22","gcamValue":1},{"gcamCode":"c2.220","gcamValue":5},{"gcamCode":"c2.221","gcamValue":24},{"gcamCode":"c2.222","gcamValue":4},{"gcamCode":"c2.223","gcamValue":30},{"gcamCode":"c2.224","gcamValue":3},{"gcamCode":"c2.225","gcamValue":6},{"gcamCode":"c2.226","gcamValue":9},{"gcamCode":"c2.23","gcamValue":7},{"gcamCode":"c2.25","gcamValue":20},{"gcamCode":"c2.26","gcamValue":9},{"gcamCode":"c2.27","gcamValue":9},{"gcamCode":"c2.28","gcamValue":7},{"gcamCode":"c2.30","gcamValue":20},{"gcamCode":"c2.31","gcamValue":10},{"gcamCode":"c2.32","gcamValue":1},{"gcamCode":"c2.33","gcamValue":2},{"gcamCode":"c2.34","gcamValue":25},{"gcamCode":"c2.35","gcamValue":2},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":2},{"gcamCode":"c2.39","gcamValue":39},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.44","gcamValue":18},{"gcamCode":"c2.45","gcamValue":38},{"gcamCode":"c2.46","gcamValue":34},{"gcamCode":"c2.48","gcamValue":11},{"gcamCode":"c2.50","gcamValue":10},{"gcamCode":"c2.52","gcamValue":27},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":29},{"gcamCode":"c2.55","gcamValue":1},{"gcamCode":"c2.57","gcamValue":3},{"gcamCode":"c2.58","gcamValue":36},{"gcamCode":"c2.59","gcamValue":13},{"gcamCode":"c2.6","gcamValue":2},{"gcamCode":"c2.60","gcamValue":4},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":8},{"gcamCode":"c2.64","gcamValue":19},{"gcamCode":"c2.65","gcamValue":8},{"gcamCode":"c2.66","gcamValue":1},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":1},{"gcamCode":"c2.70","gcamValue":1},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":5},{"gcamCode":"c2.75","gcamValue":39},{"gcamCode":"c2.76","gcamValue":257},{"gcamCode":"c2.77","gcamValue":15},{"gcamCode":"c2.78","gcamValue":32},{"gcamCode":"c2.79","gcamValue":3},{"gcamCode":"c2.80","gcamValue":51},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.82","gcamValue":6},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.85","gcamValue":1},{"gcamCode":"c2.86","gcamValue":8},{"gcamCode":"c2.87","gcamValue":3},{"gcamCode":"c2.88","gcamValue":14},{"gcamCode":"c2.89","gcamValue":13},{"gcamCode":"c2.9","gcamValue":1},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":4},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":71},{"gcamCode":"c2.96","gcamValue":5},{"gcamCode":"c2.98","gcamValue":11},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":1},{"gcamCode":"c25.9","gcamValue":1},{"gcamCode":"c3.1","gcamValue":27},{"gcamCode":"c3.2","gcamValue":13},{"gcamCode":"c35.1","gcamValue":12},{"gcamCode":"c35.11","gcamValue":3},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":2},{"gcamCode":"c35.2","gcamValue":1},{"gcamCode":"c35.20","gcamValue":11},{"gcamCode":"c35.22","gcamValue":4},{"gcamCode":"c35.24","gcamValue":1},{"gcamCode":"c35.25","gcamValue":2},{"gcamCode":"c35.31","gcamValue":25},{"gcamCode":"c35.32","gcamValue":4},{"gcamCode":"c35.33","gcamValue":18},{"gcamCode":"c35.4","gcamValue":2},{"gcamCode":"c35.5","gcamValue":2},{"gcamCode":"c35.7","gcamValue":1},{"gcamCode":"c39.12","gcamValue":2},{"gcamCode":"c39.14","gcamValue":1},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":5},{"gcamCode":"c39.2","gcamValue":9},{"gcamCode":"c39.29","gcamValue":1},{"gcamCode":"c39.3","gcamValue":30},{"gcamCode":"c39.32","gcamValue":1},{"gcamCode":"c39.36","gcamValue":3},{"gcamCode":"c39.37","gcamValue":14},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":7},{"gcamCode":"c39.4","gcamValue":29},{"gcamCode":"c39.40","gcamValue":1},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":13},{"gcamCode":"c39.6","gcamValue":2},{"gcamCode":"c4.10","gcamValue":7},{"gcamCode":"c4.16","gcamValue":6},{"gcamCode":"c4.17","gcamValue":1},{"gcamCode":"c4.19","gcamValue":1},{"gcamCode":"c4.20","gcamValue":1},{"gcamCode":"c4.23","gcamValue":7},{"gcamCode":"c40.4","gcamValue":1},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":2},{"gcamCode":"c41.1","gcamValue":47},{"gcamCode":"c5.10","gcamValue":45},{"gcamCode":"c5.11","gcamValue":13},{"gcamCode":"c5.12","gcamValue":92},{"gcamCode":"c5.13","gcamValue":1},{"gcamCode":"c5.15","gcamValue":4},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":6},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":7},{"gcamCode":"c5.2","gcamValue":1},{"gcamCode":"c5.20","gcamValue":2},{"gcamCode":"c5.21","gcamValue":19},{"gcamCode":"c5.23","gcamValue":7},{"gcamCode":"c5.24","gcamValue":5},{"gcamCode":"c5.26","gcamValue":2},{"gcamCode":"c5.27","gcamValue":4},{"gcamCode":"c5.28","gcamValue":7},{"gcamCode":"c5.29","gcamValue":4},{"gcamCode":"c5.30","gcamValue":30},{"gcamCode":"c5.32","gcamValue":9},{"gcamCode":"c5.33","gcamValue":2},{"gcamCode":"c5.34","gcamValue":16},{"gcamCode":"c5.35","gcamValue":2},{"gcamCode":"c5.36","gcamValue":19},{"gcamCode":"c5.4","gcamValue":16},{"gcamCode":"c5.40","gcamValue":13},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":8},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":4},{"gcamCode":"c5.46","gcamValue":67},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":17},{"gcamCode":"c5.50","gcamValue":27},{"gcamCode":"c5.51","gcamValue":13},{"gcamCode":"c5.52","gcamValue":30},{"gcamCode":"c5.53","gcamValue":24},{"gcamCode":"c5.54","gcamValue":8},{"gcamCode":"c5.55","gcamValue":3},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.6","gcamValue":9},{"gcamCode":"c5.60","gcamValue":5},{"gcamCode":"c5.61","gcamValue":13},{"gcamCode":"c5.62","gcamValue":131},{"gcamCode":"c5.7","gcamValue":9},{"gcamCode":"c5.8","gcamValue":19},{"gcamCode":"c5.9","gcamValue":34},{"gcamCode":"c6.2","gcamValue":3},{"gcamCode":"c6.3","gcamValue":4},{"gcamCode":"c6.4","gcamValue":15},{"gcamCode":"c6.5","gcamValue":4},{"gcamCode":"c6.6","gcamValue":5},{"gcamCode":"c7.1","gcamValue":24},{"gcamCode":"c7.2","gcamValue":10},{"gcamCode":"c8.1","gcamValue":1},{"gcamCode":"c8.10","gcamValue":3},{"gcamCode":"c8.13","gcamValue":4},{"gcamCode":"c8.15","gcamValue":3},{"gcamCode":"c8.17","gcamValue":4},{"gcamCode":"c8.2","gcamValue":7},{"gcamCode":"c8.23","gcamValue":16},{"gcamCode":"c8.25","gcamValue":1},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.36","gcamValue":2},{"gcamCode":"c8.37","gcamValue":5},{"gcamCode":"c8.38","gcamValue":18},{"gcamCode":"c8.4","gcamValue":7},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":10},{"gcamCode":"c8.43","gcamValue":14},{"gcamCode":"c9.1","gcamValue":12},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1000","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1008","gcamValue":1},{"gcamCode":"c9.1011","gcamValue":1},{"gcamCode":"c9.1015","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":2},{"gcamCode":"c9.1038","gcamValue":2},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":7},{"gcamCode":"c9.11","gcamValue":1},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.113","gcamValue":7},{"gcamCode":"c9.116","gcamValue":6},{"gcamCode":"c9.118","gcamValue":2},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.12","gcamValue":2},{"gcamCode":"c9.122","gcamValue":10},{"gcamCode":"c9.123","gcamValue":3},{"gcamCode":"c9.124","gcamValue":3},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.126","gcamValue":1},{"gcamCode":"c9.127","gcamValue":2},{"gcamCode":"c9.128","gcamValue":16},{"gcamCode":"c9.129","gcamValue":3},{"gcamCode":"c9.13","gcamValue":2},{"gcamCode":"c9.130","gcamValue":3},{"gcamCode":"c9.134","gcamValue":3},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.140","gcamValue":3},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.142","gcamValue":2},{"gcamCode":"c9.143","gcamValue":4},{"gcamCode":"c9.145","gcamValue":8},{"gcamCode":"c9.148","gcamValue":5},{"gcamCode":"c9.149","gcamValue":1},{"gcamCode":"c9.15","gcamValue":4},{"gcamCode":"c9.150","gcamValue":1},{"gcamCode":"c9.151","gcamValue":2},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.157","gcamValue":1},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.159","gcamValue":3},{"gcamCode":"c9.160","gcamValue":4},{"gcamCode":"c9.161","gcamValue":5},{"gcamCode":"c9.162","gcamValue":6},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.166","gcamValue":2},{"gcamCode":"c9.167","gcamValue":4},{"gcamCode":"c9.168","gcamValue":4},{"gcamCode":"c9.169","gcamValue":2},{"gcamCode":"c9.170","gcamValue":2},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":2},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":3},{"gcamCode":"c9.184","gcamValue":2},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.190","gcamValue":1},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":1},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.198","gcamValue":4},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":4},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.205","gcamValue":4},{"gcamCode":"c9.206","gcamValue":4},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.208","gcamValue":1},{"gcamCode":"c9.209","gcamValue":2},{"gcamCode":"c9.211","gcamValue":2},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.215","gcamValue":7},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":4},{"gcamCode":"c9.222","gcamValue":2},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.227","gcamValue":3},{"gcamCode":"c9.23","gcamValue":2},{"gcamCode":"c9.233","gcamValue":3},{"gcamCode":"c9.235","gcamValue":4},{"gcamCode":"c9.237","gcamValue":2},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.24","gcamValue":4},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.246","gcamValue":2},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.255","gcamValue":1},{"gcamCode":"c9.259","gcamValue":4},{"gcamCode":"c9.260","gcamValue":2},{"gcamCode":"c9.263","gcamValue":3},{"gcamCode":"c9.265","gcamValue":11},{"gcamCode":"c9.266","gcamValue":3},{"gcamCode":"c9.267","gcamValue":2},{"gcamCode":"c9.270","gcamValue":2},{"gcamCode":"c9.271","gcamValue":1},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":2},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":4},{"gcamCode":"c9.285","gcamValue":2},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":4},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.290","gcamValue":2},{"gcamCode":"c9.291","gcamValue":1},{"gcamCode":"c9.292","gcamValue":1},{"gcamCode":"c9.293","gcamValue":1},{"gcamCode":"c9.296","gcamValue":2},{"gcamCode":"c9.3","gcamValue":7},{"gcamCode":"c9.302","gcamValue":3},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.308","gcamValue":1},{"gcamCode":"c9.31","gcamValue":2},{"gcamCode":"c9.310","gcamValue":1},{"gcamCode":"c9.315","gcamValue":3},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.317","gcamValue":1},{"gcamCode":"c9.318","gcamValue":2},{"gcamCode":"c9.32","gcamValue":9},{"gcamCode":"c9.329","gcamValue":3},{"gcamCode":"c9.33","gcamValue":3},{"gcamCode":"c9.330","gcamValue":2},{"gcamCode":"c9.331","gcamValue":1},{"gcamCode":"c9.334","gcamValue":2},{"gcamCode":"c9.338","gcamValue":3},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":7},{"gcamCode":"c9.342","gcamValue":9},{"gcamCode":"c9.346","gcamValue":1},{"gcamCode":"c9.347","gcamValue":3},{"gcamCode":"c9.35","gcamValue":6},{"gcamCode":"c9.352","gcamValue":3},{"gcamCode":"c9.353","gcamValue":1},{"gcamCode":"c9.354","gcamValue":2},{"gcamCode":"c9.358","gcamValue":5},{"gcamCode":"c9.360","gcamValue":3},{"gcamCode":"c9.363","gcamValue":1},{"gcamCode":"c9.365","gcamValue":9},{"gcamCode":"c9.366","gcamValue":11},{"gcamCode":"c9.368","gcamValue":3},{"gcamCode":"c9.37","gcamValue":5},{"gcamCode":"c9.370","gcamValue":2},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.378","gcamValue":1},{"gcamCode":"c9.381","gcamValue":2},{"gcamCode":"c9.383","gcamValue":1},{"gcamCode":"c9.39","gcamValue":8},{"gcamCode":"c9.394","gcamValue":1},{"gcamCode":"c9.395","gcamValue":3},{"gcamCode":"c9.396","gcamValue":4},{"gcamCode":"c9.398","gcamValue":3},{"gcamCode":"c9.400","gcamValue":15},{"gcamCode":"c9.404","gcamValue":3},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.429","gcamValue":1},{"gcamCode":"c9.430","gcamValue":3},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.437","gcamValue":2},{"gcamCode":"c9.44","gcamValue":3},{"gcamCode":"c9.440","gcamValue":9},{"gcamCode":"c9.446","gcamValue":13},{"gcamCode":"c9.452","gcamValue":3},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":3},{"gcamCode":"c9.461","gcamValue":1},{"gcamCode":"c9.462","gcamValue":2},{"gcamCode":"c9.463","gcamValue":5},{"gcamCode":"c9.468","gcamValue":2},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.473","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.479","gcamValue":2},{"gcamCode":"c9.48","gcamValue":2},{"gcamCode":"c9.480","gcamValue":7},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.483","gcamValue":2},{"gcamCode":"c9.488","gcamValue":2},{"gcamCode":"c9.489","gcamValue":4},{"gcamCode":"c9.49","gcamValue":1},{"gcamCode":"c9.492","gcamValue":1},{"gcamCode":"c9.494","gcamValue":2},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":6},{"gcamCode":"c9.499","gcamValue":3},{"gcamCode":"c9.501","gcamValue":3},{"gcamCode":"c9.504","gcamValue":1},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.511","gcamValue":5},{"gcamCode":"c9.512","gcamValue":1},{"gcamCode":"c9.513","gcamValue":7},{"gcamCode":"c9.514","gcamValue":2},{"gcamCode":"c9.517","gcamValue":2},{"gcamCode":"c9.519","gcamValue":9},{"gcamCode":"c9.521","gcamValue":5},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.528","gcamValue":5},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.530","gcamValue":1},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.540","gcamValue":3},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":3},{"gcamCode":"c9.549","gcamValue":5},{"gcamCode":"c9.551","gcamValue":6},{"gcamCode":"c9.553","gcamValue":2},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":9},{"gcamCode":"c9.560","gcamValue":9},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.566","gcamValue":1},{"gcamCode":"c9.575","gcamValue":3},{"gcamCode":"c9.576","gcamValue":4},{"gcamCode":"c9.579","gcamValue":8},{"gcamCode":"c9.581","gcamValue":11},{"gcamCode":"c9.583","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.600","gcamValue":3},{"gcamCode":"c9.602","gcamValue":2},{"gcamCode":"c9.604","gcamValue":9},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.610","gcamValue":2},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.617","gcamValue":1},{"gcamCode":"c9.618","gcamValue":1},{"gcamCode":"c9.619","gcamValue":3},{"gcamCode":"c9.621","gcamValue":2},{"gcamCode":"c9.625","gcamValue":1},{"gcamCode":"c9.627","gcamValue":1},{"gcamCode":"c9.628","gcamValue":2},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.631","gcamValue":6},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":1},{"gcamCode":"c9.638","gcamValue":2},{"gcamCode":"c9.639","gcamValue":1},{"gcamCode":"c9.64","gcamValue":5},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":1},{"gcamCode":"c9.653","gcamValue":10},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":1},{"gcamCode":"c9.658","gcamValue":6},{"gcamCode":"c9.659","gcamValue":8},{"gcamCode":"c9.66","gcamValue":8},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.663","gcamValue":5},{"gcamCode":"c9.664","gcamValue":9},{"gcamCode":"c9.665","gcamValue":7},{"gcamCode":"c9.667","gcamValue":1},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":2},{"gcamCode":"c9.671","gcamValue":3},{"gcamCode":"c9.673","gcamValue":5},{"gcamCode":"c9.674","gcamValue":2},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":1},{"gcamCode":"c9.679","gcamValue":14},{"gcamCode":"c9.68","gcamValue":1},{"gcamCode":"c9.681","gcamValue":5},{"gcamCode":"c9.682","gcamValue":1},{"gcamCode":"c9.683","gcamValue":7},{"gcamCode":"c9.686","gcamValue":1},{"gcamCode":"c9.687","gcamValue":2},{"gcamCode":"c9.690","gcamValue":10},{"gcamCode":"c9.693","gcamValue":1},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.695","gcamValue":3},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.697","gcamValue":1},{"gcamCode":"c9.698","gcamValue":2},{"gcamCode":"c9.70","gcamValue":2},{"gcamCode":"c9.701","gcamValue":5},{"gcamCode":"c9.702","gcamValue":8},{"gcamCode":"c9.704","gcamValue":2},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":1},{"gcamCode":"c9.713","gcamValue":1},{"gcamCode":"c9.714","gcamValue":2},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.719","gcamValue":2},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":7},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":2},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.726","gcamValue":9},{"gcamCode":"c9.73","gcamValue":2},{"gcamCode":"c9.730","gcamValue":8},{"gcamCode":"c9.734","gcamValue":2},{"gcamCode":"c9.735","gcamValue":10},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.737","gcamValue":1},{"gcamCode":"c9.741","gcamValue":1},{"gcamCode":"c9.742","gcamValue":1},{"gcamCode":"c9.745","gcamValue":4},{"gcamCode":"c9.747","gcamValue":1},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.75","gcamValue":3},{"gcamCode":"c9.750","gcamValue":2},{"gcamCode":"c9.751","gcamValue":2},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":1},{"gcamCode":"c9.758","gcamValue":2},{"gcamCode":"c9.759","gcamValue":1},{"gcamCode":"c9.762","gcamValue":8},{"gcamCode":"c9.763","gcamValue":3},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.768","gcamValue":3},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":6},{"gcamCode":"c9.772","gcamValue":3},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.777","gcamValue":1},{"gcamCode":"c9.778","gcamValue":2},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":3},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":6},{"gcamCode":"c9.8","gcamValue":3},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":1},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":2},{"gcamCode":"c9.808","gcamValue":2},{"gcamCode":"c9.812","gcamValue":7},{"gcamCode":"c9.813","gcamValue":1},{"gcamCode":"c9.816","gcamValue":4},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.826","gcamValue":5},{"gcamCode":"c9.827","gcamValue":2},{"gcamCode":"c9.83","gcamValue":4},{"gcamCode":"c9.830","gcamValue":2},{"gcamCode":"c9.831","gcamValue":3},{"gcamCode":"c9.832","gcamValue":3},{"gcamCode":"c9.834","gcamValue":8},{"gcamCode":"c9.836","gcamValue":3},{"gcamCode":"c9.837","gcamValue":2},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":14},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.850","gcamValue":6},{"gcamCode":"c9.851","gcamValue":2},{"gcamCode":"c9.853","gcamValue":4},{"gcamCode":"c9.856","gcamValue":2},{"gcamCode":"c9.857","gcamValue":1},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.860","gcamValue":3},{"gcamCode":"c9.861","gcamValue":2},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":8},{"gcamCode":"c9.865","gcamValue":2},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":8},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.878","gcamValue":1},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.882","gcamValue":5},{"gcamCode":"c9.884","gcamValue":1},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.89","gcamValue":1},{"gcamCode":"c9.890","gcamValue":2},{"gcamCode":"c9.896","gcamValue":3},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":2},{"gcamCode":"c9.9","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":3},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":2},{"gcamCode":"c9.904","gcamValue":1},{"gcamCode":"c9.906","gcamValue":6},{"gcamCode":"c9.907","gcamValue":1},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.915","gcamValue":3},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.920","gcamValue":1},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":2},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.930","gcamValue":1},{"gcamCode":"c9.931","gcamValue":1},{"gcamCode":"c9.932","gcamValue":2},{"gcamCode":"c9.933","gcamValue":1},{"gcamCode":"c9.935","gcamValue":3},{"gcamCode":"c9.945","gcamValue":2},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.953","gcamValue":3},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.964","gcamValue":10},{"gcamCode":"c9.965","gcamValue":1},{"gcamCode":"c9.966","gcamValue":4},{"gcamCode":"c9.969","gcamValue":1},{"gcamCode":"c9.972","gcamValue":3},{"gcamCode":"c9.973","gcamValue":3},{"gcamCode":"c9.978","gcamValue":2},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.985","gcamValue":2},{"gcamCode":"c9.986","gcamValue":5},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.990","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.237174875484228},{"gcamCode":"v10.2","gcamValue":0.285395220371027},{"gcamCode":"v11.1","gcamValue":0.0488383774250441},{"gcamCode":"v19.1","gcamValue":4.61333333333333},{"gcamCode":"v19.2","gcamValue":4.90375},{"gcamCode":"v19.3","gcamValue":4.836875},{"gcamCode":"v19.4","gcamValue":4.78104166666667},{"gcamCode":"v19.5","gcamValue":5.22291666666667},{"gcamCode":"v19.6","gcamValue":5.10791666666667},{"gcamCode":"v19.7","gcamValue":4.49291666666667},{"gcamCode":"v19.8","gcamValue":4.536875},{"gcamCode":"v19.9","gcamValue":4.62833333333333},{"gcamCode":"v20.1","gcamValue":0.376},{"gcamCode":"v20.10","gcamValue":-0.292},{"gcamCode":"v20.11","gcamValue":0.5896},{"gcamCode":"v20.12","gcamValue":-0.361333333333333},{"gcamCode":"v20.13","gcamValue":0.3939375},{"gcamCode":"v20.14","gcamValue":-0.315111111111111},{"gcamCode":"v20.15","gcamValue":0.30825},{"gcamCode":"v20.16","gcamValue":-0.289066666666667},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.5365},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.649333333333333},{"gcamCode":"v20.6","gcamValue":-0.292},{"gcamCode":"v20.7","gcamValue":0.649333333333333},{"gcamCode":"v20.8","gcamValue":-0.292},{"gcamCode":"v20.9","gcamValue":0.649333333333333},{"gcamCode":"v21.1","gcamValue":5.20175757575758},{"gcamCode":"v26.1","gcamValue":-1.16875}]https://www.marketpulse.com/wp-content/uploads/2015/05/Oil_barrels.jpg[""][""][""][][{"name":"Texas Intermediate","charOffset":363},{"name":"Edward Moya","charOffset":675},{"name":"Energy Information Administration","charOffset":887},{"name":"Saxo Bank","charOffset":1540},{"name":"United States","charOffset":1817},{"name":"Petroleum Exporting Countries","charOffset":1923}][{"amount":37,"amountType":"cents","charOffset":214},{"amount":31,"amountType":"cents","charOffset":305},{"amount":7000000,"amountType":"barrels","charOffset":746},{"amount":8000000,"amountType":"barrels","charOffset":786},{"amount":3000000,"amountType":"bpd reached late last","charOffset":1118}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>Kenny Fisher</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523100200</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":40}2019-05-23T12:15:00.000+0000WEBwitn.comhttps://www.witn.com/content/news/Man-promised-to-turn-self-in-if-wanted-poster-got-15k-likes-on-Facebook-510316631.html[][]["SECURITY_SERVICES","TAX_FNCACT","TAX_FNCACT_POLICE","CRISISLEX_C07_SAFETY","TAX_FNCACT_MAN","MEDIA_SOCIAL","TRIAL","TAX_MILITARY_TITLE","TAX_MILITARY_TITLE_OFFICERS","TAX_FNCACT_OFFICERS","SOC_GENERALCRIME","CRISISLEX_CRISISLEXREC","WB_1428_INJURY","WB_1406_DISEASES","WB_621_HEALTH_NUTRITION_AND_POPULATION","WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","TAX_FNCACT_CHILD","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","WB_1014_CRIMINAL_JUSTICE","UNGP_FORESTS_RIVERS_OCEANS","EPU_CATS_REGULATION"][{"theme":"MEDIA_SOCIAL","charOffset":156},{"theme":"MEDIA_SOCIAL","charOffset":245},{"theme":"MEDIA_SOCIAL","charOffset":492},{"theme":"MEDIA_SOCIAL","charOffset":1051},{"theme":"TRIAL","charOffset":436},{"theme":"TAX_FNCACT_CHILD","charOffset":998},{"theme":"TAX_MILITARY_TITLE_OFFICERS","charOffset":612},{"theme":"TAX_FNCACT_OFFICERS","charOffset":612},{"theme":"EPU_CATS_REGULATION","charOffset":1221},{"theme":"SECURITY_SERVICES","charOffset":36},{"theme":"SECURITY_SERVICES","charOffset":184},{"theme":"SECURITY_SERVICES","charOffset":363},{"theme":"SECURITY_SERVICES","charOffset":455},{"theme":"SECURITY_SERVICES","charOffset":769},{"theme":"SECURITY_SERVICES","charOffset":1023},{"theme":"SECURITY_SERVICES","charOffset":1248},{"theme":"TAX_FNCACT_POLICE","charOffset":36},{"theme":"TAX_FNCACT_POLICE","charOffset":184},{"theme":"TAX_FNCACT_POLICE","charOffset":363},{"theme":"TAX_FNCACT_POLICE","charOffset":455},{"theme":"TAX_FNCACT_POLICE","charOffset":769},{"theme":"TAX_FNCACT_POLICE","charOffset":1023},{"theme":"TAX_FNCACT_POLICE","charOffset":1248},{"theme":"CRISISLEX_C07_SAFETY","charOffset":36},{"theme":"CRISISLEX_C07_SAFETY","charOffset":184},{"theme":"CRISISLEX_C07_SAFETY","charOffset":363},{"theme":"CRISISLEX_C07_SAFETY","charOffset":455},{"theme":"CRISISLEX_C07_SAFETY","charOffset":769},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1023},{"theme":"CRISISLEX_C07_SAFETY","charOffset":1248},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1134},{"theme":"WB_840_JUSTICE","charOffset":1134},{"theme":"WB_1014_CRIMINAL_JUSTICE","charOffset":1134},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":932},{"theme":"TAX_FNCACT_MAN","charOffset":75},{"theme":"SOC_GENERALCRIME","charOffset":882},{"theme":"WB_1428_INJURY","charOffset":987},{"theme":"WB_1406_DISEASES","charOffset":987},{"theme":"WB_621_HEALTH_NUTRITION_AND_POPULATION","charOffset":987},{"theme":"WB_1427_NON_COMMUNICABLE_DISEASE_AND_INJURY","charOffset":987},{"theme":"UNGP_FORESTS_RIVERS_OCEANS","charOffset":1171}][{"geoType":"USSTATE","geoName":"Connecticut, United States","countryCode":"US","adm1Code":"USCT","adm2Code":"","geoPoint":{"latitude":41.5834,"longitude":-72.7622},"featureId":"CT"}][{"location":{"geoType":"USSTATE","geoName":"Connecticut, United States","countryCode":"US","adm1Code":"USCT","adm2Code":"","geoPoint":{"latitude":41.5834,"longitude":-72.7622},"featureId":"CT"},"charOffset":51}]["jose simms"][{"person":"Jose Simms","charOffset":227},{"person":"Jose Simms","charOffset":385}]["facebook","torrington police","cnn"][{"organisation":"Facebook","charOffset":156},{"organisation":"Facebook","charOffset":245},{"organisation":"Facebook","charOffset":492},{"organisation":"Facebook","charOffset":1051},{"organisation":"Torrington Police","charOffset":184},{"organisation":"Torrington Police","charOffset":363},{"organisation":"Torrington Police","charOffset":455},{"organisation":"Torrington Police","charOffset":1248},{"organisation":"Cnn","charOffset":27},{"organisation":"Cnn","charOffset":372},{"organisation":"Cnn","charOffset":1256}]{"tone":-3.2558138,"positiveScore":2.7906976,"negativeScore":6.0465117,"polarity":8.83721,"activityReferenceDensity":25.11628,"selfGroupReferenceDensity":0,"wordCount":201}[][{"gcamCode":"wc","gcamValue":201},{"gcamCode":"c12.1","gcamValue":14},{"gcamCode":"c12.10","gcamValue":21},{"gcamCode":"c12.12","gcamValue":12},{"gcamCode":"c12.13","gcamValue":4},{"gcamCode":"c12.14","gcamValue":7},{"gcamCode":"c12.3","gcamValue":5},{"gcamCode":"c12.5","gcamValue":10},{"gcamCode":"c12.7","gcamValue":17},{"gcamCode":"c12.8","gcamValue":4},{"gcamCode":"c12.9","gcamValue":16},{"gcamCode":"c13.14","gcamValue":1},{"gcamCode":"c14.1","gcamValue":12},{"gcamCode":"c14.10","gcamValue":7},{"gcamCode":"c14.11","gcamValue":17},{"gcamCode":"c14.2","gcamValue":9},{"gcamCode":"c14.3","gcamValue":11},{"gcamCode":"c14.4","gcamValue":5},{"gcamCode":"c14.5","gcamValue":24},{"gcamCode":"c14.6","gcamValue":3},{"gcamCode":"c14.7","gcamValue":3},{"gcamCode":"c14.9","gcamValue":3},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.102","gcamValue":2},{"gcamCode":"c15.11","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.116","gcamValue":3},{"gcamCode":"c15.119","gcamValue":1},{"gcamCode":"c15.12","gcamValue":1},{"gcamCode":"c15.120","gcamValue":3},{"gcamCode":"c15.128","gcamValue":1},{"gcamCode":"c15.143","gcamValue":1},{"gcamCode":"c15.147","gcamValue":1},{"gcamCode":"c15.148","gcamValue":2},{"gcamCode":"c15.173","gcamValue":3},{"gcamCode":"c15.203","gcamValue":1},{"gcamCode":"c15.205","gcamValue":1},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.212","gcamValue":1},{"gcamCode":"c15.215","gcamValue":3},{"gcamCode":"c15.217","gcamValue":1},{"gcamCode":"c15.223","gcamValue":3},{"gcamCode":"c15.225","gcamValue":1},{"gcamCode":"c15.256","gcamValue":1},{"gcamCode":"c15.26","gcamValue":3},{"gcamCode":"c15.261","gcamValue":1},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.4","gcamValue":1},{"gcamCode":"c15.42","gcamValue":1},{"gcamCode":"c15.43","gcamValue":3},{"gcamCode":"c15.69","gcamValue":1},{"gcamCode":"c15.71","gcamValue":2},{"gcamCode":"c15.72","gcamValue":1},{"gcamCode":"c15.75","gcamValue":1},{"gcamCode":"c15.77","gcamValue":1},{"gcamCode":"c15.80","gcamValue":1},{"gcamCode":"c15.81","gcamValue":3},{"gcamCode":"c15.83","gcamValue":3},{"gcamCode":"c15.89","gcamValue":1},{"gcamCode":"c16.100","gcamValue":5},{"gcamCode":"c16.101","gcamValue":2},{"gcamCode":"c16.106","gcamValue":3},{"gcamCode":"c16.109","gcamValue":10},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":35},{"gcamCode":"c16.111","gcamValue":2},{"gcamCode":"c16.114","gcamValue":6},{"gcamCode":"c16.115","gcamValue":2},{"gcamCode":"c16.116","gcamValue":6},{"gcamCode":"c16.117","gcamValue":3},{"gcamCode":"c16.118","gcamValue":5},{"gcamCode":"c16.12","gcamValue":12},{"gcamCode":"c16.120","gcamValue":14},{"gcamCode":"c16.121","gcamValue":11},{"gcamCode":"c16.122","gcamValue":7},{"gcamCode":"c16.125","gcamValue":10},{"gcamCode":"c16.126","gcamValue":6},{"gcamCode":"c16.127","gcamValue":15},{"gcamCode":"c16.128","gcamValue":1},{"gcamCode":"c16.129","gcamValue":24},{"gcamCode":"c16.130","gcamValue":5},{"gcamCode":"c16.131","gcamValue":5},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":22},{"gcamCode":"c16.135","gcamValue":2},{"gcamCode":"c16.138","gcamValue":6},{"gcamCode":"c16.139","gcamValue":3},{"gcamCode":"c16.140","gcamValue":6},{"gcamCode":"c16.145","gcamValue":10},{"gcamCode":"c16.146","gcamValue":15},{"gcamCode":"c16.147","gcamValue":5},{"gcamCode":"c16.150","gcamValue":1},{"gcamCode":"c16.153","gcamValue":14},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":2},{"gcamCode":"c16.157","gcamValue":12},{"gcamCode":"c16.159","gcamValue":10},{"gcamCode":"c16.161","gcamValue":12},{"gcamCode":"c16.162","gcamValue":6},{"gcamCode":"c16.163","gcamValue":14},{"gcamCode":"c16.164","gcamValue":2},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.167","gcamValue":2},{"gcamCode":"c16.17","gcamValue":3},{"gcamCode":"c16.19","gcamValue":1},{"gcamCode":"c16.2","gcamValue":18},{"gcamCode":"c16.20","gcamValue":2},{"gcamCode":"c16.21","gcamValue":1},{"gcamCode":"c16.22","gcamValue":5},{"gcamCode":"c16.23","gcamValue":2},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":17},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":5},{"gcamCode":"c16.3","gcamValue":3},{"gcamCode":"c16.31","gcamValue":11},{"gcamCode":"c16.32","gcamValue":3},{"gcamCode":"c16.33","gcamValue":9},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":11},{"gcamCode":"c16.37","gcamValue":19},{"gcamCode":"c16.38","gcamValue":5},{"gcamCode":"c16.39","gcamValue":3},{"gcamCode":"c16.4","gcamValue":7},{"gcamCode":"c16.41","gcamValue":3},{"gcamCode":"c16.42","gcamValue":2},{"gcamCode":"c16.45","gcamValue":3},{"gcamCode":"c16.46","gcamValue":3},{"gcamCode":"c16.47","gcamValue":21},{"gcamCode":"c16.48","gcamValue":2},{"gcamCode":"c16.49","gcamValue":3},{"gcamCode":"c16.5","gcamValue":3},{"gcamCode":"c16.50","gcamValue":3},{"gcamCode":"c16.52","gcamValue":8},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":5},{"gcamCode":"c16.57","gcamValue":98},{"gcamCode":"c16.58","gcamValue":11},{"gcamCode":"c16.6","gcamValue":20},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.65","gcamValue":8},{"gcamCode":"c16.66","gcamValue":3},{"gcamCode":"c16.68","gcamValue":9},{"gcamCode":"c16.69","gcamValue":3},{"gcamCode":"c16.7","gcamValue":2},{"gcamCode":"c16.70","gcamValue":2},{"gcamCode":"c16.71","gcamValue":1},{"gcamCode":"c16.72","gcamValue":3},{"gcamCode":"c16.73","gcamValue":1},{"gcamCode":"c16.74","gcamValue":2},{"gcamCode":"c16.75","gcamValue":3},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.78","gcamValue":8},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":1},{"gcamCode":"c16.84","gcamValue":6},{"gcamCode":"c16.87","gcamValue":21},{"gcamCode":"c16.88","gcamValue":18},{"gcamCode":"c16.89","gcamValue":8},{"gcamCode":"c16.90","gcamValue":4},{"gcamCode":"c16.91","gcamValue":5},{"gcamCode":"c16.92","gcamValue":10},{"gcamCode":"c16.93","gcamValue":4},{"gcamCode":"c16.94","gcamValue":7},{"gcamCode":"c16.95","gcamValue":22},{"gcamCode":"c16.96","gcamValue":1},{"gcamCode":"c16.98","gcamValue":12},{"gcamCode":"c17.1","gcamValue":47},{"gcamCode":"c17.10","gcamValue":7},{"gcamCode":"c17.11","gcamValue":31},{"gcamCode":"c17.12","gcamValue":8},{"gcamCode":"c17.13","gcamValue":7},{"gcamCode":"c17.14","gcamValue":2},{"gcamCode":"c17.15","gcamValue":17},{"gcamCode":"c17.16","gcamValue":3},{"gcamCode":"c17.18","gcamValue":7},{"gcamCode":"c17.19","gcamValue":10},{"gcamCode":"c17.22","gcamValue":1},{"gcamCode":"c17.24","gcamValue":13},{"gcamCode":"c17.25","gcamValue":2},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":16},{"gcamCode":"c17.29","gcamValue":6},{"gcamCode":"c17.3","gcamValue":5},{"gcamCode":"c17.30","gcamValue":6},{"gcamCode":"c17.31","gcamValue":12},{"gcamCode":"c17.32","gcamValue":1},{"gcamCode":"c17.33","gcamValue":17},{"gcamCode":"c17.34","gcamValue":8},{"gcamCode":"c17.35","gcamValue":5},{"gcamCode":"c17.36","gcamValue":10},{"gcamCode":"c17.37","gcamValue":7},{"gcamCode":"c17.39","gcamValue":8},{"gcamCode":"c17.4","gcamValue":41},{"gcamCode":"c17.40","gcamValue":4},{"gcamCode":"c17.41","gcamValue":9},{"gcamCode":"c17.42","gcamValue":25},{"gcamCode":"c17.43","gcamValue":9},{"gcamCode":"c17.5","gcamValue":34},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":25},{"gcamCode":"c17.8","gcamValue":21},{"gcamCode":"c17.9","gcamValue":1},{"gcamCode":"c18.137","gcamValue":2},{"gcamCode":"c18.14","gcamValue":4},{"gcamCode":"c18.193","gcamValue":10},{"gcamCode":"c18.269","gcamValue":2},{"gcamCode":"c18.342","gcamValue":1},{"gcamCode":"c18.71","gcamValue":7},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c2.1","gcamValue":5},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":4},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.104","gcamValue":25},{"gcamCode":"c2.107","gcamValue":4},{"gcamCode":"c2.108","gcamValue":1},{"gcamCode":"c2.11","gcamValue":1},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":15},{"gcamCode":"c2.115","gcamValue":3},{"gcamCode":"c2.116","gcamValue":12},{"gcamCode":"c2.118","gcamValue":1},{"gcamCode":"c2.119","gcamValue":48},{"gcamCode":"c2.12","gcamValue":4},{"gcamCode":"c2.121","gcamValue":9},{"gcamCode":"c2.122","gcamValue":13},{"gcamCode":"c2.123","gcamValue":1},{"gcamCode":"c2.125","gcamValue":10},{"gcamCode":"c2.126","gcamValue":4},{"gcamCode":"c2.127","gcamValue":11},{"gcamCode":"c2.128","gcamValue":5},{"gcamCode":"c2.129","gcamValue":17},{"gcamCode":"c2.131","gcamValue":1},{"gcamCode":"c2.132","gcamValue":12},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":2},{"gcamCode":"c2.136","gcamValue":1},{"gcamCode":"c2.138","gcamValue":1},{"gcamCode":"c2.139","gcamValue":1},{"gcamCode":"c2.14","gcamValue":19},{"gcamCode":"c2.141","gcamValue":10},{"gcamCode":"c2.142","gcamValue":1},{"gcamCode":"c2.143","gcamValue":21},{"gcamCode":"c2.144","gcamValue":3},{"gcamCode":"c2.145","gcamValue":1},{"gcamCode":"c2.146","gcamValue":2},{"gcamCode":"c2.147","gcamValue":39},{"gcamCode":"c2.148","gcamValue":9},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":7},{"gcamCode":"c2.150","gcamValue":1},{"gcamCode":"c2.153","gcamValue":2},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":15},{"gcamCode":"c2.156","gcamValue":15},{"gcamCode":"c2.157","gcamValue":12},{"gcamCode":"c2.158","gcamValue":13},{"gcamCode":"c2.160","gcamValue":5},{"gcamCode":"c2.162","gcamValue":4},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.169","gcamValue":1},{"gcamCode":"c2.17","gcamValue":2},{"gcamCode":"c2.170","gcamValue":1},{"gcamCode":"c2.173","gcamValue":6},{"gcamCode":"c2.177","gcamValue":8},{"gcamCode":"c2.178","gcamValue":1},{"gcamCode":"c2.179","gcamValue":6},{"gcamCode":"c2.18","gcamValue":3},{"gcamCode":"c2.180","gcamValue":3},{"gcamCode":"c2.181","gcamValue":3},{"gcamCode":"c2.183","gcamValue":3},{"gcamCode":"c2.185","gcamValue":48},{"gcamCode":"c2.186","gcamValue":7},{"gcamCode":"c2.187","gcamValue":12},{"gcamCode":"c2.191","gcamValue":3},{"gcamCode":"c2.192","gcamValue":6},{"gcamCode":"c2.193","gcamValue":13},{"gcamCode":"c2.195","gcamValue":19},{"gcamCode":"c2.196","gcamValue":6},{"gcamCode":"c2.197","gcamValue":4},{"gcamCode":"c2.198","gcamValue":11},{"gcamCode":"c2.199","gcamValue":5},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.201","gcamValue":4},{"gcamCode":"c2.203","gcamValue":13},{"gcamCode":"c2.204","gcamValue":9},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.207","gcamValue":1},{"gcamCode":"c2.208","gcamValue":1},{"gcamCode":"c2.209","gcamValue":6},{"gcamCode":"c2.210","gcamValue":27},{"gcamCode":"c2.211","gcamValue":3},{"gcamCode":"c2.213","gcamValue":8},{"gcamCode":"c2.214","gcamValue":8},{"gcamCode":"c2.217","gcamValue":1},{"gcamCode":"c2.218","gcamValue":1},{"gcamCode":"c2.219","gcamValue":1},{"gcamCode":"c2.220","gcamValue":3},{"gcamCode":"c2.221","gcamValue":1},{"gcamCode":"c2.223","gcamValue":1},{"gcamCode":"c2.225","gcamValue":8},{"gcamCode":"c2.226","gcamValue":4},{"gcamCode":"c2.227","gcamValue":2},{"gcamCode":"c2.23","gcamValue":11},{"gcamCode":"c2.25","gcamValue":9},{"gcamCode":"c2.26","gcamValue":7},{"gcamCode":"c2.27","gcamValue":7},{"gcamCode":"c2.28","gcamValue":1},{"gcamCode":"c2.30","gcamValue":11},{"gcamCode":"c2.31","gcamValue":5},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.34","gcamValue":13},{"gcamCode":"c2.35","gcamValue":3},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":3},{"gcamCode":"c2.39","gcamValue":17},{"gcamCode":"c2.4","gcamValue":1},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.44","gcamValue":3},{"gcamCode":"c2.45","gcamValue":5},{"gcamCode":"c2.46","gcamValue":18},{"gcamCode":"c2.47","gcamValue":1},{"gcamCode":"c2.48","gcamValue":3},{"gcamCode":"c2.5","gcamValue":1},{"gcamCode":"c2.50","gcamValue":4},{"gcamCode":"c2.52","gcamValue":12},{"gcamCode":"c2.54","gcamValue":12},{"gcamCode":"c2.55","gcamValue":3},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":4},{"gcamCode":"c2.58","gcamValue":3},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.62","gcamValue":3},{"gcamCode":"c2.64","gcamValue":6},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.73","gcamValue":4},{"gcamCode":"c2.75","gcamValue":34},{"gcamCode":"c2.76","gcamValue":108},{"gcamCode":"c2.77","gcamValue":18},{"gcamCode":"c2.78","gcamValue":22},{"gcamCode":"c2.79","gcamValue":7},{"gcamCode":"c2.80","gcamValue":29},{"gcamCode":"c2.81","gcamValue":6},{"gcamCode":"c2.82","gcamValue":3},{"gcamCode":"c2.84","gcamValue":2},{"gcamCode":"c2.86","gcamValue":2},{"gcamCode":"c2.88","gcamValue":6},{"gcamCode":"c2.89","gcamValue":9},{"gcamCode":"c2.90","gcamValue":2},{"gcamCode":"c2.93","gcamValue":5},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":26},{"gcamCode":"c2.97","gcamValue":11},{"gcamCode":"c2.98","gcamValue":15},{"gcamCode":"c2.99","gcamValue":8},{"gcamCode":"c25.1","gcamValue":2},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.7","gcamValue":1},{"gcamCode":"c3.1","gcamValue":15},{"gcamCode":"c3.2","gcamValue":18},{"gcamCode":"c35.1","gcamValue":3},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.12","gcamValue":4},{"gcamCode":"c35.13","gcamValue":1},{"gcamCode":"c35.15","gcamValue":5},{"gcamCode":"c35.2","gcamValue":3},{"gcamCode":"c35.20","gcamValue":10},{"gcamCode":"c35.29","gcamValue":1},{"gcamCode":"c35.31","gcamValue":15},{"gcamCode":"c35.32","gcamValue":6},{"gcamCode":"c35.33","gcamValue":11},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":3},{"gcamCode":"c39.12","gcamValue":1},{"gcamCode":"c39.13","gcamValue":1},{"gcamCode":"c39.2","gcamValue":1},{"gcamCode":"c39.21","gcamValue":1},{"gcamCode":"c39.22","gcamValue":1},{"gcamCode":"c39.25","gcamValue":1},{"gcamCode":"c39.3","gcamValue":6},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.37","gcamValue":9},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":6},{"gcamCode":"c39.41","gcamValue":1},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c4.13","gcamValue":10},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.18","gcamValue":1},{"gcamCode":"c4.2","gcamValue":1},{"gcamCode":"c4.23","gcamValue":3},{"gcamCode":"c41.1","gcamValue":7},{"gcamCode":"c5.10","gcamValue":15},{"gcamCode":"c5.11","gcamValue":1},{"gcamCode":"c5.12","gcamValue":28},{"gcamCode":"c5.15","gcamValue":2},{"gcamCode":"c5.17","gcamValue":2},{"gcamCode":"c5.19","gcamValue":4},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":3},{"gcamCode":"c5.23","gcamValue":2},{"gcamCode":"c5.24","gcamValue":3},{"gcamCode":"c5.25","gcamValue":2},{"gcamCode":"c5.26","gcamValue":6},{"gcamCode":"c5.27","gcamValue":7},{"gcamCode":"c5.28","gcamValue":2},{"gcamCode":"c5.30","gcamValue":20},{"gcamCode":"c5.31","gcamValue":4},{"gcamCode":"c5.32","gcamValue":1},{"gcamCode":"c5.33","gcamValue":1},{"gcamCode":"c5.34","gcamValue":7},{"gcamCode":"c5.35","gcamValue":12},{"gcamCode":"c5.36","gcamValue":16},{"gcamCode":"c5.37","gcamValue":2},{"gcamCode":"c5.40","gcamValue":23},{"gcamCode":"c5.43","gcamValue":6},{"gcamCode":"c5.44","gcamValue":1},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":37},{"gcamCode":"c5.47","gcamValue":5},{"gcamCode":"c5.48","gcamValue":1},{"gcamCode":"c5.49","gcamValue":24},{"gcamCode":"c5.50","gcamValue":33},{"gcamCode":"c5.51","gcamValue":13},{"gcamCode":"c5.52","gcamValue":36},{"gcamCode":"c5.53","gcamValue":10},{"gcamCode":"c5.54","gcamValue":3},{"gcamCode":"c5.55","gcamValue":4},{"gcamCode":"c5.56","gcamValue":7},{"gcamCode":"c5.6","gcamValue":3},{"gcamCode":"c5.60","gcamValue":11},{"gcamCode":"c5.61","gcamValue":14},{"gcamCode":"c5.62","gcamValue":85},{"gcamCode":"c5.7","gcamValue":5},{"gcamCode":"c5.8","gcamValue":14},{"gcamCode":"c5.9","gcamValue":7},{"gcamCode":"c6.1","gcamValue":4},{"gcamCode":"c6.3","gcamValue":2},{"gcamCode":"c6.4","gcamValue":8},{"gcamCode":"c6.5","gcamValue":1},{"gcamCode":"c6.6","gcamValue":3},{"gcamCode":"c7.1","gcamValue":15},{"gcamCode":"c7.2","gcamValue":15},{"gcamCode":"c8.1","gcamValue":3},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.2","gcamValue":2},{"gcamCode":"c8.23","gcamValue":4},{"gcamCode":"c8.27","gcamValue":1},{"gcamCode":"c8.28","gcamValue":2},{"gcamCode":"c8.36","gcamValue":1},{"gcamCode":"c8.37","gcamValue":3},{"gcamCode":"c8.38","gcamValue":4},{"gcamCode":"c8.39","gcamValue":1},{"gcamCode":"c8.4","gcamValue":3},{"gcamCode":"c8.40","gcamValue":1},{"gcamCode":"c8.41","gcamValue":8},{"gcamCode":"c8.42","gcamValue":12},{"gcamCode":"c8.43","gcamValue":8},{"gcamCode":"c8.7","gcamValue":1},{"gcamCode":"c9.1","gcamValue":5},{"gcamCode":"c9.10","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":7},{"gcamCode":"c9.1008","gcamValue":2},{"gcamCode":"c9.1009","gcamValue":2},{"gcamCode":"c9.1014","gcamValue":3},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1034","gcamValue":1},{"gcamCode":"c9.1036","gcamValue":1},{"gcamCode":"c9.107","gcamValue":1},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":1},{"gcamCode":"c9.122","gcamValue":6},{"gcamCode":"c9.123","gcamValue":1},{"gcamCode":"c9.128","gcamValue":11},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.131","gcamValue":1},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":2},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.141","gcamValue":3},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.147","gcamValue":3},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.155","gcamValue":1},{"gcamCode":"c9.158","gcamValue":2},{"gcamCode":"c9.16","gcamValue":2},{"gcamCode":"c9.162","gcamValue":3},{"gcamCode":"c9.165","gcamValue":2},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.168","gcamValue":1},{"gcamCode":"c9.169","gcamValue":1},{"gcamCode":"c9.174","gcamValue":1},{"gcamCode":"c9.175","gcamValue":1},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":1},{"gcamCode":"c9.18","gcamValue":4},{"gcamCode":"c9.181","gcamValue":1},{"gcamCode":"c9.182","gcamValue":2},{"gcamCode":"c9.184","gcamValue":8},{"gcamCode":"c9.188","gcamValue":2},{"gcamCode":"c9.190","gcamValue":2},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":3},{"gcamCode":"c9.196","gcamValue":2},{"gcamCode":"c9.198","gcamValue":2},{"gcamCode":"c9.2","gcamValue":1},{"gcamCode":"c9.200","gcamValue":3},{"gcamCode":"c9.202","gcamValue":2},{"gcamCode":"c9.207","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":3},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":1},{"gcamCode":"c9.235","gcamValue":5},{"gcamCode":"c9.238","gcamValue":1},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.25","gcamValue":2},{"gcamCode":"c9.250","gcamValue":3},{"gcamCode":"c9.255","gcamValue":3},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.264","gcamValue":3},{"gcamCode":"c9.265","gcamValue":1},{"gcamCode":"c9.266","gcamValue":1},{"gcamCode":"c9.275","gcamValue":1},{"gcamCode":"c9.276","gcamValue":4},{"gcamCode":"c9.279","gcamValue":1},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.282","gcamValue":4},{"gcamCode":"c9.284","gcamValue":3},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":3},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.3","gcamValue":3},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.321","gcamValue":4},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.33","gcamValue":4},{"gcamCode":"c9.330","gcamValue":1},{"gcamCode":"c9.334","gcamValue":1},{"gcamCode":"c9.34","gcamValue":4},{"gcamCode":"c9.35","gcamValue":3},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.36","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.383","gcamValue":2},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.39","gcamValue":2},{"gcamCode":"c9.393","gcamValue":1},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":2},{"gcamCode":"c9.415","gcamValue":1},{"gcamCode":"c9.419","gcamValue":1},{"gcamCode":"c9.42","gcamValue":1},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.44","gcamValue":2},{"gcamCode":"c9.464","gcamValue":1},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.47","gcamValue":1},{"gcamCode":"c9.478","gcamValue":1},{"gcamCode":"c9.479","gcamValue":3},{"gcamCode":"c9.48","gcamValue":4},{"gcamCode":"c9.480","gcamValue":2},{"gcamCode":"c9.483","gcamValue":1},{"gcamCode":"c9.489","gcamValue":2},{"gcamCode":"c9.491","gcamValue":1},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.496","gcamValue":1},{"gcamCode":"c9.498","gcamValue":4},{"gcamCode":"c9.501","gcamValue":2},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.509","gcamValue":1},{"gcamCode":"c9.511","gcamValue":3},{"gcamCode":"c9.513","gcamValue":2},{"gcamCode":"c9.517","gcamValue":1},{"gcamCode":"c9.518","gcamValue":1},{"gcamCode":"c9.519","gcamValue":5},{"gcamCode":"c9.520","gcamValue":1},{"gcamCode":"c9.521","gcamValue":1},{"gcamCode":"c9.522","gcamValue":5},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.53","gcamValue":1},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.551","gcamValue":1},{"gcamCode":"c9.553","gcamValue":1},{"gcamCode":"c9.554","gcamValue":2},{"gcamCode":"c9.556","gcamValue":4},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":3},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":6},{"gcamCode":"c9.561","gcamValue":1},{"gcamCode":"c9.566","gcamValue":3},{"gcamCode":"c9.568","gcamValue":1},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":6},{"gcamCode":"c9.587","gcamValue":1},{"gcamCode":"c9.591","gcamValue":1},{"gcamCode":"c9.594","gcamValue":1},{"gcamCode":"c9.600","gcamValue":1},{"gcamCode":"c9.606","gcamValue":1},{"gcamCode":"c9.607","gcamValue":2},{"gcamCode":"c9.61","gcamValue":4},{"gcamCode":"c9.610","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.617","gcamValue":3},{"gcamCode":"c9.618","gcamValue":2},{"gcamCode":"c9.62","gcamValue":2},{"gcamCode":"c9.622","gcamValue":1},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.629","gcamValue":1},{"gcamCode":"c9.64","gcamValue":1},{"gcamCode":"c9.640","gcamValue":1},{"gcamCode":"c9.642","gcamValue":5},{"gcamCode":"c9.646","gcamValue":1},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":3},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.653","gcamValue":6},{"gcamCode":"c9.654","gcamValue":1},{"gcamCode":"c9.655","gcamValue":2},{"gcamCode":"c9.658","gcamValue":4},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":4},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.665","gcamValue":1},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.668","gcamValue":2},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.67","gcamValue":1},{"gcamCode":"c9.670","gcamValue":3},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":2},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":1},{"gcamCode":"c9.675","gcamValue":1},{"gcamCode":"c9.676","gcamValue":3},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.681","gcamValue":1},{"gcamCode":"c9.683","gcamValue":4},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.687","gcamValue":3},{"gcamCode":"c9.690","gcamValue":1},{"gcamCode":"c9.692","gcamValue":2},{"gcamCode":"c9.693","gcamValue":3},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.7","gcamValue":3},{"gcamCode":"c9.70","gcamValue":4},{"gcamCode":"c9.701","gcamValue":6},{"gcamCode":"c9.704","gcamValue":3},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.707","gcamValue":1},{"gcamCode":"c9.71","gcamValue":2},{"gcamCode":"c9.710","gcamValue":1},{"gcamCode":"c9.711","gcamValue":3},{"gcamCode":"c9.714","gcamValue":1},{"gcamCode":"c9.718","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.721","gcamValue":1},{"gcamCode":"c9.724","gcamValue":2},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":3},{"gcamCode":"c9.732","gcamValue":3},{"gcamCode":"c9.735","gcamValue":1},{"gcamCode":"c9.736","gcamValue":1},{"gcamCode":"c9.739","gcamValue":1},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":3},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.748","gcamValue":4},{"gcamCode":"c9.749","gcamValue":1},{"gcamCode":"c9.751","gcamValue":1},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.755","gcamValue":1},{"gcamCode":"c9.760","gcamValue":1},{"gcamCode":"c9.762","gcamValue":3},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":3},{"gcamCode":"c9.767","gcamValue":12},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.772","gcamValue":1},{"gcamCode":"c9.776","gcamValue":7},{"gcamCode":"c9.79","gcamValue":1},{"gcamCode":"c9.792","gcamValue":2},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.795","gcamValue":4},{"gcamCode":"c9.798","gcamValue":1},{"gcamCode":"c9.8","gcamValue":2},{"gcamCode":"c9.800","gcamValue":2},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.804","gcamValue":1},{"gcamCode":"c9.807","gcamValue":1},{"gcamCode":"c9.808","gcamValue":3},{"gcamCode":"c9.812","gcamValue":2},{"gcamCode":"c9.816","gcamValue":2},{"gcamCode":"c9.82","gcamValue":1},{"gcamCode":"c9.83","gcamValue":4},{"gcamCode":"c9.834","gcamValue":1},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.845","gcamValue":3},{"gcamCode":"c9.848","gcamValue":1},{"gcamCode":"c9.853","gcamValue":1},{"gcamCode":"c9.857","gcamValue":3},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":2},{"gcamCode":"c9.864","gcamValue":3},{"gcamCode":"c9.865","gcamValue":1},{"gcamCode":"c9.868","gcamValue":3},{"gcamCode":"c9.87","gcamValue":3},{"gcamCode":"c9.873","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":1},{"gcamCode":"c9.879","gcamValue":1},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.886","gcamValue":1},{"gcamCode":"c9.89","gcamValue":4},{"gcamCode":"c9.890","gcamValue":3},{"gcamCode":"c9.896","gcamValue":1},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":5},{"gcamCode":"c9.905","gcamValue":3},{"gcamCode":"c9.908","gcamValue":1},{"gcamCode":"c9.911","gcamValue":1},{"gcamCode":"c9.912","gcamValue":4},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.919","gcamValue":1},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.924","gcamValue":1},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.935","gcamValue":7},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.949","gcamValue":1},{"gcamCode":"c9.955","gcamValue":1},{"gcamCode":"c9.96","gcamValue":1},{"gcamCode":"c9.962","gcamValue":1},{"gcamCode":"c9.964","gcamValue":1},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.967","gcamValue":1},{"gcamCode":"c9.971","gcamValue":1},{"gcamCode":"c9.974","gcamValue":2},{"gcamCode":"c9.976","gcamValue":1},{"gcamCode":"c9.977","gcamValue":1},{"gcamCode":"c9.978","gcamValue":3},{"gcamCode":"c9.979","gcamValue":1},{"gcamCode":"c9.980","gcamValue":1},{"gcamCode":"c9.981","gcamValue":1},{"gcamCode":"c9.988","gcamValue":1},{"gcamCode":"c9.99","gcamValue":1},{"gcamCode":"c9.997","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.267579094292804},{"gcamCode":"v10.2","gcamValue":0.299839743589744},{"gcamCode":"v11.1","gcamValue":0.00987397590361446},{"gcamCode":"v19.1","gcamValue":4.98894736842105},{"gcamCode":"v19.2","gcamValue":5.53157894736842},{"gcamCode":"v19.3","gcamValue":4.24157894736842},{"gcamCode":"v19.4","gcamValue":5.17736842105263},{"gcamCode":"v19.5","gcamValue":5.38789473684211},{"gcamCode":"v19.6","gcamValue":4.50421052631579},{"gcamCode":"v19.7","gcamValue":4.78368421052632},{"gcamCode":"v19.8","gcamValue":5.68473684210526},{"gcamCode":"v19.9","gcamValue":4.00263157894737},{"gcamCode":"v20.10","gcamValue":-0.639},{"gcamCode":"v20.11","gcamValue":0.612},{"gcamCode":"v20.12","gcamValue":-0.5417},{"gcamCode":"v20.13","gcamValue":0.425714285714286},{"gcamCode":"v20.14","gcamValue":-0.495538461538462},{"gcamCode":"v20.15","gcamValue":0.347291666666667},{"gcamCode":"v20.16","gcamValue":-0.478},{"gcamCode":"v20.2","gcamValue":-0.292},{"gcamCode":"v20.3","gcamValue":0.875},{"gcamCode":"v20.4","gcamValue":-0.292},{"gcamCode":"v20.5","gcamValue":0.875},{"gcamCode":"v20.6","gcamValue":-0.722333333333333},{"gcamCode":"v20.7","gcamValue":0.875},{"gcamCode":"v20.8","gcamValue":-0.639},{"gcamCode":"v20.9","gcamValue":0.724},{"gcamCode":"v21.1","gcamValue":5.28797619047619},{"gcamCode":"v26.1","gcamValue":0.455555555555556}]https://media.graytvinc.com/images/wanted+man+-+Facebook+post.JPG[""][""][""][][{"name":"Jose Simms","charOffset":226},{"name":"Torrington Police","charOffset":1306}][{"amount":7,"amountType":"failures","charOffset":341}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>WITN</PAGE_AUTHORS>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":45}2019-05-23T12:15:00.000+0000WEBahwatukee.comhttp://www.ahwatukee.com/community_focus/article_479c3746-7cd2-11e9-9030-93ee868a9f1d.html[][]["EDUCATION","TAX_FNCACT","TAX_FNCACT_STUDENTS","TAX_FNCACT_HERO"][{"theme":"TAX_FNCACT_HERO","charOffset":555},{"theme":"TAX_FNCACT_STUDENTS","charOffset":222},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1163},{"theme":"TAX_FNCACT_STUDENTS","charOffset":1541},{"theme":"EDUCATION","charOffset":12},{"theme":"EDUCATION","charOffset":29}][{"geoType":"COUNTRY","geoName":"United States","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"}][{"location":{"geoType":"COUNTRY","geoName":"American","countryCode":"US","adm1Code":"US","adm2Code":"","geoPoint":{"latitude":39.828175,"longitude":-98.5795},"featureId":"US"},"charOffset":550}]["apurva chitneni","suneha sunil","farah hoque","david wu","nihira kulkarni","deepta akella","pranav madhusudhana","trisha kashyap","varsha sridhar","sahana mukund","vishruta belavadi","julia starr","kaan kumanlioglu","nisha kulkarni","gowri parupudi","aanya chitral","jessie zhang","abirami selvaraj","john allison","ramya akelia","arjun phadnis","albert chu","neel kulkarni","esther wu","shrish gopikrishnan","claire coe","aaliya kalra"][{"person":"Apurva Chitneni","charOffset":848},{"person":"Suneha Sunil","charOffset":1268},{"person":"Farah Hoque","charOffset":830},{"person":"David Wu","charOffset":804},{"person":"Nihira Kulkarni","charOffset":1112},{"person":"Deepta Akella","charOffset":2058},{"person":"Pranav Madhusudhana","charOffset":1818},{"person":"Trisha Kashyap","charOffset":1024},{"person":"Varsha Sridhar","charOffset":2396},{"person":"Sahana Mukund","charOffset":414},{"person":"Sahana Mukund","charOffset":1253},{"person":"Vishruta Belavadi","charOffset":2110},{"person":"Julia Starr","charOffset":534},{"person":"Julia Starr","charOffset":2014},{"person":"Kaan Kumanlioglu","charOffset":1645},{"person":"Nisha Kulkarni","charOffset":2257},{"person":"Gowri Parupudi","charOffset":2359},{"person":"Aanya Chitral","charOffset":894},{"person":"Jessie Zhang","charOffset":1430},{"person":"Abirami Selvaraj","charOffset":1871},{"person":"John Allison","charOffset":1572},{"person":"Ramya Akelia","charOffset":1625},{"person":"Arjun Phadnis","charOffset":1610},{"person":"Albert Chu","charOffset":1443},{"person":"Neel Kulkarni","charOffset":2160},{"person":"Esther Wu","charOffset":1341},{"person":"Shrish Gopikrishnan","charOffset":1594},{"person":"Claire Coe","charOffset":463},{"person":"Claire Coe","charOffset":707},{"person":"Aaliya Kalra","charOffset":354},{"person":"Aaliya Kalra","charOffset":932}][""][]{"tone":3.488372,"positiveScore":3.7209303,"negativeScore":0.23255815,"polarity":3.9534883,"activityReferenceDensity":23.255814,"selfGroupReferenceDensity":0.23255815,"wordCount":401}[][{"gcamCode":"wc","gcamValue":401},{"gcamCode":"c1.1","gcamValue":1},{"gcamCode":"c12.1","gcamValue":32},{"gcamCode":"c12.10","gcamValue":33},{"gcamCode":"c12.12","gcamValue":9},{"gcamCode":"c12.13","gcamValue":8},{"gcamCode":"c12.14","gcamValue":21},{"gcamCode":"c12.3","gcamValue":11},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":22},{"gcamCode":"c12.7","gcamValue":17},{"gcamCode":"c12.8","gcamValue":10},{"gcamCode":"c12.9","gcamValue":38},{"gcamCode":"c13.1","gcamValue":1},{"gcamCode":"c13.10","gcamValue":1},{"gcamCode":"c13.7","gcamValue":1},{"gcamCode":"c14.1","gcamValue":37},{"gcamCode":"c14.10","gcamValue":19},{"gcamCode":"c14.11","gcamValue":42},{"gcamCode":"c14.2","gcamValue":29},{"gcamCode":"c14.3","gcamValue":28},{"gcamCode":"c14.4","gcamValue":20},{"gcamCode":"c14.5","gcamValue":62},{"gcamCode":"c14.6","gcamValue":1},{"gcamCode":"c14.7","gcamValue":12},{"gcamCode":"c14.9","gcamValue":9},{"gcamCode":"c15.102","gcamValue":3},{"gcamCode":"c15.105","gcamValue":4},{"gcamCode":"c15.110","gcamValue":3},{"gcamCode":"c15.116","gcamValue":3},{"gcamCode":"c15.12","gcamValue":2},{"gcamCode":"c15.120","gcamValue":5},{"gcamCode":"c15.129","gcamValue":2},{"gcamCode":"c15.137","gcamValue":1},{"gcamCode":"c15.141","gcamValue":2},{"gcamCode":"c15.143","gcamValue":3},{"gcamCode":"c15.147","gcamValue":4},{"gcamCode":"c15.148","gcamValue":3},{"gcamCode":"c15.155","gcamValue":1},{"gcamCode":"c15.170","gcamValue":1},{"gcamCode":"c15.173","gcamValue":5},{"gcamCode":"c15.18","gcamValue":3},{"gcamCode":"c15.181","gcamValue":2},{"gcamCode":"c15.182","gcamValue":2},{"gcamCode":"c15.185","gcamValue":1},{"gcamCode":"c15.196","gcamValue":1},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.207","gcamValue":1},{"gcamCode":"c15.212","gcamValue":4},{"gcamCode":"c15.215","gcamValue":3},{"gcamCode":"c15.217","gcamValue":2},{"gcamCode":"c15.219","gcamValue":2},{"gcamCode":"c15.246","gcamValue":2},{"gcamCode":"c15.247","gcamValue":2},{"gcamCode":"c15.251","gcamValue":5},{"gcamCode":"c15.252","gcamValue":3},{"gcamCode":"c15.255","gcamValue":1},{"gcamCode":"c15.26","gcamValue":3},{"gcamCode":"c15.267","gcamValue":2},{"gcamCode":"c15.28","gcamValue":2},{"gcamCode":"c15.3","gcamValue":3},{"gcamCode":"c15.35","gcamValue":2},{"gcamCode":"c15.36","gcamValue":3},{"gcamCode":"c15.39","gcamValue":2},{"gcamCode":"c15.4","gcamValue":2},{"gcamCode":"c15.43","gcamValue":4},{"gcamCode":"c15.50","gcamValue":2},{"gcamCode":"c15.62","gcamValue":1},{"gcamCode":"c15.65","gcamValue":2},{"gcamCode":"c15.71","gcamValue":3},{"gcamCode":"c15.83","gcamValue":3},{"gcamCode":"c15.85","gcamValue":1},{"gcamCode":"c15.97","gcamValue":1},{"gcamCode":"c15.99","gcamValue":1},{"gcamCode":"c16.1","gcamValue":2},{"gcamCode":"c16.100","gcamValue":9},{"gcamCode":"c16.101","gcamValue":5},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.104","gcamValue":2},{"gcamCode":"c16.105","gcamValue":2},{"gcamCode":"c16.106","gcamValue":18},{"gcamCode":"c16.107","gcamValue":2},{"gcamCode":"c16.109","gcamValue":38},{"gcamCode":"c16.11","gcamValue":2},{"gcamCode":"c16.110","gcamValue":72},{"gcamCode":"c16.111","gcamValue":5},{"gcamCode":"c16.112","gcamValue":1},{"gcamCode":"c16.113","gcamValue":7},{"gcamCode":"c16.114","gcamValue":36},{"gcamCode":"c16.115","gcamValue":1},{"gcamCode":"c16.116","gcamValue":15},{"gcamCode":"c16.117","gcamValue":19},{"gcamCode":"c16.118","gcamValue":34},{"gcamCode":"c16.12","gcamValue":47},{"gcamCode":"c16.120","gcamValue":15},{"gcamCode":"c16.121","gcamValue":27},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.123","gcamValue":2},{"gcamCode":"c16.124","gcamValue":7},{"gcamCode":"c16.125","gcamValue":42},{"gcamCode":"c16.126","gcamValue":27},{"gcamCode":"c16.127","gcamValue":42},{"gcamCode":"c16.128","gcamValue":11},{"gcamCode":"c16.129","gcamValue":40},{"gcamCode":"c16.13","gcamValue":2},{"gcamCode":"c16.130","gcamValue":9},{"gcamCode":"c16.131","gcamValue":20},{"gcamCode":"c16.132","gcamValue":1},{"gcamCode":"c16.133","gcamValue":2},{"gcamCode":"c16.134","gcamValue":53},{"gcamCode":"c16.136","gcamValue":1},{"gcamCode":"c16.138","gcamValue":29},{"gcamCode":"c16.139","gcamValue":18},{"gcamCode":"c16.14","gcamValue":1},{"gcamCode":"c16.140","gcamValue":14},{"gcamCode":"c16.141","gcamValue":5},{"gcamCode":"c16.144","gcamValue":1},{"gcamCode":"c16.145","gcamValue":33},{"gcamCode":"c16.146","gcamValue":27},{"gcamCode":"c16.149","gcamValue":2},{"gcamCode":"c16.152","gcamValue":1},{"gcamCode":"c16.153","gcamValue":20},{"gcamCode":"c16.155","gcamValue":2},{"gcamCode":"c16.157","gcamValue":13},{"gcamCode":"c16.158","gcamValue":3},{"gcamCode":"c16.159","gcamValue":34},{"gcamCode":"c16.16","gcamValue":8},{"gcamCode":"c16.161","gcamValue":35},{"gcamCode":"c16.162","gcamValue":20},{"gcamCode":"c16.163","gcamValue":27},{"gcamCode":"c16.164","gcamValue":14},{"gcamCode":"c16.165","gcamValue":1},{"gcamCode":"c16.168","gcamValue":1},{"gcamCode":"c16.17","gcamValue":2},{"gcamCode":"c16.18","gcamValue":2},{"gcamCode":"c16.19","gcamValue":13},{"gcamCode":"c16.2","gcamValue":18},{"gcamCode":"c16.21","gcamValue":3},{"gcamCode":"c16.22","gcamValue":6},{"gcamCode":"c16.24","gcamValue":4},{"gcamCode":"c16.26","gcamValue":58},{"gcamCode":"c16.27","gcamValue":5},{"gcamCode":"c16.29","gcamValue":1},{"gcamCode":"c16.3","gcamValue":13},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":34},{"gcamCode":"c16.32","gcamValue":5},{"gcamCode":"c16.33","gcamValue":50},{"gcamCode":"c16.34","gcamValue":2},{"gcamCode":"c16.35","gcamValue":25},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":44},{"gcamCode":"c16.38","gcamValue":9},{"gcamCode":"c16.4","gcamValue":39},{"gcamCode":"c16.41","gcamValue":24},{"gcamCode":"c16.42","gcamValue":2},{"gcamCode":"c16.43","gcamValue":1},{"gcamCode":"c16.45","gcamValue":19},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":57},{"gcamCode":"c16.48","gcamValue":1},{"gcamCode":"c16.49","gcamValue":2},{"gcamCode":"c16.5","gcamValue":7},{"gcamCode":"c16.50","gcamValue":2},{"gcamCode":"c16.51","gcamValue":3},{"gcamCode":"c16.52","gcamValue":17},{"gcamCode":"c16.53","gcamValue":2},{"gcamCode":"c16.54","gcamValue":1},{"gcamCode":"c16.55","gcamValue":3},{"gcamCode":"c16.56","gcamValue":10},{"gcamCode":"c16.57","gcamValue":203},{"gcamCode":"c16.58","gcamValue":36},{"gcamCode":"c16.6","gcamValue":44},{"gcamCode":"c16.60","gcamValue":7},{"gcamCode":"c16.61","gcamValue":1},{"gcamCode":"c16.62","gcamValue":17},{"gcamCode":"c16.63","gcamValue":14},{"gcamCode":"c16.64","gcamValue":4},{"gcamCode":"c16.65","gcamValue":3},{"gcamCode":"c16.66","gcamValue":11},{"gcamCode":"c16.68","gcamValue":28},{"gcamCode":"c16.69","gcamValue":17},{"gcamCode":"c16.7","gcamValue":7},{"gcamCode":"c16.70","gcamValue":25},{"gcamCode":"c16.71","gcamValue":7},{"gcamCode":"c16.72","gcamValue":8},{"gcamCode":"c16.73","gcamValue":2},{"gcamCode":"c16.74","gcamValue":5},{"gcamCode":"c16.75","gcamValue":17},{"gcamCode":"c16.76","gcamValue":6},{"gcamCode":"c16.77","gcamValue":1},{"gcamCode":"c16.78","gcamValue":14},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.8","gcamValue":1},{"gcamCode":"c16.80","gcamValue":2},{"gcamCode":"c16.81","gcamValue":8},{"gcamCode":"c16.84","gcamValue":26},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.86","gcamValue":3},{"gcamCode":"c16.87","gcamValue":37},{"gcamCode":"c16.88","gcamValue":58},{"gcamCode":"c16.89","gcamValue":26},{"gcamCode":"c16.90","gcamValue":13},{"gcamCode":"c16.91","gcamValue":15},{"gcamCode":"c16.92","gcamValue":45},{"gcamCode":"c16.93","gcamValue":9},{"gcamCode":"c16.94","gcamValue":40},{"gcamCode":"c16.95","gcamValue":30},{"gcamCode":"c16.96","gcamValue":9},{"gcamCode":"c16.97","gcamValue":2},{"gcamCode":"c16.98","gcamValue":37},{"gcamCode":"c16.99","gcamValue":5},{"gcamCode":"c17.1","gcamValue":98},{"gcamCode":"c17.10","gcamValue":59},{"gcamCode":"c17.11","gcamValue":53},{"gcamCode":"c17.12","gcamValue":13},{"gcamCode":"c17.13","gcamValue":15},{"gcamCode":"c17.14","gcamValue":9},{"gcamCode":"c17.15","gcamValue":22},{"gcamCode":"c17.16","gcamValue":14},{"gcamCode":"c17.18","gcamValue":9},{"gcamCode":"c17.19","gcamValue":40},{"gcamCode":"c17.2","gcamValue":3},{"gcamCode":"c17.20","gcamValue":3},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":9},{"gcamCode":"c17.23","gcamValue":4},{"gcamCode":"c17.24","gcamValue":31},{"gcamCode":"c17.25","gcamValue":5},{"gcamCode":"c17.26","gcamValue":3},{"gcamCode":"c17.27","gcamValue":51},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":11},{"gcamCode":"c17.3","gcamValue":5},{"gcamCode":"c17.30","gcamValue":19},{"gcamCode":"c17.31","gcamValue":35},{"gcamCode":"c17.32","gcamValue":26},{"gcamCode":"c17.33","gcamValue":24},{"gcamCode":"c17.34","gcamValue":14},{"gcamCode":"c17.35","gcamValue":15},{"gcamCode":"c17.36","gcamValue":23},{"gcamCode":"c17.37","gcamValue":18},{"gcamCode":"c17.38","gcamValue":11},{"gcamCode":"c17.39","gcamValue":17},{"gcamCode":"c17.4","gcamValue":73},{"gcamCode":"c17.40","gcamValue":9},{"gcamCode":"c17.41","gcamValue":25},{"gcamCode":"c17.42","gcamValue":34},{"gcamCode":"c17.43","gcamValue":33},{"gcamCode":"c17.5","gcamValue":93},{"gcamCode":"c17.7","gcamValue":61},{"gcamCode":"c17.8","gcamValue":44},{"gcamCode":"c17.9","gcamValue":8},{"gcamCode":"c18.147","gcamValue":7},{"gcamCode":"c18.149","gcamValue":5},{"gcamCode":"c18.156","gcamValue":1},{"gcamCode":"c18.180","gcamValue":2},{"gcamCode":"c18.186","gcamValue":1},{"gcamCode":"c18.193","gcamValue":26},{"gcamCode":"c18.298","gcamValue":5},{"gcamCode":"c18.34","gcamValue":4},{"gcamCode":"c18.342","gcamValue":2},{"gcamCode":"c18.345","gcamValue":1},{"gcamCode":"c18.71","gcamValue":1},{"gcamCode":"c18.73","gcamValue":1},{"gcamCode":"c18.82","gcamValue":1},{"gcamCode":"c2.1","gcamValue":13},{"gcamCode":"c2.10","gcamValue":1},{"gcamCode":"c2.100","gcamValue":4},{"gcamCode":"c2.101","gcamValue":11},{"gcamCode":"c2.102","gcamValue":15},{"gcamCode":"c2.103","gcamValue":2},{"gcamCode":"c2.104","gcamValue":61},{"gcamCode":"c2.107","gcamValue":2},{"gcamCode":"c2.109","gcamValue":1},{"gcamCode":"c2.11","gcamValue":8},{"gcamCode":"c2.110","gcamValue":3},{"gcamCode":"c2.111","gcamValue":3},{"gcamCode":"c2.112","gcamValue":7},{"gcamCode":"c2.113","gcamValue":8},{"gcamCode":"c2.114","gcamValue":27},{"gcamCode":"c2.116","gcamValue":18},{"gcamCode":"c2.118","gcamValue":2},{"gcamCode":"c2.119","gcamValue":120},{"gcamCode":"c2.12","gcamValue":33},{"gcamCode":"c2.120","gcamValue":1},{"gcamCode":"c2.121","gcamValue":37},{"gcamCode":"c2.122","gcamValue":11},{"gcamCode":"c2.123","gcamValue":3},{"gcamCode":"c2.125","gcamValue":14},{"gcamCode":"c2.126","gcamValue":23},{"gcamCode":"c2.127","gcamValue":45},{"gcamCode":"c2.128","gcamValue":12},{"gcamCode":"c2.129","gcamValue":6},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":6},{"gcamCode":"c2.132","gcamValue":3},{"gcamCode":"c2.133","gcamValue":1},{"gcamCode":"c2.134","gcamValue":1},{"gcamCode":"c2.135","gcamValue":4},{"gcamCode":"c2.139","gcamValue":5},{"gcamCode":"c2.14","gcamValue":38},{"gcamCode":"c2.141","gcamValue":7},{"gcamCode":"c2.143","gcamValue":19},{"gcamCode":"c2.144","gcamValue":5},{"gcamCode":"c2.145","gcamValue":4},{"gcamCode":"c2.146","gcamValue":1},{"gcamCode":"c2.147","gcamValue":54},{"gcamCode":"c2.148","gcamValue":26},{"gcamCode":"c2.149","gcamValue":1},{"gcamCode":"c2.15","gcamValue":23},{"gcamCode":"c2.150","gcamValue":4},{"gcamCode":"c2.151","gcamValue":1},{"gcamCode":"c2.152","gcamValue":4},{"gcamCode":"c2.153","gcamValue":6},{"gcamCode":"c2.154","gcamValue":2},{"gcamCode":"c2.155","gcamValue":50},{"gcamCode":"c2.156","gcamValue":17},{"gcamCode":"c2.157","gcamValue":46},{"gcamCode":"c2.158","gcamValue":44},{"gcamCode":"c2.159","gcamValue":8},{"gcamCode":"c2.160","gcamValue":14},{"gcamCode":"c2.161","gcamValue":1},{"gcamCode":"c2.162","gcamValue":5},{"gcamCode":"c2.163","gcamValue":1},{"gcamCode":"c2.165","gcamValue":1},{"gcamCode":"c2.166","gcamValue":8},{"gcamCode":"c2.167","gcamValue":3},{"gcamCode":"c2.169","gcamValue":8},{"gcamCode":"c2.17","gcamValue":6},{"gcamCode":"c2.170","gcamValue":11},{"gcamCode":"c2.172","gcamValue":2},{"gcamCode":"c2.173","gcamValue":5},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":36},{"gcamCode":"c2.178","gcamValue":2},{"gcamCode":"c2.179","gcamValue":9},{"gcamCode":"c2.18","gcamValue":17},{"gcamCode":"c2.180","gcamValue":21},{"gcamCode":"c2.181","gcamValue":26},{"gcamCode":"c2.182","gcamValue":4},{"gcamCode":"c2.183","gcamValue":34},{"gcamCode":"c2.185","gcamValue":100},{"gcamCode":"c2.186","gcamValue":3},{"gcamCode":"c2.187","gcamValue":27},{"gcamCode":"c2.188","gcamValue":5},{"gcamCode":"c2.189","gcamValue":5},{"gcamCode":"c2.19","gcamValue":3},{"gcamCode":"c2.191","gcamValue":5},{"gcamCode":"c2.192","gcamValue":10},{"gcamCode":"c2.193","gcamValue":18},{"gcamCode":"c2.194","gcamValue":4},{"gcamCode":"c2.195","gcamValue":41},{"gcamCode":"c2.196","gcamValue":9},{"gcamCode":"c2.197","gcamValue":5},{"gcamCode":"c2.198","gcamValue":32},{"gcamCode":"c2.199","gcamValue":11},{"gcamCode":"c2.2","gcamValue":2},{"gcamCode":"c2.200","gcamValue":4},{"gcamCode":"c2.203","gcamValue":12},{"gcamCode":"c2.204","gcamValue":34},{"gcamCode":"c2.205","gcamValue":12},{"gcamCode":"c2.206","gcamValue":6},{"gcamCode":"c2.207","gcamValue":6},{"gcamCode":"c2.209","gcamValue":10},{"gcamCode":"c2.21","gcamValue":2},{"gcamCode":"c2.210","gcamValue":56},{"gcamCode":"c2.212","gcamValue":1},{"gcamCode":"c2.213","gcamValue":11},{"gcamCode":"c2.214","gcamValue":20},{"gcamCode":"c2.215","gcamValue":4},{"gcamCode":"c2.217","gcamValue":5},{"gcamCode":"c2.218","gcamValue":3},{"gcamCode":"c2.219","gcamValue":5},{"gcamCode":"c2.220","gcamValue":14},{"gcamCode":"c2.221","gcamValue":10},{"gcamCode":"c2.223","gcamValue":10},{"gcamCode":"c2.225","gcamValue":9},{"gcamCode":"c2.226","gcamValue":11},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.228","gcamValue":1},{"gcamCode":"c2.23","gcamValue":6},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":27},{"gcamCode":"c2.26","gcamValue":21},{"gcamCode":"c2.27","gcamValue":21},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":17},{"gcamCode":"c2.31","gcamValue":21},{"gcamCode":"c2.32","gcamValue":4},{"gcamCode":"c2.33","gcamValue":10},{"gcamCode":"c2.34","gcamValue":18},{"gcamCode":"c2.35","gcamValue":17},{"gcamCode":"c2.36","gcamValue":12},{"gcamCode":"c2.37","gcamValue":14},{"gcamCode":"c2.38","gcamValue":2},{"gcamCode":"c2.39","gcamValue":52},{"gcamCode":"c2.4","gcamValue":2},{"gcamCode":"c2.40","gcamValue":2},{"gcamCode":"c2.42","gcamValue":4},{"gcamCode":"c2.44","gcamValue":21},{"gcamCode":"c2.45","gcamValue":13},{"gcamCode":"c2.46","gcamValue":41},{"gcamCode":"c2.47","gcamValue":10},{"gcamCode":"c2.48","gcamValue":8},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.5","gcamValue":2},{"gcamCode":"c2.50","gcamValue":12},{"gcamCode":"c2.52","gcamValue":32},{"gcamCode":"c2.53","gcamValue":3},{"gcamCode":"c2.54","gcamValue":40},{"gcamCode":"c2.55","gcamValue":4},{"gcamCode":"c2.56","gcamValue":3},{"gcamCode":"c2.57","gcamValue":13},{"gcamCode":"c2.58","gcamValue":16},{"gcamCode":"c2.59","gcamValue":1},{"gcamCode":"c2.6","gcamValue":4},{"gcamCode":"c2.61","gcamValue":1},{"gcamCode":"c2.62","gcamValue":21},{"gcamCode":"c2.64","gcamValue":8},{"gcamCode":"c2.65","gcamValue":3},{"gcamCode":"c2.66","gcamValue":3},{"gcamCode":"c2.67","gcamValue":2},{"gcamCode":"c2.68","gcamValue":4},{"gcamCode":"c2.69","gcamValue":3},{"gcamCode":"c2.7","gcamValue":1},{"gcamCode":"c2.70","gcamValue":4},{"gcamCode":"c2.71","gcamValue":3},{"gcamCode":"c2.72","gcamValue":1},{"gcamCode":"c2.73","gcamValue":7},{"gcamCode":"c2.74","gcamValue":2},{"gcamCode":"c2.75","gcamValue":70},{"gcamCode":"c2.76","gcamValue":238},{"gcamCode":"c2.77","gcamValue":42},{"gcamCode":"c2.78","gcamValue":62},{"gcamCode":"c2.79","gcamValue":13},{"gcamCode":"c2.80","gcamValue":63},{"gcamCode":"c2.81","gcamValue":4},{"gcamCode":"c2.82","gcamValue":6},{"gcamCode":"c2.83","gcamValue":9},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":6},{"gcamCode":"c2.87","gcamValue":10},{"gcamCode":"c2.88","gcamValue":9},{"gcamCode":"c2.89","gcamValue":14},{"gcamCode":"c2.9","gcamValue":6},{"gcamCode":"c2.90","gcamValue":4},{"gcamCode":"c2.93","gcamValue":10},{"gcamCode":"c2.94","gcamValue":1},{"gcamCode":"c2.95","gcamValue":54},{"gcamCode":"c2.96","gcamValue":3},{"gcamCode":"c2.97","gcamValue":6},{"gcamCode":"c2.98","gcamValue":25},{"gcamCode":"c2.99","gcamValue":2},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.10","gcamValue":1},{"gcamCode":"c25.11","gcamValue":2},{"gcamCode":"c3.1","gcamValue":15},{"gcamCode":"c3.2","gcamValue":36},{"gcamCode":"c35.1","gcamValue":8},{"gcamCode":"c35.12","gcamValue":1},{"gcamCode":"c35.13","gcamValue":2},{"gcamCode":"c35.14","gcamValue":4},{"gcamCode":"c35.15","gcamValue":4},{"gcamCode":"c35.18","gcamValue":1},{"gcamCode":"c35.2","gcamValue":16},{"gcamCode":"c35.20","gcamValue":9},{"gcamCode":"c35.26","gcamValue":1},{"gcamCode":"c35.31","gcamValue":39},{"gcamCode":"c35.32","gcamValue":11},{"gcamCode":"c35.33","gcamValue":10},{"gcamCode":"c35.4","gcamValue":3},{"gcamCode":"c35.5","gcamValue":5},{"gcamCode":"c35.7","gcamValue":5},{"gcamCode":"c35.9","gcamValue":1},{"gcamCode":"c39.1","gcamValue":3},{"gcamCode":"c39.17","gcamValue":5},{"gcamCode":"c39.18","gcamValue":1},{"gcamCode":"c39.19","gcamValue":1},{"gcamCode":"c39.2","gcamValue":8},{"gcamCode":"c39.23","gcamValue":2},{"gcamCode":"c39.25","gcamValue":2},{"gcamCode":"c39.3","gcamValue":14},{"gcamCode":"c39.30","gcamValue":1},{"gcamCode":"c39.36","gcamValue":11},{"gcamCode":"c39.37","gcamValue":11},{"gcamCode":"c39.39","gcamValue":1},{"gcamCode":"c39.4","gcamValue":11},{"gcamCode":"c39.41","gcamValue":6},{"gcamCode":"c39.5","gcamValue":4},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":7},{"gcamCode":"c4.13","gcamValue":1},{"gcamCode":"c4.23","gcamValue":18},{"gcamCode":"c4.3","gcamValue":6},{"gcamCode":"c4.8","gcamValue":4},{"gcamCode":"c40.1","gcamValue":1},{"gcamCode":"c40.4","gcamValue":2},{"gcamCode":"c40.7","gcamValue":1},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":11},{"gcamCode":"c5.10","gcamValue":18},{"gcamCode":"c5.11","gcamValue":2},{"gcamCode":"c5.12","gcamValue":42},{"gcamCode":"c5.15","gcamValue":10},{"gcamCode":"c5.16","gcamValue":4},{"gcamCode":"c5.17","gcamValue":14},{"gcamCode":"c5.18","gcamValue":1},{"gcamCode":"c5.19","gcamValue":1},{"gcamCode":"c5.20","gcamValue":3},{"gcamCode":"c5.21","gcamValue":5},{"gcamCode":"c5.23","gcamValue":3},{"gcamCode":"c5.24","gcamValue":4},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":13},{"gcamCode":"c5.28","gcamValue":8},{"gcamCode":"c5.29","gcamValue":10},{"gcamCode":"c5.3","gcamValue":1},{"gcamCode":"c5.30","gcamValue":41},{"gcamCode":"c5.31","gcamValue":3},{"gcamCode":"c5.32","gcamValue":2},{"gcamCode":"c5.34","gcamValue":6},{"gcamCode":"c5.35","gcamValue":20},{"gcamCode":"c5.36","gcamValue":27},{"gcamCode":"c5.37","gcamValue":5},{"gcamCode":"c5.38","gcamValue":2},{"gcamCode":"c5.40","gcamValue":33},{"gcamCode":"c5.43","gcamValue":10},{"gcamCode":"c5.45","gcamValue":13},{"gcamCode":"c5.46","gcamValue":48},{"gcamCode":"c5.47","gcamValue":11},{"gcamCode":"c5.48","gcamValue":4},{"gcamCode":"c5.49","gcamValue":56},{"gcamCode":"c5.5","gcamValue":2},{"gcamCode":"c5.50","gcamValue":62},{"gcamCode":"c5.51","gcamValue":36},{"gcamCode":"c5.52","gcamValue":75},{"gcamCode":"c5.53","gcamValue":36},{"gcamCode":"c5.54","gcamValue":12},{"gcamCode":"c5.55","gcamValue":4},{"gcamCode":"c5.56","gcamValue":4},{"gcamCode":"c5.57","gcamValue":1},{"gcamCode":"c5.59","gcamValue":5},{"gcamCode":"c5.6","gcamValue":28},{"gcamCode":"c5.60","gcamValue":14},{"gcamCode":"c5.61","gcamValue":26},{"gcamCode":"c5.62","gcamValue":165},{"gcamCode":"c5.7","gcamValue":8},{"gcamCode":"c5.8","gcamValue":30},{"gcamCode":"c5.9","gcamValue":15},{"gcamCode":"c6.1","gcamValue":5},{"gcamCode":"c6.2","gcamValue":8},{"gcamCode":"c6.4","gcamValue":5},{"gcamCode":"c6.5","gcamValue":10},{"gcamCode":"c7.1","gcamValue":18},{"gcamCode":"c7.2","gcamValue":29},{"gcamCode":"c8.1","gcamValue":8},{"gcamCode":"c8.10","gcamValue":1},{"gcamCode":"c8.13","gcamValue":1},{"gcamCode":"c8.14","gcamValue":1},{"gcamCode":"c8.16","gcamValue":2},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.20","gcamValue":1},{"gcamCode":"c8.22","gcamValue":1},{"gcamCode":"c8.23","gcamValue":1},{"gcamCode":"c8.25","gcamValue":5},{"gcamCode":"c8.28","gcamValue":3},{"gcamCode":"c8.29","gcamValue":1},{"gcamCode":"c8.30","gcamValue":1},{"gcamCode":"c8.33","gcamValue":2},{"gcamCode":"c8.37","gcamValue":7},{"gcamCode":"c8.38","gcamValue":11},{"gcamCode":"c8.4","gcamValue":19},{"gcamCode":"c8.40","gcamValue":3},{"gcamCode":"c8.41","gcamValue":1},{"gcamCode":"c8.42","gcamValue":14},{"gcamCode":"c8.43","gcamValue":11},{"gcamCode":"c8.5","gcamValue":3},{"gcamCode":"c8.8","gcamValue":1},{"gcamCode":"c9.1","gcamValue":19},{"gcamCode":"c9.1000","gcamValue":2},{"gcamCode":"c9.1002","gcamValue":1},{"gcamCode":"c9.1003","gcamValue":1},{"gcamCode":"c9.1005","gcamValue":2},{"gcamCode":"c9.1007","gcamValue":2},{"gcamCode":"c9.1018","gcamValue":1},{"gcamCode":"c9.1024","gcamValue":3},{"gcamCode":"c9.1030","gcamValue":4},{"gcamCode":"c9.1040","gcamValue":3},{"gcamCode":"c9.1041","gcamValue":2},{"gcamCode":"c9.105","gcamValue":1},{"gcamCode":"c9.107","gcamValue":5},{"gcamCode":"c9.109","gcamValue":2},{"gcamCode":"c9.111","gcamValue":6},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.116","gcamValue":1},{"gcamCode":"c9.117","gcamValue":1},{"gcamCode":"c9.122","gcamValue":2},{"gcamCode":"c9.125","gcamValue":4},{"gcamCode":"c9.126","gcamValue":2},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":21},{"gcamCode":"c9.129","gcamValue":2},{"gcamCode":"c9.132","gcamValue":1},{"gcamCode":"c9.135","gcamValue":3},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.140","gcamValue":1},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":3},{"gcamCode":"c9.148","gcamValue":3},{"gcamCode":"c9.149","gcamValue":2},{"gcamCode":"c9.15","gcamValue":2},{"gcamCode":"c9.151","gcamValue":7},{"gcamCode":"c9.157","gcamValue":2},{"gcamCode":"c9.158","gcamValue":5},{"gcamCode":"c9.159","gcamValue":2},{"gcamCode":"c9.16","gcamValue":1},{"gcamCode":"c9.160","gcamValue":1},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":8},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":2},{"gcamCode":"c9.165","gcamValue":3},{"gcamCode":"c9.166","gcamValue":1},{"gcamCode":"c9.167","gcamValue":2},{"gcamCode":"c9.168","gcamValue":7},{"gcamCode":"c9.169","gcamValue":4},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":3},{"gcamCode":"c9.176","gcamValue":1},{"gcamCode":"c9.177","gcamValue":2},{"gcamCode":"c9.178","gcamValue":1},{"gcamCode":"c9.18","gcamValue":3},{"gcamCode":"c9.180","gcamValue":1},{"gcamCode":"c9.182","gcamValue":1},{"gcamCode":"c9.184","gcamValue":12},{"gcamCode":"c9.188","gcamValue":4},{"gcamCode":"c9.19","gcamValue":1},{"gcamCode":"c9.193","gcamValue":2},{"gcamCode":"c9.195","gcamValue":4},{"gcamCode":"c9.196","gcamValue":12},{"gcamCode":"c9.197","gcamValue":4},{"gcamCode":"c9.198","gcamValue":3},{"gcamCode":"c9.200","gcamValue":7},{"gcamCode":"c9.201","gcamValue":4},{"gcamCode":"c9.202","gcamValue":1},{"gcamCode":"c9.203","gcamValue":2},{"gcamCode":"c9.206","gcamValue":1},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":1},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":2},{"gcamCode":"c9.215","gcamValue":1},{"gcamCode":"c9.216","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.222","gcamValue":1},{"gcamCode":"c9.223","gcamValue":1},{"gcamCode":"c9.224","gcamValue":3},{"gcamCode":"c9.23","gcamValue":4},{"gcamCode":"c9.231","gcamValue":2},{"gcamCode":"c9.232","gcamValue":3},{"gcamCode":"c9.235","gcamValue":3},{"gcamCode":"c9.237","gcamValue":1},{"gcamCode":"c9.24","gcamValue":2},{"gcamCode":"c9.245","gcamValue":1},{"gcamCode":"c9.25","gcamValue":8},{"gcamCode":"c9.250","gcamValue":5},{"gcamCode":"c9.252","gcamValue":1},{"gcamCode":"c9.253","gcamValue":3},{"gcamCode":"c9.256","gcamValue":1},{"gcamCode":"c9.261","gcamValue":1},{"gcamCode":"c9.262","gcamValue":2},{"gcamCode":"c9.263","gcamValue":2},{"gcamCode":"c9.265","gcamValue":2},{"gcamCode":"c9.27","gcamValue":1},{"gcamCode":"c9.270","gcamValue":6},{"gcamCode":"c9.275","gcamValue":2},{"gcamCode":"c9.276","gcamValue":1},{"gcamCode":"c9.277","gcamValue":2},{"gcamCode":"c9.279","gcamValue":2},{"gcamCode":"c9.28","gcamValue":2},{"gcamCode":"c9.280","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.283","gcamValue":1},{"gcamCode":"c9.284","gcamValue":2},{"gcamCode":"c9.288","gcamValue":3},{"gcamCode":"c9.29","gcamValue":1},{"gcamCode":"c9.291","gcamValue":2},{"gcamCode":"c9.295","gcamValue":1},{"gcamCode":"c9.297","gcamValue":1},{"gcamCode":"c9.3","gcamValue":17},{"gcamCode":"c9.30","gcamValue":2},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":4},{"gcamCode":"c9.303","gcamValue":1},{"gcamCode":"c9.304","gcamValue":2},{"gcamCode":"c9.305","gcamValue":2},{"gcamCode":"c9.306","gcamValue":1},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.312","gcamValue":2},{"gcamCode":"c9.314","gcamValue":5},{"gcamCode":"c9.316","gcamValue":2},{"gcamCode":"c9.32","gcamValue":3},{"gcamCode":"c9.33","gcamValue":5},{"gcamCode":"c9.331","gcamValue":3},{"gcamCode":"c9.333","gcamValue":1},{"gcamCode":"c9.338","gcamValue":1},{"gcamCode":"c9.34","gcamValue":6},{"gcamCode":"c9.35","gcamValue":2},{"gcamCode":"c9.354","gcamValue":1},{"gcamCode":"c9.358","gcamValue":1},{"gcamCode":"c9.36","gcamValue":4},{"gcamCode":"c9.360","gcamValue":1},{"gcamCode":"c9.368","gcamValue":1},{"gcamCode":"c9.37","gcamValue":1},{"gcamCode":"c9.370","gcamValue":3},{"gcamCode":"c9.371","gcamValue":1},{"gcamCode":"c9.377","gcamValue":1},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.381","gcamValue":1},{"gcamCode":"c9.382","gcamValue":1},{"gcamCode":"c9.383","gcamValue":4},{"gcamCode":"c9.384","gcamValue":1},{"gcamCode":"c9.385","gcamValue":3},{"gcamCode":"c9.386","gcamValue":1},{"gcamCode":"c9.388","gcamValue":1},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":3},{"gcamCode":"c9.395","gcamValue":1},{"gcamCode":"c9.397","gcamValue":1},{"gcamCode":"c9.399","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.409","gcamValue":2},{"gcamCode":"c9.412","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.420","gcamValue":1},{"gcamCode":"c9.427","gcamValue":1},{"gcamCode":"c9.428","gcamValue":1},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.432","gcamValue":1},{"gcamCode":"c9.435","gcamValue":2},{"gcamCode":"c9.440","gcamValue":4},{"gcamCode":"c9.446","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.454","gcamValue":2},{"gcamCode":"c9.457","gcamValue":1},{"gcamCode":"c9.459","gcamValue":2},{"gcamCode":"c9.46","gcamValue":6},{"gcamCode":"c9.460","gcamValue":2},{"gcamCode":"c9.461","gcamValue":2},{"gcamCode":"c9.466","gcamValue":1},{"gcamCode":"c9.468","gcamValue":3},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.470","gcamValue":1},{"gcamCode":"c9.472","gcamValue":3},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":3},{"gcamCode":"c9.477","gcamValue":1},{"gcamCode":"c9.478","gcamValue":5},{"gcamCode":"c9.479","gcamValue":7},{"gcamCode":"c9.480","gcamValue":7},{"gcamCode":"c9.481","gcamValue":1},{"gcamCode":"c9.482","gcamValue":3},{"gcamCode":"c9.488","gcamValue":4},{"gcamCode":"c9.489","gcamValue":1},{"gcamCode":"c9.49","gcamValue":3},{"gcamCode":"c9.491","gcamValue":3},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.498","gcamValue":9},{"gcamCode":"c9.5","gcamValue":2},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":2},{"gcamCode":"c9.503","gcamValue":1},{"gcamCode":"c9.507","gcamValue":5},{"gcamCode":"c9.509","gcamValue":2},{"gcamCode":"c9.511","gcamValue":8},{"gcamCode":"c9.513","gcamValue":10},{"gcamCode":"c9.514","gcamValue":1},{"gcamCode":"c9.515","gcamValue":4},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":5},{"gcamCode":"c9.522","gcamValue":16},{"gcamCode":"c9.524","gcamValue":1},{"gcamCode":"c9.526","gcamValue":3},{"gcamCode":"c9.530","gcamValue":3},{"gcamCode":"c9.533","gcamValue":1},{"gcamCode":"c9.537","gcamValue":3},{"gcamCode":"c9.539","gcamValue":1},{"gcamCode":"c9.54","gcamValue":3},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.545","gcamValue":1},{"gcamCode":"c9.546","gcamValue":2},{"gcamCode":"c9.547","gcamValue":2},{"gcamCode":"c9.549","gcamValue":1},{"gcamCode":"c9.55","gcamValue":4},{"gcamCode":"c9.551","gcamValue":9},{"gcamCode":"c9.555","gcamValue":1},{"gcamCode":"c9.557","gcamValue":1},{"gcamCode":"c9.559","gcamValue":1},{"gcamCode":"c9.56","gcamValue":12},{"gcamCode":"c9.560","gcamValue":2},{"gcamCode":"c9.562","gcamValue":6},{"gcamCode":"c9.564","gcamValue":8},{"gcamCode":"c9.565","gcamValue":4},{"gcamCode":"c9.566","gcamValue":2},{"gcamCode":"c9.567","gcamValue":3},{"gcamCode":"c9.568","gcamValue":2},{"gcamCode":"c9.569","gcamValue":1},{"gcamCode":"c9.57","gcamValue":3},{"gcamCode":"c9.570","gcamValue":5},{"gcamCode":"c9.571","gcamValue":2},{"gcamCode":"c9.575","gcamValue":1},{"gcamCode":"c9.576","gcamValue":3},{"gcamCode":"c9.579","gcamValue":21},{"gcamCode":"c9.581","gcamValue":1},{"gcamCode":"c9.588","gcamValue":1},{"gcamCode":"c9.589","gcamValue":1},{"gcamCode":"c9.59","gcamValue":3},{"gcamCode":"c9.590","gcamValue":1},{"gcamCode":"c9.597","gcamValue":1},{"gcamCode":"c9.600","gcamValue":2},{"gcamCode":"c9.602","gcamValue":1},{"gcamCode":"c9.611","gcamValue":1},{"gcamCode":"c9.613","gcamValue":1},{"gcamCode":"c9.616","gcamValue":2},{"gcamCode":"c9.618","gcamValue":6},{"gcamCode":"c9.619","gcamValue":1},{"gcamCode":"c9.620","gcamValue":3},{"gcamCode":"c9.621","gcamValue":1},{"gcamCode":"c9.624","gcamValue":5},{"gcamCode":"c9.625","gcamValue":7},{"gcamCode":"c9.626","gcamValue":1},{"gcamCode":"c9.627","gcamValue":6},{"gcamCode":"c9.629","gcamValue":5},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":5},{"gcamCode":"c9.634","gcamValue":1},{"gcamCode":"c9.635","gcamValue":7},{"gcamCode":"c9.638","gcamValue":4},{"gcamCode":"c9.64","gcamValue":3},{"gcamCode":"c9.640","gcamValue":8},{"gcamCode":"c9.641","gcamValue":1},{"gcamCode":"c9.642","gcamValue":10},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.648","gcamValue":11},{"gcamCode":"c9.649","gcamValue":3},{"gcamCode":"c9.650","gcamValue":3},{"gcamCode":"c9.651","gcamValue":2},{"gcamCode":"c9.653","gcamValue":24},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":5},{"gcamCode":"c9.656","gcamValue":1},{"gcamCode":"c9.658","gcamValue":13},{"gcamCode":"c9.659","gcamValue":1},{"gcamCode":"c9.66","gcamValue":1},{"gcamCode":"c9.660","gcamValue":2},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.664","gcamValue":4},{"gcamCode":"c9.667","gcamValue":3},{"gcamCode":"c9.668","gcamValue":13},{"gcamCode":"c9.669","gcamValue":1},{"gcamCode":"c9.670","gcamValue":7},{"gcamCode":"c9.671","gcamValue":2},{"gcamCode":"c9.672","gcamValue":6},{"gcamCode":"c9.673","gcamValue":1},{"gcamCode":"c9.674","gcamValue":5},{"gcamCode":"c9.676","gcamValue":5},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":5},{"gcamCode":"c9.679","gcamValue":5},{"gcamCode":"c9.681","gcamValue":2},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":2},{"gcamCode":"c9.684","gcamValue":1},{"gcamCode":"c9.686","gcamValue":8},{"gcamCode":"c9.687","gcamValue":3},{"gcamCode":"c9.688","gcamValue":3},{"gcamCode":"c9.69","gcamValue":1},{"gcamCode":"c9.690","gcamValue":8},{"gcamCode":"c9.692","gcamValue":4},{"gcamCode":"c9.693","gcamValue":4},{"gcamCode":"c9.694","gcamValue":1},{"gcamCode":"c9.698","gcamValue":5},{"gcamCode":"c9.699","gcamValue":2},{"gcamCode":"c9.7","gcamValue":4},{"gcamCode":"c9.70","gcamValue":1},{"gcamCode":"c9.701","gcamValue":15},{"gcamCode":"c9.703","gcamValue":2},{"gcamCode":"c9.704","gcamValue":7},{"gcamCode":"c9.705","gcamValue":1},{"gcamCode":"c9.708","gcamValue":2},{"gcamCode":"c9.709","gcamValue":1},{"gcamCode":"c9.71","gcamValue":1},{"gcamCode":"c9.710","gcamValue":3},{"gcamCode":"c9.714","gcamValue":3},{"gcamCode":"c9.715","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.717","gcamValue":1},{"gcamCode":"c9.719","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":7},{"gcamCode":"c9.721","gcamValue":2},{"gcamCode":"c9.722","gcamValue":2},{"gcamCode":"c9.723","gcamValue":4},{"gcamCode":"c9.724","gcamValue":3},{"gcamCode":"c9.725","gcamValue":2},{"gcamCode":"c9.726","gcamValue":23},{"gcamCode":"c9.727","gcamValue":1},{"gcamCode":"c9.730","gcamValue":17},{"gcamCode":"c9.731","gcamValue":1},{"gcamCode":"c9.732","gcamValue":2},{"gcamCode":"c9.734","gcamValue":1},{"gcamCode":"c9.735","gcamValue":6},{"gcamCode":"c9.736","gcamValue":2},{"gcamCode":"c9.739","gcamValue":4},{"gcamCode":"c9.740","gcamValue":2},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":3},{"gcamCode":"c9.746","gcamValue":1},{"gcamCode":"c9.748","gcamValue":10},{"gcamCode":"c9.754","gcamValue":2},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.76","gcamValue":7},{"gcamCode":"c9.762","gcamValue":17},{"gcamCode":"c9.765","gcamValue":1},{"gcamCode":"c9.766","gcamValue":2},{"gcamCode":"c9.767","gcamValue":25},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.771","gcamValue":2},{"gcamCode":"c9.774","gcamValue":2},{"gcamCode":"c9.775","gcamValue":2},{"gcamCode":"c9.776","gcamValue":4},{"gcamCode":"c9.779","gcamValue":1},{"gcamCode":"c9.781","gcamValue":1},{"gcamCode":"c9.782","gcamValue":1},{"gcamCode":"c9.783","gcamValue":3},{"gcamCode":"c9.79","gcamValue":4},{"gcamCode":"c9.790","gcamValue":4},{"gcamCode":"c9.791","gcamValue":1},{"gcamCode":"c9.792","gcamValue":4},{"gcamCode":"c9.80","gcamValue":1},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.802","gcamValue":4},{"gcamCode":"c9.803","gcamValue":1},{"gcamCode":"c9.806","gcamValue":8},{"gcamCode":"c9.808","gcamValue":4},{"gcamCode":"c9.812","gcamValue":7},{"gcamCode":"c9.816","gcamValue":6},{"gcamCode":"c9.818","gcamValue":1},{"gcamCode":"c9.82","gcamValue":2},{"gcamCode":"c9.821","gcamValue":3},{"gcamCode":"c9.822","gcamValue":1},{"gcamCode":"c9.823","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.83","gcamValue":7},{"gcamCode":"c9.830","gcamValue":3},{"gcamCode":"c9.832","gcamValue":1},{"gcamCode":"c9.833","gcamValue":1},{"gcamCode":"c9.834","gcamValue":3},{"gcamCode":"c9.836","gcamValue":1},{"gcamCode":"c9.838","gcamValue":5},{"gcamCode":"c9.84","gcamValue":1},{"gcamCode":"c9.845","gcamValue":1},{"gcamCode":"c9.846","gcamValue":1},{"gcamCode":"c9.849","gcamValue":2},{"gcamCode":"c9.850","gcamValue":1},{"gcamCode":"c9.857","gcamValue":2},{"gcamCode":"c9.858","gcamValue":2},{"gcamCode":"c9.86","gcamValue":1},{"gcamCode":"c9.860","gcamValue":10},{"gcamCode":"c9.861","gcamValue":8},{"gcamCode":"c9.862","gcamValue":2},{"gcamCode":"c9.863","gcamValue":4},{"gcamCode":"c9.864","gcamValue":20},{"gcamCode":"c9.865","gcamValue":3},{"gcamCode":"c9.866","gcamValue":8},{"gcamCode":"c9.867","gcamValue":4},{"gcamCode":"c9.868","gcamValue":19},{"gcamCode":"c9.869","gcamValue":2},{"gcamCode":"c9.87","gcamValue":1},{"gcamCode":"c9.874","gcamValue":1},{"gcamCode":"c9.877","gcamValue":7},{"gcamCode":"c9.878","gcamValue":2},{"gcamCode":"c9.88","gcamValue":1},{"gcamCode":"c9.882","gcamValue":13},{"gcamCode":"c9.883","gcamValue":5},{"gcamCode":"c9.884","gcamValue":6},{"gcamCode":"c9.887","gcamValue":1},{"gcamCode":"c9.889","gcamValue":1},{"gcamCode":"c9.899","gcamValue":4},{"gcamCode":"c9.90","gcamValue":3},{"gcamCode":"c9.901","gcamValue":2},{"gcamCode":"c9.902","gcamValue":1},{"gcamCode":"c9.903","gcamValue":17},{"gcamCode":"c9.907","gcamValue":2},{"gcamCode":"c9.908","gcamValue":3},{"gcamCode":"c9.911","gcamValue":6},{"gcamCode":"c9.913","gcamValue":3},{"gcamCode":"c9.915","gcamValue":1},{"gcamCode":"c9.916","gcamValue":1},{"gcamCode":"c9.918","gcamValue":1},{"gcamCode":"c9.920","gcamValue":5},{"gcamCode":"c9.921","gcamValue":2},{"gcamCode":"c9.923","gcamValue":1},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.928","gcamValue":2},{"gcamCode":"c9.93","gcamValue":1},{"gcamCode":"c9.931","gcamValue":3},{"gcamCode":"c9.932","gcamValue":4},{"gcamCode":"c9.933","gcamValue":3},{"gcamCode":"c9.935","gcamValue":16},{"gcamCode":"c9.937","gcamValue":2},{"gcamCode":"c9.938","gcamValue":4},{"gcamCode":"c9.941","gcamValue":2},{"gcamCode":"c9.945","gcamValue":6},{"gcamCode":"c9.946","gcamValue":1},{"gcamCode":"c9.95","gcamValue":2},{"gcamCode":"c9.953","gcamValue":2},{"gcamCode":"c9.96","gcamValue":3},{"gcamCode":"c9.960","gcamValue":2},{"gcamCode":"c9.962","gcamValue":2},{"gcamCode":"c9.964","gcamValue":5},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":4},{"gcamCode":"c9.976","gcamValue":2},{"gcamCode":"c9.977","gcamValue":2},{"gcamCode":"c9.978","gcamValue":7},{"gcamCode":"c9.980","gcamValue":4},{"gcamCode":"c9.983","gcamValue":1},{"gcamCode":"c9.985","gcamValue":3},{"gcamCode":"c9.986","gcamValue":3},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.989","gcamValue":1},{"gcamCode":"c9.992","gcamValue":1},{"gcamCode":"c9.993","gcamValue":1},{"gcamCode":"v10.1","gcamValue":0.296010353025659},{"gcamCode":"v10.2","gcamValue":0.308694505675484},{"gcamCode":"v11.1","gcamValue":0.123781666666667},{"gcamCode":"v19.1","gcamValue":6.0625},{"gcamCode":"v19.2","gcamValue":5.31053571428572},{"gcamCode":"v19.3","gcamValue":5.29107142857143},{"gcamCode":"v19.4","gcamValue":5.84392857142857},{"gcamCode":"v19.5","gcamValue":5.15928571428571},{"gcamCode":"v19.6","gcamValue":5.20053571428572},{"gcamCode":"v19.7","gcamValue":6.27107142857143},{"gcamCode":"v19.8","gcamValue":5.48946428571429},{"gcamCode":"v19.9","gcamValue":5.36607142857143},{"gcamCode":"v20.1","gcamValue":0.5668},{"gcamCode":"v20.11","gcamValue":0.6733125},{"gcamCode":"v20.12","gcamValue":-0.5},{"gcamCode":"v20.13","gcamValue":0.569541666666667},{"gcamCode":"v20.14","gcamValue":-0.348375},{"gcamCode":"v20.15","gcamValue":0.427642857142857},{"gcamCode":"v20.16","gcamValue":-0.315583333333333},{"gcamCode":"v20.3","gcamValue":0.6168},{"gcamCode":"v20.5","gcamValue":0.723818181818182},{"gcamCode":"v20.7","gcamValue":0.723818181818182},{"gcamCode":"v20.9","gcamValue":0.698071428571429},{"gcamCode":"v21.1","gcamValue":5.63467948717949},{"gcamCode":"v26.1","gcamValue":1.50666666666667}]https://bloximages.chicago2.vip.townnews.com/ahwatukee.com/content/tncms/assets/v3/editorial/4/28/428e42ac-7cd3-11e9-a503-e74806c5c9f4/5ce5b6d33acff.image.jpg[""][""][""][{"charLength":46,"verb":"","quote":"I want to help everyone stay safe on airplanes","charOffset":823},{"charLength":37,"verb":"","quote":"wild animal rehabilitation specialist","charOffset":1133}][{"name":"Ahwatukee Foothills Montessori","charOffset":155},{"name":"Grand Canyon State","charOffset":329},{"name":"Aaliya Kalra","charOffset":366},{"name":"Good Friend","charOffset":406},{"name":"Sahana MuKund","charOffset":436},{"name":"Active Get Healthy","charOffset":465},{"name":"Claire Coe","charOffset":492},{"name":"Good Friend","charOffset":522},{"name":"Julia Starr","charOffset":573},{"name":"Farah Hoque","charOffset":877},{"name":"Apurva Chitneni","charOffset":897},{"name":"Aanya Chitral","charOffset":945},{"name":"Nihira Kulkarni","charOffset":1168},{"name":"Suneha Sunil","charOffset":1333},{"name":"Aryan Venkat","charOffset":1375},{"name":"Albert Chu","charOffset":1512},{"name":"Emir Memiogiu","charOffset":1632},{"name":"John Allison","charOffset":1650},{"name":"Shrish Gopikrishnan","charOffset":1675},{"name":"Arjun Phadnis","charOffset":1694},{"name":"Abirami Selvaraj","charOffset":1965},{"name":"Deepta Akella","charOffset":2172},{"name":"Neel Kulkarni","charOffset":2277},{"name":"Varsha Sridhar","charOffset":2527}][{"amount":5,"amountType":"students","charOffset":1288}]{"SRCLC":"","ENG":""}<PAGE_AUTHORS>AFN News Staff</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523080000</PAGE_PRECISEPUBTIMESTAMP>
{"publishDate":"2019-05-23T12:15:00.000+0000","translingual":true,"numberInBatch":49}2019-05-23T12:15:00.000+0000WEBwfmz.comhttps://www.wfmz.com/news/politics/house-lawsuit-over-trumps-national-emergency-declaration-heads-to-court/1080292694[][]["TRIAL","TAX_FNCACT","TAX_FNCACT_REPRESENTATIVES","LEADER","TAX_FNCACT_PRESIDENT","USPEC_POLITICS_GENERAL1","CRISISLEX_CRISISLEXREC","TAX_FNCACT_JUDGE","CONSTITUTIONAL","GENERAL_GOVERNMENT","EPU_POLICY","EPU_POLICY_CONGRESS","USPEC_POLICY1","EPU_POLICY_SPENDING","TAX_FNCACT_EXECUTIVE","UNGP_CRIME_VIOLENCE","BORDER","EPU_POLICY_CONGRESSIONAL","DEMOCRACY","UNGP_POLITICAL_FREEDOMS","TAX_FNCACT_LAWMAKERS","EPU_POLICY_LAWMAKERS","TAX_DISEASE","TAX_DISEASE_EMERGENCIES","TAX_FNCACT_LEADER","TAX_FNCACT_MAJORITY_LEADER","TAX_FNCACT_SECRETARIES","WB_696_PUBLIC_SECTOR_MANAGEMENT","WB_840_JUSTICE","TAX_FNCACT_AUTHORITIES","EPU_POLICY_AUTHORITIES","CRISISLEX_C07_SAFETY","WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","WB_2491_BORDER_SECURITY","WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","WB_2490_NATIONAL_PROTECTION_AND_SECURITY","IMMIGRATION","WB_2670_JOBS","WB_2769_JOBS_STRATEGIES","WB_2837_IMMIGRATION","WB_2836_MIGRATION_POLICIES_AND_JOBS","EPU_CATS_MIGRATION_FEAR_MIGRATION","LEGISLATION","EPU_POLICY_WHITE_HOUSE","EPU_POLICY_LAW","EPU_POLICY_LEGISLATION","BAN"][{"theme":"BAN","charOffset":2738},{"theme":"TRIAL","charOffset":16},{"theme":"TRIAL","charOffset":277},{"theme":"TRIAL","charOffset":492},{"theme":"TRIAL","charOffset":2031},{"theme":"EPU_POLICY_CONGRESSIONAL","charOffset":1325},{"theme":"IMMIGRATION","charOffset":2373},{"theme":"WB_2670_JOBS","charOffset":2373},{"theme":"WB_2769_JOBS_STRATEGIES","charOffset":2373},{"theme":"WB_2837_IMMIGRATION","charOffset":2373},{"theme":"WB_2836_MIGRATION_POLICIES_AND_JOBS","charOffset":2373},{"theme":"EPU_CATS_MIGRATION_FEAR_MIGRATION","charOffset":2373},{"theme":"WB_696_PUBLIC_SECTOR_MANAGEMENT","charOffset":1962},{"theme":"WB_840_JUSTICE","charOffset":1962},{"theme":"UNGP_CRIME_VIOLENCE","charOffset":987},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":955},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":1378},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":2204},{"theme":"TAX_FNCACT_EXECUTIVE","charOffset":2295},{"theme":"TAX_FNCACT_LAWMAKERS","charOffset":1535},{"theme":"EPU_POLICY_LAWMAKERS","charOffset":1535},{"theme":"BORDER","charOffset":1230},{"theme":"BORDER","charOffset":1607},{"theme":"BORDER","charOffset":2321},{"theme":"BORDER","charOffset":2539},{"theme":"TAX_FNCACT_JUDGE","charOffset":438},{"theme":"CRISISLEX_C07_SAFETY","charOffset":2330},{"theme":"TAX_FNCACT_SECRETARIES","charOffset":1910},{"theme":"TAX_FNCACT_REPRESENTATIVES","charOffset":56},{"theme":"TAX_FNCACT_AUTHORITIES","charOffset":2245},{"theme":"EPU_POLICY_AUTHORITIES","charOffset":2245},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":106},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":318},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1147},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":1584},{"theme":"CRISISLEX_CRISISLEXREC","charOffset":2499},{"theme":"GENERAL_GOVERNMENT","charOffset":709},{"theme":"GENERAL_GOVERNMENT","charOffset":844},{"theme":"GENERAL_GOVERNMENT","charOffset":999},{"theme":"GENERAL_GOVERNMENT","charOffset":1200},{"theme":"GENERAL_GOVERNMENT","charOffset":2444},{"theme":"GENERAL_GOVERNMENT","charOffset":2669},{"theme":"EPU_POLICY_CONGRESS","charOffset":709},{"theme":"EPU_POLICY_CONGRESS","charOffset":844},{"theme":"EPU_POLICY_CONGRESS","charOffset":999},{"theme":"EPU_POLICY_CONGRESS","charOffset":1200},{"theme":"EPU_POLICY_CONGRESS","charOffset":2444},{"theme":"EPU_POLICY_CONGRESS","charOffset":2669},{"theme":"EPU_POLICY_LEGISLATION","charOffset":2726},{"theme":"EPU_POLICY_LEGISLATION","charOffset":2937},{"theme":"USPEC_POLICY1","charOffset":753},{"theme":"EPU_POLICY_SPENDING","charOffset":753},{"theme":"TAX_FNCACT_LEADER","charOffset":1857},{"theme":"DEMOCRACY","charOffset":1453},{"theme":"UNGP_POLITICAL_FREEDOMS","charOffset":1453},{"theme":"TAX_DISEASE_EMERGENCIES","charOffset":1620},{"theme":"WB_2470_PEACE_OPERATIONS_AND_CONFLICT_MANAGEMENT","charOffset":2330},{"theme":"WB_2491_BORDER_SECURITY","charOffset":2330},{"theme":"WB_2432_FRAGILITY_CONFLICT_AND_VIOLENCE","charOffset":2330},{"theme":"WB_2490_NATIONAL_PROTECTION_AND_SECURITY","charOffset":2330},{"theme":"TAX_FNCACT_MAJORITY_LEADER","charOffset":1857},{"theme":"LEADER","charOffset":74},{"theme":"LEADER","charOffset":299},{"theme":"LEADER","charOffset":1128},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":74},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":299},{"theme":"TAX_FNCACT_PRESIDENT","charOffset":1128},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":74},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":299},{"theme":"USPEC_POLITICS_GENERAL1","charOffset":1128},{"theme":"LEGISLATION","charOffset":2378},{"theme":"CONSTITUTIONAL","charOffset":651},{"theme":"EPU_POLICY_LAW","charOffset":2567},{"theme":"EPU_POLICY_WHITE_HOUSE","charOffset":2474}][{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},{"geoType":"USCITY","geoName":"Oakland, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":37.8044,"longitude":-122.271},"featureId":"277566"},{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"}][{"location":{"geoType":"USSTATE","geoName":"California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"","geoPoint":{"latitude":36.17,"longitude":-119.746},"featureId":"CA"},"charOffset":477},{"location":{"geoType":"USCITY","geoName":"White House, District Of Columbia, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":2474},{"location":{"geoType":"USCITY","geoName":"Oakland, California, United States","countryCode":"US","adm1Code":"USCA","adm2Code":"CA001","geoPoint":{"latitude":37.8044,"longitude":-122.271},"featureId":"277566"},"charOffset":449},{"location":{"geoType":"USCITY","geoName":"Washington, Washington, United States","countryCode":"US","adm1Code":"USDC","adm2Code":"DC001","geoPoint":{"latitude":38.8951,"longitude":-77.0364},"featureId":"531871"},"charOffset":172}]["donald trump","dick gephardt","leon panetta"][{"person":"Donald Trump","charOffset":87},{"person":"Dick Gephardt","charOffset":1871},{"person":"Leon Panetta","charOffset":1947}]["white house","justice department","cnn"][{"organisation":"White House","charOffset":2474},{"organisation":"Justice Department","charOffset":1973},{"organisation":"Cnn","charOffset":4}]{"tone":-3.7344398,"positiveScore":1.659751,"negativeScore":5.394191,"polarity":7.0539417,"activityReferenceDensity":23.443983,"selfGroupReferenceDensity":0.41493776,"wordCount":455}[][{"gcamCode":"wc","gcamValue":455},{"gcamCode":"c12.1","gcamValue":22},{"gcamCode":"c12.10","gcamValue":48},{"gcamCode":"c12.12","gcamValue":18},{"gcamCode":"c12.13","gcamValue":21},{"gcamCode":"c12.14","gcamValue":20},{"gcamCode":"c12.3","gcamValue":9},{"gcamCode":"c12.4","gcamValue":3},{"gcamCode":"c12.5","gcamValue":13},{"gcamCode":"c12.7","gcamValue":27},{"gcamCode":"c12.8","gcamValue":22},{"gcamCode":"c12.9","gcamValue":31},{"gcamCode":"c13.12","gcamValue":1},{"gcamCode":"c13.4","gcamValue":9},{"gcamCode":"c13.7","gcamValue":4},{"gcamCode":"c14.1","gcamValue":29},{"gcamCode":"c14.10","gcamValue":11},{"gcamCode":"c14.11","gcamValue":30},{"gcamCode":"c14.2","gcamValue":28},{"gcamCode":"c14.3","gcamValue":32},{"gcamCode":"c14.4","gcamValue":3},{"gcamCode":"c14.5","gcamValue":47},{"gcamCode":"c14.7","gcamValue":12},{"gcamCode":"c14.8","gcamValue":2},{"gcamCode":"c14.9","gcamValue":2},{"gcamCode":"c15.10","gcamValue":1},{"gcamCode":"c15.103","gcamValue":1},{"gcamCode":"c15.112","gcamValue":1},{"gcamCode":"c15.197","gcamValue":3},{"gcamCode":"c15.201","gcamValue":2},{"gcamCode":"c15.211","gcamValue":1},{"gcamCode":"c15.233","gcamValue":1},{"gcamCode":"c15.248","gcamValue":2},{"gcamCode":"c15.26","gcamValue":1},{"gcamCode":"c15.277","gcamValue":1},{"gcamCode":"c15.57","gcamValue":1},{"gcamCode":"c15.86","gcamValue":2},{"gcamCode":"c16.1","gcamValue":1},{"gcamCode":"c16.100","gcamValue":7},{"gcamCode":"c16.101","gcamValue":11},{"gcamCode":"c16.102","gcamValue":1},{"gcamCode":"c16.105","gcamValue":8},{"gcamCode":"c16.106","gcamValue":5},{"gcamCode":"c16.109","gcamValue":11},{"gcamCode":"c16.11","gcamValue":1},{"gcamCode":"c16.110","gcamValue":62},{"gcamCode":"c16.113","gcamValue":4},{"gcamCode":"c16.114","gcamValue":14},{"gcamCode":"c16.115","gcamValue":3},{"gcamCode":"c16.116","gcamValue":10},{"gcamCode":"c16.117","gcamValue":16},{"gcamCode":"c16.118","gcamValue":17},{"gcamCode":"c16.12","gcamValue":28},{"gcamCode":"c16.120","gcamValue":24},{"gcamCode":"c16.121","gcamValue":82},{"gcamCode":"c16.122","gcamValue":3},{"gcamCode":"c16.124","gcamValue":2},{"gcamCode":"c16.125","gcamValue":17},{"gcamCode":"c16.126","gcamValue":19},{"gcamCode":"c16.127","gcamValue":32},{"gcamCode":"c16.128","gcamValue":3},{"gcamCode":"c16.129","gcamValue":46},{"gcamCode":"c16.13","gcamValue":9},{"gcamCode":"c16.130","gcamValue":13},{"gcamCode":"c16.131","gcamValue":7},{"gcamCode":"c16.133","gcamValue":1},{"gcamCode":"c16.134","gcamValue":38},{"gcamCode":"c16.135","gcamValue":3},{"gcamCode":"c16.137","gcamValue":1},{"gcamCode":"c16.138","gcamValue":5},{"gcamCode":"c16.139","gcamValue":5},{"gcamCode":"c16.14","gcamValue":8},{"gcamCode":"c16.140","gcamValue":19},{"gcamCode":"c16.143","gcamValue":2},{"gcamCode":"c16.145","gcamValue":25},{"gcamCode":"c16.146","gcamValue":39},{"gcamCode":"c16.147","gcamValue":2},{"gcamCode":"c16.149","gcamValue":1},{"gcamCode":"c16.150","gcamValue":4},{"gcamCode":"c16.152","gcamValue":2},{"gcamCode":"c16.153","gcamValue":18},{"gcamCode":"c16.155","gcamValue":1},{"gcamCode":"c16.156","gcamValue":3},{"gcamCode":"c16.157","gcamValue":19},{"gcamCode":"c16.158","gcamValue":1},{"gcamCode":"c16.159","gcamValue":36},{"gcamCode":"c16.16","gcamValue":14},{"gcamCode":"c16.161","gcamValue":28},{"gcamCode":"c16.162","gcamValue":37},{"gcamCode":"c16.163","gcamValue":40},{"gcamCode":"c16.164","gcamValue":9},{"gcamCode":"c16.165","gcamValue":11},{"gcamCode":"c16.167","gcamValue":3},{"gcamCode":"c16.17","gcamValue":1},{"gcamCode":"c16.19","gcamValue":10},{"gcamCode":"c16.2","gcamValue":68},{"gcamCode":"c16.20","gcamValue":3},{"gcamCode":"c16.21","gcamValue":5},{"gcamCode":"c16.22","gcamValue":9},{"gcamCode":"c16.23","gcamValue":4},{"gcamCode":"c16.24","gcamValue":1},{"gcamCode":"c16.26","gcamValue":35},{"gcamCode":"c16.27","gcamValue":3},{"gcamCode":"c16.28","gcamValue":1},{"gcamCode":"c16.3","gcamValue":18},{"gcamCode":"c16.30","gcamValue":1},{"gcamCode":"c16.31","gcamValue":37},{"gcamCode":"c16.32","gcamValue":12},{"gcamCode":"c16.33","gcamValue":21},{"gcamCode":"c16.34","gcamValue":1},{"gcamCode":"c16.35","gcamValue":18},{"gcamCode":"c16.36","gcamValue":2},{"gcamCode":"c16.37","gcamValue":31},{"gcamCode":"c16.38","gcamValue":9},{"gcamCode":"c16.4","gcamValue":19},{"gcamCode":"c16.41","gcamValue":5},{"gcamCode":"c16.45","gcamValue":7},{"gcamCode":"c16.46","gcamValue":6},{"gcamCode":"c16.47","gcamValue":75},{"gcamCode":"c16.48","gcamValue":11},{"gcamCode":"c16.49","gcamValue":1},{"gcamCode":"c16.51","gcamValue":9},{"gcamCode":"c16.52","gcamValue":32},{"gcamCode":"c16.53","gcamValue":1},{"gcamCode":"c16.54","gcamValue":3},{"gcamCode":"c16.55","gcamValue":1},{"gcamCode":"c16.56","gcamValue":5},{"gcamCode":"c16.57","gcamValue":239},{"gcamCode":"c16.58","gcamValue":29},{"gcamCode":"c16.59","gcamValue":2},{"gcamCode":"c16.6","gcamValue":32},{"gcamCode":"c16.60","gcamValue":7},{"gcamCode":"c16.62","gcamValue":6},{"gcamCode":"c16.63","gcamValue":2},{"gcamCode":"c16.64","gcamValue":7},{"gcamCode":"c16.65","gcamValue":7},{"gcamCode":"c16.66","gcamValue":13},{"gcamCode":"c16.68","gcamValue":13},{"gcamCode":"c16.69","gcamValue":6},{"gcamCode":"c16.7","gcamValue":6},{"gcamCode":"c16.70","gcamValue":31},{"gcamCode":"c16.71","gcamValue":10},{"gcamCode":"c16.72","gcamValue":4},{"gcamCode":"c16.73","gcamValue":3},{"gcamCode":"c16.74","gcamValue":6},{"gcamCode":"c16.75","gcamValue":5},{"gcamCode":"c16.76","gcamValue":1},{"gcamCode":"c16.77","gcamValue":3},{"gcamCode":"c16.78","gcamValue":16},{"gcamCode":"c16.79","gcamValue":1},{"gcamCode":"c16.80","gcamValue":1},{"gcamCode":"c16.81","gcamValue":1},{"gcamCode":"c16.82","gcamValue":2},{"gcamCode":"c16.84","gcamValue":21},{"gcamCode":"c16.85","gcamValue":2},{"gcamCode":"c16.87","gcamValue":89},{"gcamCode":"c16.88","gcamValue":46},{"gcamCode":"c16.89","gcamValue":14},{"gcamCode":"c16.9","gcamValue":1},{"gcamCode":"c16.90","gcamValue":13},{"gcamCode":"c16.91","gcamValue":25},{"gcamCode":"c16.92","gcamValue":32},{"gcamCode":"c16.93","gcamValue":3},{"gcamCode":"c16.94","gcamValue":29},{"gcamCode":"c16.95","gcamValue":45},{"gcamCode":"c16.96","gcamValue":11},{"gcamCode":"c16.97","gcamValue":1},{"gcamCode":"c16.98","gcamValue":28},{"gcamCode":"c17.1","gcamValue":115},{"gcamCode":"c17.10","gcamValue":36},{"gcamCode":"c17.11","gcamValue":82},{"gcamCode":"c17.12","gcamValue":21},{"gcamCode":"c17.13","gcamValue":1},{"gcamCode":"c17.14","gcamValue":4},{"gcamCode":"c17.15","gcamValue":47},{"gcamCode":"c17.16","gcamValue":26},{"gcamCode":"c17.18","gcamValue":17},{"gcamCode":"c17.19","gcamValue":27},{"gcamCode":"c17.2","gcamValue":16},{"gcamCode":"c17.20","gcamValue":4},{"gcamCode":"c17.21","gcamValue":2},{"gcamCode":"c17.22","gcamValue":12},{"gcamCode":"c17.23","gcamValue":5},{"gcamCode":"c17.24","gcamValue":37},{"gcamCode":"c17.25","gcamValue":11},{"gcamCode":"c17.26","gcamValue":6},{"gcamCode":"c17.27","gcamValue":36},{"gcamCode":"c17.28","gcamValue":3},{"gcamCode":"c17.29","gcamValue":16},{"gcamCode":"c17.3","gcamValue":1},{"gcamCode":"c17.30","gcamValue":4},{"gcamCode":"c17.31","gcamValue":17},{"gcamCode":"c17.32","gcamValue":10},{"gcamCode":"c17.33","gcamValue":28},{"gcamCode":"c17.34","gcamValue":19},{"gcamCode":"c17.35","gcamValue":6},{"gcamCode":"c17.36","gcamValue":16},{"gcamCode":"c17.37","gcamValue":12},{"gcamCode":"c17.38","gcamValue":2},{"gcamCode":"c17.39","gcamValue":11},{"gcamCode":"c17.4","gcamValue":94},{"gcamCode":"c17.40","gcamValue":6},{"gcamCode":"c17.41","gcamValue":16},{"gcamCode":"c17.42","gcamValue":34},{"gcamCode":"c17.43","gcamValue":30},{"gcamCode":"c17.5","gcamValue":107},{"gcamCode":"c17.6","gcamValue":2},{"gcamCode":"c17.7","gcamValue":62},{"gcamCode":"c17.8","gcamValue":46},{"gcamCode":"c17.9","gcamValue":7},{"gcamCode":"c18.100","gcamValue":1},{"gcamCode":"c18.101","gcamValue":1},{"gcamCode":"c18.137","gcamValue":5},{"gcamCode":"c18.138","gcamValue":1},{"gcamCode":"c18.139","gcamValue":4},{"gcamCode":"c18.180","gcamValue":1},{"gcamCode":"c18.193","gcamValue":15},{"gcamCode":"c18.21","gcamValue":4},{"gcamCode":"c18.27","gcamValue":1},{"gcamCode":"c18.342","gcamValue":3},{"gcamCode":"c18.35","gcamValue":6},{"gcamCode":"c18.92","gcamValue":4},{"gcamCode":"c2.1","gcamValue":19},{"gcamCode":"c2.100","gcamValue":2},{"gcamCode":"c2.101","gcamValue":8},{"gcamCode":"c2.102","gcamValue":7},{"gcamCode":"c2.103","gcamValue":1},{"gcamCode":"c2.104","gcamValue":70},{"gcamCode":"c2.107","gcamValue":6},{"gcamCode":"c2.108","gcamValue":2},{"gcamCode":"c2.109","gcamValue":9},{"gcamCode":"c2.11","gcamValue":12},{"gcamCode":"c2.110","gcamValue":7},{"gcamCode":"c2.112","gcamValue":3},{"gcamCode":"c2.113","gcamValue":4},{"gcamCode":"c2.114","gcamValue":31},{"gcamCode":"c2.115","gcamValue":5},{"gcamCode":"c2.116","gcamValue":22},{"gcamCode":"c2.117","gcamValue":1},{"gcamCode":"c2.119","gcamValue":125},{"gcamCode":"c2.12","gcamValue":7},{"gcamCode":"c2.120","gcamValue":9},{"gcamCode":"c2.121","gcamValue":21},{"gcamCode":"c2.122","gcamValue":6},{"gcamCode":"c2.123","gcamValue":2},{"gcamCode":"c2.124","gcamValue":2},{"gcamCode":"c2.125","gcamValue":15},{"gcamCode":"c2.126","gcamValue":12},{"gcamCode":"c2.127","gcamValue":44},{"gcamCode":"c2.128","gcamValue":16},{"gcamCode":"c2.129","gcamValue":78},{"gcamCode":"c2.130","gcamValue":3},{"gcamCode":"c2.131","gcamValue":4},{"gcamCode":"c2.132","gcamValue":30},{"gcamCode":"c2.133","gcamValue":3},{"gcamCode":"c2.134","gcamValue":11},{"gcamCode":"c2.135","gcamValue":8},{"gcamCode":"c2.136","gcamValue":2},{"gcamCode":"c2.137","gcamValue":1},{"gcamCode":"c2.138","gcamValue":2},{"gcamCode":"c2.139","gcamValue":2},{"gcamCode":"c2.14","gcamValue":43},{"gcamCode":"c2.140","gcamValue":4},{"gcamCode":"c2.141","gcamValue":27},{"gcamCode":"c2.142","gcamValue":4},{"gcamCode":"c2.143","gcamValue":88},{"gcamCode":"c2.144","gcamValue":11},{"gcamCode":"c2.145","gcamValue":2},{"gcamCode":"c2.146","gcamValue":9},{"gcamCode":"c2.147","gcamValue":78},{"gcamCode":"c2.148","gcamValue":35},{"gcamCode":"c2.15","gcamValue":27},{"gcamCode":"c2.150","gcamValue":3},{"gcamCode":"c2.151","gcamValue":4},{"gcamCode":"c2.152","gcamValue":2},{"gcamCode":"c2.153","gcamValue":13},{"gcamCode":"c2.154","gcamValue":49},{"gcamCode":"c2.155","gcamValue":29},{"gcamCode":"c2.156","gcamValue":55},{"gcamCode":"c2.157","gcamValue":26},{"gcamCode":"c2.158","gcamValue":17},{"gcamCode":"c2.159","gcamValue":2},{"gcamCode":"c2.160","gcamValue":8},{"gcamCode":"c2.161","gcamValue":2},{"gcamCode":"c2.162","gcamValue":3},{"gcamCode":"c2.166","gcamValue":5},{"gcamCode":"c2.167","gcamValue":1},{"gcamCode":"c2.169","gcamValue":3},{"gcamCode":"c2.17","gcamValue":5},{"gcamCode":"c2.170","gcamValue":3},{"gcamCode":"c2.171","gcamValue":1},{"gcamCode":"c2.172","gcamValue":1},{"gcamCode":"c2.173","gcamValue":7},{"gcamCode":"c2.176","gcamValue":3},{"gcamCode":"c2.177","gcamValue":17},{"gcamCode":"c2.179","gcamValue":13},{"gcamCode":"c2.18","gcamValue":5},{"gcamCode":"c2.180","gcamValue":5},{"gcamCode":"c2.181","gcamValue":6},{"gcamCode":"c2.183","gcamValue":6},{"gcamCode":"c2.185","gcamValue":91},{"gcamCode":"c2.186","gcamValue":5},{"gcamCode":"c2.187","gcamValue":15},{"gcamCode":"c2.188","gcamValue":1},{"gcamCode":"c2.189","gcamValue":1},{"gcamCode":"c2.19","gcamValue":5},{"gcamCode":"c2.191","gcamValue":10},{"gcamCode":"c2.192","gcamValue":3},{"gcamCode":"c2.193","gcamValue":32},{"gcamCode":"c2.194","gcamValue":4},{"gcamCode":"c2.195","gcamValue":72},{"gcamCode":"c2.196","gcamValue":9},{"gcamCode":"c2.197","gcamValue":6},{"gcamCode":"c2.198","gcamValue":39},{"gcamCode":"c2.199","gcamValue":11},{"gcamCode":"c2.2","gcamValue":3},{"gcamCode":"c2.20","gcamValue":4},{"gcamCode":"c2.200","gcamValue":2},{"gcamCode":"c2.201","gcamValue":3},{"gcamCode":"c2.203","gcamValue":22},{"gcamCode":"c2.204","gcamValue":28},{"gcamCode":"c2.205","gcamValue":4},{"gcamCode":"c2.206","gcamValue":3},{"gcamCode":"c2.207","gcamValue":5},{"gcamCode":"c2.209","gcamValue":8},{"gcamCode":"c2.210","gcamValue":33},{"gcamCode":"c2.211","gcamValue":4},{"gcamCode":"c2.213","gcamValue":10},{"gcamCode":"c2.214","gcamValue":20},{"gcamCode":"c2.216","gcamValue":2},{"gcamCode":"c2.217","gcamValue":8},{"gcamCode":"c2.220","gcamValue":10},{"gcamCode":"c2.221","gcamValue":11},{"gcamCode":"c2.222","gcamValue":4},{"gcamCode":"c2.223","gcamValue":15},{"gcamCode":"c2.225","gcamValue":12},{"gcamCode":"c2.226","gcamValue":7},{"gcamCode":"c2.227","gcamValue":1},{"gcamCode":"c2.23","gcamValue":35},{"gcamCode":"c2.24","gcamValue":1},{"gcamCode":"c2.25","gcamValue":24},{"gcamCode":"c2.26","gcamValue":18},{"gcamCode":"c2.27","gcamValue":18},{"gcamCode":"c2.28","gcamValue":3},{"gcamCode":"c2.30","gcamValue":18},{"gcamCode":"c2.31","gcamValue":13},{"gcamCode":"c2.32","gcamValue":3},{"gcamCode":"c2.33","gcamValue":7},{"gcamCode":"c2.34","gcamValue":26},{"gcamCode":"c2.35","gcamValue":5},{"gcamCode":"c2.36","gcamValue":2},{"gcamCode":"c2.37","gcamValue":3},{"gcamCode":"c2.38","gcamValue":1},{"gcamCode":"c2.39","gcamValue":95},{"gcamCode":"c2.40","gcamValue":5},{"gcamCode":"c2.42","gcamValue":3},{"gcamCode":"c2.44","gcamValue":16},{"gcamCode":"c2.45","gcamValue":34},{"gcamCode":"c2.46","gcamValue":27},{"gcamCode":"c2.47","gcamValue":4},{"gcamCode":"c2.48","gcamValue":9},{"gcamCode":"c2.49","gcamValue":1},{"gcamCode":"c2.50","gcamValue":5},{"gcamCode":"c2.52","gcamValue":18},{"gcamCode":"c2.53","gcamValue":2},{"gcamCode":"c2.54","gcamValue":22},{"gcamCode":"c2.55","gcamValue":2},{"gcamCode":"c2.56","gcamValue":1},{"gcamCode":"c2.57","gcamValue":6},{"gcamCode":"c2.58","gcamValue":13},{"gcamCode":"c2.6","gcamValue":3},{"gcamCode":"c2.61","gcamValue":3},{"gcamCode":"c2.62","gcamValue":5},{"gcamCode":"c2.64","gcamValue":16},{"gcamCode":"c2.65","gcamValue":5},{"gcamCode":"c2.68","gcamValue":2},{"gcamCode":"c2.70","gcamValue":3},{"gcamCode":"c2.71","gcamValue":4},{"gcamCode":"c2.73","gcamValue":8},{"gcamCode":"c2.74","gcamValue":3},{"gcamCode":"c2.75","gcamValue":48},{"gcamCode":"c2.76","gcamValue":335},{"gcamCode":"c2.77","gcamValue":51},{"gcamCode":"c2.78","gcamValue":47},{"gcamCode":"c2.79","gcamValue":14},{"gcamCode":"c2.80","gcamValue":61},{"gcamCode":"c2.81","gcamValue":3},{"gcamCode":"c2.82","gcamValue":17},{"gcamCode":"c2.83","gcamValue":2},{"gcamCode":"c2.84","gcamValue":1},{"gcamCode":"c2.86","gcamValue":19},{"gcamCode":"c2.87","gcamValue":4},{"gcamCode":"c2.88","gcamValue":11},{"gcamCode":"c2.89","gcamValue":26},{"gcamCode":"c2.90","gcamValue":3},{"gcamCode":"c2.93","gcamValue":9},{"gcamCode":"c2.95","gcamValue":48},{"gcamCode":"c2.96","gcamValue":4},{"gcamCode":"c2.97","gcamValue":22},{"gcamCode":"c2.98","gcamValue":15},{"gcamCode":"c2.99","gcamValue":4},{"gcamCode":"c25.1","gcamValue":1},{"gcamCode":"c25.2","gcamValue":1},{"gcamCode":"c25.3","gcamValue":1},{"gcamCode":"c25.5","gcamValue":8},{"gcamCode":"c25.6","gcamValue":1},{"gcamCode":"c25.7","gcamValue":4},{"gcamCode":"c3.1","gcamValue":43},{"gcamCode":"c3.2","gcamValue":29},{"gcamCode":"c35.1","gcamValue":4},{"gcamCode":"c35.10","gcamValue":1},{"gcamCode":"c35.11","gcamValue":1},{"gcamCode":"c35.12","gcamValue":2},{"gcamCode":"c35.14","gcamValue":2},{"gcamCode":"c35.15","gcamValue":9},{"gcamCode":"c35.2","gcamValue":5},{"gcamCode":"c35.20","gcamValue":25},{"gcamCode":"c35.22","gcamValue":1},{"gcamCode":"c35.23","gcamValue":2},{"gcamCode":"c35.24","gcamValue":3},{"gcamCode":"c35.25","gcamValue":5},{"gcamCode":"c35.26","gcamValue":8},{"gcamCode":"c35.28","gcamValue":1},{"gcamCode":"c35.29","gcamValue":3},{"gcamCode":"c35.3","gcamValue":1},{"gcamCode":"c35.31","gcamValue":19},{"gcamCode":"c35.32","gcamValue":11},{"gcamCode":"c35.33","gcamValue":48},{"gcamCode":"c35.4","gcamValue":1},{"gcamCode":"c35.5","gcamValue":1},{"gcamCode":"c35.7","gcamValue":2},{"gcamCode":"c35.8","gcamValue":1},{"gcamCode":"c39.10","gcamValue":1},{"gcamCode":"c39.12","gcamValue":10},{"gcamCode":"c39.17","gcamValue":2},{"gcamCode":"c39.18","gcamValue":2},{"gcamCode":"c39.2","gcamValue":20},{"gcamCode":"c39.28","gcamValue":2},{"gcamCode":"c39.3","gcamValue":32},{"gcamCode":"c39.30","gcamValue":6},{"gcamCode":"c39.33","gcamValue":1},{"gcamCode":"c39.36","gcamValue":6},{"gcamCode":"c39.37","gcamValue":22},{"gcamCode":"c39.38","gcamValue":1},{"gcamCode":"c39.39","gcamValue":14},{"gcamCode":"c39.4","gcamValue":24},{"gcamCode":"c39.41","gcamValue":2},{"gcamCode":"c39.5","gcamValue":6},{"gcamCode":"c39.6","gcamValue":1},{"gcamCode":"c39.7","gcamValue":1},{"gcamCode":"c39.9","gcamValue":1},{"gcamCode":"c4.13","gcamValue":4},{"gcamCode":"c4.15","gcamValue":8},{"gcamCode":"c4.16","gcamValue":1},{"gcamCode":"c4.23","gcamValue":5},{"gcamCode":"c4.26","gcamValue":1},{"gcamCode":"c4.7","gcamValue":4},{"gcamCode":"c40.8","gcamValue":1},{"gcamCode":"c41.1","gcamValue":15},{"gcamCode":"c5.10","gcamValue":40},{"gcamCode":"c5.11","gcamValue":13},{"gcamCode":"c5.12","gcamValue":80},{"gcamCode":"c5.14","gcamValue":1},{"gcamCode":"c5.16","gcamValue":1},{"gcamCode":"c5.17","gcamValue":1},{"gcamCode":"c5.19","gcamValue":3},{"gcamCode":"c5.20","gcamValue":1},{"gcamCode":"c5.21","gcamValue":4},{"gcamCode":"c5.22","gcamValue":5},{"gcamCode":"c5.23","gcamValue":4},{"gcamCode":"c5.24","gcamValue":7},{"gcamCode":"c5.26","gcamValue":3},{"gcamCode":"c5.27","gcamValue":8},{"gcamCode":"c5.28","gcamValue":7},{"gcamCode":"c5.29","gcamValue":3},{"gcamCode":"c5.30","gcamValue":34},{"gcamCode":"c5.31","gcamValue":2},{"gcamCode":"c5.32","gcamValue":6},{"gcamCode":"c5.34","gcamValue":9},{"gcamCode":"c5.35","gcamValue":10},{"gcamCode":"c5.36","gcamValue":20},{"gcamCode":"c5.37","gcamValue":3},{"gcamCode":"c5.4","gcamValue":7},{"gcamCode":"c5.40","gcamValue":28},{"gcamCode":"c5.41","gcamValue":1},{"gcamCode":"c5.42","gcamValue":2},{"gcamCode":"c5.43","gcamValue":5},{"gcamCode":"c5.44","gcamValue":4},{"gcamCode":"c5.45","gcamValue":2},{"gcamCode":"c5.46","gcamValue":76},{"gcamCode":"c5.47","gcamValue":7},{"gcamCode":"c5.48","gcamValue":6},{"gcamCode":"c5.49","gcamValue":22},{"gcamCode":"c5.5","gcamValue":8},{"gcamCode":"c5.50","gcamValue":32},{"gcamCode":"c5.51","gcamValue":17},{"gcamCode":"c5.52","gcamValue":39},{"gcamCode":"c5.53","gcamValue":60},{"gcamCode":"c5.54","gcamValue":20},{"gcamCode":"c5.56","gcamValue":4},{"gcamCode":"c5.58","gcamValue":2},{"gcamCode":"c5.59","gcamValue":1},{"gcamCode":"c5.6","gcamValue":6},{"gcamCode":"c5.60","gcamValue":7},{"gcamCode":"c5.61","gcamValue":27},{"gcamCode":"c5.62","gcamValue":195},{"gcamCode":"c5.7","gcamValue":18},{"gcamCode":"c5.8","gcamValue":15},{"gcamCode":"c5.9","gcamValue":27},{"gcamCode":"c6.1","gcamValue":24},{"gcamCode":"c6.2","gcamValue":3},{"gcamCode":"c6.4","gcamValue":23},{"gcamCode":"c6.5","gcamValue":2},{"gcamCode":"c6.6","gcamValue":2},{"gcamCode":"c7.1","gcamValue":29},{"gcamCode":"c7.2","gcamValue":22},{"gcamCode":"c8.10","gcamValue":2},{"gcamCode":"c8.11","gcamValue":1},{"gcamCode":"c8.12","gcamValue":1},{"gcamCode":"c8.17","gcamValue":2},{"gcamCode":"c8.2","gcamValue":11},{"gcamCode":"c8.22","gcamValue":9},{"gcamCode":"c8.23","gcamValue":15},{"gcamCode":"c8.26","gcamValue":1},{"gcamCode":"c8.33","gcamValue":1},{"gcamCode":"c8.37","gcamValue":4},{"gcamCode":"c8.38","gcamValue":7},{"gcamCode":"c8.39","gcamValue":5},{"gcamCode":"c8.4","gcamValue":5},{"gcamCode":"c8.40","gcamValue":6},{"gcamCode":"c8.41","gcamValue":8},{"gcamCode":"c8.42","gcamValue":13},{"gcamCode":"c8.43","gcamValue":26},{"gcamCode":"c8.8","gcamValue":2},{"gcamCode":"c9.1","gcamValue":9},{"gcamCode":"c9.10","gcamValue":4},{"gcamCode":"c9.1005","gcamValue":16},{"gcamCode":"c9.1006","gcamValue":3},{"gcamCode":"c9.1007","gcamValue":9},{"gcamCode":"c9.1008","gcamValue":5},{"gcamCode":"c9.1009","gcamValue":6},{"gcamCode":"c9.1010","gcamValue":3},{"gcamCode":"c9.1011","gcamValue":17},{"gcamCode":"c9.1012","gcamValue":1},{"gcamCode":"c9.1018","gcamValue":4},{"gcamCode":"c9.1030","gcamValue":2},{"gcamCode":"c9.104","gcamValue":1},{"gcamCode":"c9.107","gcamValue":2},{"gcamCode":"c9.108","gcamValue":1},{"gcamCode":"c9.109","gcamValue":4},{"gcamCode":"c9.110","gcamValue":1},{"gcamCode":"c9.111","gcamValue":2},{"gcamCode":"c9.113","gcamValue":3},{"gcamCode":"c9.115","gcamValue":1},{"gcamCode":"c9.116","gcamValue":3},{"gcamCode":"c9.117","gcamValue":8},{"gcamCode":"c9.118","gcamValue":3},{"gcamCode":"c9.119","gcamValue":2},{"gcamCode":"c9.122","gcamValue":11},{"gcamCode":"c9.124","gcamValue":1},{"gcamCode":"c9.125","gcamValue":1},{"gcamCode":"c9.127","gcamValue":1},{"gcamCode":"c9.128","gcamValue":19},{"gcamCode":"c9.129","gcamValue":1},{"gcamCode":"c9.130","gcamValue":1},{"gcamCode":"c9.134","gcamValue":1},{"gcamCode":"c9.137","gcamValue":1},{"gcamCode":"c9.138","gcamValue":8},{"gcamCode":"c9.139","gcamValue":1},{"gcamCode":"c9.14","gcamValue":1},{"gcamCode":"c9.141","gcamValue":2},{"gcamCode":"c9.143","gcamValue":1},{"gcamCode":"c9.144","gcamValue":1},{"gcamCode":"c9.145","gcamValue":5},{"gcamCode":"c9.147","gcamValue":1},{"gcamCode":"c9.148","gcamValue":2},{"gcamCode":"c9.149","gcamValue":3},{"gcamCode":"c9.15","gcamValue":3},{"gcamCode":"c9.151","gcamValue":1},{"gcamCode":"c9.153","gcamValue":1},{"gcamCode":"c9.154","gcamValue":1},{"gcamCode":"c9.156","gcamValue":1},{"gcamCode":"c9.158","gcamValue":14},{"gcamCode":"c9.159","gcamValue":1},{"gcamCode":"c9.160","gcamValue":3},{"gcamCode":"c9.161","gcamValue":2},{"gcamCode":"c9.162","gcamValue":5},{"gcamCode":"c9.163","gcamValue":1},{"gcamCode":"c9.164","gcamValue":6},{"gcamCode":"c9.165","gcamValue":8},{"gcamCode":"c9.166","gcamValue":5},{"gcamCode":"c9.167","gcamValue":7},{"gcamCode":"c9.168","gcamValue":2},{"gcamCode":"c9.173","gcamValue":8},{"gcamCode":"c9.174","gcamValue":3},{"gcamCode":"c9.175","gcamValue":4},{"gcamCode":"c9.176","gcamValue":2},{"gcamCode":"c9.177","gcamValue":4},{"gcamCode":"c9.178","gcamValue":5},{"gcamCode":"c9.182","gcamValue":8},{"gcamCode":"c9.183","gcamValue":4},{"gcamCode":"c9.184","gcamValue":6},{"gcamCode":"c9.187","gcamValue":4},{"gcamCode":"c9.188","gcamValue":3},{"gcamCode":"c9.190","gcamValue":5},{"gcamCode":"c9.191","gcamValue":1},{"gcamCode":"c9.192","gcamValue":3},{"gcamCode":"c9.193","gcamValue":9},{"gcamCode":"c9.194","gcamValue":1},{"gcamCode":"c9.195","gcamValue":2},{"gcamCode":"c9.196","gcamValue":3},{"gcamCode":"c9.198","gcamValue":12},{"gcamCode":"c9.20","gcamValue":2},{"gcamCode":"c9.200","gcamValue":5},{"gcamCode":"c9.201","gcamValue":1},{"gcamCode":"c9.203","gcamValue":1},{"gcamCode":"c9.205","gcamValue":3},{"gcamCode":"c9.207","gcamValue":2},{"gcamCode":"c9.209","gcamValue":1},{"gcamCode":"c9.210","gcamValue":4},{"gcamCode":"c9.211","gcamValue":1},{"gcamCode":"c9.212","gcamValue":1},{"gcamCode":"c9.213","gcamValue":1},{"gcamCode":"c9.217","gcamValue":1},{"gcamCode":"c9.219","gcamValue":1},{"gcamCode":"c9.220","gcamValue":1},{"gcamCode":"c9.221","gcamValue":4},{"gcamCode":"c9.224","gcamValue":2},{"gcamCode":"c9.23","gcamValue":1},{"gcamCode":"c9.230","gcamValue":1},{"gcamCode":"c9.233","gcamValue":10},{"gcamCode":"c9.234","gcamValue":4},{"gcamCode":"c9.235","gcamValue":12},{"gcamCode":"c9.237","gcamValue":7},{"gcamCode":"c9.238","gcamValue":3},{"gcamCode":"c9.24","gcamValue":1},{"gcamCode":"c9.241","gcamValue":5},{"gcamCode":"c9.242","gcamValue":6},{"gcamCode":"c9.243","gcamValue":4},{"gcamCode":"c9.244","gcamValue":1},{"gcamCode":"c9.246","gcamValue":1},{"gcamCode":"c9.247","gcamValue":4},{"gcamCode":"c9.25","gcamValue":3},{"gcamCode":"c9.250","gcamValue":1},{"gcamCode":"c9.252","gcamValue":2},{"gcamCode":"c9.26","gcamValue":1},{"gcamCode":"c9.263","gcamValue":1},{"gcamCode":"c9.270","gcamValue":1},{"gcamCode":"c9.271","gcamValue":2},{"gcamCode":"c9.273","gcamValue":2},{"gcamCode":"c9.274","gcamValue":3},{"gcamCode":"c9.275","gcamValue":3},{"gcamCode":"c9.276","gcamValue":5},{"gcamCode":"c9.277","gcamValue":1},{"gcamCode":"c9.28","gcamValue":1},{"gcamCode":"c9.280","gcamValue":3},{"gcamCode":"c9.281","gcamValue":1},{"gcamCode":"c9.282","gcamValue":1},{"gcamCode":"c9.286","gcamValue":1},{"gcamCode":"c9.288","gcamValue":1},{"gcamCode":"c9.289","gcamValue":1},{"gcamCode":"c9.290","gcamValue":1},{"gcamCode":"c9.294","gcamValue":1},{"gcamCode":"c9.3","gcamValue":6},{"gcamCode":"c9.300","gcamValue":6},{"gcamCode":"c9.301","gcamValue":1},{"gcamCode":"c9.302","gcamValue":1},{"gcamCode":"c9.303","gcamValue":2},{"gcamCode":"c9.304","gcamValue":1},{"gcamCode":"c9.307","gcamValue":1},{"gcamCode":"c9.308","gcamValue":2},{"gcamCode":"c9.31","gcamValue":1},{"gcamCode":"c9.312","gcamValue":1},{"gcamCode":"c9.313","gcamValue":1},{"gcamCode":"c9.319","gcamValue":1},{"gcamCode":"c9.32","gcamValue":1},{"gcamCode":"c9.321","gcamValue":1},{"gcamCode":"c9.322","gcamValue":1},{"gcamCode":"c9.326","gcamValue":1},{"gcamCode":"c9.33","gcamValue":8},{"gcamCode":"c9.332","gcamValue":1},{"gcamCode":"c9.337","gcamValue":1},{"gcamCode":"c9.339","gcamValue":1},{"gcamCode":"c9.34","gcamValue":2},{"gcamCode":"c9.340","gcamValue":3},{"gcamCode":"c9.35","gcamValue":5},{"gcamCode":"c9.351","gcamValue":1},{"gcamCode":"c9.358","gcamValue":3},{"gcamCode":"c9.36","gcamValue":1},{"gcamCode":"c9.37","gcamValue":2},{"gcamCode":"c9.372","gcamValue":1},{"gcamCode":"c9.378","gcamValue":2},{"gcamCode":"c9.382","gcamValue":4},{"gcamCode":"c9.383","gcamValue":5},{"gcamCode":"c9.384","gcamValue":4},{"gcamCode":"c9.389","gcamValue":1},{"gcamCode":"c9.39","gcamValue":4},{"gcamCode":"c9.4","gcamValue":1},{"gcamCode":"c9.40","gcamValue":3},{"gcamCode":"c9.403","gcamValue":1},{"gcamCode":"c9.405","gcamValue":1},{"gcamCode":"c9.413","gcamValue":1},{"gcamCode":"c9.416","gcamValue":1},{"gcamCode":"c9.419","gcamValue":2},{"gcamCode":"c9.42","gcamValue":3},{"gcamCode":"c9.420","gcamValue":4},{"gcamCode":"c9.430","gcamValue":2},{"gcamCode":"c9.437","gcamValue":1},{"gcamCode":"c9.44","gcamValue":4},{"gcamCode":"c9.440","gcamValue":2},{"gcamCode":"c9.447","gcamValue":1},{"gcamCode":"c9.448","gcamValue":1},{"gcamCode":"c9.45","gcamValue":1},{"gcamCode":"c9.459","gcamValue":1},{"gcamCode":"c9.46","gcamValue":2},{"gcamCode":"c9.460","gcamValue":4},{"gcamCode":"c9.467","gcamValue":1},{"gcamCode":"c9.468","gcamValue":1},{"gcamCode":"c9.47","gcamValue":2},{"gcamCode":"c9.472","gcamValue":1},{"gcamCode":"c9.473","gcamValue":2},{"gcamCode":"c9.474","gcamValue":1},{"gcamCode":"c9.476","gcamValue":2},{"gcamCode":"c9.479","gcamValue":4},{"gcamCode":"c9.48","gcamValue":3},{"gcamCode":"c9.480","gcamValue":1},{"gcamCode":"c9.481","gcamValue":2},{"gcamCode":"c9.488","gcamValue":1},{"gcamCode":"c9.489","gcamValue":5},{"gcamCode":"c9.49","gcamValue":2},{"gcamCode":"c9.490","gcamValue":1},{"gcamCode":"c9.493","gcamValue":1},{"gcamCode":"c9.494","gcamValue":1},{"gcamCode":"c9.495","gcamValue":1},{"gcamCode":"c9.496","gcamValue":2},{"gcamCode":"c9.498","gcamValue":9},{"gcamCode":"c9.5","gcamValue":3},{"gcamCode":"c9.500","gcamValue":3},{"gcamCode":"c9.501","gcamValue":1},{"gcamCode":"c9.502","gcamValue":3},{"gcamCode":"c9.504","gcamValue":3},{"gcamCode":"c9.507","gcamValue":3},{"gcamCode":"c9.508","gcamValue":1},{"gcamCode":"c9.511","gcamValue":9},{"gcamCode":"c9.513","gcamValue":6},{"gcamCode":"c9.518","gcamValue":2},{"gcamCode":"c9.519","gcamValue":4},{"gcamCode":"c9.521","gcamValue":3},{"gcamCode":"c9.522","gcamValue":6},{"gcamCode":"c9.523","gcamValue":1},{"gcamCode":"c9.528","gcamValue":1},{"gcamCode":"c9.531","gcamValue":2},{"gcamCode":"c9.537","gcamValue":4},{"gcamCode":"c9.54","gcamValue":7},{"gcamCode":"c9.540","gcamValue":1},{"gcamCode":"c9.542","gcamValue":1},{"gcamCode":"c9.546","gcamValue":1},{"gcamCode":"c9.547","gcamValue":1},{"gcamCode":"c9.549","gcamValue":2},{"gcamCode":"c9.55","gcamValue":2},{"gcamCode":"c9.550","gcamValue":1},{"gcamCode":"c9.551","gcamValue":2},{"gcamCode":"c9.554","gcamValue":1},{"gcamCode":"c9.556","gcamValue":2},{"gcamCode":"c9.56","gcamValue":2},{"gcamCode":"c9.560","gcamValue":8},{"gcamCode":"c9.561","gcamValue":2},{"gcamCode":"c9.562","gcamValue":3},{"gcamCode":"c9.564","gcamValue":4},{"gcamCode":"c9.57","gcamValue":1},{"gcamCode":"c9.570","gcamValue":4},{"gcamCode":"c9.571","gcamValue":3},{"gcamCode":"c9.574","gcamValue":2},{"gcamCode":"c9.575","gcamValue":4},{"gcamCode":"c9.576","gcamValue":5},{"gcamCode":"c9.579","gcamValue":5},{"gcamCode":"c9.58","gcamValue":2},{"gcamCode":"c9.580","gcamValue":2},{"gcamCode":"c9.589","gcamValue":3},{"gcamCode":"c9.590","gcamValue":2},{"gcamCode":"c9.592","gcamValue":1},{"gcamCode":"c9.597","gcamValue":6},{"gcamCode":"c9.599","gcamValue":5},{"gcamCode":"c9.61","gcamValue":2},{"gcamCode":"c9.613","gcamValue":6},{"gcamCode":"c9.615","gcamValue":1},{"gcamCode":"c9.616","gcamValue":1},{"gcamCode":"c9.618","gcamValue":5},{"gcamCode":"c9.619","gcamValue":5},{"gcamCode":"c9.620","gcamValue":2},{"gcamCode":"c9.621","gcamValue":4},{"gcamCode":"c9.624","gcamValue":9},{"gcamCode":"c9.625","gcamValue":3},{"gcamCode":"c9.626","gcamValue":2},{"gcamCode":"c9.627","gcamValue":2},{"gcamCode":"c9.629","gcamValue":4},{"gcamCode":"c9.630","gcamValue":1},{"gcamCode":"c9.632","gcamValue":2},{"gcamCode":"c9.635","gcamValue":4},{"gcamCode":"c9.638","gcamValue":1},{"gcamCode":"c9.64","gcamValue":2},{"gcamCode":"c9.640","gcamValue":6},{"gcamCode":"c9.642","gcamValue":13},{"gcamCode":"c9.645","gcamValue":1},{"gcamCode":"c9.646","gcamValue":3},{"gcamCode":"c9.647","gcamValue":1},{"gcamCode":"c9.648","gcamValue":7},{"gcamCode":"c9.649","gcamValue":1},{"gcamCode":"c9.65","gcamValue":1},{"gcamCode":"c9.650","gcamValue":4},{"gcamCode":"c9.652","gcamValue":2},{"gcamCode":"c9.653","gcamValue":12},{"gcamCode":"c9.654","gcamValue":3},{"gcamCode":"c9.655","gcamValue":3},{"gcamCode":"c9.658","gcamValue":5},{"gcamCode":"c9.659","gcamValue":2},{"gcamCode":"c9.66","gcamValue":11},{"gcamCode":"c9.660","gcamValue":3},{"gcamCode":"c9.661","gcamValue":1},{"gcamCode":"c9.666","gcamValue":2},{"gcamCode":"c9.668","gcamValue":3},{"gcamCode":"c9.669","gcamValue":4},{"gcamCode":"c9.670","gcamValue":7},{"gcamCode":"c9.671","gcamValue":6},{"gcamCode":"c9.672","gcamValue":5},{"gcamCode":"c9.673","gcamValue":3},{"gcamCode":"c9.674","gcamValue":4},{"gcamCode":"c9.675","gcamValue":2},{"gcamCode":"c9.676","gcamValue":7},{"gcamCode":"c9.677","gcamValue":3},{"gcamCode":"c9.678","gcamValue":4},{"gcamCode":"c9.679","gcamValue":1},{"gcamCode":"c9.68","gcamValue":2},{"gcamCode":"c9.682","gcamValue":2},{"gcamCode":"c9.683","gcamValue":4},{"gcamCode":"c9.684","gcamValue":3},{"gcamCode":"c9.685","gcamValue":1},{"gcamCode":"c9.687","gcamValue":4},{"gcamCode":"c9.690","gcamValue":2},{"gcamCode":"c9.692","gcamValue":12},{"gcamCode":"c9.693","gcamValue":2},{"gcamCode":"c9.694","gcamValue":6},{"gcamCode":"c9.696","gcamValue":1},{"gcamCode":"c9.698","gcamValue":1},{"gcamCode":"c9.7","gcamValue":2},{"gcamCode":"c9.70","gcamValue":10},{"gcamCode":"c9.701","gcamValue":10},{"gcamCode":"c9.702","gcamValue":1},{"gcamCode":"c9.704","gcamValue":4},{"gcamCode":"c9.705","gcamValue":2},{"gcamCode":"c9.708","gcamValue":3},{"gcamCode":"c9.709","gcamValue":2},{"gcamCode":"c9.71","gcamValue":5},{"gcamCode":"c9.710","gcamValue":2},{"gcamCode":"c9.712","gcamValue":1},{"gcamCode":"c9.716","gcamValue":1},{"gcamCode":"c9.72","gcamValue":1},{"gcamCode":"c9.720","gcamValue":9},{"gcamCode":"c9.721","gcamValue":5},{"gcamCode":"c9.722","gcamValue":5},{"gcamCode":"c9.723","gcamValue":5},{"gcamCode":"c9.724","gcamValue":25},{"gcamCode":"c9.725","gcamValue":1},{"gcamCode":"c9.726","gcamValue":7},{"gcamCode":"c9.727","gcamValue":4},{"gcamCode":"c9.73","gcamValue":12},{"gcamCode":"c9.730","gcamValue":7},{"gcamCode":"c9.732","gcamValue":7},{"gcamCode":"c9.734","gcamValue":10},{"gcamCode":"c9.735","gcamValue":3},{"gcamCode":"c9.736","gcamValue":5},{"gcamCode":"c9.740","gcamValue":14},{"gcamCode":"c9.741","gcamValue":3},{"gcamCode":"c9.742","gcamValue":2},{"gcamCode":"c9.743","gcamValue":1},{"gcamCode":"c9.744","gcamValue":2},{"gcamCode":"c9.745","gcamValue":2},{"gcamCode":"c9.747","gcamValue":2},{"gcamCode":"c9.748","gcamValue":10},{"gcamCode":"c9.75","gcamValue":2},{"gcamCode":"c9.750","gcamValue":1},{"gcamCode":"c9.752","gcamValue":1},{"gcamCode":"c9.754","gcamValue":3},{"gcamCode":"c9.755","gcamValue":2},{"gcamCode":"c9.756","gcamValue":1},{"gcamCode":"c9.757","gcamValue":2},{"gcamCode":"c9.759","gcamValue":8},{"gcamCode":"c9.76","gcamValue":7},{"gcamCode":"c9.760","gcamValue":2},{"gcamCode":"c9.762","gcamValue":5},{"gcamCode":"c9.764","gcamValue":1},{"gcamCode":"c9.765","gcamValue":3},{"gcamCode":"c9.766","gcamValue":25},{"gcamCode":"c9.767","gcamValue":13},{"gcamCode":"c9.768","gcamValue":1},{"gcamCode":"c9.769","gcamValue":1},{"gcamCode":"c9.77","gcamValue":1},{"gcamCode":"c9.771","gcamValue":5},{"gcamCode":"c9.772","gcamValue":2},{"gcamCode":"c9.774","gcamValue":1},{"gcamCode":"c9.775","gcamValue":10},{"gcamCode":"c9.776","gcamValue":3},{"gcamCode":"c9.778","gcamValue":1},{"gcamCode":"c9.782","gcamValue":4},{"gcamCode":"c9.785","gcamValue":1},{"gcamCode":"c9.788","gcamValue":1},{"gcamCode":"c9.79","gcamValue":5},{"gcamCode":"c9.790","gcamValue":6},{"gcamCode":"c9.791","gcamValue":5},{"gcamCode":"c9.792","gcamValue":3},{"gcamCode":"c9.793","gcamValue":1},{"gcamCode":"c9.794","gcamValue":1},{"gcamCode":"c9.795","gcamValue":5},{"gcamCode":"c9.8","gcamValue":13},{"gcamCode":"c9.800","gcamValue":1},{"gcamCode":"c9.801","gcamValue":3},{"gcamCode":"c9.802","gcamValue":5},{"gcamCode":"c9.804","gcamValue":3},{"gcamCode":"c9.806","gcamValue":3},{"gcamCode":"c9.808","gcamValue":1},{"gcamCode":"c9.809","gcamValue":2},{"gcamCode":"c9.812","gcamValue":3},{"gcamCode":"c9.815","gcamValue":2},{"gcamCode":"c9.816","gcamValue":6},{"gcamCode":"c9.817","gcamValue":4},{"gcamCode":"c9.818","gcamValue":2},{"gcamCode":"c9.819","gcamValue":1},{"gcamCode":"c9.82","gcamValue":3},{"gcamCode":"c9.820","gcamValue":1},{"gcamCode":"c9.821","gcamValue":1},{"gcamCode":"c9.824","gcamValue":1},{"gcamCode":"c9.828","gcamValue":1},{"gcamCode":"c9.83","gcamValue":12},{"gcamCode":"c9.830","gcamValue":1},{"gcamCode":"c9.833","gcamValue":3},{"gcamCode":"c9.834","gcamValue":8},{"gcamCode":"c9.837","gcamValue":1},{"gcamCode":"c9.838","gcamValue":2},{"gcamCode":"c9.839","gcamValue":1},{"gcamCode":"c9.840","gcamValue":2},{"gcamCode":"c9.843","gcamValue":1},{"gcamCode":"c9.844","gcamValue":2},{"gcamCode":"c9.845","gcamValue":2},{"gcamCode":"c9.846","gcamValue":3},{"gcamCode":"c9.847","gcamValue":1},{"gcamCode":"c9.848","gcamValue":2},{"gcamCode":"c9.849","gcamValue":1},{"gcamCode":"c9.85","gcamValue":2},{"gcamCode":"c9.851","gcamValue":1},{"gcamCode":"c9.858","gcamValue":3},{"gcamCode":"c9.86","gcamValue":3},{"gcamCode":"c9.860","gcamValue":4},{"gcamCode":"c9.861","gcamValue":1},{"gcamCode":"c9.863","gcamValue":1},{"gcamCode":"c9.864","gcamValue":5},{"gcamCode":"c9.865","gcamValue":5},{"gcamCode":"c9.866","gcamValue":5},{"gcamCode":"c9.868","gcamValue":5},{"gcamCode":"c9.87","gcamValue":5},{"gcamCode":"c9.877","gcamValue":13},{"gcamCode":"c9.88","gcamValue":2},{"gcamCode":"c9.880","gcamValue":1},{"gcamCode":"c9.882","gcamValue":2},{"gcamCode":"c9.884","gcamValue":4},{"gcamCode":"c9.888","gcamValue":1},{"gcamCode":"c9.890","gcamValue":4},{"gcamCode":"c9.896","gcamValue":2},{"gcamCode":"c9.897","gcamValue":1},{"gcamCode":"c9.898","gcamValue":2},{"gcamCode":"c9.899","gcamValue":1},{"gcamCode":"c9.90","gcamValue":2},{"gcamCode":"c9.900","gcamValue":1},{"gcamCode":"c9.903","gcamValue":6},{"gcamCode":"c9.908","gcamValue":2},{"gcamCode":"c9.909","gcamValue":1},{"gcamCode":"c9.911","gcamValue":4},{"gcamCode":"c9.913","gcamValue":4},{"gcamCode":"c9.914","gcamValue":1},{"gcamCode":"c9.921","gcamValue":1},{"gcamCode":"c9.923","gcamValue":3},{"gcamCode":"c9.926","gcamValue":2},{"gcamCode":"c9.928","gcamValue":1},{"gcamCode":"c9.935","gcamValue":7},{"gcamCode":"c9.938","gcamValue":1},{"gcamCode":"c9.941","gcamValue":5},{"gcamCode":"c9.942","gcamValue":1},{"gcamCode":"c9.944","gcamValue":1},{"gcamCode":"c9.946","gcamValue":2},{"gcamCode":"c9.947","gcamValue":1},{"gcamCode":"c9.948","gcamValue":1},{"gcamCode":"c9.955","gcamValue":2},{"gcamCode":"c9.96","gcamValue":2},{"gcamCode":"c9.962","gcamValue":3},{"gcamCode":"c9.963","gcamValue":2},{"gcamCode":"c9.964","gcamValue":7},{"gcamCode":"c9.965","gcamValue":3},{"gcamCode":"c9.966","gcamValue":2},{"gcamCode":"c9.97","gcamValue":1},{"gcamCode":"c9.972","gcamValue":6},{"gcamCode":"c9.974","gcamValue":3},{"gcamCode":"c9.978","gcamValue":6},{"gcamCode":"c9.979","gcamValue":4},{"gcamCode":"c9.98","gcamValue":2},{"gcamCode":"c9.980","gcamValue":5},{"gcamCode":"c9.981","gcamValue":2},{"gcamCode":"c9.984","gcamValue":2},{"gcamCode":"c9.986","gcamValue":2},{"gcamCode":"c9.987","gcamValue":1},{"gcamCode":"c9.989","gcamValue":3},{"gcamCode":"c9.99","gcamValue":3},{"gcamCode":"v10.1","gcamValue":0.231203649492584},{"gcamCode":"v10.2","gcamValue":0.284945436507937},{"gcamCode":"v11.1","gcamValue":-0.0265205309734513},{"gcamCode":"v19.1","gcamValue":5.62549019607843},{"gcamCode":"v19.2","gcamValue":5.10666666666667},{"gcamCode":"v19.3","gcamValue":5.28490196078431},{"gcamCode":"v19.4","gcamValue":5.68235294117647},{"gcamCode":"v19.5","gcamValue":4.94901960784314},{"gcamCode":"v19.6","gcamValue":5.47509803921569},{"gcamCode":"v19.7","gcamValue":5.59117647058824},{"gcamCode":"v19.8","gcamValue":5.25411764705882},{"gcamCode":"v19.9","gcamValue":5.10137254901961},{"gcamCode":"v20.10","gcamValue":-1},{"gcamCode":"v20.11","gcamValue":0.791666666666667},{"gcamCode":"v20.12","gcamValue":-1},{"gcamCode":"v20.13","gcamValue":0.39062962962963},{"gcamCode":"v20.14","gcamValue":-0.4312},{"gcamCode":"v20.15","gcamValue":0.352621621621622},{"gcamCode":"v20.16","gcamValue":-0.356588235294118},{"gcamCode":"v20.5","gcamValue":0.9375},{"gcamCode":"v20.6","gcamValue":-1},{"gcamCode":"v20.7","gcamValue":0.9375},{"gcamCode":"v20.8","gcamValue":-1},{"gcamCode":"v20.9","gcamValue":0.9375},{"gcamCode":"v21.1","gcamValue":5.16323671497585},{"gcamCode":"v26.1","gcamValue":-0.422857142857143}]https://media.wfmz.com/mara-wfmz-media-us-east-1/photo/2019/04/24/via%20CNN%20US-Mexico%20border%20wall%20fence_1556100016980.jpg.jpg.jpg_38185365_ver1.0_1280_720.jpg[""][""]["https://youtube.com/c/69NewsWFMZTV"][][{"name":"President Donald Trump","charOffset":90},{"name":"Democratic-controlled House","charOffset":215},{"name":"Appropriations Clause","charOffset":616},{"name":"Executive Branch","charOffset":959},{"name":"Legislative Branch","charOffset":1445},{"name":"House Majority Leader Dick Gephardt","charOffset":1912},{"name":"Defense Bill Cohen","charOffset":1979},{"name":"Justice Department","charOffset":2021},{"name":"White House","charOffset":2538}][{"amount":8,"amountType":"gives Congress power over","charOffset":562},{"amount":100,"amountType":"former House members said","charOffset":895},{"amount":2,"amountType":"former House members","charOffset":1572}]{"SRCLC":"","ENG":""}<PAGE_LINKS>https://www.cnn.com/2019/05/07/politics/former-house-members-wall/</PAGE_LINKS><PAGE_AUTHORS>Priscilla Alvarez;CNN</PAGE_AUTHORS><PAGE_PRECISEPUBTIMESTAMP>20190523103400</PAGE_PRECISEPUBTIMESTAMP>

Showing the first 45 rows.

GDELT Reference data

val countryCodes: Dataset[CountryCode] = spark.loadCountryCodes
val gcam: Dataset[GcamCode] = spark.loadGcams
val cameoEvent: Dataset[CameoCode] = spark.loadCameoEventCodes
val cameoType: Dataset[CameoCode] = spark.loadCameoTypeCodes
val cameoGroup: Dataset[CameoCode] = spark.loadCameoGroupCodes
val cameoEthnic: Dataset[CameoCode] = spark.loadCameoEthnicCodes
val cameoReligion: Dataset[CameoCode] = spark.loadCameoReligionCodes
val cameoCountry: Dataset[CameoCode] = spark.loadCameoCountryCodes
countryCodes: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CountryCode] = [iso: string, iso3: string ... 3 more fields] gcam: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.GcamCode] = [gcamCode: string, dictionaryId: string ... 6 more fields] cameoEvent: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CameoCode] = [cameoCode: string, cameoValue: string] cameoType: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CameoCode] = [cameoCode: string, cameoValue: string] cameoGroup: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CameoCode] = [cameoCode: string, cameoValue: string] cameoEthnic: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CameoCode] = [cameoCode: string, cameoValue: string] cameoReligion: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CameoCode] = [cameoCode: string, cameoValue: string] cameoCountry: org.apache.spark.sql.Dataset[com.aamend.spark.gdelt.CameoCode] = [cameoCode: string, cameoValue: string]