hexsha string | size int64 | ext string | lang string | max_stars_repo_path string | max_stars_repo_name string | max_stars_repo_head_hexsha string | max_stars_repo_licenses list | max_stars_count int64 | max_stars_repo_stars_event_min_datetime string | max_stars_repo_stars_event_max_datetime string | max_issues_repo_path string | max_issues_repo_name string | max_issues_repo_head_hexsha string | max_issues_repo_licenses list | max_issues_count int64 | max_issues_repo_issues_event_min_datetime string | max_issues_repo_issues_event_max_datetime string | max_forks_repo_path string | max_forks_repo_name string | max_forks_repo_head_hexsha string | max_forks_repo_licenses list | max_forks_count int64 | max_forks_repo_forks_event_min_datetime string | max_forks_repo_forks_event_max_datetime string | content string | avg_line_length float64 | max_line_length int64 | alphanum_fraction float64 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b73697dc71d00d43cb0425919f41b3ddc5f22b03 | 4,175 | js | JavaScript | static/ref/js/DropRefresh.js | linuxspring/alarm | e971979873f5d3afcec7ecd09fd30399cf563633 | [
"Apache-2.0"
] | null | null | null | static/ref/js/DropRefresh.js | linuxspring/alarm | e971979873f5d3afcec7ecd09fd30399cf563633 | [
"Apache-2.0"
] | null | null | null | static/ref/js/DropRefresh.js | linuxspring/alarm | e971979873f5d3afcec7ecd09fd30399cf563633 | [
"Apache-2.0"
] | 1 | 2018-10-11T07:49:19.000Z | 2018-10-11T07:49:19.000Z | /**下拉刷新插件
* add by pengguojin
* 20171117
* **/
var dropRefresh = function (option) {
var defaults = {
el: '',
next: function () {
},
refresh: function () {
},
initEl: ''
}
var start,
end,
length,
isLock = false, //是否锁定整个操作
isCanDo = false, //是否移动滑块
isTouchPad = (/hp-tablet/gi).test(navigator.appVersion),
hasTouch = 'ontouchstart' in window && !isTouchPad;
var obj = option.el;//document.querySelector(option.container);
var loading = obj.firstElementChild;
var offset = loading.clientHeight;
var objparent = obj.parentElement;
/*操作方法*/
var fn = {
//移动容器
translate: function (diff) {
obj.style.webkitTransform = 'translate3d(0,' + diff + 'px,0)';
obj.style.transform = 'translate3d(0,' + diff + 'px,0)';
},
//设置效果时间
setTransition: function (time) {
obj.style.webkitTransition = 'all ' + time + 's';
obj.style.transition = 'all ' + time + 's';
},
//返回到初始位置
back: function () {
var refs = option.refresh;
refs(option.initEl);
setTimeout(function () {
fn.translate(0 - offset);
}, 1000);
//标识操作完成
isLock = false;
},
addEvent: function (element, event_name, event_fn) {
if (element.addEventListener) {
element.addEventListener(event_name, event_fn, false);
} else if (element.attachEvent) {
element.attachEvent('on' + event_name, event_fn);
} else {
element['on' + event_name] = event_fn;
}
}
};
fn.translate(0 - offset);
fn.addEvent(obj, 'touchstart', start);
fn.addEvent(obj, 'touchmove', move);
fn.addEvent(obj, 'touchend', end);
// fn.addEvent(obj, 'mousedown', start)
// fn.addEvent(obj, 'mousemove', move)
// fn.addEvent(obj, 'mouseup', end)
//滑动开始
function start(e) {
if (objparent.scrollTop <= 0 && !isLock) {
var even = typeof event == "undefined" ? e : event;
//标识操作进行中
isLock = true;
isCanDo = true;
//保存当前鼠标Y坐标
start = hasTouch ? even.touches[0].pageY : even.pageY;
//消除滑块动画时间
fn.setTransition(0);
loading.innerHTML = '下拉刷新数据';
}
return false;
}
//滑动中
function move(e) {
if (objparent.scrollTop <= 0 && isCanDo) {
var even = typeof event == "undefined" ? e : event;
//保存当前鼠标Y坐标
end = hasTouch ? even.touches[0].pageY : even.pageY;
if (start < end) {
even.preventDefault();
//消除滑块动画时间
fn.setTransition(0);
//移动滑块
if ((end - start - offset) / 2 <= 15) {
length = (end - start - offset) / 2;
fn.translate(length);
} else {
length += 0.3;
fn.translate(length);
}
}
}
}
//滑动结束
function end(e) {
if (isCanDo) {
isCanDo = false;
//判断滑动距离是否大于等于指定值
if (end - start >= offset) {
//设置滑块回弹时间
fn.setTransition(1);
//保留提示部分
fn.translate(0);
//执行回调函数
var myDate = new Date();
var year = myDate.getFullYear();
var month = myDate.getMonth();
var date = myDate.getDate();
var hour = myDate.getHours();
var minutes = myDate.getMinutes();
var seconds = myDate.getSeconds();
//var nowTime = year+"年"+month+"月"+date+"日 "+hour+"时"+minutes+"分"+seconds+"秒";
loading.innerHTML = '正在刷新数据';
if (typeof option.next == "function") {
option.next.call(fn, e);
}
} else {
//返回初始状态
fn.back();
}
}
}
} | 31.390977 | 95 | 0.464431 |
b736f0aec36ab7c5e8fd9debc55196babc58c48c | 543 | js | JavaScript | commands/tokens.js | agentneon/ddd | 9c20184c9dc2fcba0e742dd89a70d1f24aff4066 | [
"MIT"
] | 18 | 2017-06-27T16:08:31.000Z | 2021-08-11T09:58:36.000Z | commands/tokens.js | agentneon/ddd | 9c20184c9dc2fcba0e742dd89a70d1f24aff4066 | [
"MIT"
] | 1 | 2018-09-19T19:39:36.000Z | 2018-10-03T00:27:58.000Z | commands/tokens.js | agentneon/ddd | 9c20184c9dc2fcba0e742dd89a70d1f24aff4066 | [
"MIT"
] | 16 | 2018-09-22T08:55:50.000Z | 2021-06-08T16:04:17.000Z | exports.run = (client, message, author) => {
const hive = require('hive-api');
let player = new hive.Player(`${message.author.username}`);
player.info().then(info => {
message.channel.send(`Tokens: ${info.tokens}`)
});
}
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 0
};
exports.help = {
name: "tokens",
description: "Returns your amount of tokens on the HiveMC Network. Your Discord username must match your IGN for this to work.",
usage: "tokens"
};
| 23.608696 | 133 | 0.615101 |
b7370ea35bdc35c9bb1b043ab92e73d1ecc3052c | 823 | js | JavaScript | src/templates/projectTemp.js | katerinaSo/gatsby-tutorial01 | b23bbbb5c9f4f394137cd2d1f03364d7353f2ec3 | [
"MIT"
] | null | null | null | src/templates/projectTemp.js | katerinaSo/gatsby-tutorial01 | b23bbbb5c9f4f394137cd2d1f03364d7353f2ec3 | [
"MIT"
] | null | null | null | src/templates/projectTemp.js | katerinaSo/gatsby-tutorial01 | b23bbbb5c9f4f394137cd2d1f03364d7353f2ec3 | [
"MIT"
] | null | null | null | import React from "react"
import Layout from "../components/layout"
import { Link, graphql } from "gatsby"
import Img from 'gatsby-image'
export default function projectTemp({data}){
const {title}=data.contentfulProject
const {description}=data.contentfulProject.description
const {fluid}=data.contentfulProject.visual
return (
<Layout>
<h1 style={{color:'orange'}}>Single project</h1>
{title}
<Img fluid={fluid}/>
<p>{description}</p>
<Link to="/projects">back to portfolio</Link>
</Layout>
)
}
export const query = graphql`
query ($id: String) {
contentfulProject(id: {eq: $id}) {
title
description {
description
}
visual {
fluid {
...GatsbyContentfulFluid_tracedSVG
}
}
}
}
`
| 21.657895 | 58 | 0.605103 |
b737a94a87093ae032c8eedf4b46811d22d10696 | 2,050 | js | JavaScript | pinyougou-manager-web/target/pinyougou-manager-web-1.0-SNAPSHOT/js/controller/brandController.js | hncboy/pinyougou-parent | 72cc157b9f56de13756e36464b00c412ea2ac9a4 | [
"Apache-2.0"
] | null | null | null | pinyougou-manager-web/target/pinyougou-manager-web-1.0-SNAPSHOT/js/controller/brandController.js | hncboy/pinyougou-parent | 72cc157b9f56de13756e36464b00c412ea2ac9a4 | [
"Apache-2.0"
] | null | null | null | pinyougou-manager-web/target/pinyougou-manager-web-1.0-SNAPSHOT/js/controller/brandController.js | hncboy/pinyougou-parent | 72cc157b9f56de13756e36464b00c412ea2ac9a4 | [
"Apache-2.0"
] | null | null | null | app.controller("brandController", function ($scope, $controller, brandService) {
$controller("baseController", {$scope:$scope}); //继承
//查询品牌列表
$scope.findAll = function () {
brandService.findAll().success(
function (response) {
$scope.list = response;
}
)
};
//分页
$scope.findPage = function (page, size) {
brandService.findPage(page, size).success(
function (response) {
$scope.list = response.rows; //显示当前页的数据
$scope.paginationConf.totalItems = response.total; //更新总记录数
}
)
};
//增加品牌
$scope.save = function () {
var object = null;
if ($scope.entity.id != null) {
object = brandService.update($scope.entity);
} else {
object = brandService.add($scope.entity);
}
object.success(
function (response) {
if (response.success) {
$scope.reloadList();
} else {
alert(response.message);
}
}
)
};
//查询实体
$scope.findOne = function (id) {
brandService.findOne(id).success(
function (response) {
//双向绑定
$scope.entity = response;
}
)
};
//删除
$scope.dele = function () {
brandService.dele($scope.selectIds).success(
function (response) {
if (response.success) {
$scope.reloadList();
} else {
alert(response.message);
}
}
)
};
$scope.searchEntity = {};
//条件查询
$scope.search = function (page, size) {
brandService.search(page, size, $scope.searchEntity).success(
function (response) {
$scope.list = response.rows; //显示当前页数据
$scope.paginationConf.totalItems = response.total; //更新总记录数
}
)
};
}); | 26.623377 | 80 | 0.469756 |
b7380b796e6749d95c33937cff3c5c05c0315452 | 231 | js | JavaScript | module-3_challenge/src/repository/assets/db.js | Felipe-Borba/IGTI-NodeJS | f9476fc0cada5e5901fe33a4ec503d31d769dfb1 | [
"MIT"
] | 3 | 2021-06-25T21:01:33.000Z | 2022-02-09T00:41:05.000Z | module-3_challenge/src/repository/assets/db.js | Felipe-Borba/IGTI-NodeJS | f9476fc0cada5e5901fe33a4ec503d31d769dfb1 | [
"MIT"
] | null | null | null | module-3_challenge/src/repository/assets/db.js | Felipe-Borba/IGTI-NodeJS | f9476fc0cada5e5901fe33a4ec503d31d769dfb1 | [
"MIT"
] | null | null | null | import Sequelize from "sequelize";
import env from "dotenv";
env.config();
const sequelize = new Sequelize(process.env.POSTGRES_URL, {
dialect: "postgres",
define: {
timestamps: false,
},
});
export default sequelize;
| 16.5 | 59 | 0.701299 |
b7390592ecf6b691889b62e1f4851117779aa7e2 | 2,702 | js | JavaScript | src/config/index.js | MarshallAsch/slack-name-bot | ce6f11f1c50b27800ee55bcab2f009da1d6e0324 | [
"MIT"
] | null | null | null | src/config/index.js | MarshallAsch/slack-name-bot | ce6f11f1c50b27800ee55bcab2f009da1d6e0324 | [
"MIT"
] | 8 | 2020-01-10T13:52:49.000Z | 2021-05-11T00:20:00.000Z | src/config/index.js | MarshallAsch/slack-name-bot | ce6f11f1c50b27800ee55bcab2f009da1d6e0324 | [
"MIT"
] | null | null | null | /**
* Config module. Reads configuration file located at __projectdir/config/config.ini
* and loads it into the exported object.
* @file config.js
* @module config
*/
const fs = require("fs");
const ini = require("ini");
const path = require("path");
const __projectdir = path.resolve(__dirname, "../..");
let configFile = path.join(__projectdir, "/config/config.ini");
// eslint-disable-next-line no-process-env
if (process.env.NODE_ENV === "test") {
configFile = path.join(__projectdir, "/test/config.ini");
}
const config = ini.parse(fs.readFileSync(configFile, "utf-8"));
function configure(file) {
const newConfig = ini.parse(fs.readFileSync(file, "utf-8"));
newConfig.file = file;
return newConfig;
}
module.exports = {
/**
* __projectdir is a string that denotes the installation path of the eNuk
* web application. This is useful for any modules that require access to
* static resource paths.
* @type {string}
*/
__projectdir: __projectdir,
/**
* configFile is the path to the config.ini file
* @type {string}
*/
file: configFile,
/**
* database is an object that contains the database connection parameters
* @property {string} db
* @property {Number} port
* @property {string} host
* @property {string} user
* @property {string} password
*/
database: config.database,
/**
* logs is an object that contains configuration parameters for the logger
* @property {string} logdir - the absolute path where log files are
* stored
* @property {boolean} stacktraces - indicates if traces should be logged
*/
logs: config.logs,
/**
* server is an object that contains runtime parameters for the express
* server
* @property {string} mode - "development", "test", or "production"
*/
server: config.server,
/**
* session is an object that contains configuration parameters for express
* sessions.
* @property {string} signingSecret
* @property {string} clientSecret
* @property {string} clientId
*/
slack: config.slack,
/**
* configure() is a function that creates a new configuration object
* using settings from the specified file. This function can be used to
* supply a custom configuration at run time, if for some reason the default
* config which is loaded upon initializing this module does not meet
* requirements.
* @function
* @param {string} file - path to configuration ini file
* @return {Object} the new configuration loaded from the file
*/
configure: configure,
};
| 33.358025 | 84 | 0.650629 |
b73973f647a9f4461f78548d2dc52fec1cd04722 | 2,604 | js | JavaScript | src/core_modules/capture-core/components/ColumnSelectorDialog/DragDropSort/DragDropListItem.component.js | hispindia/dhis2-capture-app | 0d9afe7ad66379e8d47c7c723366e1869ca1931e | [
"BSD-2-Clause"
] | null | null | null | src/core_modules/capture-core/components/ColumnSelectorDialog/DragDropSort/DragDropListItem.component.js | hispindia/dhis2-capture-app | 0d9afe7ad66379e8d47c7c723366e1869ca1931e | [
"BSD-2-Clause"
] | 177 | 2020-09-28T07:12:22.000Z | 2022-03-21T08:10:58.000Z | src/core_modules/capture-core/components/ColumnSelectorDialog/DragDropSort/DragDropListItem.component.js | hispindia/dhis2-capture-app | 0d9afe7ad66379e8d47c7c723366e1869ca1931e | [
"BSD-2-Clause"
] | null | null | null | // @flow
import React, { Component } from 'react';
import { DragSource, DropTarget } from 'react-dnd';
import TableCell from '@material-ui/core/TableCell';
import Checkbox from '@material-ui/core/Checkbox';
import ReorderIcon from '@material-ui/icons/Reorder';
type Props = {
id: string,
visible: boolean,
text: string,
handleToggle: (id: string) => void,
isDragging: () => void,
connectDragSource: (any) => void,
connectDropTarget: (any) => void,
};
const style = {
cursor: 'move',
outline: 'none',
};
const ItemTypes = {
LISTITEM: 'listItem',
};
const cardSource = {
beginDrag(props) {
return {
id: props.id,
index: props.index,
};
},
};
const cardTarget = {
hover(props, monitor) {
const dragIndex = monitor.getItem().index;
const hoverIndex = props.index;
// Don't replace items with themselves.
if (dragIndex === hoverIndex) {
return;
}
// Time to actually perform the action.
props.moveListItem(dragIndex, hoverIndex);
// Note: we're mutating the monitor item here!
// Generally it's better to avoid mutations,
// but it's good here for the sake of performance
// to avoid expensive index searches.
monitor.getItem().index = hoverIndex;
},
};
class DragDropListItem extends Component<Props> {
render() {
const { text, isDragging, connectDragSource, connectDropTarget } = this.props;
const opacity = isDragging ? 0 : 1;
// $FlowFixMe[incompatible-extend] automated comment
return connectDropTarget(connectDragSource(
<tr key={this.props.id} tabIndex={-1} style={{ ...style, opacity }}>
<TableCell component="th" scope="row">
<Checkbox
color={'primary'}
checked={this.props.visible}
tabIndex={-1}
disableRipple
onClick={this.props.handleToggle(this.props.id)}
/>
{text}
</TableCell>
<TableCell>
<ReorderIcon style={{ float: 'right' }} />
</TableCell>
</tr>,
));
}
}
export default DragSource(ItemTypes.LISTITEM, cardSource, (connect, monitor) => ({ connectDragSource: connect.dragSource(), isDragging: monitor.isDragging() }))(DropTarget(ItemTypes.LISTITEM, cardTarget, connect => ({ connectDropTarget: connect.dropTarget() }))(DragDropListItem));
| 30.635294 | 281 | 0.571429 |
b73986a82e1034c00129927c813b152123c01e8e | 1,349 | js | JavaScript | src/pages/thanks.js | fuerte-nerd/buy-me-a-coffee | af33f608c59933ebe44746d3945bbf4734a63148 | [
"MIT"
] | null | null | null | src/pages/thanks.js | fuerte-nerd/buy-me-a-coffee | af33f608c59933ebe44746d3945bbf4734a63148 | [
"MIT"
] | null | null | null | src/pages/thanks.js | fuerte-nerd/buy-me-a-coffee | af33f608c59933ebe44746d3945bbf4734a63148 | [
"MIT"
] | null | null | null | import React from "react";
import { Link } from 'gatsby';
import AniLink from "gatsby-plugin-transition-link/AniLink"
import Layout from '../components/layout'
import BackgroundImg from "../images/coffee.svg";
import Image from "../images/smile.svg";
import { Container, Button } from "reactstrap";
import Slide from 'react-reveal/Slide'
import Fade from 'react-reveal/Fade'
export default function Thanks() {
return (
<Layout>
<Slide down duration={500}>
<img className="bg-coffee" src={BackgroundImg} alt="Coffee background" />
</Slide>
<Fade left delay={500} duration={500}>
<Container className="min-vh-100 d-flex flex-column justify-content-center align-items-center text-center">
<Fade down delay={1000} duration={500}>
<div>
<img src={Image} alt="Smile emoji" className="svg-smile" />
</div>
</Fade>
<h1 className="p-4">Thank you!</h1>
<p className="lead">That was very generous of you!</p>
<p>
I will hold you in my thoughts while I drink my life-giving coffee and
eat my delicious cake!
</p>
<AniLink swipe to="/" className="btn btn-primary btn-lg">
Back to the start!
</AniLink>
</Container>
</Fade>
</Layout>
);
}
| 34.589744 | 115 | 0.604151 |
b739aa5b3608ef90fb4d993e269e5a9500fdb4cb | 14,052 | js | JavaScript | cant/jmejiadev-canti-d101c2098194/public/jqx/jqwidgets-ng/dist/fesm5/jqwidgets-ng-jqxexpander.js | Lordcreos/Lamadas-cant | dea17c91d926e03dc276f3e8506af4a8253efe69 | [
"MIT"
] | null | null | null | cant/jmejiadev-canti-d101c2098194/public/jqx/jqwidgets-ng/dist/fesm5/jqwidgets-ng-jqxexpander.js | Lordcreos/Lamadas-cant | dea17c91d926e03dc276f3e8506af4a8253efe69 | [
"MIT"
] | null | null | null | cant/jmejiadev-canti-d101c2098194/public/jqx/jqwidgets-ng/dist/fesm5/jqwidgets-ng-jqxexpander.js | Lordcreos/Lamadas-cant | dea17c91d926e03dc276f3e8506af4a8253efe69 | [
"MIT"
] | null | null | null | import * as jqxcore from '../../jqwidgets-scripts/jqwidgets/jqxcore';
import * as jqxexpander from '../../jqwidgets-scripts/jqwidgets/jqxexpander';
import { __spread, __decorate, __metadata } from 'tslib';
import { Input, Output, Component, ElementRef, EventEmitter, NgModule } from '@angular/core';
/// <reference path="../../jqwidgets.d.ts" />
var jqxExpanderComponent = /** @class */ (function () {
function jqxExpanderComponent(containerElement) {
this.autoCreate = true;
this.properties = ['animationType', 'arrowPosition', 'collapseAnimationDuration', 'disabled', 'expanded', 'expandAnimationDuration', 'height', 'headerPosition', 'initContent', 'rtl', 'showArrow', 'theme', 'toggleMode', 'width'];
// jqxExpanderComponent events
this.onCollapsing = new EventEmitter();
this.onCollapsed = new EventEmitter();
this.onExpanding = new EventEmitter();
this.onExpanded = new EventEmitter();
this.elementRef = containerElement;
}
jqxExpanderComponent.prototype.ngOnInit = function () {
if (this.autoCreate) {
this.createComponent();
}
};
jqxExpanderComponent.prototype.ngOnChanges = function (changes) {
if (this.host) {
for (var i = 0; i < this.properties.length; i++) {
var attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
var areEqual = false;
if (this[attrName] !== undefined) {
if (typeof this[attrName] === 'object') {
if (this[attrName] instanceof Array) {
areEqual = this.arraysEqual(this[attrName], this.host.jqxExpander(this.properties[i]));
}
if (areEqual) {
return false;
}
this.host.jqxExpander(this.properties[i], this[attrName]);
continue;
}
if (this[attrName] !== this.host.jqxExpander(this.properties[i])) {
this.host.jqxExpander(this.properties[i], this[attrName]);
}
}
}
}
};
jqxExpanderComponent.prototype.arraysEqual = function (attrValue, hostValue) {
if ((attrValue && !hostValue) || (!attrValue && hostValue)) {
return false;
}
if (attrValue.length != hostValue.length) {
return false;
}
for (var i = 0; i < attrValue.length; i++) {
if (attrValue[i] !== hostValue[i]) {
return false;
}
}
return true;
};
jqxExpanderComponent.prototype.manageAttributes = function () {
var options = {};
for (var i = 0; i < this.properties.length; i++) {
var attrName = 'attr' + this.properties[i].substring(0, 1).toUpperCase() + this.properties[i].substring(1);
if (this[attrName] !== undefined) {
options[this.properties[i]] = this[attrName];
}
}
return options;
};
jqxExpanderComponent.prototype.moveClasses = function (parentEl, childEl) {
var _a;
var classes = parentEl.classList;
if (classes.length > 0) {
(_a = childEl.classList).add.apply(_a, __spread(classes));
}
parentEl.className = '';
};
jqxExpanderComponent.prototype.moveStyles = function (parentEl, childEl) {
var style = parentEl.style.cssText;
childEl.style.cssText = style;
parentEl.style.cssText = '';
};
jqxExpanderComponent.prototype.createComponent = function (options) {
if (this.host) {
return;
}
if (options) {
JQXLite.extend(options, this.manageAttributes());
}
else {
options = this.manageAttributes();
}
this.host = JQXLite(this.elementRef.nativeElement.firstChild);
this.moveClasses(this.elementRef.nativeElement, this.host[0]);
this.moveStyles(this.elementRef.nativeElement, this.host[0]);
this.__wireEvents__();
this.widgetObject = jqwidgets.createInstance(this.host, 'jqxExpander', options);
};
jqxExpanderComponent.prototype.createWidget = function (options) {
this.createComponent(options);
};
jqxExpanderComponent.prototype.__updateRect__ = function () {
if (this.host)
this.host.css({ width: this.attrWidth, height: this.attrHeight });
};
jqxExpanderComponent.prototype.setOptions = function (options) {
this.host.jqxExpander('setOptions', options);
};
// jqxExpanderComponent properties
jqxExpanderComponent.prototype.animationType = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('animationType', arg);
}
else {
return this.host.jqxExpander('animationType');
}
};
jqxExpanderComponent.prototype.arrowPosition = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('arrowPosition', arg);
}
else {
return this.host.jqxExpander('arrowPosition');
}
};
jqxExpanderComponent.prototype.collapseAnimationDuration = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('collapseAnimationDuration', arg);
}
else {
return this.host.jqxExpander('collapseAnimationDuration');
}
};
jqxExpanderComponent.prototype.disabled = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('disabled', arg);
}
else {
return this.host.jqxExpander('disabled');
}
};
jqxExpanderComponent.prototype.expanded = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('expanded', arg);
}
else {
return this.host.jqxExpander('expanded');
}
};
jqxExpanderComponent.prototype.expandAnimationDuration = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('expandAnimationDuration', arg);
}
else {
return this.host.jqxExpander('expandAnimationDuration');
}
};
jqxExpanderComponent.prototype.height = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('height', arg);
}
else {
return this.host.jqxExpander('height');
}
};
jqxExpanderComponent.prototype.headerPosition = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('headerPosition', arg);
}
else {
return this.host.jqxExpander('headerPosition');
}
};
jqxExpanderComponent.prototype.initContent = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('initContent', arg);
}
else {
return this.host.jqxExpander('initContent');
}
};
jqxExpanderComponent.prototype.rtl = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('rtl', arg);
}
else {
return this.host.jqxExpander('rtl');
}
};
jqxExpanderComponent.prototype.showArrow = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('showArrow', arg);
}
else {
return this.host.jqxExpander('showArrow');
}
};
jqxExpanderComponent.prototype.theme = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('theme', arg);
}
else {
return this.host.jqxExpander('theme');
}
};
jqxExpanderComponent.prototype.toggleMode = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('toggleMode', arg);
}
else {
return this.host.jqxExpander('toggleMode');
}
};
jqxExpanderComponent.prototype.width = function (arg) {
if (arg !== undefined) {
this.host.jqxExpander('width', arg);
}
else {
return this.host.jqxExpander('width');
}
};
// jqxExpanderComponent functions
jqxExpanderComponent.prototype.collapse = function () {
this.host.jqxExpander('collapse');
};
jqxExpanderComponent.prototype.disable = function () {
this.host.jqxExpander('disable');
};
jqxExpanderComponent.prototype.destroy = function () {
this.host.jqxExpander('destroy');
};
jqxExpanderComponent.prototype.enable = function () {
this.host.jqxExpander('enable');
};
jqxExpanderComponent.prototype.expand = function () {
this.host.jqxExpander('expand');
};
jqxExpanderComponent.prototype.focus = function () {
this.host.jqxExpander('focus');
};
jqxExpanderComponent.prototype.getContent = function () {
return this.host.jqxExpander('getContent');
};
jqxExpanderComponent.prototype.getHeaderContent = function () {
return this.host.jqxExpander('getHeaderContent');
};
jqxExpanderComponent.prototype.invalidate = function () {
this.host.jqxExpander('invalidate');
};
jqxExpanderComponent.prototype.refresh = function () {
this.host.jqxExpander('refresh');
};
jqxExpanderComponent.prototype.render = function () {
this.host.jqxExpander('render');
};
jqxExpanderComponent.prototype.setHeaderContent = function (headerContent) {
this.host.jqxExpander('setHeaderContent', headerContent);
};
jqxExpanderComponent.prototype.setContent = function (content) {
this.host.jqxExpander('setContent', content);
};
jqxExpanderComponent.prototype.__wireEvents__ = function () {
var _this = this;
this.host.on('collapsing', function (eventData) { _this.onCollapsing.emit(eventData); });
this.host.on('collapsed', function (eventData) { _this.onCollapsed.emit(eventData); });
this.host.on('expanding', function (eventData) { _this.onExpanding.emit(eventData); });
this.host.on('expanded', function (eventData) { _this.onExpanded.emit(eventData); });
};
__decorate([
Input('animationType'),
__metadata("design:type", String)
], jqxExpanderComponent.prototype, "attrAnimationType", void 0);
__decorate([
Input('arrowPosition'),
__metadata("design:type", String)
], jqxExpanderComponent.prototype, "attrArrowPosition", void 0);
__decorate([
Input('collapseAnimationDuration'),
__metadata("design:type", Number)
], jqxExpanderComponent.prototype, "attrCollapseAnimationDuration", void 0);
__decorate([
Input('disabled'),
__metadata("design:type", Boolean)
], jqxExpanderComponent.prototype, "attrDisabled", void 0);
__decorate([
Input('expanded'),
__metadata("design:type", Boolean)
], jqxExpanderComponent.prototype, "attrExpanded", void 0);
__decorate([
Input('expandAnimationDuration'),
__metadata("design:type", Number)
], jqxExpanderComponent.prototype, "attrExpandAnimationDuration", void 0);
__decorate([
Input('headerPosition'),
__metadata("design:type", String)
], jqxExpanderComponent.prototype, "attrHeaderPosition", void 0);
__decorate([
Input('initContent'),
__metadata("design:type", Function)
], jqxExpanderComponent.prototype, "attrInitContent", void 0);
__decorate([
Input('rtl'),
__metadata("design:type", Boolean)
], jqxExpanderComponent.prototype, "attrRtl", void 0);
__decorate([
Input('showArrow'),
__metadata("design:type", Boolean)
], jqxExpanderComponent.prototype, "attrShowArrow", void 0);
__decorate([
Input('theme'),
__metadata("design:type", String)
], jqxExpanderComponent.prototype, "attrTheme", void 0);
__decorate([
Input('toggleMode'),
__metadata("design:type", String)
], jqxExpanderComponent.prototype, "attrToggleMode", void 0);
__decorate([
Input('width'),
__metadata("design:type", Object)
], jqxExpanderComponent.prototype, "attrWidth", void 0);
__decorate([
Input('height'),
__metadata("design:type", Object)
], jqxExpanderComponent.prototype, "attrHeight", void 0);
__decorate([
Input('auto-create'),
__metadata("design:type", Boolean)
], jqxExpanderComponent.prototype, "autoCreate", void 0);
__decorate([
Output(),
__metadata("design:type", Object)
], jqxExpanderComponent.prototype, "onCollapsing", void 0);
__decorate([
Output(),
__metadata("design:type", Object)
], jqxExpanderComponent.prototype, "onCollapsed", void 0);
__decorate([
Output(),
__metadata("design:type", Object)
], jqxExpanderComponent.prototype, "onExpanding", void 0);
__decorate([
Output(),
__metadata("design:type", Object)
], jqxExpanderComponent.prototype, "onExpanded", void 0);
jqxExpanderComponent = __decorate([
Component({
selector: 'jqxExpander',
template: '<div><ng-content></ng-content></div>'
}),
__metadata("design:paramtypes", [ElementRef])
], jqxExpanderComponent);
return jqxExpanderComponent;
}()); //jqxExpanderComponent
var jqxExpanderModule = /** @class */ (function () {
function jqxExpanderModule() {
}
jqxExpanderModule = __decorate([
NgModule({
imports: [],
declarations: [jqxExpanderComponent],
exports: [jqxExpanderComponent]
})
], jqxExpanderModule);
return jqxExpanderModule;
}());
/**
* Generated bundle index. Do not edit.
*/
export { jqxExpanderComponent, jqxExpanderModule };
//# sourceMappingURL=jqwidgets-ng-jqxexpander.js.map
| 37.572193 | 236 | 0.598135 |
b739ac9c577171d0372b9447cf4f230953170201 | 1,902 | js | JavaScript | pages/login.js | trezy-studios/A-Monster-s-Nature | 4aa599658005fd61affe00a3c433b825a7772946 | [
"BSD-3-Clause"
] | null | null | null | pages/login.js | trezy-studios/A-Monster-s-Nature | 4aa599658005fd61affe00a3c433b825a7772946 | [
"BSD-3-Clause"
] | 3 | 2019-10-30T16:39:15.000Z | 2019-10-31T15:28:38.000Z | pages/login.js | trezy-studios/A-Monsters-Nature | 4aa599658005fd61affe00a3c433b825a7772946 | [
"BSD-3-Clause"
] | null | null | null | // Module imports
import React, { useEffect } from 'react'
import PropTypes from 'prop-types'
import Router from 'next/router'
// Component imports
import PageWrapper from '../components/PageWrapper'
import withFirebase from '../components/withFirebase'
// Local variables
let redirectStarted = false
const Login = props => {
const {
signInWithGithub,
signInWithGoogle,
signInWithTwitter,
query,
user: currentUser,
} = props
useEffect(() => {
if (currentUser && !redirectStarted) {
const startRedirect = () => {
redirectStarted = false
Router.events.off('routeChangeComplete', startRedirect)
}
redirectStarted = true
Router.replace(query.destination || '/dashboard')
Router.events.on('routeChangeComplete', startRedirect)
}
})
return (
<PageWrapper title="Login">
<section className="hero">
<div>
<h2>Login</h2>
<menu type="toolbar">
<button
className="primary"
onClick={signInWithGoogle}
type="button">
Sign in with Google
</button>
<button
className="primary"
onClick={signInWithGithub}
type="button">
Sign in with Github
</button>
<button
className="primary"
onClick={signInWithTwitter}
type="button">
Sign in with Twitter
</button>
</menu>
</div>
</section>
</PageWrapper>
)
}
Login.defaultProps = {
user: null,
}
Login.propTypes = {
query: PropTypes.object.isRequired,
signInWithGithub: PropTypes.func.isRequired,
signInWithGoogle: PropTypes.func.isRequired,
signInWithTwitter: PropTypes.func.isRequired,
user: PropTypes.object,
}
export default withFirebase(Login)
| 19.608247 | 63 | 0.589905 |
b739e56736c3986b1e9700289b436cadbe0a22a2 | 353 | js | JavaScript | test/workers/repository/result.spec.js | gordlea/renovate | d882cb05a2476eb00e676a5e09c9c292f20d78ff | [
"MIT"
] | null | null | null | test/workers/repository/result.spec.js | gordlea/renovate | d882cb05a2476eb00e676a5e09c9c292f20d78ff | [
"MIT"
] | null | null | null | test/workers/repository/result.spec.js | gordlea/renovate | d882cb05a2476eb00e676a5e09c9c292f20d78ff | [
"MIT"
] | null | null | null | const { processResult } = require('../../../lib/workers/repository/result');
let config;
beforeEach(() => {
jest.resetAllMocks();
config = require('../../config/config/_fixtures');
});
describe('workers/repository/result', () => {
describe('processResult()', () => {
it('runs', () => {
processResult(config, 'done');
});
});
});
| 22.0625 | 76 | 0.572238 |
b739fee0a2c45ce67d05d4ef79a5c6403ccd0f1f | 8,783 | js | JavaScript | src/issue/screens/issue.screen.js | Nortero84/git-point | d44cc6af6ccdc3a3bb6bd9c6816244eed931ee48 | [
"MIT"
] | 2 | 2021-04-08T04:27:11.000Z | 2021-04-09T16:23:47.000Z | src/issue/screens/issue.screen.js | Nortero84/git-point | d44cc6af6ccdc3a3bb6bd9c6816244eed931ee48 | [
"MIT"
] | null | null | null | src/issue/screens/issue.screen.js | Nortero84/git-point | d44cc6af6ccdc3a3bb6bd9c6816244eed931ee48 | [
"MIT"
] | null | null | null | /* eslint-disable no-shadow */
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import {
FlatList,
KeyboardAvoidingView,
Keyboard,
Linking,
Platform,
} from 'react-native';
import { Icon } from 'react-native-elements';
import {
ViewContainer,
LoadingContainer,
IssueDescription,
CommentListItem,
CommentInput,
} from 'components';
import { root as apiRoot } from 'api';
import { translate } from 'utils';
import { colors } from 'config';
import { getRepository, getContributors } from 'repository';
import {
getIssueComments,
postIssueComment,
getIssueFromUrl,
} from '../issue.action';
const mapStateToProps = state => ({
language: state.auth.language,
authUser: state.auth.user,
repository: state.repository.repository,
contributors: state.repository.contributors,
issue: state.issue.issue,
diff: state.issue.diff,
isMerged: state.issue.isMerged,
comments: state.issue.comments,
isPendingDiff: state.issue.isPendingDiff,
isPendingCheckMerge: state.issue.isPendingCheckMerge,
isPendingComments: state.issue.isPendingComments,
isPostingComment: state.issue.isPostingComment,
isPendingContributors: state.repository.isPendingContributors,
});
const mapDispatchToProps = dispatch =>
bindActionCreators(
{
getIssueComments,
getRepository,
getContributors,
postIssueComment,
getIssueFromUrl,
},
dispatch
);
class Issue extends Component {
static navigationOptions = ({ navigation }) => {
const { state, navigate } = navigation;
if (state.params.userHasPushPermission) {
return {
headerRight: (
<Icon
name="gear"
color={colors.primaryDark}
type="octicon"
containerStyle={{ marginRight: 5 }}
underlayColor={colors.transparent}
onPress={() =>
navigate('IssueSettings', {
title: translate('issue.settings.title', state.params.language),
issue: state.params.issue,
})}
/>
),
};
}
return null;
};
props: {
getIssueComments: Function,
getRepository: Function,
getContributors: Function,
postIssueComment: Function,
getIssueFromUrl: Function,
diff: string,
issue: Object,
isMerged: boolean,
authUser: Object,
repository: Object,
contributors: Array,
comments: Array,
isPendingIssue: boolean,
isPendingDiff: boolean,
isPendingCheckMerge: boolean,
isPendingComments: boolean,
isPendingContributors: boolean,
// isPostingComment: boolean,
language: string,
navigation: Object,
};
componentDidMount() {
this.getIssueInformation();
}
onLinkPress = node => {
const { navigation, authUser } = this.props;
if (node.attribs.class && node.attribs.class.includes('user-mention')) {
const login = node.children[0].data.substring(1);
navigation.navigate(
authUser.login === login ? 'AuthProfile' : 'Profile',
{
user: { login },
}
);
} else if (
node.attribs.class &&
node.attribs.class.includes('issue-link')
) {
navigation.navigate('Issue', {
issueURL: this.getIssueUrlFromNode(node, navigation.state.params),
});
} else {
Linking.openURL(node.attribs.href);
}
};
onRepositoryPress = url => {
const { navigation } = this.props;
navigation.navigate('Repository', {
repositoryUrl: url,
});
};
getIssueUrlFromNode = (node, params) => {
if (node.attribs['data-id']) {
return params.issue
? `${params.issue.repository_url}/issues/${node.attribs['data-id']}`
: params.issueURL.replace(/\d+$/, node.attribs['data-id']);
}
return node.attribs['data-url'].replace(
'https://github.com',
`${apiRoot}/repos`
);
};
getIssueInformation = () => {
const {
issue,
navigation,
repository,
getIssueComments,
getRepository,
getContributors,
getIssueFromUrl,
} = this.props;
const issueParam = navigation.state.params.issue;
const issueURLParam = navigation.state.params.issueURL;
const issueCommentsURL = `${navigation.state.params.issueURL}/comments`;
Promise.all([
getIssueFromUrl(issueURLParam || issueParam.url),
getIssueComments(
issueURLParam ? issueCommentsURL : issueParam.comments_url
),
]).then(() => {
if (
issueParam &&
repository.full_name !==
issueParam.repository_url.replace(`${apiRoot}/repos/`, '')
) {
Promise.all([
getRepository(issue.repository_url),
getContributors(this.getContributorsLink(issue.repository_url)),
]).then(() => {
this.setNavigationParams();
});
} else {
this.setNavigationParams();
}
});
};
getContributorsLink = repository => `${repository}/contributors`;
setNavigationParams = () => {
const { navigation, language, repository } = this.props;
navigation.setParams({
language,
userHasPushPermission:
repository.permissions.admin || repository.permissions.push,
});
};
postComment = body => {
const { repository, navigation } = this.props;
const repoName = repository.name;
const owner = repository.owner.login;
const issueNum = navigation.state.params.issue.number;
this.props.postIssueComment(body, owner, repoName, issueNum);
Keyboard.dismiss();
this.commentsList.scrollToEnd();
};
keyExtractor = item => {
return item.id;
};
renderHeader = () => {
const {
issue,
diff,
isMerged,
isPendingDiff,
isPendingCheckMerge,
language,
navigation,
} = this.props;
return (
<IssueDescription
issue={issue}
diff={diff}
isMerged={isMerged}
isPendingDiff={isPendingDiff}
isPendingCheckMerge={isPendingCheckMerge}
onRepositoryPress={url => this.onRepositoryPress(url)}
onLinkPress={node => this.onLinkPress(node)}
userHasPushPermission={navigation.state.params.userHasPushPermission}
language={language}
navigation={navigation}
/>
);
};
renderItem = ({ item }) => {
const { language } = this.props;
return (
<CommentListItem
comment={item}
onLinkPress={node => this.onLinkPress(node)}
language={language}
navigation={this.props.navigation}
/>
);
};
render() {
const {
issue,
comments,
contributors,
isPendingComments,
isPendingContributors,
isPendingIssue,
language,
navigation,
} = this.props;
const isLoadingData = !!(isPendingComments || isPendingIssue);
const fullComments = !isPendingComments ? [issue, ...comments] : [];
const participantNames = !isPendingComments
? fullComments.map(item => item && item.user && item.user.login)
: [];
const contributorNames = !isPendingContributors
? contributors.map(item => item && item.login)
: [];
const fullUsers = [
...new Set([...participantNames, ...contributorNames]),
].filter(item => !!item);
return (
<ViewContainer>
{isLoadingData &&
<LoadingContainer
animating={isPendingComments || isPendingIssue}
center
/>}
{!isPendingComments &&
!isPendingIssue &&
issue &&
<KeyboardAvoidingView
style={{ flex: 1 }}
behavior={'padding'}
keyboardVerticalOffset={Platform.select({
ios: 65,
android: -200,
})}
>
<FlatList
ref={ref => {
this.commentsList = ref;
}}
refreshing={isLoadingData}
onRefresh={this.getIssueInformation}
contentContainerStyle={{ flexGrow: 1 }}
ListHeaderComponent={this.renderHeader}
removeClippedSubviews={false}
data={fullComments}
keyExtractor={this.keyExtractor}
renderItem={this.renderItem}
/>
<CommentInput
users={fullUsers}
userHasPushPermission={
navigation.state.params.userHasPushPermission
}
issueLocked={issue.locked}
language={language}
onSubmit={this.postComment}
/>
</KeyboardAvoidingView>}
</ViewContainer>
);
}
}
export const IssueScreen = connect(mapStateToProps, mapDispatchToProps)(Issue);
| 26.139881 | 80 | 0.605374 |
b73a1b0fe16712e1b30afeeabe856c88df9770ef | 2,639 | js | JavaScript | artifact_evaluation/data/codeCoverage/deepsmith_generate/856.js | weucode/COMFORT | 0cfce5d70a58503f8ba3c3ff825abc24b79a1d2b | [
"Apache-2.0"
] | 55 | 2021-03-05T06:42:22.000Z | 2022-02-22T05:33:47.000Z | artifact_evaluation/data/codeCoverage/deepsmith_generate/856.js | Delepha/COMFORT | a76ab2cc0069542b2bd75e4952c4709eef936124 | [
"Apache-2.0"
] | null | null | null | artifact_evaluation/data/codeCoverage/deepsmith_generate/856.js | Delepha/COMFORT | a76ab2cc0069542b2bd75e4952c4709eef936124 | [
"Apache-2.0"
] | 20 | 2021-04-14T15:17:05.000Z | 2022-02-15T10:48:00.000Z | var NISLFuzzingFunc = function(eval, delimit) {
return this.direction.get();
};
var NISLParameter0 = "(hsDY6sjqI}M6\\H)*J>bJ,h0X";
var NISLParameter1 = [8, undefined, [undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined, undefined], 9831540, null, true, ["t%Hl qZthG,phV@-G[CMBG8<1tX[mnS<\\i]`v zsJ]W*O>j<[K}ol", "/COS5P)G;Ap`5u=+85odc7", "47gaNt\\T_U8a71BscsLb'7\"qM`B,)~ab_.)_$];Tk:LR!B.I0E`v-_8(7X-1!#vREvx<Q>8)VT7sn?8o4Atk 1\"CKU9D\\R|Eh5XK 7xK14", ";YrB\"2D#\"=Hr!D*R7EsaF!m2\\xqMm:d(kfTNE`8NbSuaO8}2>CVV%nvT/JxNbJt@t,&TlOTt`x:%k2680HBQ.c7jK{l^c\\~].IDoGN;&5", "X3\"(Q=nRRd#`V\"[y)adIdK", "N=4;T 9<)}#wY^R0nA*gEj+}sHDk22FSh{Aqafed{f6x2O*ReD(l>In\"!pYo", ":Bx3d@2`F`sL9UB![@1=<kn2", "l.%*wT?4#Ka~4JGGt7xF }0e:<u;gdNB>V4b[4[}k&(]e4oBbU)';Bk; a-g K{_O^<O1i", "RGfOKhxtE<MNB)A+a^5e,w(c 9Gv!) ?[ds$jO9t{z2`/AxSz81vWr\\(7h", "&zq}#5Z&)T/", "|*hfbfZwBp~n@Ps]I;hX5^{t:4}zr4a5CeM?piZmM9EqK\"gdG", "9h~1\\ae{,Nl6tc]XJ.jtY~s4%JmAjHT;v$Qc7gXM7D", "q!jen}k[X*kOZf_'dn?zc", "M{vt<)c5KUZ(^L-;7e+/>;Q((fr^Plr9MXIo\\", "\"dBW/m%Mt>u!\"y`\\4P)O:.alRLtn#/94I!yJxg-!pPTrV|s`l/curXo=/V6^:~CQ1Q/HQ8YOW~v9v", "V&C^(\"[Htty-#54?h)/c0LM'9!syJY;g2PzE\"];%\"gCpgw[V@|tG5e48)`{E`\\;"], [function(ignoreContents, actionScreen) {
return this._widget || null == rightBottom.getCursorizing("YImage", iState, filterNode, fileState.getPause());
}, function(_collector, hayver) {
return {
value: "column unundi unween .saved.",
mode: "first"
} ]
}, function(j) {
return this.array.length;
}, function() {
return {
matched: true,
constraints: crire,
getconfinititure: function($$.excludes() {
$.isSet($scope.display);
$D.assert.notFiles("and-tree.edit", controller.type);
}
};
$scope.setData("LMS");
}, function(test, points) {
return initializedState(tab);
}, function() {
this.router.attr("test", true);
}, function(step) {
return new Path();
}], [[[9342496291.6971492452312579, -2.3009002550556388, -368.8747919432026161, -3501.10937612869698832, 1360.8776708311840385, -1.4196141271422006, -48068996.07057062359395938, 0.608620822759555, -890223.9598325808617296, -449.0383167120318042, 96426649.5393987929812809, 634783.8553201864075659, 604710.34102897581070124], "DTRZ%/&", 6316325483.24479520150446543], 22277033.6748608951382173]];
NISLFuzzingFunc(NISLParameter0, NISLParameter1);
| 79.969697 | 1,120 | 0.608185 |
b73a5077ec10e745e12a235a0adb5da188336160 | 67,690 | js | JavaScript | .next/server/static/development/pages/index.js | jabattack1/misfits | dee588d4788be5dd17dbc81c16a33e895b63e3a5 | [
"MIT"
] | null | null | null | .next/server/static/development/pages/index.js | jabattack1/misfits | dee588d4788be5dd17dbc81c16a33e895b63e3a5 | [
"MIT"
] | 5 | 2020-07-17T09:02:31.000Z | 2021-12-09T01:02:31.000Z | .next/server/static/development/pages/index.js | jabattack1/misfits | dee588d4788be5dd17dbc81c16a33e895b63e3a5 | [
"MIT"
] | 1 | 2019-06-25T21:06:21.000Z | 2019-06-25T21:06:21.000Z | module.exports =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = require('../../../ssr-module-cache.js');
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ var threw = true;
/******/ try {
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ threw = false;
/******/ } finally {
/******/ if(threw) delete installedModules[moduleId];
/******/ }
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 3);
/******/ })
/************************************************************************/
/******/ ({
/***/ "./node_modules/@babel/runtime-corejs2/core-js/json/stringify.js":
/*!***********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/json/stringify.js ***!
\***********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/json/stringify */ "core-js/library/fn/json/stringify");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/assign.js":
/*!**********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/assign.js ***!
\**********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/assign */ "core-js/library/fn/object/assign");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/create.js":
/*!**********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/create.js ***!
\**********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/create */ "core-js/library/fn/object/create");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/define-properties.js":
/*!*********************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/define-properties.js ***!
\*********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/define-properties */ "core-js/library/fn/object/define-properties");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/define-property.js":
/*!*******************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/define-property.js ***!
\*******************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/define-property */ "core-js/library/fn/object/define-property");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/freeze.js":
/*!**********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/freeze.js ***!
\**********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/freeze */ "core-js/library/fn/object/freeze");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/get-prototype-of.js":
/*!********************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/get-prototype-of.js ***!
\********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/get-prototype-of */ "core-js/library/fn/object/get-prototype-of");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/object/set-prototype-of.js":
/*!********************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/object/set-prototype-of.js ***!
\********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/object/set-prototype-of */ "core-js/library/fn/object/set-prototype-of");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/promise.js":
/*!****************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/promise.js ***!
\****************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/promise */ "core-js/library/fn/promise");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/symbol.js":
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/symbol.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/symbol */ "core-js/library/fn/symbol");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/core-js/symbol/iterator.js":
/*!************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/core-js/symbol/iterator.js ***!
\************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! core-js/library/fn/symbol/iterator */ "core-js/library/fn/symbol/iterator");
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/assertThisInitialized.js":
/*!******************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/assertThisInitialized.js ***!
\******************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
module.exports = _assertThisInitialized;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/classCallCheck.js":
/*!***********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/classCallCheck.js ***!
\***********************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
module.exports = _classCallCheck;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/createClass.js":
/*!********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/createClass.js ***!
\********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _Object$defineProperty = __webpack_require__(/*! ../core-js/object/define-property */ "./node_modules/@babel/runtime-corejs2/core-js/object/define-property.js");
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
_Object$defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
module.exports = _createClass;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/assertThisInitialized.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/assertThisInitialized.js ***!
\**********************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _assertThisInitialized; });
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js":
/*!*****************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js ***!
\*****************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _asyncToGenerator; });
/* harmony import */ var _core_js_promise__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/promise */ "./node_modules/@babel/runtime-corejs2/core-js/promise.js");
/* harmony import */ var _core_js_promise__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_promise__WEBPACK_IMPORTED_MODULE_0__);
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
try {
var info = gen[key](arg);
var value = info.value;
} catch (error) {
reject(error);
return;
}
if (info.done) {
resolve(value);
} else {
_core_js_promise__WEBPACK_IMPORTED_MODULE_0___default.a.resolve(value).then(_next, _throw);
}
}
function _asyncToGenerator(fn) {
return function () {
var self = this,
args = arguments;
return new _core_js_promise__WEBPACK_IMPORTED_MODULE_0___default.a(function (resolve, reject) {
var gen = fn.apply(self, args);
function _next(value) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
}
function _throw(err) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
}
_next(undefined);
});
};
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/classCallCheck.js":
/*!***************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/classCallCheck.js ***!
\***************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _classCallCheck; });
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/createClass.js":
/*!************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/createClass.js ***!
\************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _createClass; });
/* harmony import */ var _core_js_object_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/object/define-property */ "./node_modules/@babel/runtime-corejs2/core-js/object/define-property.js");
/* harmony import */ var _core_js_object_define_property__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_define_property__WEBPACK_IMPORTED_MODULE_0__);
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
_core_js_object_define_property__WEBPACK_IMPORTED_MODULE_0___default()(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/extends.js":
/*!********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/extends.js ***!
\********************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _extends; });
/* harmony import */ var _core_js_object_assign__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/object/assign */ "./node_modules/@babel/runtime-corejs2/core-js/object/assign.js");
/* harmony import */ var _core_js_object_assign__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_assign__WEBPACK_IMPORTED_MODULE_0__);
function _extends() {
_extends = _core_js_object_assign__WEBPACK_IMPORTED_MODULE_0___default.a || function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends.apply(this, arguments);
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/getPrototypeOf.js":
/*!***************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/getPrototypeOf.js ***!
\***************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _getPrototypeOf; });
/* harmony import */ var _core_js_object_get_prototype_of__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/object/get-prototype-of */ "./node_modules/@babel/runtime-corejs2/core-js/object/get-prototype-of.js");
/* harmony import */ var _core_js_object_get_prototype_of__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_get_prototype_of__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../core-js/object/set-prototype-of */ "./node_modules/@babel/runtime-corejs2/core-js/object/set-prototype-of.js");
/* harmony import */ var _core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_1__);
function _getPrototypeOf(o) {
_getPrototypeOf = _core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_1___default.a ? _core_js_object_get_prototype_of__WEBPACK_IMPORTED_MODULE_0___default.a : function _getPrototypeOf(o) {
return o.__proto__ || _core_js_object_get_prototype_of__WEBPACK_IMPORTED_MODULE_0___default()(o);
};
return _getPrototypeOf(o);
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/inherits.js":
/*!*********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/inherits.js ***!
\*********************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _inherits; });
/* harmony import */ var _core_js_object_create__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/object/create */ "./node_modules/@babel/runtime-corejs2/core-js/object/create.js");
/* harmony import */ var _core_js_object_create__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_create__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _setPrototypeOf__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./setPrototypeOf */ "./node_modules/@babel/runtime-corejs2/helpers/esm/setPrototypeOf.js");
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = _core_js_object_create__WEBPACK_IMPORTED_MODULE_0___default()(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: true,
configurable: true
}
});
if (superClass) Object(_setPrototypeOf__WEBPACK_IMPORTED_MODULE_1__["default"])(subClass, superClass);
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/possibleConstructorReturn.js":
/*!**************************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/possibleConstructorReturn.js ***!
\**************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _possibleConstructorReturn; });
/* harmony import */ var _helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../helpers/esm/typeof */ "./node_modules/@babel/runtime-corejs2/helpers/esm/typeof.js");
/* harmony import */ var _assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./assertThisInitialized */ "./node_modules/@babel/runtime-corejs2/helpers/esm/assertThisInitialized.js");
function _possibleConstructorReturn(self, call) {
if (call && (Object(_helpers_esm_typeof__WEBPACK_IMPORTED_MODULE_0__["default"])(call) === "object" || typeof call === "function")) {
return call;
}
return Object(_assertThisInitialized__WEBPACK_IMPORTED_MODULE_1__["default"])(self);
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/setPrototypeOf.js":
/*!***************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/setPrototypeOf.js ***!
\***************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _setPrototypeOf; });
/* harmony import */ var _core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/object/set-prototype-of */ "./node_modules/@babel/runtime-corejs2/core-js/object/set-prototype-of.js");
/* harmony import */ var _core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_0__);
function _setPrototypeOf(o, p) {
_setPrototypeOf = _core_js_object_set_prototype_of__WEBPACK_IMPORTED_MODULE_0___default.a || function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/taggedTemplateLiteral.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/taggedTemplateLiteral.js ***!
\**********************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _taggedTemplateLiteral; });
/* harmony import */ var _core_js_object_define_properties__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/object/define-properties */ "./node_modules/@babel/runtime-corejs2/core-js/object/define-properties.js");
/* harmony import */ var _core_js_object_define_properties__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_define_properties__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _core_js_object_freeze__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../core-js/object/freeze */ "./node_modules/@babel/runtime-corejs2/core-js/object/freeze.js");
/* harmony import */ var _core_js_object_freeze__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_core_js_object_freeze__WEBPACK_IMPORTED_MODULE_1__);
function _taggedTemplateLiteral(strings, raw) {
if (!raw) {
raw = strings.slice(0);
}
return _core_js_object_freeze__WEBPACK_IMPORTED_MODULE_1___default()(_core_js_object_define_properties__WEBPACK_IMPORTED_MODULE_0___default()(strings, {
raw: {
value: _core_js_object_freeze__WEBPACK_IMPORTED_MODULE_1___default()(raw)
}
}));
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/esm/typeof.js":
/*!*******************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/esm/typeof.js ***!
\*******************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _typeof; });
/* harmony import */ var _core_js_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../core-js/symbol/iterator */ "./node_modules/@babel/runtime-corejs2/core-js/symbol/iterator.js");
/* harmony import */ var _core_js_symbol_iterator__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_core_js_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _core_js_symbol__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../core-js/symbol */ "./node_modules/@babel/runtime-corejs2/core-js/symbol.js");
/* harmony import */ var _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_core_js_symbol__WEBPACK_IMPORTED_MODULE_1__);
function _typeof2(obj) { if (typeof _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a === "function" && typeof _core_js_symbol_iterator__WEBPACK_IMPORTED_MODULE_0___default.a === "symbol") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a === "function" && obj.constructor === _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a && obj !== _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a.prototype ? "symbol" : typeof obj; }; } return _typeof2(obj); }
function _typeof(obj) {
if (typeof _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a === "function" && _typeof2(_core_js_symbol_iterator__WEBPACK_IMPORTED_MODULE_0___default.a) === "symbol") {
_typeof = function _typeof(obj) {
return _typeof2(obj);
};
} else {
_typeof = function _typeof(obj) {
return obj && typeof _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a === "function" && obj.constructor === _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a && obj !== _core_js_symbol__WEBPACK_IMPORTED_MODULE_1___default.a.prototype ? "symbol" : _typeof2(obj);
};
}
return _typeof(obj);
}
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/getPrototypeOf.js":
/*!***********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/getPrototypeOf.js ***!
\***********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _Object$getPrototypeOf = __webpack_require__(/*! ../core-js/object/get-prototype-of */ "./node_modules/@babel/runtime-corejs2/core-js/object/get-prototype-of.js");
var _Object$setPrototypeOf = __webpack_require__(/*! ../core-js/object/set-prototype-of */ "./node_modules/@babel/runtime-corejs2/core-js/object/set-prototype-of.js");
function _getPrototypeOf(o) {
module.exports = _getPrototypeOf = _Object$setPrototypeOf ? _Object$getPrototypeOf : function _getPrototypeOf(o) {
return o.__proto__ || _Object$getPrototypeOf(o);
};
return _getPrototypeOf(o);
}
module.exports = _getPrototypeOf;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/inherits.js":
/*!*****************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/inherits.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _Object$create = __webpack_require__(/*! ../core-js/object/create */ "./node_modules/@babel/runtime-corejs2/core-js/object/create.js");
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf */ "./node_modules/@babel/runtime-corejs2/helpers/setPrototypeOf.js");
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = _Object$create(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: true,
configurable: true
}
});
if (superClass) setPrototypeOf(subClass, superClass);
}
module.exports = _inherits;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/interopRequireDefault.js":
/*!******************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/interopRequireDefault.js ***!
\******************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
module.exports = _interopRequireDefault;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/possibleConstructorReturn.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/possibleConstructorReturn.js ***!
\**********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _typeof = __webpack_require__(/*! ../helpers/typeof */ "./node_modules/@babel/runtime-corejs2/helpers/typeof.js");
var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized */ "./node_modules/@babel/runtime-corejs2/helpers/assertThisInitialized.js");
function _possibleConstructorReturn(self, call) {
if (call && (_typeof(call) === "object" || typeof call === "function")) {
return call;
}
return assertThisInitialized(self);
}
module.exports = _possibleConstructorReturn;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/setPrototypeOf.js":
/*!***********************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/setPrototypeOf.js ***!
\***********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _Object$setPrototypeOf = __webpack_require__(/*! ../core-js/object/set-prototype-of */ "./node_modules/@babel/runtime-corejs2/core-js/object/set-prototype-of.js");
function _setPrototypeOf(o, p) {
module.exports = _setPrototypeOf = _Object$setPrototypeOf || function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
};
return _setPrototypeOf(o, p);
}
module.exports = _setPrototypeOf;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/helpers/typeof.js":
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/helpers/typeof.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _Symbol$iterator = __webpack_require__(/*! ../core-js/symbol/iterator */ "./node_modules/@babel/runtime-corejs2/core-js/symbol/iterator.js");
var _Symbol = __webpack_require__(/*! ../core-js/symbol */ "./node_modules/@babel/runtime-corejs2/core-js/symbol.js");
function _typeof2(obj) { if (typeof _Symbol === "function" && typeof _Symbol$iterator === "symbol") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof _Symbol === "function" && obj.constructor === _Symbol && obj !== _Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof2(obj); }
function _typeof(obj) {
if (typeof _Symbol === "function" && _typeof2(_Symbol$iterator) === "symbol") {
module.exports = _typeof = function _typeof(obj) {
return _typeof2(obj);
};
} else {
module.exports = _typeof = function _typeof(obj) {
return obj && typeof _Symbol === "function" && obj.constructor === _Symbol && obj !== _Symbol.prototype ? "symbol" : _typeof2(obj);
};
}
return _typeof(obj);
}
module.exports = _typeof;
/***/ }),
/***/ "./node_modules/@babel/runtime-corejs2/regenerator/index.js":
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime-corejs2/regenerator/index.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! regenerator-runtime */ "regenerator-runtime");
/***/ }),
/***/ "./node_modules/next/dist/client/link.js":
/*!***********************************************!*\
!*** ./node_modules/next/dist/client/link.js ***!
\***********************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* global __NEXT_DATA__ */
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime-corejs2/helpers/interopRequireDefault */ "./node_modules/@babel/runtime-corejs2/helpers/interopRequireDefault.js");
var _stringify = _interopRequireDefault(__webpack_require__(/*! @babel/runtime-corejs2/core-js/json/stringify */ "./node_modules/@babel/runtime-corejs2/core-js/json/stringify.js"));
var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime-corejs2/helpers/classCallCheck */ "./node_modules/@babel/runtime-corejs2/helpers/classCallCheck.js"));
var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime-corejs2/helpers/createClass */ "./node_modules/@babel/runtime-corejs2/helpers/createClass.js"));
var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime-corejs2/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime-corejs2/helpers/possibleConstructorReturn.js"));
var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime-corejs2/helpers/getPrototypeOf */ "./node_modules/@babel/runtime-corejs2/helpers/getPrototypeOf.js"));
var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime-corejs2/helpers/inherits */ "./node_modules/@babel/runtime-corejs2/helpers/inherits.js"));
var __importStar = void 0 && (void 0).__importStar || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) {
if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
}
result["default"] = mod;
return result;
};
var __importDefault = void 0 && (void 0).__importDefault || function (mod) {
return mod && mod.__esModule ? mod : {
"default": mod
};
};
Object.defineProperty(exports, "__esModule", {
value: true
});
var url_1 = __webpack_require__(/*! url */ "url");
var react_1 = __importStar(__webpack_require__(/*! react */ "react"));
var prop_types_1 = __importDefault(__webpack_require__(/*! prop-types */ "prop-types"));
var router_1 = __importStar(__webpack_require__(/*! next/router */ "next/router"));
var utils_1 = __webpack_require__(/*! next-server/dist/lib/utils */ "next-server/dist/lib/utils");
function isLocal(href) {
var url = url_1.parse(href, false, true);
var origin = url_1.parse(utils_1.getLocationOrigin(), false, true);
return !url.host || url.protocol === origin.protocol && url.host === origin.host;
}
function memoizedFormatUrl(formatFunc) {
var lastHref = null;
var lastAs = null;
var lastResult = null;
return function (href, as) {
if (href === lastHref && as === lastAs) {
return lastResult;
}
var result = formatFunc(href, as);
lastHref = href;
lastAs = as;
lastResult = result;
return result;
};
}
function formatUrl(url) {
return url && typeof url === 'object' ? utils_1.formatWithValidation(url) : url;
}
var Link =
/*#__PURE__*/
function (_react_1$Component) {
(0, _inherits2.default)(Link, _react_1$Component);
function Link() {
var _this;
(0, _classCallCheck2.default)(this, Link);
_this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(Link).apply(this, arguments)); // The function is memoized so that no extra lifecycles are needed
// as per https://reactjs.org/blog/2018/06/07/you-probably-dont-need-derived-state.html
_this.formatUrls = memoizedFormatUrl(function (href, asHref) {
return {
href: formatUrl(href),
as: formatUrl(asHref, true)
};
});
_this.linkClicked = function (e) {
var _e$currentTarget = e.currentTarget,
nodeName = _e$currentTarget.nodeName,
target = _e$currentTarget.target;
if (nodeName === 'A' && (target && target !== '_self' || e.metaKey || e.ctrlKey || e.shiftKey || e.nativeEvent && e.nativeEvent.which === 2)) {
// ignore click for new tab / new window behavior
return;
}
var _this$formatUrls = _this.formatUrls(_this.props.href, _this.props.as),
href = _this$formatUrls.href,
as = _this$formatUrls.as;
if (!isLocal(href)) {
// ignore click if it's outside our scope
return;
}
var pathname = window.location.pathname;
href = url_1.resolve(pathname, href);
as = as ? url_1.resolve(pathname, as) : href;
e.preventDefault(); // avoid scroll for urls with anchor refs
var scroll = _this.props.scroll;
if (scroll == null) {
scroll = as.indexOf('#') < 0;
} // replace state instead of push if prop is present
router_1.default[_this.props.replace ? 'replace' : 'push'](href, as, {
shallow: _this.props.shallow
}).then(function (success) {
if (!success) return;
if (scroll) {
window.scrollTo(0, 0);
document.body.focus();
}
}).catch(function (err) {
if (_this.props.onError) _this.props.onError(err);
});
};
return _this;
}
(0, _createClass2.default)(Link, [{
key: "componentDidMount",
value: function componentDidMount() {
this.prefetch();
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate(prevProps) {
if ((0, _stringify.default)(this.props.href) !== (0, _stringify.default)(prevProps.href)) {
this.prefetch();
}
}
}, {
key: "prefetch",
value: function prefetch() {
if (!this.props.prefetch) return;
if (typeof window === 'undefined') return; // Prefetch the JSON page if asked (only in the client)
var pathname = window.location.pathname;
var _this$formatUrls2 = this.formatUrls(this.props.href, this.props.as),
parsedHref = _this$formatUrls2.href;
var href = url_1.resolve(pathname, parsedHref);
router_1.default.prefetch(href);
}
}, {
key: "render",
value: function render() {
var _this2 = this;
var children = this.props.children;
var _this$formatUrls3 = this.formatUrls(this.props.href, this.props.as),
href = _this$formatUrls3.href,
as = _this$formatUrls3.as; // Deprecated. Warning shown by propType check. If the childen provided is a string (<Link>example</Link>) we wrap it in an <a> tag
if (typeof children === 'string') {
children = react_1.default.createElement("a", null, children);
} // This will return the first child, if multiple are provided it will throw an error
var child = react_1.Children.only(children);
var props = {
onClick: function onClick(e) {
if (child.props && typeof child.props.onClick === 'function') {
child.props.onClick(e);
}
if (!e.defaultPrevented) {
_this2.linkClicked(e);
}
}
}; // If child is an <a> tag and doesn't have a href attribute, or if the 'passHref' property is
// defined, we specify the current 'href', so that repetition is not needed by the user
if (this.props.passHref || child.type === 'a' && !('href' in child.props)) {
props.href = as || href;
} // Add the ending slash to the paths. So, we can serve the
// "<page>/index.html" directly.
if (true) {
if (props.href && typeof __NEXT_DATA__ !== 'undefined' && __NEXT_DATA__.nextExport) {
props.href = router_1.Router._rewriteUrlForNextExport(props.href);
}
}
return react_1.default.cloneElement(child, props);
}
}]);
return Link;
}(react_1.Component);
if (true) {
var warn = utils_1.execOnce(console.error); // This module gets removed by webpack.IgnorePlugin
var exact = __webpack_require__(/*! prop-types-exact */ "prop-types-exact");
Link.propTypes = exact({
href: prop_types_1.default.oneOfType([prop_types_1.default.string, prop_types_1.default.object]).isRequired,
as: prop_types_1.default.oneOfType([prop_types_1.default.string, prop_types_1.default.object]),
prefetch: prop_types_1.default.bool,
replace: prop_types_1.default.bool,
shallow: prop_types_1.default.bool,
passHref: prop_types_1.default.bool,
scroll: prop_types_1.default.bool,
children: prop_types_1.default.oneOfType([prop_types_1.default.element, function (props, propName) {
var value = props[propName];
if (typeof value === 'string') {
warn("Warning: You're using a string directly inside <Link>. This usage has been deprecated. Please add an <a> tag as child of <Link>");
}
return null;
}]).isRequired
});
}
exports.default = Link;
/***/ }),
/***/ "./node_modules/next/link.js":
/*!***********************************!*\
!*** ./node_modules/next/link.js ***!
\***********************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! ./dist/client/link */ "./node_modules/next/dist/client/link.js")
/***/ }),
/***/ "./pages/index.js":
/*!************************!*\
!*** ./pages/index.js ***!
\************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _babel_runtime_corejs2_regenerator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime-corejs2/regenerator */ "./node_modules/@babel/runtime-corejs2/regenerator/index.js");
/* harmony import */ var _babel_runtime_corejs2_regenerator__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_corejs2_regenerator__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_asyncToGenerator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/asyncToGenerator */ "./node_modules/@babel/runtime-corejs2/helpers/esm/asyncToGenerator.js");
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/extends */ "./node_modules/@babel/runtime-corejs2/helpers/esm/extends.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react */ "react");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_3__);
/* harmony import */ var isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! isomorphic-unfetch */ "isomorphic-unfetch");
/* harmony import */ var isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_4__);
/* harmony import */ var _src_css_style_css__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../src/css/style.css */ "./src/css/style.css");
/* harmony import */ var _src_css_style_css__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_src_css_style_css__WEBPACK_IMPORTED_MODULE_5__);
/* harmony import */ var _src_components_layout__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../src/components/layout */ "./src/components/layout.js");
/* harmony import */ var _src_components_mainMenu__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../src/components/mainMenu */ "./src/components/mainMenu.js");
var _jsxFileName = "/Users/peterhahn/src/new/misfits/misfits-market/pages/index.js";
//Switches between unfetch & node-fetch for client & server.
//centralized css for non-components
//React components
var Index = function Index(props) {
return react__WEBPACK_IMPORTED_MODULE_3___default.a.createElement(_src_components_layout__WEBPACK_IMPORTED_MODULE_6__["default"], {
__source: {
fileName: _jsxFileName,
lineNumber: 10
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_3___default.a.createElement("div", {
__source: {
fileName: _jsxFileName,
lineNumber: 11
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_3___default.a.createElement(_src_components_mainMenu__WEBPACK_IMPORTED_MODULE_7__["default"], Object(_babel_runtime_corejs2_helpers_esm_extends__WEBPACK_IMPORTED_MODULE_2__["default"])({}, props.misfits, {
__source: {
fileName: _jsxFileName,
lineNumber: 12
},
__self: this
}))));
};
Index.getInitialProps =
/*#__PURE__*/
Object(_babel_runtime_corejs2_helpers_esm_asyncToGenerator__WEBPACK_IMPORTED_MODULE_1__["default"])(
/*#__PURE__*/
_babel_runtime_corejs2_regenerator__WEBPACK_IMPORTED_MODULE_0___default.a.mark(function _callee() {
var result, data;
return _babel_runtime_corejs2_regenerator__WEBPACK_IMPORTED_MODULE_0___default.a.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
_context.next = 2;
return isomorphic_unfetch__WEBPACK_IMPORTED_MODULE_4___default()('https://nursery.misfitsmarket.com/api/test/v1');
case 2:
result = _context.sent;
_context.next = 5;
return result.json();
case 5:
data = _context.sent;
return _context.abrupt("return", {
misfits: data
});
case 7:
case "end":
return _context.stop();
}
}
}, _callee);
}));
/* harmony default export */ __webpack_exports__["default"] = (Index);
/***/ }),
/***/ "./src/components/layout.js":
/*!**********************************!*\
!*** ./src/components/layout.js ***!
\**********************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/taggedTemplateLiteral */ "./node_modules/@babel/runtime-corejs2/helpers/esm/taggedTemplateLiteral.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ "react");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! next/head */ "next/head");
/* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(next_head__WEBPACK_IMPORTED_MODULE_2__);
/* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! next/link */ "./node_modules/next/link.js");
/* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(next_link__WEBPACK_IMPORTED_MODULE_3__);
/* harmony import */ var styled_components__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! styled-components */ "styled-components");
/* harmony import */ var styled_components__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(styled_components__WEBPACK_IMPORTED_MODULE_4__);
var _jsxFileName = "/Users/peterhahn/src/new/misfits/misfits-market/src/components/layout.js";
function _templateObject2() {
var data = Object(_babel_runtime_corejs2_helpers_esm_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__["default"])(["\n\tposition: absolute;\n\tbackground-color:#F2EEBC;\n\tpadding:2em;\n\twidth:300px;\n\theight:400px;\n\ttop: 50%;\n\tleft: 50%;\n\ttransform: translate(-50%, -50%);\n\t-ms-transform: translate(-50%, -50%); /* IE 9 */\n\t-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */\n"]);
_templateObject2 = function _templateObject2() {
return data;
};
return data;
}
function _templateObject() {
var data = Object(_babel_runtime_corejs2_helpers_esm_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__["default"])(["\n\tmargin:0 auto;\n\twidth: 100vw;\n\theight: 100vh;\n\tbackground-image: url(\"https://i.imgur.com/xX7RvdC.png\");\n"]);
_templateObject = function _templateObject() {
return data;
};
return data;
}
//built-in component for appending elements to the <head> of the page
//next-routes helper
//Visual primitives for the component age
var Wrapper = styled_components__WEBPACK_IMPORTED_MODULE_4___default.a.div(_templateObject());
var Container = styled_components__WEBPACK_IMPORTED_MODULE_4___default.a.div(_templateObject2());
var Layout = function Layout(props) {
return react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("div", {
__source: {
fileName: _jsxFileName,
lineNumber: 28
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(next_head__WEBPACK_IMPORTED_MODULE_2___default.a, {
className: "main",
__source: {
fileName: _jsxFileName,
lineNumber: 29
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("title", {
__source: {
fileName: _jsxFileName,
lineNumber: 30
},
__self: this
}, "Misfits Market"), react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement("link", {
rel: "icon",
type: "image/png",
href: "https://i.imgur.com/nxMZvrg.png",
__source: {
fileName: _jsxFileName,
lineNumber: 31
},
__self: this
})), react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(Wrapper, {
__source: {
fileName: _jsxFileName,
lineNumber: 33
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_1___default.a.createElement(Container, {
__source: {
fileName: _jsxFileName,
lineNumber: 34
},
__self: this
}, props.children)));
};
/* harmony default export */ __webpack_exports__["default"] = (Layout);
/***/ }),
/***/ "./src/components/mainMenu.js":
/*!************************************!*\
!*** ./src/components/mainMenu.js ***!
\************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/classCallCheck */ "./node_modules/@babel/runtime-corejs2/helpers/esm/classCallCheck.js");
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/createClass */ "./node_modules/@babel/runtime-corejs2/helpers/esm/createClass.js");
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/possibleConstructorReturn */ "./node_modules/@babel/runtime-corejs2/helpers/esm/possibleConstructorReturn.js");
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/getPrototypeOf */ "./node_modules/@babel/runtime-corejs2/helpers/esm/getPrototypeOf.js");
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/inherits */ "./node_modules/@babel/runtime-corejs2/helpers/esm/inherits.js");
/* harmony import */ var _babel_runtime_corejs2_helpers_esm_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @babel/runtime-corejs2/helpers/esm/taggedTemplateLiteral */ "./node_modules/@babel/runtime-corejs2/helpers/esm/taggedTemplateLiteral.js");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! react */ "react");
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_6__);
/* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! next/link */ "./node_modules/next/link.js");
/* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(next_link__WEBPACK_IMPORTED_MODULE_7__);
/* harmony import */ var styled_components__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! styled-components */ "styled-components");
/* harmony import */ var styled_components__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(styled_components__WEBPACK_IMPORTED_MODULE_8__);
var _jsxFileName = "/Users/peterhahn/src/new/misfits/misfits-market/src/components/mainMenu.js";
function _templateObject2() {
var data = Object(_babel_runtime_corejs2_helpers_esm_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_5__["default"])(["\n\twidth:10em; \n\tmargin:0 auto; \n\tdisplay:block; \n\tpadding:1.7em;\n\t\n\t&:hover {\n\t\tcursor:pointer;\n\t }\n"]);
_templateObject2 = function _templateObject2() {
return data;
};
return data;
}
function _templateObject() {
var data = Object(_babel_runtime_corejs2_helpers_esm_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_5__["default"])(["\n\twidth:100%\n"]);
_templateObject = function _templateObject() {
return data;
};
return data;
}
//next-routes helper
//Visual primitives for the component age
var Image = styled_components__WEBPACK_IMPORTED_MODULE_8___default.a.img(_templateObject());
var Fruit = styled_components__WEBPACK_IMPORTED_MODULE_8___default.a.img(_templateObject2());
var MainMenu =
/*#__PURE__*/
function (_React$Component) {
Object(_babel_runtime_corejs2_helpers_esm_inherits__WEBPACK_IMPORTED_MODULE_4__["default"])(MainMenu, _React$Component);
function MainMenu() {
Object(_babel_runtime_corejs2_helpers_esm_classCallCheck__WEBPACK_IMPORTED_MODULE_0__["default"])(this, MainMenu);
return Object(_babel_runtime_corejs2_helpers_esm_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_2__["default"])(this, Object(_babel_runtime_corejs2_helpers_esm_getPrototypeOf__WEBPACK_IMPORTED_MODULE_3__["default"])(MainMenu).apply(this, arguments));
}
Object(_babel_runtime_corejs2_helpers_esm_createClass__WEBPACK_IMPORTED_MODULE_1__["default"])(MainMenu, [{
key: "render",
value: function render() {
var items = '';
if (this.props.msg === 'Success') {
items = react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement("div", {
__source: {
fileName: _jsxFileName,
lineNumber: 28
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement(Image, {
className: "misfitsLogo",
src: "https://cdn.shopify.com/s/files/1/0021/1750/1026/t/10/assets/misfits-market-header-logo.svg?515772",
title: "misfits market",
__source: {
fileName: _jsxFileName,
lineNumber: 29
},
__self: this
}), react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement(next_link__WEBPACK_IMPORTED_MODULE_7___default.a, {
href: "/itemsIndex",
__source: {
fileName: _jsxFileName,
lineNumber: 30
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement(Fruit, {
src: "https://cdn.shopify.com/s/files/1/0021/1750/1026/t/10/assets/blemishes.svg?515772g",
__source: {
fileName: _jsxFileName,
lineNumber: 31
},
__self: this
})));
} else {
items = react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement("div", {
__source: {
fileName: _jsxFileName,
lineNumber: 37
},
__self: this
}, react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement(Image, {
className: "misfitsLogo",
src: "https://cdn.shopify.com/s/files/1/0021/1750/1026/t/10/assets/misfits-market-header-logo.svg?515772",
title: "misfits market",
__source: {
fileName: _jsxFileName,
lineNumber: 38
},
__self: this
}), react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement(Fruit, {
src: "https://i.imgur.com/5cSXs3A.png",
__source: {
fileName: _jsxFileName,
lineNumber: 39
},
__self: this
}));
}
return react__WEBPACK_IMPORTED_MODULE_6___default.a.createElement("div", {
__source: {
fileName: _jsxFileName,
lineNumber: 45
},
__self: this
}, items);
}
}]);
return MainMenu;
}(react__WEBPACK_IMPORTED_MODULE_6___default.a.Component);
/* harmony default export */ __webpack_exports__["default"] = (MainMenu);
/***/ }),
/***/ "./src/css/style.css":
/*!***************************!*\
!*** ./src/css/style.css ***!
\***************************/
/*! no static exports found */
/***/ (function(module, exports) {
/***/ }),
/***/ 3:
/*!******************************!*\
!*** multi ./pages/index.js ***!
\******************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(/*! /Users/peterhahn/src/new/misfits/misfits-market/pages/index.js */"./pages/index.js");
/***/ }),
/***/ "core-js/library/fn/json/stringify":
/*!****************************************************!*\
!*** external "core-js/library/fn/json/stringify" ***!
\****************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/json/stringify");
/***/ }),
/***/ "core-js/library/fn/object/assign":
/*!***************************************************!*\
!*** external "core-js/library/fn/object/assign" ***!
\***************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/assign");
/***/ }),
/***/ "core-js/library/fn/object/create":
/*!***************************************************!*\
!*** external "core-js/library/fn/object/create" ***!
\***************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/create");
/***/ }),
/***/ "core-js/library/fn/object/define-properties":
/*!**************************************************************!*\
!*** external "core-js/library/fn/object/define-properties" ***!
\**************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/define-properties");
/***/ }),
/***/ "core-js/library/fn/object/define-property":
/*!************************************************************!*\
!*** external "core-js/library/fn/object/define-property" ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/define-property");
/***/ }),
/***/ "core-js/library/fn/object/freeze":
/*!***************************************************!*\
!*** external "core-js/library/fn/object/freeze" ***!
\***************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/freeze");
/***/ }),
/***/ "core-js/library/fn/object/get-prototype-of":
/*!*************************************************************!*\
!*** external "core-js/library/fn/object/get-prototype-of" ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/get-prototype-of");
/***/ }),
/***/ "core-js/library/fn/object/set-prototype-of":
/*!*************************************************************!*\
!*** external "core-js/library/fn/object/set-prototype-of" ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/object/set-prototype-of");
/***/ }),
/***/ "core-js/library/fn/promise":
/*!*********************************************!*\
!*** external "core-js/library/fn/promise" ***!
\*********************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/promise");
/***/ }),
/***/ "core-js/library/fn/symbol":
/*!********************************************!*\
!*** external "core-js/library/fn/symbol" ***!
\********************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/symbol");
/***/ }),
/***/ "core-js/library/fn/symbol/iterator":
/*!*****************************************************!*\
!*** external "core-js/library/fn/symbol/iterator" ***!
\*****************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("core-js/library/fn/symbol/iterator");
/***/ }),
/***/ "isomorphic-unfetch":
/*!*************************************!*\
!*** external "isomorphic-unfetch" ***!
\*************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("isomorphic-unfetch");
/***/ }),
/***/ "next-server/dist/lib/utils":
/*!*********************************************!*\
!*** external "next-server/dist/lib/utils" ***!
\*********************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("next-server/dist/lib/utils");
/***/ }),
/***/ "next/head":
/*!****************************!*\
!*** external "next/head" ***!
\****************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("next/head");
/***/ }),
/***/ "next/router":
/*!******************************!*\
!*** external "next/router" ***!
\******************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("next/router");
/***/ }),
/***/ "prop-types":
/*!*****************************!*\
!*** external "prop-types" ***!
\*****************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("prop-types");
/***/ }),
/***/ "prop-types-exact":
/*!***********************************!*\
!*** external "prop-types-exact" ***!
\***********************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("prop-types-exact");
/***/ }),
/***/ "react":
/*!************************!*\
!*** external "react" ***!
\************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("react");
/***/ }),
/***/ "regenerator-runtime":
/*!**************************************!*\
!*** external "regenerator-runtime" ***!
\**************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("regenerator-runtime");
/***/ }),
/***/ "styled-components":
/*!************************************!*\
!*** external "styled-components" ***!
\************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("styled-components");
/***/ }),
/***/ "url":
/*!**********************!*\
!*** external "url" ***!
\**********************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = require("url");
/***/ })
/******/ });
//# sourceMappingURL=index.js.map | 41.706716 | 597 | 0.620579 |
b73a65437eb95e1cb8ef08a07afc721970f431bc | 1,693 | js | JavaScript | node_modules/lottie-web/player/js/elements/canvasElements/CVCompElement.js | mgavillo/personnal_website | 3f9c906244ab92e4d7fcede8c4d901a7e123c1d3 | [
"MIT"
] | null | null | null | node_modules/lottie-web/player/js/elements/canvasElements/CVCompElement.js | mgavillo/personnal_website | 3f9c906244ab92e4d7fcede8c4d901a7e123c1d3 | [
"MIT"
] | null | null | null | node_modules/lottie-web/player/js/elements/canvasElements/CVCompElement.js | mgavillo/personnal_website | 3f9c906244ab92e4d7fcede8c4d901a7e123c1d3 | [
"MIT"
] | null | null | null | import {
extendPrototype,
} from '../../utils/functionExtensions';
import {
createSizedArray,
} from '../../utils/helpers/arrays';
import PropertyFactory from '../../utils/PropertyFactory';
import CanvasRendererBase from '../../renderers/CanvasRendererBase';
import CVBaseElement from './CVBaseElement';
import ICompElement from '../CompElement';
function CVCompElement(data, globalData, comp) {
this.completeLayers = false;
this.layers = data.layers;
this.pendingElements = [];
this.elements = createSizedArray(this.layers.length);
this.initElement(data, globalData, comp);
this.tm = data.tm ? PropertyFactory.getProp(this, data.tm, 0, globalData.frameRate, this) : { _placeholder: true };
}
extendPrototype([CanvasRendererBase, ICompElement, CVBaseElement], CVCompElement);
CVCompElement.prototype.renderInnerContent = function () {
var ctx = this.canvasContext;
ctx.beginPath();
ctx.moveTo(0, 0);
ctx.lineTo(this.data.w, 0);
ctx.lineTo(this.data.w, this.data.h);
ctx.lineTo(0, this.data.h);
ctx.lineTo(0, 0);
ctx.clip();
var i;
var len = this.layers.length;
for (i = len - 1; i >= 0; i -= 1) {
if (this.completeLayers || this.elements[i]) {
this.elements[i].renderFrame();
}
}
};
CVCompElement.prototype.destroy = function () {
var i;
var len = this.layers.length;
for (i = len - 1; i >= 0; i -= 1) {
if (this.elements[i]) {
this.elements[i].destroy();
}
}
this.layers = null;
this.elements = null;
};
CVCompElement.prototype.createComp = function (data) {
return new CVCompElement(data, this.globalData, this);
};
export default CVCompElement;
| 29.189655 | 118 | 0.661548 |
b73aee0f2832976817782a7282f4d0f75712508b | 2,223 | js | JavaScript | src/components/BucketList.js | KeithMurph/bucketList | 1ad99b4b1c5d7cdb370c6f015e9b98c291c725ec | [
"MIT"
] | null | null | null | src/components/BucketList.js | KeithMurph/bucketList | 1ad99b4b1c5d7cdb370c6f015e9b98c291c725ec | [
"MIT"
] | null | null | null | src/components/BucketList.js | KeithMurph/bucketList | 1ad99b4b1c5d7cdb370c6f015e9b98c291c725ec | [
"MIT"
] | null | null | null | import React, { useState } from 'react';
import BucketForm from './BucketForm';
import Bucket from './Bucket';
function BucketList() {
const [bucket, setBucket] = useState([]);
// Function to add a bucket list item
const addBucketItem = (item) => {
console.log(
'🚀 ~ file: BucketList.js ~ line 10 ~ addBucketItem ~ item',
item
);
// Check to see if the item text is empty
if (!item.text) {
return;
}
// Add the new bucket list item to the existing array of objects
const newBucket = [item, ...bucket];
console.log(`old bucket: `, bucket);
console.log(`newBucket: `, newBucket);
// Call setBucket to update state with our new set of bucket list items
setBucket(newBucket);
};
// Function to mark bucket list item as complete
const completeBucketItem = (id) => {
// If the ID passed to this function matches the ID of the item that was clicked, mark it as complete
let updatedBucket = bucket.map((item) => {
if (item.id === id) {
item.isComplete = !item.isComplete;
}
return item;
});
console.log(updatedBucket);
setBucket(updatedBucket);
};
// Function to remove bucket list item and update state
const removeBucketItem = (id) => {
const updatedBucket = [...bucket].filter((item) => item.id !== id);
setBucket(updatedBucket);
};
// Function to edit the bucket list item
const editBucketItem = (itemId, newValue) => {
// Make sure that the value isn't empty
if (!newValue.text) {
return;
}
// We use the "prev" argument provided with the useState hook to map through our list of items
// We then check to see if the item ID matches the if of the item that was clicked and if so we set it to a new value
setBucket((prev) =>
prev.map((item) => (item.id === itemId ? newValue : item))
);
};
return (
<div>
<h1>What is on your bucket list?</h1>
<BucketForm onSubmit={addBucketItem} />
<Bucket
bucket={bucket}
completeBucketItem={completeBucketItem}
removeBucketItem={removeBucketItem}
editBucketItem={editBucketItem}
></Bucket>
</div>
);
}
export default BucketList;
| 28.5 | 121 | 0.631129 |
b73b05621ede696a7b39de3c8f73dd732822861f | 27,631 | js | JavaScript | fonts/iconfont/iconfont.js | dekura/dekura.github.io | 3f30d82300b288edb1acdf57b770232ed148572b | [
"MIT"
] | null | null | null | fonts/iconfont/iconfont.js | dekura/dekura.github.io | 3f30d82300b288edb1acdf57b770232ed148572b | [
"MIT"
] | 1 | 2018-06-22T04:52:04.000Z | 2018-06-22T04:52:26.000Z | fonts/iconfont/iconfont.js | dekura/dekura.github.io | 3f30d82300b288edb1acdf57b770232ed148572b | [
"MIT"
] | null | null | null | !function(c){var l,t,o,a,e,i='<svg><symbol id="icon-friends" viewBox="0 0 1024 1024"><path d="M725.509257 831.764767c-2.691295-127.590933-79.596849-236.927107-189.293227-286.568714 50.601468-39.391149 83.160002-100.874455 83.160002-169.973206 0-118.891807-96.399537-215.291344-215.289298-215.291344-118.909204 0-215.290321 96.399537-215.290321 215.291344 0 68.943209 32.405037 130.308835 82.810031 169.71124C162.562934 594.014922 85.7812 702.023868 81.812819 828.397067c-0.607844 2.612501-0.940418 5.330402-0.940418 8.127098l0.314155 3.311419c0 19.720134 15.988136 35.707246 35.70827 35.707246 19.718087 0 35.707246-15.987113 35.707246-35.707246l-0.041956-0.436952 0.686638 0c0-0.040932-0.001023-0.080841-0.001023-0.121773 0-131.137713 100.642165-238.745523 228.879827-249.872954 7.220449 0.731664 14.546298 1.107217 21.960151 1.107217 7.413853 0 14.738679-0.375553 21.959128-1.107217 125.666094 10.903328 224.817302 114.460892 228.744751 242.014986-0.23843 1.667989-0.36839 3.370771-0.36839 5.104251l0.314155 3.311419c0 19.720134 15.988136 35.707246 35.70827 35.707246s35.707246-15.987113 35.707246-35.707246l-0.314155-3.311419C725.835691 834.909387 725.716988 833.32224 725.509257 831.764767zM403.458423 517.947456c-79.08622 0-143.212726-64.10911-143.212726-143.212726 0-79.08622 64.126506-143.213749 143.212726-143.213749 79.103616 0 143.211702 64.12753 143.211702 143.213749C546.670126 453.837322 482.562039 517.947456 403.458423 517.947456zM940.07917 836.524165c0-1.607614-0.116657-3.187599-0.322341-4.739954-2.660596-126.44483-78.215386-234.955196-186.333826-285.216927-0.010233-1.215688-0.069585-2.418073-0.165776-3.611248 48.993854-39.460734 80.363306-99.921757 80.363306-167.733189 0-113.462145-87.797625-206.434629-199.152782-214.68964l-1.684362 1.684362c-18.071587 0.759293-32.499182 15.635095-32.499182 33.891901l0.314155 3.155876c0 18.742876 15.20326 33.929764 33.929764 33.929764 5.504364 0 10.69662-1.318018 15.292288-3.64297 1.277086 2.15099 2.538823 4.313236 3.761674 6.501064 61.734016 15.925714 107.334587 71.982428 107.334587 138.680503 0 53.311183-29.123294 99.80203-72.326259 124.456546l-0.86674 0.86674c-14.45113 4.955872-25.89067 16.391319-30.846542 30.847565l-3.605108 3.605108c0.704035 0.579191 1.397836 1.171686 2.099824 1.75497-0.762363 3.455705-1.176802 7.043417-1.176802 10.728342l0.453325 4.602831c0 27.409257 22.229281 49.621141 49.619094 49.621141 4.146437 0 8.170077-0.515746 12.019755-1.473561 3.217275 4.201695 6.359848 8.463766 9.407254 12.796444 82.575694 39.164998 140.351562 122.095779 143.343709 218.84324-0.2415 1.680269-0.373507 3.394307-0.373507 5.140067l0.313132 3.311419c0 19.720134 15.990183 35.707246 35.709293 35.707246 19.720134 0 35.707246-15.987113 35.707246-35.707246L940.07917 836.524165z" ></path></symbol><symbol id="icon-jike" viewBox="0 0 1024 1024"><path d="M512 512m-512 0a512 512 0 1 0 1024 0 512 512 0 1 0-1024 0Z" ></path><path d="M492 246h128v327c4 179-198 202-242 204-4-12-14-60-25-103 119-8 139-68 139-115V246z" ></path></symbol><symbol id="icon-news" viewBox="0 0 1024 1024"><path d="M512 869.333333a541.525333 541.525333 0 0 1-89.045333-7.637333l-208.725334 126.72v-210.858667C105.386667 701.141333 35.541333 584.021333 35.541333 452.394667c0-230.229333 213.333333-416.896 476.458667-416.896s476.458667 186.666667 476.458667 416.896-213.333333 416.938667-476.458667 416.938666z m0-774.229333c-230.229333 0-416.896 160-416.896 357.333333 0 121.088 70.528 227.925333 177.92 292.522667l-1.92 138.112 140.16-84.266667c33.109333 7.168 66.858667 10.837333 100.693333 10.922667 230.229333 0 416.896-159.957333 416.896-357.333333S742.229333 95.104 512 95.104zM302.378667 397.653333a57.173333 57.173333 0 1 1 0 114.346667 57.173333 57.173333 0 0 1 0-114.346667z m209.621333 0A57.173333 57.173333 0 1 1 512 512a57.173333 57.173333 0 0 1 0-114.346667z m209.621333 0a57.173333 57.173333 0 1 1 0 114.346667 57.173333 57.173333 0 0 1 0-114.346667z m0 0" ></path></symbol><symbol id="icon-CertificateInformat" viewBox="0 0 1024 1024"><path d="M388.841 898.776H128.9c-35.023 0-63.521-29.445-63.521-65.529V129.156c0-36.139 28.499-65.529 63.521-65.529h661.647c35.023 0 63.523 29.39 63.523 65.529v267.08h-63.523v-267.08l-661.591-2.007v706.099l259.885 2.064v63.464m0 0z" ></path><path d="M220.363 217.941h446.991v63.522H220.363v-63.522m0 0zM220.363 372.255h360.325v63.522H220.363v-63.522m0 0zM220.363 526.573h241.872v63.576H220.363v-63.576m0 0zM220.363 680.886h241.872v63.578H220.363v-63.578m0 0zM955.793 865.429l-96.146-179.246c9.984-22.361 15.615-46.955 15.727-72.945 0.445-100.161-80.529-181.755-180.75-182.146-100.217-0.446-181.806 80.532-182.14 180.753-0.224 26.656 5.798 51.586 15.892 74.449l-97.874 176.957c-3.18 5.633-2.622 12.717 1.226 17.846 3.849 5.242 10.485 7.643 16.843 6.191l82.93-18.738 28.107 79.08c2.117 6.135 7.75 10.373 14.107 10.986 0.502-0.055 0.893 0 1.34 0 5.969 0.059 11.654-3.289 14.557-8.588l85.549-157.881c6.025 0.668 11.881 1.783 17.957 1.895 5.689 0 10.99-1.115 16.621-1.674l86.221 158.555c2.953 5.463 8.477 8.697 14.553 8.643 0.391 0.111 0.783 0.055 1.229 0 6.469-0.502 12.047-4.74 14.389-10.707l28.609-78.914 82.707 19.297c6.301 1.561 12.881-0.895 16.842-5.967 3.957-5.188 4.459-12.161 1.504-17.846m-381.352-21.918l-10.318-29.057c-1.395-3.959-5.52-6.303-9.646-5.354l-30.842 6.914 43.557-78.299c16.004 16.174 29.113 23.254 47.014 33.127l-39.765 72.669m118.846-115.666c-63.857-0.336-115.666-52.424-115.334-116.391 0.17-63.857 52.367-115.67 116.281-115.391 63.91 0.223 115.555 52.369 115.332 116.227-0.224 63.91-52.425 115.721-116.279 115.555m142.1 93.914c-4.852-1.17-9.76 1.617-11.434 6.191l-12.268 34.355-46.68-85.83c21.137-11.6 36.527-20.021 55.492-38.984l51.193 92.467-36.303-8.199m0 0z" ></path></symbol><symbol id="icon-Publications" viewBox="0 0 1024 1024"><path d="M921.313481 307.394424H887.238133v409.31348h-34.075347V239.141401s-238.732088 0-341.060458 76.746278C407.932048 239.346058 170.939542 239.141401 170.939542 239.141401v477.566503h-34.075347v-409.31348h-34.075347v409.31348s0 34.075347 34.075347 34.075348h272.909763c11.460777 2.353553 32.540422 5.01409 51.880484 18.623763 23.740182 16.679524 46.150095 15.553912 50.550215 15.451584 4.40012 0.102328 26.912361 1.22794 50.550215-15.451584 19.237734-13.507345 40.010393-16.270211 51.573498-18.623763H887.238133c34.075347 0 34.075347-34.075347 34.075348-34.075348v-409.31348z m-375.135805 68.150694c102.32837-68.253023 238.732088-68.253023 238.732087-68.253022V648.454882s-168.739482 18.521435-235.969221 53.620066c0-25.889078-2.762866-319.980813-2.762866-326.52983z m-68.253023 0c0 6.446687 0.61397 300.640751 0.61397 326.52983-67.229739-35.098631-239.346058-53.620066-239.346058-53.620066v-341.060458s136.403717 0 238.732088 68.150694z" fill="" ></path></symbol><symbol id="icon-icon-papers" viewBox="0 0 1024 1024"><path d="M475.428976 474.021729c22.037104 15.573171 51.626129 15.573171 73.6419 0L994.762233 213.203112a18.837137 18.837137 0 0 0 4.821284-25.642399 15.957167 15.957167 0 0 0-7.231925-6.229269L540.814962 6.762596a64.511328 64.511328 0 0 0-57.471401 0L32.148261 181.331444a18.346476 18.346476 0 0 0-8.597244 24.597078c1.386652 2.773304 3.434631 5.183946 6.186602 7.253257L475.428976 474.021729z m516.922616 189.11803l-121.812065-60.948698-280.850407 198.120602a140.115874 140.115874 0 0 1-77.439194 23.210425 139.305216 139.305216 0 0 1-77.439193-23.210425L153.981658 602.191061 31.806931 663.139759a18.346476 18.346476 0 0 0-8.597244 24.597077c1.365319 2.773304 3.434631 5.205279 6.186602 7.274591L475.087647 1012.298789c22.015771 15.573171 51.626129 15.573171 73.641899 0l445.691358-317.287362a18.837137 18.837137 0 0 0 4.821283-25.621066 13.567859 13.567859 0 0 0-6.890595-6.250602z m0-249.042739l-121.812065-60.970032-280.850407 164.200957a140.115874 140.115874 0 0 1-77.439194 23.210424 139.305216 139.305216 0 0 1-77.439193-23.210424L153.981658 353.126988 31.806931 414.09702a18.346476 18.346476 0 0 0-8.597244 24.597077c1.365319 2.773304 3.434631 5.183946 6.186602 7.253258l425.382236 297.212904c34.772971 23.210425 81.215154 23.210425 118.057437-2.431975L994.762233 445.968688a18.837137 18.837137 0 0 0 4.821284-25.6424 15.957167 15.957167 0 0 0-7.231925-6.229268z" ></path></symbol><symbol id="icon-Googlescholar" viewBox="0 0 1024 1024"><path d="M747.467894 208.576566c9.546761 21.841558 15.872 47.720212 15.872 78.261239 0 92.314053-53.31823 135.974513-106.63646 177.090832-16.565239 16.239009-35.595327 33.683257-35.595328 61.140956 0 27.455434 19.027823 42.455221 33.001345 53.639929l45.710726 34.920213c55.916743 46.141168 106.711221 88.603186 106.711221 174.650902C806.531398 905.537699 690.921345 1024 472.467257 1024c-184.170478 0-273.040991-86.054513-273.040992-178.366301 0-44.899681 22.876885-108.482832 97.803328-152.177274 78.682619-47.380389 185.466336-53.605947 242.556602-57.355328-17.761416-22.471363-38.062442-46.213664-38.062443-84.815292 0-21.227611 6.325239-33.683257 12.668602-48.649062-13.978053 1.236956-27.919858 2.473912-40.631504 2.473912-134.63108 0-210.860177-98.539611-210.860177-195.806018 0-5.688637 0.262796-11.440708 0.788389-17.229026H64.566372L360.176142 0H959.433628l-49.324177 48.535788v84.135646c10.824496 6.261805 18.10577 17.963044 18.10577 31.365663V453.709027c0 19.997451-16.211823 36.209274-36.21154 36.209274-20.001982 0-36.213805-16.211823-36.213805-36.209274V164.037097c0-13.402619 7.281274-25.103858 18.10577-31.365663V84.169628l-126.427752 124.406938z m-164.474336 463.683965c-10.24-1.239221-16.540319-1.239221-29.184-1.239221-11.454301 0-80.044177 2.480708-133.360142 19.92269-27.962903 10.013451-109.239504 39.913345-109.239504 128.507469 0 88.564673 87.579186 152.145558 223.542371 152.145558 121.95115 0 186.653451-57.316814 186.653452-134.660531 0.004531-63.660177-41.870726-97.307186-138.414443-164.675965z m36.814159-236.997097c29.261027-28.692389 31.784779-68.637451 31.784779-91.072567 0-89.803894-54.652602-229.525522-160.027186-229.525522-33.008142 0-68.603469 16.205027-88.952071 41.186549-21.583292 26.218478-27.922124 59.867752-27.922124 92.277805 0 83.573805 49.500885 222.09246 158.769841 222.09246 31.737204 0 65.959646-14.997522 86.349026-34.958725z" fill="#4D90FE" ></path></symbol><symbol id="icon-calendar" viewBox="0 0 1024 1024"><path d="M974.956 240.425a92.093 92.093 0 0 0-69.243-94.863 607.534 607.534 0 0 0-81.7-4.158v58.163a78.244 78.244 0 0 1-106.634 69.238 80.343 80.343 0 0 1-49.163-75.479v-52.613H355.241v38.083c0.701 9.216 0.701 18.483 0 27.704-4.716 42.757-43.07 73.687-85.857 69.232-40.684-5.324-70.656-40.698-69.243-81.704V142.1h-69.233a47.053 47.053 0 0 0-12.467 0 94.853 94.853 0 0 0-69.243 93.476v637.712a94.188 94.188 0 0 0 23.552 70.318 94.188 94.188 0 0 0 67.154 31.462h737.418a94.874 94.874 0 0 0 97.628-101.094V240.425z m-60.928 216.028v383.59a59.576 59.576 0 0 1-6.237 26.317 28.39 28.39 0 0 1-27.003 13.85H142.674a32.553 32.553 0 0 1-36.004-37.386V398.986h806.656l0.702 57.467z m0 0" ></path><path d="M277.693 238.346a47.043 47.043 0 0 0 33.147-15.012 47.048 47.048 0 0 0 12.555-34.15V96.399a49.193 49.193 0 0 0-9.001-33.93 44.319 44.319 0 0 0-50.55-11.766A46.387 46.387 0 0 0 231.3 95.708v94.172a47.78 47.78 0 0 0 46.392 48.466z m465.306 0a47.063 47.063 0 0 0 33.147-15.012 47.043 47.043 0 0 0 12.549-34.15V96.399a49.188 49.188 0 0 0-12.462-33.93 44.319 44.319 0 0 0-50.55-11.766 46.387 46.387 0 0 0-29.081 44.314v94.167a47.826 47.826 0 0 0 13.004 34.202A47.831 47.831 0 0 0 743 238.346z m-14.54 481.92h121.86v94.172H728.46v-94.172z m-186.266 0h121.866v94.172H542.193v-94.172z m-186.256 94.167h122.558v-95.56H355.937v95.56z m-186.255-94.167h121.866v94.172H169.682v-94.172z m558.776-128.798H850.32v94.172H728.46v-94.172z m-186.265 0.696h121.866v94.172H542.193v-94.172z m-186.256 0h121.861v94.172h-121.86v-94.172z m-63.703 0H170.368v94.172h121.866v-94.172z m435.533-128.087h121.866v94.162H727.767v-94.162z m-185.574 0h121.866v94.162H542.193v-94.162z m-63.698 0H355.937v94.162h122.558v-94.162z m0 0" ></path></symbol><symbol id="icon-clouddownload" viewBox="0 0 1024 1024"><path d="M469.312 570.24v-256h85.376v256h128L512 756.288 341.312 570.24h128zM1024 640.128C1024 782.912 919.872 896 787.648 896h-512C123.904 896 0 761.6 0 597.504 0 451.968 94.656 331.52 226.432 302.976 284.16 195.456 391.808 128 512 128c152.32 0 282.112 108.416 323.392 261.12C941.888 413.44 1024 519.04 1024 640.192z m-259.2-205.312c-24.448-129.024-128.896-222.72-252.8-222.72-97.28 0-183.04 57.344-224.64 147.456l-9.28 20.224-20.928 2.944c-103.36 14.4-178.368 104.32-178.368 214.72 0 117.952 88.832 214.4 196.928 214.4h512c88.32 0 157.504-75.136 157.504-171.712 0-88.064-65.92-164.928-144.96-171.776l-29.504-2.56-5.888-30.976z" fill="#262626" ></path></symbol><symbol id="icon-github" viewBox="0 0 1024 1024"><path d="M512 0C229.283787 0 0.142041 234.942803 0.142041 524.867683c0 231.829001 146.647305 428.553077 350.068189 497.952484 25.592898 4.819996 34.976961-11.38884 34.976961-25.294314 0-12.45521-0.469203-45.470049-0.725133-89.276559-142.381822 31.735193-172.453477-70.380469-172.453477-70.380469-23.246882-60.569859-56.816233-76.693384-56.816234-76.693385-46.493765-32.58829 3.540351-31.948468 3.540351-31.948467 51.356415 3.71097 78.356923 54.086324 78.356923 54.086324 45.683323 80.19108 119.817417 57.072162 148.993321 43.593236 4.649376-33.91059 17.915029-57.029508 32.50298-70.167195-113.675122-13.222997-233.151301-58.223843-233.1513-259.341366 0-57.285437 19.919806-104.163095 52.678715-140.846248-5.246544-13.265652-22.820334-66.626844 4.990615-138.884127 0 0 42.996069-14.076094 140.760939 53.787741 40.863327-11.644769 84.627183-17.445825 128.177764-17.6591 43.465272 0.213274 87.271782 6.014331 128.135109 17.6591 97.679561-67.906489 140.59032-53.787741 140.59032-53.787741 27.938914 72.257282 10.407779 125.618474 5.118579 138.884127 32.844219 36.683154 52.593405 83.560812 52.593405 140.846248 0 201.586726-119.646798 245.990404-233.663158 258.957473 18.341577 16.208835 34.721032 48.199958 34.721032 97.210357 0 70.167195-0.639822 126.7275-0.639823 143.960051 0 14.033439 9.213443 30.370239 35.190235 25.209005 203.250265-69.527373 349.769606-266.123484 349.769605-497.867175C1023.857959 234.942803 794.673558 0 512 0" fill="#3E75C3" ></path></symbol><symbol id="icon-email" viewBox="0 0 1024 1024"><path d="M853.333333 170.666667l-682.666667 0c-47.146667 0-84.906667 38.186667-84.906667 85.333333l-0.426667 512c0 47.146667 38.186667 85.333333 85.333333 85.333333l682.666667 0c47.146667 0 85.333333-38.186667 85.333333-85.333333l0-512c0-47.146667-38.186667-85.333333-85.333333-85.333333zM853.333333 341.333333l-341.333333 213.333333-341.333333-213.333333 0-85.333333 341.333333 213.333333 341.333333-213.333333 0 85.333333z" ></path></symbol><symbol id="icon-gongzuojingyan" viewBox="0 0 1024 1024"><path d="M902.604162 233.211483 734.909859 233.211483l0-55.456033c0-30.458709-25.15389-55.428404-55.898101-55.428404L343.617012 122.327046c-30.744211 0-55.892985 24.969695-55.892985 55.428404l0 55.456033-167.69942 0c-30.738072 0-55.892985 24.935925-55.892985 55.423287l0 554.363853c0 30.492478 25.15389 55.434543 55.892985 55.434543l782.578532 0c30.744211 0 55.898101-24.942065 55.898101-55.434543L958.50124 288.63477C958.502263 258.147408 933.348374 233.211483 902.604162 233.211483L902.604162 233.211483zM343.617012 177.883363c0.033769-0.033769 0.061398-0.083911 0.11154-0.128937l335.193155 0c0.033769 0.045025 0.089028 0.072655 0.11768 0.128937l0 55.32812L343.650781 233.211483l0-55.32812L343.617012 177.883363zM902.604162 454.958866l-111.796202 0 0 138.599661c0 15.220656-12.577456 27.709085-27.949562 27.709085l-55.898101 0c-15.377222 0-27.949562-12.487406-27.949562-27.709085L679.010735 454.958866 343.617012 454.958866l0 138.599661c0 15.220656-12.571317 27.709085-27.949562 27.709085L259.770372 621.267613c-15.365966 0-27.943422-12.487406-27.943422-27.709085L231.826949 454.958866 120.024607 454.958866l0-55.4458 782.578532 0L902.603139 454.958866 902.604162 454.958866zM902.604162 454.958866" ></path></symbol><symbol id="icon-laptop" viewBox="0 0 1024 1024"><path d="M853.333333 768c46.933333 0 85.333333-38.4 85.333333-85.333333l0-426.666667c0-46.933333-38.4-85.333333-85.333333-85.333333L170.666667 170.666667C123.733333 170.666667 85.333333 209.066667 85.333333 256l0 426.666667c0 46.933333 38.4 85.333333 85.333333 85.333333L0 768l0 85.333333 1024 0 0-85.333333L853.333333 768zM170.666667 256l682.666667 0 0 426.666667L170.666667 682.666667 170.666667 256z" ></path></symbol><symbol id="icon-rss" viewBox="0 0 1024 1024"><path d="M329.142857 768q0 45.714286-32 77.714286t-77.714286 32-77.714286-32-32-77.714286 32-77.714286 77.714286-32 77.714286 32 32 77.714286zm292.571429 70.285714q1.142857 16-9.714286 27.428571-10.285714 12-26.857143 12l-77.142857 0q-14.285714 0-24.571429-9.428571t-11.428571-23.714286q-12.571429-130.857143-105.428571-223.714286t-223.714286-105.428571q-14.285714-1.142857-23.714286-11.428571t-9.428571-24.571429l0-77.142857q0-16.571429 12-26.857143 9.714286-9.714286 24.571429-9.714286l2.857143 0q91.428571 7.428571 174.857143 46t148 103.714286q65.142857 64.571429 103.714286 148t46 174.857143zm292.571429 1.142857q1.142857 15.428571-10.285714 26.857143-10.285714 11.428571-26.285714 11.428571l-81.714286 0q-14.857143 0-25.428571-10t-11.142857-24.285714q-6.857143-122.857143-57.714286-233.428571t-132.285714-192-192-132.285714-233.428571-58.285714q-14.285714-0.571429-24.285714-11.142857t-10-24.857143l0-81.714286q0-16 11.428571-26.285714 10.285714-10.285714 25.142857-10.285714l1.714286 0q149.714286 7.428571 286.571429 68.571429t243.142857 168q106.857143 106.285714 168 243.142857t68.571429 286.571429z" ></path></symbol><symbol id="icon-weibo" viewBox="0 0 1026 1024"><path d="M0 61.5 0 61.5 0 61.5zM780 577c-11-2-18-5.5-21-9.5-3-4.5-4-8-1.5-12l3-5.5c0.5-0.5 1.5-2 2-3 0.5-1.5 2-4.5 4.5-9 2-4.5 4-9.5 5-14 1-4.5 2-10.5 2.5-17s0.5-13.5-0.5-19.5c-1-6-3-12.5-6.5-20-3.5-7-7.5-13.5-13.5-19.5-10-10-23-16.5-39.5-19.5-16-3-32.5-3-48.5-0.5-16 2.5-31.5 5.5-45.5 9.5-14.5 4-26 7.5-35.5 11.5l-14 6.5c-7 2-13 3.5-18 4.5-4.5 0.5-8.5 0.5-11-0.5-2.5-1-4.5-2-6-3-1.5-1-2-3.5-1.5-7.5 0.5-4 0.5-7.5 1-10 0.5-3 1.5-7.5 2.5-13.5 1.5-6 2.5-11 3-14.5 0-8.5-0.5-16.5-1.5-24-1-7.5-3.5-16-7-25.5s-9-17-15.5-22.5c-7-5.5-15.5-10.5-26-14-10.5-3.5-24-4.5-40.5-3-16.5 1.5-35 5.5-56 13-25 8.5-50.5 21.5-76.5 38-26 17-48 34.5-67 52.5-19 18.5-36.5 36-52 53.5-16 17-28 31-36.5 42l-12 17c-23.5 31-41 61.5-52.5 92.5-11.5 31-17 54-16 70l0 22.5c4.5 34.5 15 65.5 31.5 92.5 17 27.5 37 49.5 60 66 23.5 17 51 31 82.5 43 31.5 12 62 20.5 91 26s59.5 9 92 11.5c53 4.5 108 0 165-12.5 57-12.5 110-34.5 159-65 49-31 84-68 104-111 12-25 18.5-49 19-71 0.5-22-3.5-40.5-11.5-54.5s-18-26.5-30.5-37c-12.5-11-24.5-18.5-35.5-23.5C798.5 581.5 788.5 578 780 577L780 577zM452 911.5c-77.5 3.5-143.5-11.5-197.5-45-54-33.5-81-76.5-81-128 0-51 27-95 80.5-132s120-57 198-61 144 9.5 198 38.5 80.5 69.5 80.5 120.5c0 51.5-27.5 98-82.5 139.5S528 908 452 911.5L452 911.5zM420.5 613.5c-21 2-39.5 7-56 14.5-16.5 7.5-29.5 16-38.5 26-9.5 9.5-17 20-23.5 31-6.5 11-11 22-13.5 33-2.5 11-4 20.5-5 29.5-0.5 9-1 16-1 21l1 8.5 0 4.5c0 2 0.5 6.5 2 13s3.5 12.5 6 18c2.5 5.5 6.5 11.5 12.5 18s12.5 12 20.5 16c47.5 23 91.5 30 132.5 21 41-9 74-29.5 99-62 10-12 16.5-27.5 20-45 3-18 2.5-36-2-54.5-4.5-18.5-12.5-35-24-50-11.5-15-28.5-26.5-51-35C476 612 450 610 420.5 613.5L420.5 613.5zM382 817c-4.5 0.5-8.5 1-12.5 0.5-4-0.5-7.5-1-11-2-3.5-1-6.5-2.5-9.5-4-3-1.5-6-3.5-8-6-2-2.5-4-5-6-7.5-2-2.5-3-5.5-4.5-8.5s-1.5-6.5-1.5-10c0-8 2-15.5 6.5-23 4.5-7.5 10-14 18-19.5 7.5-5.5 16-8.5 25.5-9 6.5-0.5 12.5-0.5 19 0.5 6 1 11.5 3 15.5 5.5 4.5 2.5 8 5.5 11.5 8.5 3 3 5.5 7 7 11.5 1.5 4.5 2 9 2 14 0 8-2.5 15.5-7 22.5-4.5 7-11 13.5-19 18.5C400 813 391.5 816 382 817L382 817zM473.5 739.5c-5 3.5-10 5-15.5 5-5.5-0.5-9-2.5-11.5-7l-2-4.5c-0.5-1.5-1-3-1-4.5l0-4.5c0-2 0.5-4 1-5.5l2-4.5c0.5-1.5 2-2.5 3-3l3-4.5c5.5-4.5 11.5-6 16.5-5.5s9 3.5 11.5 8.5c2 3 3 6 2.5 9.5-0.5 3.5-1.5 7-3 10C478.5 733.5 476 736.5 473.5 739.5L473.5 739.5zM855.5 514.5c4.5 0 8.5-1 12-3 3.5-2 6.5-5 8.5-8 2-3 3.5-6.5 4.5-10 0.5-0.5 1-2 1-3 8.5-82-20-128.5-86-140-19.5-3.5-37.5-4-54-1-5 0-9.5 1.5-13 4-3.5 2.5-6.5 5.5-9 9.5-2.5 4-4 8-4 12.5 0 7 2.5 13.5 7.5 18.5 5 5 11 7.5 18.5 7.5 56-13 86 5 90.5 54 1.5 12 0.5 23.5-2 34.5 0 7 2.5 13.5 7.5 18.5C842 512 848 514.5 855.5 514.5L855.5 514.5zM837 211c-31.5-7-74-5.5-127 4.5-0.5 0-1.5 0.5-2 1l-1 2-1 1c-8 2-14.5 6.5-19.5 13.5s-7.5 14-7.5 22c0 11 3.5 19.5 11 27 7 7 16 11 26 11l3 0c0.5 0 2.5-0.5 5-1 2.5-0.5 5-1.5 8-1.5 3-0.5 6-1 9-2s6-2 8.5-3c2.5-1 7.5-1.5 14.5-1.5 7 0 16 0.5 26.5 1.5 10.5 1 22 4 34.5 8 12.5 4.5 25 9.5 37.5 16 12.5 6.5 25 15.5 37.5 27 12.5 11.5 23.5 24.5 33 40 18.5 42.5 22.5 83 11 122.5 0 0.5 0 1.5-0.5 2-0.5 0.5-1 2.5-1.5 5.5s-1.5 5.5-2 8c-0.5 2.5-1.5 5.5-2 9.5s-1 7.5-1 10c0 6.5 2 12 5.5 16 3.5 4.5 8 7.5 13.5 9 5.5 2 11.5 2.5 19 2.5 20 0 32-12 35.5-36.5 8.5-28 13.5-54.5 14.5-80s-0.5-48-5.5-67c-4.5-19.5-11.5-37.5-21-54.5-9.5-17-20-31-32.5-43-12-12-26-22.5-41-32.5-15-9.5-29.5-17.5-43.5-23C866.5 219.5 852 214.5 837 211L837 211z" ></path></symbol><symbol id="icon-linkedin" viewBox="0 0 1024 1024"><path d="M872.405333 872.618667h-151.637333v-237.610667c0-56.661333-1.152-129.578667-79.018667-129.578667-79.061333 0-91.136 61.653333-91.136 125.397334v241.792H398.976V384h145.664v66.602667h1.962667c20.352-38.4 69.845333-78.933333 143.786666-78.933334 153.642667 0 182.058667 101.12 182.058667 232.746667v268.202667zM227.712 317.141333a87.978667 87.978667 0 0 1-88.021333-88.106666 88.064 88.064 0 1 1 88.021333 88.106666z m76.032 555.477334H151.68V384h152.064v488.618667zM948.266667 0H75.562667C33.792 0 0 33.024 0 73.770667v876.458666C0 991.018667 33.792 1024 75.562667 1024h872.576C989.866667 1024 1024 991.018667 1024 950.229333V73.770667C1024 33.024 989.866667 0 948.138667 0h0.128z" fill="" ></path></symbol><symbol id="icon-education" viewBox="0 0 1024 1024"><path d="M192 516.48l-98.56-44.373333c-67.776-30.464-67.626667-103.146667 0-133.546667l339.093333-152.618667c45.290667-20.373333 113.706667-20.352 158.933334 0l339.114666 152.597334c67.754667 30.506667 67.584 103.168 0 133.589333L832 516.48v176.853333c0 98.410667-145.6 160-320 160S192 791.744 192 693.333333v-176.853333z m554.666667 38.4l-155.2 69.845333c-45.290667 20.373333-113.706667 20.352-158.933334 0L277.333333 554.88v138.453333c0 10.197333 17.557333 27.733333 55.189334 43.669334C378.602667 756.501333 442.858667 768 512 768c69.12 0 133.397333-11.52 179.477333-30.997333C729.109333 721.088 746.666667 703.509333 746.666667 693.333333v-138.453333z m-190.208-291.114667c-22.976-10.346667-65.898667-10.368-88.917334 0L152.96 405.333333l314.602667 141.568c22.976 10.346667 65.898667 10.368 88.917333 0L871.04 405.333333l-314.602667-141.568z" fill="" ></path></symbol><symbol id="icon-presentation" viewBox="0 0 1024 1024"><path d="M896 597.333333h-42.666667V170.666667h42.666667a42.666667 42.666667 0 0 0 0-85.333334H128a42.666667 42.666667 0 0 0 0 85.333334h42.666667v426.666666H128a42.666667 42.666667 0 0 0 0 85.333334h341.333333v49.066666l-194.133333 128A42.666667 42.666667 0 0 0 298.666667 938.666667a40.106667 40.106667 0 0 0 23.466666-7.253334L469.333333 834.133333V896a42.666667 42.666667 0 0 0 85.333334 0v-61.866667l147.2 97.28A40.106667 40.106667 0 0 0 725.333333 938.666667a42.666667 42.666667 0 0 0 23.466667-78.08l-194.133333-128V682.666667h341.333333a42.666667 42.666667 0 0 0 0-85.333334z m-128 0H256V170.666667h512z" ></path></symbol><symbol id="icon-instagram" viewBox="0 0 1024 1024"><path d="M298.666667 170.666667a128 128 0 0 0-128 128v426.666666a128 128 0 0 0 128 128h426.666666a128 128 0 0 0 128-128V298.666667a128 128 0 0 0-128-128H298.666667z m0-85.333334h426.666666a213.333333 213.333333 0 0 1 213.333334 213.333334v426.666666a213.333333 213.333333 0 0 1-213.333334 213.333334H298.666667a213.333333 213.333333 0 0 1-213.333334-213.333334V298.666667a213.333333 213.333333 0 0 1 213.333334-213.333334z m213.333333 640a213.333333 213.333333 0 1 1 0-426.666666 213.333333 213.333333 0 0 1 0 426.666666z m0-85.333333a128 128 0 1 0 0-256 128 128 0 0 0 0 256z m234.666667-298.666667a64 64 0 1 1 0-128 64 64 0 0 1 0 128z" ></path></symbol><symbol id="icon-twitter" viewBox="0 0 1024 1024"><path d="M938.666667 275.2a341.333333 341.333333 0 0 1-78.933334 75.946667v23.466666A520.533333 520.533333 0 0 1 331.946667 896a522.24 522.24 0 0 1-232.533334-53.76 10.666667 10.666667 0 0 1-6.4-9.813333v-4.693334a11.093333 11.093333 0 0 1 11.093334-11.093333 378.026667 378.026667 0 0 0 218.453333-78.506667 186.453333 186.453333 0 0 1-165.973333-109.226666 11.093333 11.093333 0 0 1 11.093333-15.36 170.666667 170.666667 0 0 0 64.853333-5.973334A186.026667 186.026667 0 0 1 85.333333 445.013333a11.093333 11.093333 0 0 1 15.36-11.093333 170.666667 170.666667 0 0 0 67.413334 14.506667 182.613333 182.613333 0 0 1-72.96-210.773334 23.04 23.04 0 0 1 38.826666-7.68 527.36 527.36 0 0 0 358.826667 165.546667 170.666667 170.666667 0 0 1-5.12-42.666667 186.026667 186.026667 0 0 1 320.426667-125.44 370.773333 370.773333 0 0 0 101.973333-35.413333 7.253333 7.253333 0 0 1 7.68 0 7.253333 7.253333 0 0 1 0 7.68 186.453333 186.453333 0 0 1-75.093333 85.333333 366.08 366.08 0 0 0 85.333333-20.48 6.826667 6.826667 0 0 1 7.68 0 7.253333 7.253333 0 0 1 2.986667 10.666667z" ></path></symbol><symbol id="icon-award-solid" viewBox="0 0 1024 1024"><path d="M346.1 698.3c-15.2-15.2-7.3-10.9-43.9-20.7-16.6-4.5-31.3-13-44.5-23.3l-79.4 194.6c-7.7 18.8 6.7 39.3 27 38.5l92.2-3.5 63.4 67c14 14.8 38.6 10.2 46.2-8.7l91.1-223.3c-19 10.6-40 16.8-61.8 16.8-34.1-0.1-66.1-13.3-90.3-37.4z m499.8 150.5l-79.4-194.6c-13.2 10.3-27.8 18.8-44.5 23.3-36.9 9.9-28.8 5.6-43.9 20.7-24.1 24.1-56.2 37.4-90.3 37.4-21.8 0-42.8-6.2-61.8-16.8l91.1 223.3c7.7 18.8 32.3 23.4 46.2 8.7l63.4-67 92.2 3.5c20.3 0.8 34.7-19.7 27-38.5zM636.3 658.7c26.7-27.2 29.8-24.9 67.9-35.2 24.3-6.6 43.3-26 49.8-50.7 13.1-49.7 9.7-43.7 45.4-80 17.8-18.1 24.7-44.5 18.2-69.2-13.1-49.6-13.1-42.7 0-92.4 6.5-24.7-0.4-51.1-18.2-69.2-35.7-36.4-32.3-30.4-45.4-80-6.5-24.7-25.5-44.1-49.8-50.7-48.8-13.3-42.9-9.8-78.6-46.2-17.8-18.1-43.7-25.2-68-18.6-48.8 13.3-41.9 13.3-90.8 0-24.3-6.6-50.2 0.4-68 18.6-35.7 36.4-29.8 32.9-78.6 46.2-24.3 6.6-43.3 26-49.8 50.7-13.1 49.7-9.7 43.7-45.4 80-17.8 18.1-24.8 44.5-18.2 69.2 13.1 49.6 13.1 42.7 0 92.4-6.5 24.7 0.4 51.1 18.2 69.3 35.7 36.4 32.3 30.4 45.4 80 6.5 24.7 25.5 44.1 49.8 50.7 39.2 10.7 42.1 9 67.8 35.2 23.1 23.6 59.2 27.8 87 10.2 22.7-14.4 51.7-14.4 74.4 0 27.7 17.4 63.8 13.2 86.9-10.3z m-289.2-287c0-92.8 73.9-168 165-168s165 75.2 165 168-73.9 168-165 168-165-75.2-165-168z" ></path></symbol></svg>',m=(m=document.getElementsByTagName("script"))[m.length-1].getAttribute("data-injectcss"),h=function(c,l){l.parentNode.insertBefore(c,l)};if(m&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}function n(){e||(e=!0,o())}function s(){try{a.documentElement.doScroll("left")}catch(c){return void setTimeout(s,50)}n()}l=function(){var c,l;(l=document.createElement("div")).innerHTML=i,i=null,(c=l.getElementsByTagName("svg")[0])&&(c.setAttribute("aria-hidden","true"),c.style.position="absolute",c.style.width=0,c.style.height=0,c.style.overflow="hidden",l=c,(c=document.body).firstChild?h(l,c.firstChild):c.appendChild(l))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(l,0):(t=function(){document.removeEventListener("DOMContentLoaded",t,!1),l()},document.addEventListener("DOMContentLoaded",t,!1)):document.attachEvent&&(o=l,a=c.document,e=!1,s(),a.onreadystatechange=function(){"complete"==a.readyState&&(a.onreadystatechange=null,n())})}(window); | 27,631 | 27,631 | 0.747819 |
b73b895b5eeb9696023890239f8f493f755de72f | 672 | js | JavaScript | build/webpack.stats.plugin.js | lucienthink/react-imvc | 1d15819df52bd528ea3c944c54965bf0cb53aa8b | [
"MIT"
] | 7 | 2017-04-12T02:13:45.000Z | 2019-07-15T04:23:13.000Z | build/webpack.stats.plugin.js | lucienthink/react-imvc | 1d15819df52bd528ea3c944c54965bf0cb53aa8b | [
"MIT"
] | 1 | 2018-03-05T05:42:52.000Z | 2018-03-05T05:42:52.000Z | build/webpack.stats.plugin.js | lucienthink/react-imvc | 1d15819df52bd528ea3c944c54965bf0cb53aa8b | [
"MIT"
] | null | null | null | function StatsPlugin (output, options) {
this.output = output
this.options = options
}
StatsPlugin.prototype.apply = function apply (compiler) {
var output = this.output
var options = this.options
compiler.plugin('emit', function onEmit (compilation, done) {
var result
compilation.assets[output] = {
size: function getSize () {
return (result && result.length) || 0
},
source: function getSource () {
result = JSON.stringify(
compilation.getStats().toJson(options).assetsByChunkName,
null,
2
)
return result
}
}
done()
})
}
module.exports = StatsPlugin
| 21.677419 | 67 | 0.611607 |
b73bf6ab96bc6de1b50542bda5835a5c5bd55943 | 739,145 | js | JavaScript | public/assets/js/app.bundle.min.js | Swai-D/kilimofy | af46d929c1212622c6f5bd58e11536ee539cab00 | [
"MIT"
] | null | null | null | public/assets/js/app.bundle.min.js | Swai-D/kilimofy | af46d929c1212622c6f5bd58e11536ee539cab00 | [
"MIT"
] | null | null | null | public/assets/js/app.bundle.min.js | Swai-D/kilimofy | af46d929c1212622c6f5bd58e11536ee539cab00 | [
"MIT"
] | null | null | null | "use strict";
function _typeof(t) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { return typeof t } : function(t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) }
function XM_Accordion(t) {
var s = { triggerSelector: ".accordion-trigger", contentSelector: ".accordion-content", animation: { type: "all", speed: .3, ease: "ease-in-out" }, paddingAnimation: !1, startOpenClass: "accordion-open", selectedClass: "selected", linkTriggers: !1 },
d = {},
n = function() {
var t = !0,
n = !1,
e = void 0;
try {
for (var o, r = d.accordions[Symbol.iterator](); !(t = (o = r.next()).done); t = !0) {
var i = o.value;
i.open && (i.content.style.height = "auto", i.content.style.height = "".concat(i.content.scrollHeight, "px"))
}
} catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
},
e = function() {
var t = document.querySelectorAll(s.triggerSelector);
if (!t.length) throw new Error("Couldn't find ".concat(s.triggerSelector, " in the DOM"));
var n = !0,
e = !(d.accordions = []),
o = void 0;
try {
for (var r, i = t[Symbol.iterator](); !(n = (r = i.next()).done); n = !0) {
var a = r.value,
c = a.querySelector(s.contentSelector);
if (!c && !(c = a.parentElement.querySelector(s.contentSelector))) throw new Error("Couldn't find ".concat(s.contentSelector, " in ").concat(s.triggerSelector, " nor as it's sibling"));
if (s.paddingAnimation) d.accordions.push({ trigger: a, content: c, padding: c.style.padding, open: !0, startOpen: c.classList.contains(s.startOpenClass) });
else {
var l = document.createElement("div");
c.parentElement.appendChild(l), l.appendChild(c), d.accordions.push({ trigger: a, content: l, open: !0, startOpen: c.classList.contains(s.startOpenClass) })
}
}
} catch (t) { e = !0, o = t } finally { try { n || null == i.return || i.return() } finally { if (e) throw o } }
},
o = function() {
var t = !0,
n = !1,
e = void 0;
try {
for (var o, r = d.accordions[Symbol.iterator](); !(t = (o = r.next()).done); t = !0) {
var i = o.value;
i.content.style.overflow = "hidden", i.startOpen ? (i.content.style.height = "".concat(i.content.scrollHeight, "px"), i.content.parentElement.classList.add(s.selectedClass)) : f(i)
}
} catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
},
r = function() {
var t = !0,
n = !1,
e = void 0;
try { for (var o, r = d.accordions[Symbol.iterator](); !(t = (o = r.next()).done); t = !0) { o.value.content.style.transition = "".concat(s.animation.type, " ").concat(s.animation.speed, "s ").concat(s.animation.ease) } } catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
},
i = function() {
var t = !0,
n = !1,
e = void 0;
try {
for (var o, r = function() {
var c = o.value;
c.trigger.addEventListener("click", function() {
if (s.linkTriggers) {
var t = c.open ? f : y,
n = !0,
e = !1,
o = void 0;
try {
for (var r, i = d.accordions[Symbol.iterator](); !(n = (r = i.next()).done); n = !0) {
var a = r.value;
f(a)
}
} catch (t) { e = !0, o = t } finally { try { n || null == i.return || i.return() } finally { if (e) throw o } }
s.triggerOpens ? y(c) : t(c)
} else l(c)
})
}, i = d.accordions[Symbol.iterator](); !(t = (o = i.next()).done); t = !0) r()
} catch (t) { n = !0, e = t } finally { try { t || null == i.return || i.return() } finally { if (n) throw e } }
},
l = function(t) { t.open ? f(t) : y(t) },
y = function(t) { t.open || (t.open = !0, t.content.style.height = "".concat(t.content.scrollHeight, "px"), t.content.parentElement.classList.add(s.selectedClass), s.paddingAnimation && (t.content.style.padding = t.padding)) },
f = function(t) { t.open && (t.open = !1, t.content.style.height = 0, t.content.parentElement.classList.remove(s.selectedClass), s.paddingAnimation && (t.content.style.padding = 0)) };
return function t(n, e) { var o; for (var r in e) "object" !== _typeof(e[r]) || e[r] instanceof Date ? e[r] instanceof Date ? n[r] = new Date(e[r].getTime()) : n[r] = e[r] : (o = e[r] instanceof Array ? [] : {}, void 0 === n[r] && (n[r] = o), t(n[r], e[r])) }(s, t), e(), o(), r(), i(), window.addEventListener("resize", n), d
}
"use strict";
function _typeof(t) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { return typeof t } : function(t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) }
function XM_Dropdown(t) {
var c, g = { container: ".dropdown", trigger: ".dropdown-trigger", activeClass: "active", triggerEvent: "click", offset: {}, animation: { type: "static", speed: .4, ease: "ease-in-out", zIndex: 9999, translateOffset: { horizontal: 40, vertical: 40 } }, absolute: !1, closeOnWindowClick: !0, closeOnDropdownClick: !1, linkDropdowns: !0, controlToggle: !1 },
h = [],
n = {},
r = function() {
if (g.controlToggle) {
var t = document.querySelectorAll(g.container);
if (!t.length) throw new Error("".concat(g.container, " not found in the DOM"));
var n = !0,
r = !1,
o = void 0;
try {
for (var e, i = t[Symbol.iterator](); !(n = (e = i.next()).done); n = !0) {
var a = e.value,
l = {};
l.parent = a.parentElement, l.container = a, h.push(l)
}
} catch (t) { r = !0, o = t } finally { try { n || null == i.return || i.return() } finally { if (r) throw o } }
} else {
var c = document.querySelectorAll(g.trigger);
if (!c.length) throw new Error("".concat(g.trigger, " not found in the DOM"));
var f = !0,
s = !1,
u = void 0;
try {
for (var y, v = c[Symbol.iterator](); !(f = (y = v.next()).done); f = !0) {
var d = y.value,
p = d.parentElement.querySelector(g.container);
if (!p) throw new Error("".concat(g.container, " not found as sibling of ").concat(g.trigger));
var m = {};
m.parent = p.parentElement, m.trigger = d, m.container = p, h.push(m)
}
} catch (t) { s = !0, u = t } finally { try { f || null == v.return || v.return() } finally { if (s) throw u } }
}
},
o = function() {
var t = !0,
n = !1,
r = void 0;
try {
for (var o, e = h[Symbol.iterator](); !(t = (o = e.next()).done); t = !0) {
var i = o.value;
a(i)
}
} catch (t) { n = !0, r = t } finally { try { t || null == e.return || e.return() } finally { if (n) throw r } }
},
a = function(t) { for (var n in t.parent.style.position = g.absolute ? "absolute" : "relative", S(t.container, { position: "absolute", zIndex: g.animation.zIndex }), g.offset) t.container.style[n] = "".concat(g.offset[n], "px") },
e = function() {
var t = !0,
n = !1,
r = void 0;
try {
for (var o, e = h[Symbol.iterator](); !(t = (o = e.next()).done); t = !0) {
var i = o.value;
l(i)
}
} catch (t) { n = !0, r = t } finally { try { t || null == e.return || e.return() } finally { if (n) throw r } }
},
l = function(t) { "translate-top" !== g.animation.type && "translate-bottom" !== g.animation.type || (t.container.style.transition = "transform ".concat(g.animation.speed, "s ").concat(g.animation.ease, ",\n opacity ").concat(g.animation.speed, "s ").concat(g.animation.ease, ",\n visibility ").concat(g.animation.speed, "s ").concat(g.animation.ease)) },
i = function() {
var t = !0,
n = !1,
r = void 0;
try {
for (var o, e = h[Symbol.iterator](); !(t = (o = e.next()).done); t = !0) {
var i = o.value;
f(i)
}
} catch (t) { n = !0, r = t } finally { try { t || null == e.return || e.return() } finally { if (n) throw r } }
},
f = function(t) { "click" === g.triggerEvent ? t.trigger.addEventListener("click", function() { v(t) }) : "hover" === g.triggerEvent && (t.trigger.addEventListener("mouseenter", function() { m(t) }), t.trigger.addEventListener("mouseleave", function() { p(t) })) },
s = function() {
var t = !0,
n = !1,
r = void 0;
try {
for (var o, e = h[Symbol.iterator](); !(t = (o = e.next()).done); t = !0) {
var i = o.value;
u(i)
}
} catch (t) { n = !0, r = t } finally { try { t || null == e.return || e.return() } finally { if (n) throw r } }
},
u = function(t) { t.container.addEventListener("click", function() { p(t) }) },
y = function() {
window.addEventListener("click", function(t) {
if (c) {
var n = t.target;
do {
var r = !0,
o = !1,
e = void 0;
try { for (var i, a = h[Symbol.iterator](); !(r = (i = a.next()).done); r = !0) { var l = i.value; if (n === l.trigger || n === l.container) return } } catch (t) { o = !0, e = t } finally { try { r || null == a.return || a.return() } finally { if (o) throw e } }
} while (n = n.parentElement);
d()
}
})
},
v = function(t) {
(t.active ? p : m)(t)
},
d = function() {
var t = !0,
n = !1,
r = void 0;
try {
for (var o, e = h[Symbol.iterator](); !(t = (o = e.next()).done); t = !0) {
var i = o.value;
p(i)
}
} catch (t) { n = !0, r = t } finally { try { t || null == e.return || e.return() } finally { if (n) throw r } }
},
p = function(t) { w(t), g.controlToggle || function(t) { t.trigger.classList.remove(g.activeClass) }(t), t.active = !1, c = !1 },
m = function(t) { g.linkDropdowns && d(), b(t), g.controlToggle || function(t) { t.trigger.classList.add(g.activeClass) }(t), t.active = !0, c = !0 },
w = function(t) { "static" === g.animation.type ? S(t.container, { display: "none" }) : "translate-top" === g.animation.type ? S(t.container, { opacity: 0, visibility: "hidden", transform: "translate(0, -".concat(g.animation.translateOffset.vertical, "px)") }) : "translate-bottom" === g.animation.type && S(t.container, { opacity: 0, visibility: "hidden", transform: "translate(0, ".concat(g.animation.translateOffset.vertical, "px)") }) },
b = function(t) { "static" === g.animation.type ? S(t.container, { display: "block" }) : "translate-top" !== g.animation.type && "translate-bottom" !== g.animation.type || S(t.container, { opacity: 1, visibility: "visible", transform: "translate(0, 0)" }) },
S = function(t, n) { for (var r in n) t.style[r] = n[r] };
return function t(n, r) { var o; for (var e in r) "object" !== _typeof(r[e]) || r[e] instanceof Date ? r[e] instanceof Date ? n[e] = new Date(r[e].getTime()) : n[e] = r[e] : (o = r[e] instanceof Array ? [] : {}, void 0 === n[e] && (n[e] = o), t(n[e], r[e])) }(g, t), r(), o(), g.controlToggle || i(), g.closeOnDropdownClick && s(), g.closeOnWindowClick && y(), d(), window.setTimeout(e, 300), n.showDropdowns = function() {
var t = !0,
n = !1,
r = void 0;
try {
for (var o, e = h[Symbol.iterator](); !(t = (o = e.next()).done); t = !0) {
var i = o.value;
m(i)
}
} catch (t) { n = !0, r = t } finally { try { t || null == e.return || e.return() } finally { if (n) throw r } }
}, n.hideDropdowns = d, n
}
"use strict";
function _typeof(t) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { return typeof t } : function(t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) }
function XM_Hexagon(t) {
var p = { width: 100, height: 110, lineWidth: 6, lineColor: "#fff", lineCap: "square", buttEnd: !1, fill: !1, clip: !1, roundedCorners: !1, roundedCornerRadius: 4, animation: { easing: !0 }, animateOnScroll: !1, controlAnimation: !1, speed: 50, scale: { start: 0, end: 1, stop: 1 }, invertedProgress: !1, reverse: !1, linkText: !1, innerLink: !0, linkToContainer: ".bar-progress-wrap", linkTo: ".bar-progress-text", extraLinkTo: [], linkUnits: "%", linkUnitsSelector: ".bar-progress-unit", innerTextFollowsProgress: !1, decimalPoints: 0, barTextStyle: { primaryColor: "#fff", secondaryColor: "#363636", font: "bold 10px Exo, sans-serif" } },
h = [],
v = {},
i = function() {
var t = document.querySelectorAll(p.container);
if (!t.length) throw Error('Unable to find "'.concat(p.container, '" on the DOM'));
var i = !0,
e = !1,
n = void 0;
try {
for (var r, o = t[Symbol.iterator](); !(i = (r = o.next()).done); i = !0) {
var a = r.value,
d = {};
d.container = a, d.imageSrc = a.getAttribute("data-src"), d.canvas = document.createElement("canvas"), d.ctx = d.canvas.getContext("2d"), d.finishedDrawing = !1, d.canvas.width = p.width, d.canvas.height = p.height, d.canvas.style.position = "absolute", d.canvas.style.top = 0, d.canvas.style.left = 0, d.container.style.width = "".concat(p.width, "px"), d.container.style.height = "".concat(p.height, "px"), d.container.style.position = "relative", d.container.append(d.canvas), h.push(d)
}
} catch (t) { e = !0, n = t } finally { try { i || null == o.return || o.return() } finally { if (e) throw n } }
},
e = function() { t.scale && (p.scale.stop = p.scale.stop > p.scale.end ? p.scale.end : p.scale.stop, p.scale.stop = p.scale.stop < p.scale.start ? p.scale.start : p.scale.stop, p.scale.stop = void 0 !== t.scale.stop ? p.scale.stop : p.scale.end), v.sideWidth = o(p.width, p.height), v.perimeter = 6 * v.sideWidth, v.lineLength = p.scale.stop / p.scale.end * v.perimeter, v.sideCount = Math.floor(v.lineLength / v.sideWidth), p.stopPoint = p.scale.stop },
n = function() {
var t = !0,
i = !1,
e = void 0;
try {
for (var n, r = h[Symbol.iterator](); !(t = (n = r.next()).done); t = !0) {
var o = n.value;
if (p.gradient) {
var a = o.ctx.createLinearGradient(0, p.height, p.width, 0);
a.addColorStop(0, p.gradient.colors[0]), a.addColorStop(1, p.gradient.colors[1]), o.ctx.strokeStyle = a, o.ctx.fillStyle = a
} else o.ctx.strokeStyle = p.lineColor, o.ctx.fillStyle = p.lineColor;
o.ctx.lineCap = p.lineCap, o.ctx.lineWidth = p.lineWidth
}
} catch (t) { i = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (i) throw e } }
},
r = function() {
var t = !0,
i = !1,
e = void 0;
try {
for (var n, r = h[Symbol.iterator](); !(t = (n = r.next()).done); t = !0) {
var o = n.value;
p.speed = 100 < p.speed ? 100 : p.speed, p.speed = p.speed < 1 ? 1 : p.speed, o.animation = {}, o.animation.easing = p.animation.easing, o.animation.speed = p.speed, o.animation.step = o.animation.speed * p.width / 2e3, o.animation.currentProgress = 0
}
} catch (t) { i = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (i) throw e } }
};
function a(t) { for (var i = (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop) + window.innerHeight, e = t.canvas, n = e.offsetTop; e = e.offsetParent;) n += e.offsetTop; return n <= i }
function d(t) { t.animation.currentProgress < p.stopPoint && (t.animation.easing ? (t.animation.currentProgress += .06 * (p.stopPoint - t.animation.currentProgress), t.animation.currentProgress >= p.stopPoint - 1 && (t.animation.currentProgress = p.stopPoint, t.finishedDrawing = !0)) : (t.animation.currentProgress += t.animation.step, t.animation.currentProgress >= p.stopPoint && (t.animation.currentProgress = p.stopPoint, t.finishedDrawing = !0))), s(t, t.animation.currentProgress), t.finishedDrawing || window.requestAnimationFrame(d) }
function m(t, i) { return Math.sqrt(Math.pow(i.x - t.x, 2) + Math.pow(i.y - t.y, 2)) }
function T(t, i, e) {
var n = m(t, i),
r = Math.min(e, n),
o = function(t, i, e) {
var n = i.x - t.x,
r = i.y - t.y,
o = m(t, i),
a = n / o,
d = r / o;
return { x: t.x + e * a, y: t.y + e * d }
}(t, i, r);
return { x: o.x, y: o.y, distance: r }
}
var o = function(t, i) { return (-i / 2 + Math.sqrt(Math.pow(i, 2) + .75 * Math.pow(t, 2))) / 1.5 },
s = function(n, t) {
var i = 1 < arguments.length && void 0 !== t ? t : p.stopPoint;
if (n.ctx.clearRect(0, 0, p.width, p.height), 0 !== i) {
if (n.ctx.beginPath(), p.roundedCorners) {
var e = p.fill || p.clip ? 0 : p.lineWidth / 2,
r = function(t) { var i = (p.height - v.sideWidth) / p.width; return (t - (v.sideWidth - p.height) / 2) / i }(p.roundedCornerRadius) - p.width / 2,
o = function(t) { return (p.height - v.sideWidth) / p.width * t + (v.sideWidth - p.height) / 2 }(p.width - r);
if (p.clip || p.fill) n.ctx.moveTo(p.width / 2 - r, p.roundedCornerRadius + e), n.ctx.quadraticCurveTo(p.width / 2, 0 + e, p.width / 2 + r, p.roundedCornerRadius + e), n.ctx.lineTo(p.width - e - r, o), n.ctx.quadraticCurveTo(p.width - e, (p.height - v.sideWidth) / 2, p.width - e, (p.height - v.sideWidth) / 2 + r), n.ctx.lineTo(p.width - e, p.height - (p.height - v.sideWidth) / 2 - r), n.ctx.quadraticCurveTo(p.width - e, p.height - (p.height - v.sideWidth) / 2, p.width - e - r, p.height - o), n.ctx.lineTo(p.width / 2 + r, p.height - e - p.roundedCornerRadius), n.ctx.quadraticCurveTo(p.width / 2, p.height - e, p.width / 2 - r, p.height - e - p.roundedCornerRadius), n.ctx.lineTo(0 + e + r, p.height - o), n.ctx.quadraticCurveTo(0 + e, p.height - (p.height - v.sideWidth) / 2, 0 + e, p.height - (p.height - v.sideWidth) / 2 - r), n.ctx.lineTo(0 + e, (p.height - v.sideWidth) / 2 + r), n.ctx.quadraticCurveTo(0 + e, (p.height - v.sideWidth) / 2, 0 + e + r, o), n.ctx.lineTo(p.width / 2 - r, p.roundedCornerRadius + e);
else
for (;;) {
var a = { x: p.width / 2 - r, y: p.roundedCornerRadius + e },
d = { x: p.width / 2, y: 0 + e },
h = { x: p.width / 2 + r, y: p.roundedCornerRadius + e },
s = m(a, d) + m(d, h),
c = { x: p.width / 2, y: 0 + e },
l = { x: p.width / 2 + r, y: p.roundedCornerRadius + e },
u = m(c, l),
g = v.lineLength - u - s,
f = void 0,
x = void 0,
w = void 0;
if (f = { x: p.width / 2 + r, y: p.roundedCornerRadius + e }, x = { x: p.width - e - r, y: o }, w = T(f, x, g), n.ctx.moveTo(p.width / 2 + r, p.roundedCornerRadius + e), n.ctx.lineTo(w.x, w.y), (g -= w.distance) <= 0) break;
if (i <= 1 / 6) break;
if (n.ctx.quadraticCurveTo(p.width - e, (p.height - v.sideWidth) / 2, p.width - e, (p.height - v.sideWidth) / 2 + r), (g -= s) <= 0) break;
if (f = { x: p.width - e, y: (p.height - v.sideWidth) / 2 + r }, x = { x: p.width - e, y: p.height - (p.height - v.sideWidth) / 2 - r }, w = T(f, x, g), n.ctx.lineTo(w.x, w.y), (g -= w.distance) <= 0) break;
if (i <= 2 / 6) break;
if (n.ctx.quadraticCurveTo(p.width - e, p.height - (p.height - v.sideWidth) / 2, p.width - e - r, p.height - o), (g -= s) <= 0) break;
if (f = { x: p.width - e - r, y: p.height - o }, x = { x: p.width / 2 + r, y: p.height - e - p.roundedCornerRadius }, w = T(f, x, g), n.ctx.lineTo(w.x, w.y), (g -= w.distance) <= 0) break;
if (i <= .5) break;
if (n.ctx.quadraticCurveTo(p.width / 2, p.height - e, p.width / 2 - r, p.height - e - p.roundedCornerRadius), (g -= s) <= 0) break;
if (f = { x: p.width / 2 - r, y: p.height - e - p.roundedCornerRadius }, x = { x: 0 + e + r, y: p.height - o }, w = T(f, x, g), n.ctx.lineTo(w.x, w.y), (g -= w.distance) <= 0) break;
if (i <= 4 / 6) break;
if (n.ctx.quadraticCurveTo(0 + e, p.height - (p.height - v.sideWidth) / 2, 0 + e, p.height - (p.height - v.sideWidth) / 2 - r), (g -= s) <= 0) break;
if (f = { x: 0 + e, y: p.height - (p.height - v.sideWidth) / 2 - r }, x = { x: 0 + e, y: (p.height - v.sideWidth) / 2 + r }, w = T(f, x, g), n.ctx.lineTo(w.x, w.y), (g -= w.distance) <= 0) break;
if (i <= 5 / 6) break;
if (n.ctx.quadraticCurveTo(0 + e, (p.height - v.sideWidth) / 2, 0 + e + r, o), (g -= s) <= 0) break;
if (f = { x: 0 + e + r, y: o }, x = { x: p.width / 2 - r, y: p.roundedCornerRadius + e }, w = T(f, x, g), n.ctx.lineTo(w.x, w.y), (g -= w.distance) <= 0) break;
if (i < 1) break;
n.ctx.quadraticCurveTo(p.width / 2, 0 + e, p.width / 2 + r, p.roundedCornerRadius + e);
break
}
} else p.clip || p.fill ? (n.ctx.moveTo(p.width / 2, 0), n.ctx.lineTo(p.width, (p.height - v.sideWidth) / 2), n.ctx.lineTo(p.width, p.height - (p.height - v.sideWidth) / 2), n.ctx.lineTo(p.width / 2, p.height), n.ctx.lineTo(0, p.height - (p.height - v.sideWidth) / 2), n.ctx.lineTo(0, (p.height - v.sideWidth) / 2), n.ctx.lineTo(p.width / 2, 0)) : (n.ctx.moveTo(p.width / 2, 0 + p.lineWidth / 2), n.ctx.lineTo(p.width - p.lineWidth / 2, (p.height - v.sideWidth) / 2), n.ctx.lineTo(p.width - p.lineWidth / 2, p.height - (p.height - v.sideWidth) / 2), n.ctx.lineTo(p.width / 2, p.height - p.lineWidth / 2), n.ctx.lineTo(0 + p.lineWidth / 2, p.height - (p.height - v.sideWidth) / 2), n.ctx.lineTo(0 + p.lineWidth / 2, (p.height - v.sideWidth) / 2), n.ctx.lineTo(p.width / 2, 0 + p.lineWidth / 2));
if (p.clip) {
if (n.ctx.clip(), n.imageSrc) {
var y = new Image;
y.src = n.imageSrc, y.addEventListener("load", function() {
var t = Math.max(p.width, p.height),
i = (Math.abs(p.width - p.height), p.width < p.height ? (p.width - p.height) / 2 : 0),
e = p.height < p.width ? (p.height - p.width) / 2 : 0;
n.ctx.drawImage(y, i, e, t, t)
})
}
} else p.fill ? n.ctx.fill() : n.ctx.stroke()
} else n.finishedDrawing = !0
};
this.render = function(t) { t = (t = (t = t > p.scale.end ? p.scale.end : t) < p.scale.start ? p.scale.start : t) / p.scale.end * p.width, s(t) },
function t(i, e) { var n; for (var r in e) "object" !== _typeof(e[r]) || e[r] instanceof Date ? e[r] instanceof Date ? i[r] = new Date(e[r].getTime()) : i[r] = e[r] : (n = e[r] instanceof Array ? [] : {}, void 0 === i[r] && (i[r] = n), t(i[r], e[r])) }(p, t), i(), e(), n(), r(),
function() {
var t = !0,
i = !1,
e = void 0;
try {
for (var n, r = function() {
var i = n.value;
p.animateOnScroll ? a(i) ? window.requestAnimationFrame(function() { d(i) }) : window.addEventListener("scroll", function t() { a(i) && (window.requestAnimationFrame(function() { d(i) }), window.removeEventListener("scroll", t)) }) : p.controlAnimation || s(i)
}, o = h[Symbol.iterator](); !(t = (n = o.next()).done); t = !0) r()
} catch (t) { i = !0, e = t } finally { try { t || null == o.return || o.return() } finally { if (i) throw e } }
}()
}
"use strict";
function _typeof(t) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { return typeof t } : function(t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) }
function XM_Popup(t) {
function n() { "static" === s.overlay.animation.type ? r.overlay.style.display = "block" : "fade" === s.overlay.animation.type && (r.overlay.style.opacity = 1, r.overlay.style.visibility = "visible"), r.visible = !0, s.sticky || (r.popupContainer.style.top = "".concat(s.offset.top + window.scrollY, "px")), "fade" === s.animation.type ? (r.popupContainer.style.opacity = 1, r.popupContainer.style.visibility = "visible") : "translate-in" === s.animation.type || "translate-out" === s.animation.type ? (r.popupContainer.style.visibility = "visible", r.popupContainer.style.transform = "translate(0, 0)") : "zoom" === s.animation.type ? (r.popupContainer.style.visibility = "visible", r.popupContainer.style.transform = "scale(1)") : "translate-in-fade" === s.animation.type || "translate-out-fade" === s.animation.type ? (r.popupContainer.style.opacity = 1, r.popupContainer.style.visibility = "visible", r.popupContainer.style.transform = "translate(0, 0)") : "zoom-fade" === s.animation.type && (r.popupContainer.style.opacity = 1, r.popupContainer.style.visibility = "visible", r.popupContainer.style.transform = "scale(1)"), r.open = !0 }
function p() { r.open ? f() : n() }
var s = { overlay: { color: "0, 0, 0", opacity: .8, closeOnClick: !0, animation: { type: "fade", ease: "ease-in-out", speed: .3 } }, align: "center", sticky: !1, offset: { top: 100 }, animation: { type: "fade", ease: "ease-in-out", speed: .3, translateOffset: 100 }, closeOnKey: 27 },
r = {},
e = function() { r.overlay = document.createElement("div"), o(), document.body.appendChild(r.overlay) },
o = function() { r.overlay.style.width = "100%", r.overlay.style.height = "100%", r.overlay.style.backgroundColor = "rgba(".concat(s.overlay.color, ", ").concat(s.overlay.opacity, ")"), r.overlay.style.position = "fixed", r.overlay.style.top = 0, r.overlay.style.left = 0, r.overlay.style.zIndex = 1e5, a(), i() },
i = function() { "fade" === s.overlay.animation.type && (r.overlay.style.transition = "opacity ".concat(s.overlay.animation.speed, "s ").concat(s.overlay.animation.ease, ", \n visibility ").concat(s.overlay.animation.speed, "s ").concat(s.overlay.animation.ease)) },
a = function() { "static" === s.overlay.animation.type ? r.overlay.style.display = "none" : "fade" === s.overlay.animation.type && (r.overlay.style.opacity = 0, r.overlay.style.visibility = "hidden") },
l = function() {
if (r.popupContainer = document.querySelector(s.container), !r.popupContainer) throw new Error("Couldn't find ".concat(s.container, " in the DOM"));
y()
},
y = function() { r.popupContainer.style.position = s.sticky ? "fixed" : "absolute", r.popupContainer.style.left = "50%", r.popupContainer.style.zIndex = 100001, f(), u() },
c = function() {
var t = window.innerHeight - r.popupContainer.offsetHeight,
n = t < 0 ? 0 : t / 2,
e = t < 0 ? 0 : t;
"center" === s.align ? r.popupContainer.style.top = "".concat(n, "px") : "top" === s.align ? r.popupContainer.style.top = "".concat(s.offset.top, "px") : "bottom" === s.align && (r.popupContainer.style.top = "".concat(e, "px")), s.sticky || (r.visible ? r.popupContainer.style.top = "".concat(s.offset.top + window.scrollY, "px") : r.popupContainer.style.top = "0"), r.popupContainer.style.marginLeft = "-".concat(r.popupContainer.offsetWidth / 2, "px")
},
u = function() { "fade" === s.animation.type ? r.popupContainer.style.transition = "opacity ".concat(s.animation.speed, "s ").concat(s.animation.ease, ", \n visibility ").concat(s.animation.speed, "s ").concat(s.animation.ease) : "translate-in" === s.animation.type || "translate-out" === s.animation.type || "zoom" === s.animation.type ? r.popupContainer.style.transition = "transform ".concat(s.animation.speed, "s ").concat(s.animation.ease, ", \n visibility ").concat(s.animation.speed, "s ").concat(s.animation.ease) : "translate-in-fade" !== s.animation.type && "translate-out-fade" !== s.animation.type && "zoom-fade" !== s.animation.type || (r.popupContainer.style.transition = "transform ".concat(s.animation.speed, "s ").concat(s.animation.ease, ", \n opacity ").concat(s.animation.speed, "s ").concat(s.animation.ease, ", visibility ").concat(s.animation.speed, "s ").concat(s.animation.ease)) },
f = function() { r.visible = !1, "fade" === s.animation.type ? (r.popupContainer.style.opacity = 0, r.popupContainer.style.visibility = "hidden") : "translate-in" === s.animation.type ? (r.popupContainer.style.visibility = "hidden", r.popupContainer.style.transform = "translate(0, -".concat(s.animation.translateOffset, "px)")) : "translate-out" === s.animation.type ? (r.popupContainer.style.visibility = "hidden", r.popupContainer.style.transform = "translate(0, ".concat(s.animation.translateOffset, "px)")) : "zoom" === s.animation.type ? (r.popupContainer.style.visibility = "hidden", r.popupContainer.style.transform = "scale(0)") : "translate-in-fade" === s.animation.type ? (r.popupContainer.style.opacity = 0, r.popupContainer.style.visibility = "hidden", r.popupContainer.style.transform = "translate(0, -".concat(s.animation.translateOffset, "px)")) : "translate-out-fade" === s.animation.type ? (r.popupContainer.style.opacity = 0, r.popupContainer.style.visibility = "hidden", r.popupContainer.style.transform = "translate(0, ".concat(s.animation.translateOffset, "px)")) : "zoom-fade" === s.animation.type && (r.popupContainer.style.opacity = 0, r.popupContainer.style.visibility = "hidden", r.popupContainer.style.transform = "scale(0)"), window.setTimeout(function() { s.sticky || (r.popupContainer.style.top = "0") }, 1e3 * s.animation.speed), a(), r.open = !1 },
m = function() {
var t = document.querySelectorAll(s.trigger);
if (!t.length) throw new Error("Couldn't find ".concat(s.trigger, " in the DOM"));
var n = !0,
e = !1,
o = void 0;
try { for (var i, a = t[Symbol.iterator](); !(n = (i = a.next()).done); n = !0) { i.value.addEventListener("click", p) } } catch (t) { e = !0, o = t } finally { try { n || null == a.return || a.return() } finally { if (e) throw o } }
s.overlay.closeOnClick && r.overlay.addEventListener("click", f), s.closeOnKey && window.addEventListener("keydown", function(t) { t.keyCode === s.closeOnKey && r.open && f() })
};
return function t(n, e) { var o; for (var i in e) "object" !== _typeof(e[i]) || e[i] instanceof Date ? e[i] instanceof Date ? n[i] = new Date(e[i].getTime()) : n[i] = e[i] : (o = e[i] instanceof Array ? [] : {}, void 0 === n[i] && (n[i] = o), t(n[i], e[i])) }(s, t), e(), l(), m(), c(), window.addEventListener("resize", c), r
}
"use strict";
function _typeof(e) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(e) { return typeof e } : function(e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e })(e) }
function XM_ProgressBar(h) {
function e(e, t) {
var n = t[0],
i = t.substring(1);
"." === n && e.setAttribute("class", i), "#" === n && e.setAttribute("id", i)
}
var p = { height: 6, lineColor: "#ebebeb", lineCap: "round", buttEnd: !1, animation: { easing: !0 }, animateOnScroll: !1, controlAnimation: !1, speed: 50, scale: { start: 0, end: 1, stop: 1 }, invertedProgress: !1, reverse: !1, linkText: !1, innerLink: !0, linkToContainer: ".bar-progress-wrap", linkTo: ".bar-progress-text", extraLinkTo: [], linkUnits: "%", linkUnitsSelector: ".bar-progress-unit", innerTextFollowsProgress: !1, decimalPoints: 0, barTextStyle: { primaryColor: "#fff", secondaryColor: "#363636", font: "bold 10px Exo, sans-serif" } },
o = document.createElement("canvas"),
r = o.getContext("2d"),
l = this,
f = function(e) {
var t = document.createElement("div");
t.style.width = "".concat(e.partWidth + 2 * e.width, "px"), t.style.height = "".concat(p.height + 2 * e.width, "px"), t.style.border = "".concat(e.width, "px solid ").concat(e.color), t.style.borderRadius = "200px", t.style.position = "absolute", t.style.top = "-".concat(e.width, "px"), t.style.left = "".concat(e.offset, "px"), l.container.append(t)
},
u = function() {
if (l.container = document.querySelector(p.container), !l.container) throw Error('Unable to find "'.concat(p.container, '" on the DOM'));
o.width = p.width, o.height = p.height, o.style.position = "absolute", o.style.top = 0, o.style.left = 0, l.container.style.width = "".concat(p.width, "px"), l.container.style.height = "".concat(p.height, "px"), l.container.style.position = "relative", l.container.append(o)
},
m = function() {
var e = 1 / 0;
for (var t in p.breakpoints) window.innerWidth <= t && (e = t < e ? t : e);
e !== 1 / 0 && (p.width = p.breakpoints[e].width, p.height = p.breakpoints[e].height)
},
g = function() {
var e = 1 / 0;
for (var t in p.breakpoints) window.innerWidth <= t && (e = t < e ? t : e);
w(e === 1 / 0 ? p.originalDimensions : p.breakpoints[e])
},
w = function(e) {
void 0 === e && ((e = {}).width = p.width, e.height = p.height), o.width = e.width, o.height = e.height, l.container.style.width = "".concat(e.width, "px"), l.container.style.height = "".concat(e.height, "px");
var t = p.scale.stop / p.scale.end * e.width;
if (a(t), p.linkElContainer && p.innerTextFollowsProgress && (p.linkElContainer.style.left = "".concat(t, "px")), k(), 0 != t) {
if (r.beginPath(), "butt" === p.lineCap && (r.moveTo(0, e.height / 2), r.lineTo(t, e.height / 2)), "round" === p.lineCap) {
var n = r.lineWidth / 2,
i = t - n;
p.reverse ? (r.moveTo(e.width - n, e.height / 2), e.width - t <= n ? r.lineTo(n, e.height / 2) : r.lineTo(e.width - t, e.height / 2)) : (r.moveTo(n, e.height / 2), i < n ? r.lineTo(n, e.height / 2) : r.lineTo(i, e.height / 2))
}
r.stroke()
}
},
T = function() {
p.linkText && (p.innerLink && (p.linkElContainer = l.container.parentElement.querySelector(p.linkToContainer), p.linkElContainer || (p.linkElContainer = document.createElement("div"), e(p.linkElContainer, p.linkToContainer), l.container.append(p.linkElContainer)), p.linkEl = l.container.parentElement.querySelector(p.linkTo), p.linkEl || (p.linkEl = document.createElement("p"), e(p.linkEl, p.linkTo), p.linkElContainer.append(p.linkEl)), p.innerTextFollowsProgress && (p.linkElContainer.style.position = "absolute"), p.linkUnits && (p.linkUnitsEl = document.createElement("span"), e(p.linkUnitsEl, p.linkUnitsSelector), p.linkUnitsEl.innerHTML = p.linkUnits)), 0 < p.extraLinkTo.length && (p.extraLinkEl = [], p.extraLinkTo.forEach(function(e) {
if (!document.querySelector(e)) throw Error('Unable to find "'.concat(e, '" on the DOM'));
p.extraLinkEl.push(document.querySelector(e))
})))
},
a = function(e) {
if (p.linkText) {
var t = (e / p.width * p.scale.end).toFixed(p.decimalPoints);
p.invertedProgress && (t = p.scale.end - t), p.innerLink && (p.linkEl.innerHTML = t, p.linkUnits && p.linkEl.append(p.linkUnitsEl), "/" === p.linkUnits && (p.linkEl.innerHTML += p.scale.end), p.innerTextFollowsProgress && (p.linkElContainer.style.left = "".concat(e, "px"))), 0 < p.extraLinkTo.length && p.extraLinkEl.forEach(function(e) { e.innerHTML = t })
}
},
y = function() { p.speed = 100 < p.speed ? 100 : p.speed, p.speed = p.speed < 1 ? 1 : p.speed, p.animation.step = p.speed * p.width / 2e3, p.animation.currentProgress = 0 };
function k() {
if (p.gradient) {
var e = r.createLinearGradient(0, p.height, p.width, 0);
e.addColorStop(0, p.gradient.colors[0]), e.addColorStop(1, p.gradient.colors[1]), r.strokeStyle = e
} else r.strokeStyle = p.lineColor;
r.lineCap = p.lineCap, r.lineWidth = p.height
}
function v() { for (var e = (window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop) + window.innerHeight, t = o, n = t.offsetTop; t = t.offsetParent;) n += t.offsetTop; return n <= e }
function x() { p.animation.currentProgress < p.stopPoint && (p.animation.easing ? (p.animation.currentProgress += .06 * (p.stopPoint - p.animation.currentProgress), p.animation.currentProgress >= p.stopPoint - 1 && (p.animation.currentProgress = p.stopPoint, l.done = !0)) : (p.animation.currentProgress += p.animation.step, p.animation.currentProgress >= p.stopPoint && (p.animation.currentProgress = p.stopPoint, l.done = !0))), E(p.animation.currentProgress), l.done || window.requestAnimationFrame(x) }
var E = function(e) {
var t = 0 < arguments.length && void 0 !== e ? e : p.stopPoint;
if (a(t), r.clearRect(0, 0, p.width, p.height), 0 === t) return p.emptyText && (p.emptyTextContainer ? p.emptyTextEl = document.querySelector(p.emptyTextContainer) : p.emptyTextEl = p.linkEl.parentElement, p.emptyTextEl.innerHTML = p.emptyText), void(l.done = !0);
if (r.beginPath(), "butt" === p.lineCap && (r.moveTo(0, p.height / 2), r.lineTo(t, p.height / 2), r.stroke()), "round" === p.lineCap) {
var n = r.lineWidth / 2,
i = t - n;
p.reverse ? (r.moveTo(p.width - n, p.height / 2), p.width - t <= n ? r.lineTo(n, p.height / 2) : r.lineTo(p.width - t, p.height / 2)) : (r.moveTo(n, p.height / 2), i < n ? r.lineTo(n, p.height / 2) : r.lineTo(i, p.height / 2)), r.stroke(), p.buttEnd && (r.lineCap = "butt", p.reverse ? (r.moveTo(p.width - t, p.height / 2), r.lineTo(p.width - t - n, p.height / 2)) : (r.moveTo(i, p.height / 2), r.lineTo(t, p.height / 2)), r.stroke(), r.lineCap = "round")
}
p.barText && s(t), p.completeText && t === p.width && (p.completeTextContainer ? p.completeTextEl = document.querySelector(p.completeTextContainer) : p.completeTextEl = p.linkEl.parentElement, p.completeTextEl.innerHTML = p.completeText)
},
s = function(e) {
var t = 0;
r.font = p.barTextStyle.font;
for (var n = 0; n < p.barText.length; n++) r.fillStyle = p.barTextStyle.primaryColor, e < t + 12 && (r.fillStyle = p.barTextStyle.secondaryColor), r.fillText(p.barText[n], 12 + t, 4 + p.height / 2), t += r.measureText(p.barText[n]).width
};
l.render = function(e) { e = (e = (e = e > p.scale.end ? p.scale.end : e) < p.scale.start ? p.scale.start : e) / p.scale.end * p.width, E(e) };
var b = function e(t, n) { var i; for (var o in n) "object" !== _typeof(n[o]) || n[o] instanceof Date ? n[o] instanceof Date ? t[o] = new Date(n[o].getTime()) : t[o] = n[o] : (i = n[o] instanceof Array ? [] : {}, void 0 === t[o] && (t[o] = i), e(t[o], n[o])) };
! function() {
if (b(p, h), "auto" === p.width || void 0 === p.width) {
var e = document.querySelector(p.container).parentElement;
p.width = e.offsetWidth, window.addEventListener("resize", function() { p.width = e.offsetWidth, w() })
}
if (p.originalDimensions = { width: p.width, height: p.height }, m(), h.scale && (p.scale.stop = p.scale.stop > p.scale.end ? p.scale.end : p.scale.stop, p.scale.stop = p.scale.stop < p.scale.start ? p.scale.start : p.scale.stop, p.scale.stop = void 0 !== h.scale.stop ? p.scale.stop : p.scale.end), p.stopPoint = p.scale.stop / p.scale.end * p.width, u(), T(), k(), y(), p.animateOnScroll ? v() ? window.requestAnimationFrame(x) : window.addEventListener("scroll", function e() { v() && (window.requestAnimationFrame(x), window.removeEventListener("scroll", e)) }) : p.controlAnimation || E(), void 0 !== p.split)
if (void 0 !== p.split.parts)
for (var t = (p.width - p.split.gap * (p.split.parts - 1)) / p.split.parts, n = -p.split.gap, i = 0; i < p.split.parts; i++) f({ width: p.split.gap, color: p.split.color, offset: n, partWidth: t }), n += t + p.split.gap;
else if (void 0 !== p.split.partItems) {
var o = 0,
r = !0,
l = !1,
a = void 0;
try {
for (var s, c = p.split.partItems[Symbol.iterator](); !(r = (s = c.next()).done); r = !0) {
var d = s.value;
o -= d.gap, f({ width: d.gap, color: p.split.color, offset: o, partWidth: d.width }), o += d.width + 2 * d.gap
}
} catch (e) { l = !0, a = e } finally { try { r || null == c.return || c.return() } finally { if (l) throw a } }
}
p.breakpoints && window.addEventListener("resize", function() { g() })
}()
}
"use strict";
function _typeof(t) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { return typeof t } : function(t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) }
function XM_Tab(n) {
var a = { triggers: "", elements: "", startOpen: 1, animation: { type: "static", speed: .6, easing: "ease-in-out" }, triggerActiveClass: "active", triggerEvent: "click", onTabChange: function(t) {} },
s = {},
e = function() { return 1366 <= window.innerWidth ? "desktop" : "mobile" },
i = function() { return s.triggers = document.querySelectorAll(a.triggers), s.triggers.length },
r = function() { return s.elements = document.querySelectorAll(a.elements), s.elements.length },
o = function() {
for (var t = function(t) {
var n = s.triggers[t];
n.addEventListener(a.triggerEvent, function() { c(n) || u(t) })
}, n = 0; n < s.triggers.length; n++) t(n)
},
l = function() { for (var t = 0; t < s.elements.length; t++) f(t) },
c = function(t) { return t.classList.contains(a.triggerActiveClass) },
f = function(t) {! function(t) { t.classList.remove(a.triggerActiveClass) }(s.triggers[t]), w(s.elements[t]) },
u = function(t) {
l(),
function(t) { t.classList.add(a.triggerActiveClass) }(s.triggers[t]), h(s.elements[t]), "static" !== a.animation.type ? window.setTimeout(function() { a.onTabChange(s.elements[t]) }, 300) : a.onTabChange(s.elements[t])
},
y = function(t) { t.style.transition = "all ".concat(a.animation.speed, "s ").concat(a.animation.easing) },
m = function(t) { t.style.transition = "none" },
g = function() {
var t = !0,
n = !1,
e = void 0;
try {
for (var i, r = s.elements[Symbol.iterator](); !(t = (i = r.next()).done); t = !0) {
var o = i.value;
p(o)
}
} catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
"static" !== a.animation.type && window.setTimeout(function() {
! function() {
var t = !0,
n = !1,
e = void 0;
try {
for (var i, r = s.elements[Symbol.iterator](); !(t = (i = r.next()).done); t = !0) {
var o = i.value;
y(o)
}
} catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
}()
}, 300)
},
v = function() {
! function() {
var t = !0,
n = !1,
e = void 0;
try {
for (var i, r = s.elements[Symbol.iterator](); !(t = (i = r.next()).done); t = !0) {
var o = i.value;
m(o)
}
} catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
}();
var t = !0,
n = !1,
e = void 0;
try {
for (var i, r = s.elements[Symbol.iterator](); !(t = (i = r.next()).done); t = !0) {
var o = i.value;
b(o)
}
} catch (t) { n = !0, e = t } finally { try { t || null == r.return || r.return() } finally { if (n) throw e } }
},
d = function() {
for (var t = 0; t < s.triggers.length; t++) {
var n = s.triggers[t];
c(n) && (l(), u(t))
}
},
p = function(t) { "slide-in-right" === a.animation.type && S(t, { position: "absolute", left: "0", zIndex: 1 }) },
b = function(t) { "static" === a.animation.type ? S(t, { display: "block" }) : "slide-in-right" === s.animationType && S(t, { position: "static", transform: "translate(0, 0)", opacity: 1, visibility: "visible" }) },
h = function(t) {
if ("static" === a.animation.type) S(t, { display: "block" });
else if ("slide-in-right" === a.animation.type) {
for (var n = t; n && !(n = (n = n.previousElementSibling) || s.elements[s.elements.length - 1]).classList.contains(a.elements.substring(1)););
S(t, { transform: "translate(0, 0)", opacity: 1, visibility: "visible", zIndex: 2 }), w(n)
}
},
w = function(t) { "static" === a.animation.type ? S(t, { display: "none" }) : "slide-in-right" === a.animation.type && S(t, { transform: "translate(50%, 0)", opacity: 0, visibility: "hidden", zIndex: 1 }) },
S = function(t, n) { for (var e in n) t.style[e] = n[e] },
T = function t(n, e) { var i; for (var r in e) "object" !== _typeof(e[r]) || e[r] instanceof Date ? e[r] instanceof Date ? n[r] = new Date(e[r].getTime()) : n[r] = e[r] : (i = e[r] instanceof Array ? [] : {}, void 0 === n[r] && (n[r] = i), t(n[r], e[r])) };
return function() {
if (T(a, n), r() && i()) {
s.animationType = a.animation.type, window.innerWidth < 1366 && (a.animation.type = "static"), l(), u(a.startOpen - 1), g(), o();
var t = e();
window.addEventListener("resize", function() { window.innerWidth < 1366 && "desktop" === t ? (v(), a.animation.type = "static", d(), g()) : 1366 <= window.innerWidth && "mobile" === t && (v(), a.animation.type = s.animationType, d(), g()), t = e() })
}
}(), {}
}
"use strict";
function _typeof(t) { return (_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { return typeof t } : function(t) { return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t })(t) }
function XM_Tooltip(t) {
var W = { type: "title", direction: "top", align: "center", offset: 20, tooltipSelector: ["xm-tooltip"], textSelector: "xm-tooltip-text", eventHandler: "hover", animation: { type: "static", ease: "ease-in-out", speed: .3, translateOffset: 10 } },
h = {},
i = function() {
var t = document.querySelectorAll(W.container);
o(t[0], W.container), h.tooltips = [], t.forEach(function(t) {
var i = {},
e = document.createElement("div"),
a = !0,
n = !1,
o = void 0;
try {
for (var r, l = W.tooltipSelector[Symbol.iterator](); !(a = (r = l.next()).done); a = !0) {
var s = r.value;
e.classList.add(s)
}
} catch (t) { n = !0, o = t } finally { try { a || null == l.return || l.return() } finally { if (n) throw o } }
if ("title" === W.type) {
var m = document.createElement("p");
m.classList.add(W.textSelector), m.innerHTML = t.getAttribute("data-title"), e.append(m)
} else(W.type = "html") && (e.innerHTML = W.htmlContent);
void 0 !== W.parent ? t.parentElement.append(e) : t.append(e), i.containerElement = t, i.tooltipWrap = { item: e, visible: !1 }, h.tooltips.push(i)
})
},
e = function() {
var t = !0,
i = !1,
e = void 0;
try {
for (var a, n = h.tooltips[Symbol.iterator](); !(t = (a = n.next()).done); t = !0) {
var o = a.value;
void 0 !== W.parent ? o.containerElement.parentElement.style.position = "relative" : o.containerElement.style.position = "relative", o.tooltipWrap.item.style.whiteSpace = "nowrap", o.tooltipWrap.item.style.position = "absolute", o.tooltipWrap.item.style.zIndex = 99999;
var r = 0;
"top" === W.direction || "bottom" === W.direction ? r += o.tooltipWrap.item.offsetHeight : "left" !== W.direction && "right" !== W.direction || (r += o.tooltipWrap.item.offsetWidth);
var l = -W.offset - r;
o.tooltipWrap.item.style[W.direction] = "".concat(l, "px"), "center" === W.align ? "top" === W.direction || "bottom" === W.direction ? (o.tooltipWrap.item.style.left = "50%", o.tooltipWrap.item.style.marginLeft = "-".concat(o.tooltipWrap.item.offsetWidth / 2, "px")) : "left" !== W.direction && "right" !== W.direction || (o.tooltipWrap.item.style.top = "50%", o.tooltipWrap.item.style.marginTop = "-".concat(o.tooltipWrap.item.offsetHeight / 2, "px")) : o.tooltipWrap.item.style[W.align] = 0
}
} catch (t) { i = !0, e = t } finally { try { t || null == n.return || n.return() } finally { if (i) throw e } }
},
a = function() {
var t = !0,
i = !1,
e = void 0;
try { for (var a, n = function() { var t = a.value; "static" === W.animation.type ? t.tooltipWrap.item.style.display = "none" : "fade" === W.animation.type ? (t.tooltipWrap.item.style.visibility = "hidden", t.tooltipWrap.item.style.opacity = 0) : "zoom" === W.animation.type ? (t.tooltipWrap.item.style.visibility = "hidden", t.tooltipWrap.item.style.transform = "scale(0)") : "zoom-fade" === W.animation.type ? (t.tooltipWrap.item.style.visibility = "hidden", t.tooltipWrap.item.style.opacity = 0, t.tooltipWrap.item.style.transform = "scale(0)") : "translate-in" === W.animation.type ? (t.tooltipWrap.item.style.visibility = "hidden", "top" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.tooltipWrap.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.tooltipWrap.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)"))) : "translate-out" === W.animation.type ? (t.tooltipWrap.item.style.visibility = "hidden", "top" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.tooltipWrap.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.tooltipWrap.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)"))) : "translate-in-fade" === W.animation.type ? (t.tooltipWrap.item.style.opacity = 0, t.tooltipWrap.item.style.visibility = "hidden", "top" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.tooltipWrap.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.tooltipWrap.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)"))) : "translate-out-fade" === W.animation.type && (t.tooltipWrap.item.style.opacity = 0, t.tooltipWrap.item.style.visibility = "hidden", "top" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.tooltipWrap.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.tooltipWrap.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.tooltipWrap.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)"))), window.setTimeout(function() { t.tooltipWrap.item.style.transition = "all ".concat(W.animation.speed, "s ").concat(W.animation.ease) }, 300) }, o = h.tooltips[Symbol.iterator](); !(t = (a = o.next()).done); t = !0) n() } catch (t) { i = !0, e = t } finally { try { t || null == o.return || o.return() } finally { if (i) throw e } }
},
n = function() {
if ("hover" === W.eventHandler) {
var t = !0,
i = !1,
e = void 0;
try {
for (var a, n = function() {
var t = a.value;
t.containerElement.addEventListener("mouseenter", function() { O(t.tooltipWrap) }), t.containerElement.addEventListener("mouseleave", function() { w(t.tooltipWrap) })
}, o = h.tooltips[Symbol.iterator](); !(t = (a = o.next()).done); t = !0) n()
} catch (t) { i = !0, e = t } finally { try { t || null == o.return || o.return() } finally { if (i) throw e } }
} else if ("click" === W.eventHandler) {
var r = !0,
l = !1,
s = void 0;
try {
for (var m, p = function() {
var t = m.value;
t.containerElement.addEventListener("click", function() { x(t.tooltipWrap) })
}, c = h.tooltips[Symbol.iterator](); !(r = (m = c.next()).done); r = !0) p()
} catch (t) { l = !0, s = t } finally { try { r || null == c.return || c.return() } finally { if (l) throw s } }
window.addEventListener("click", function() {
var t = !0,
i = !1,
e = void 0;
try {
for (var a, n = h.tooltips[Symbol.iterator](); !(t = (a = n.next()).done); t = !0) {
var o = a.value;
o.tooltipWrap.visible && w(o.tooltipWrap)
}
} catch (t) { i = !0, e = t } finally { try { t || null == n.return || n.return() } finally { if (i) throw e } }
}), window.addEventListener("keydown", function(t) {
if (27 === t.keyCode) {
var i = !0,
e = !1,
a = void 0;
try {
for (var n, o = h.tooltips[Symbol.iterator](); !(i = (n = o.next()).done); i = !0) {
var r = n.value;
r.tooltipWrap.visible && w(r.tooltipWrap)
}
} catch (t) { e = !0, a = t } finally { try { i || null == o.return || o.return() } finally { if (e) throw a } }
}
})
} else if ("clickTemp" === W.eventHandler) {
var f = !0,
y = !1,
d = void 0;
try {
for (var v, u = function() {
var i = v.value;
i.containerElement.addEventListener("click", function(t) { O(i.tooltipWrap), window.setTimeout(function() { w(i.tooltipWrap) }, 2e3) })
}, b = h.tooltips[Symbol.iterator](); !(f = (v = b.next()).done); f = !0) u()
} catch (t) { y = !0, d = t } finally { try { f || null == b.return || b.return() } finally { if (y) throw d } }
}
},
x = function(t) { t.visible ? w(t) : O(t) },
O = function(t) { "static" === W.animation.type ? t.item.style.display = "block" : "fade" === W.animation.type ? (t.item.style.visibility = "visible", t.item.style.opacity = 1) : "zoom" === W.animation.type ? (t.item.style.visibility = "visible", t.item.style.transform = "scale(1)") : "zoom-fade" === W.animation.type ? (t.item.style.visibility = "visible", t.item.style.opacity = 1, t.item.style.transform = "scale(1)") : "translate-in" === W.animation.type || "translate-out" === W.animation.type ? (t.item.style.visibility = "visible", t.item.style.transform = "translate(0, 0)") : "translate-in-fade" !== W.animation.type && "translate-out-fade" !== W.animation.type || (t.item.style.visibility = "visible", t.item.style.opacity = 1, t.item.style.transform = "translate(0, 0)"), window.setTimeout(function() { t.visible = !0 }, W.animation.speed) },
w = function(t) { "static" === W.animation.type ? t.item.style.display = "none" : "fade" === W.animation.type ? (t.item.style.visibility = "hidden", t.item.style.opacity = 0) : "zoom" === W.animation.type ? (t.item.style.visibility = "hidden", t.item.style.transform = "scale(0)") : "zoom-fade" === W.animation.type ? (t.item.style.visibility = "hidden", t.item.style.opacity = 0, t.item.style.transform = "scale(0)") : "translate-in" === W.animation.type ? (t.item.style.visibility = "hidden", "top" === W.direction ? t.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)"))) : "translate-out" === W.animation.type ? (t.item.style.visibility = "hidden", "top" === W.direction ? t.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)"))) : "translate-in-fade" === W.animation.type ? (t.item.style.opacity = 0, t.item.style.visibility = "hidden", "top" === W.direction ? t.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)"))) : "translate-out-fade" === W.animation.type && (t.item.style.opacity = 0, t.item.style.visibility = "hidden", "top" === W.direction ? t.item.style.transform = "translate(0, ".concat(W.animation.translateOffset, "px)") : "bottom" === W.direction ? t.item.style.transform = "translate(0, -".concat(W.animation.translateOffset, "px)") : "right" === W.direction ? t.item.style.transform = "translate(-".concat(W.animation.translateOffset, "px, 0)") : "left" === W.direction && (t.item.style.transform = "translate(".concat(W.animation.translateOffset, "px, 0)"))), window.setTimeout(function() { t.visible = !1 }, W.animation.speed) },
o = function(t, i, e) { var a = 2 < arguments.length && void 0 !== e && e; if (!t) throw a ? new Error("Can't find ".concat(i, " inside ").concat(a)) : new Error("Can't find ".concat(i, " in the DOM")) };
(function t(i, e) { var a; for (var n in e) "object" !== _typeof(e[n]) || e[n] instanceof Date ? e[n] instanceof Date ? i[n] = new Date(e[n].getTime()) : i[n] = e[n] : (a = e[n] instanceof Array ? [] : {}, void 0 === i[n] && (i[n] = a), t(i[n], e[n])) })(W, t), i(), e(), a(), n()
}! function a(o, s, l) {
function c(t, e) {
if (!s[t]) {
if (!o[t]) { var n = "function" == typeof require && require; if (!e && n) return n(t, !0); if (d) return d(t, !0); var i = new Error("Cannot find module '" + t + "'"); throw i.code = "MODULE_NOT_FOUND", i }
var r = s[t] = { exports: {} };
o[t][0].call(r.exports, function(e) { return c(o[t][1][e] || e) }, r, r.exports, a, o, s, l)
}
return s[t].exports
}
for (var d = "function" == typeof require && require, e = 0; e < l.length; e++) c(l[e]);
return c
}({
1: [function(e, t, n) {
var i, r;
i = this, r = function(i) {
"use strict";
i = i && i.hasOwnProperty("default") ? i.default : i;
var e, d = { aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], grey: [128, 128, 128], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], rebeccapurple: [102, 51, 153], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] },
c = (function(e) {
var c = {};
for (var t in d) d.hasOwnProperty(t) && (c[d[t]] = t);
var o = e.exports = { rgb: { channels: 3, labels: "rgb" }, hsl: { channels: 3, labels: "hsl" }, hsv: { channels: 3, labels: "hsv" }, hwb: { channels: 3, labels: "hwb" }, cmyk: { channels: 4, labels: "cmyk" }, xyz: { channels: 3, labels: "xyz" }, lab: { channels: 3, labels: "lab" }, lch: { channels: 3, labels: "lch" }, hex: { channels: 1, labels: ["hex"] }, keyword: { channels: 1, labels: ["keyword"] }, ansi16: { channels: 1, labels: ["ansi16"] }, ansi256: { channels: 1, labels: ["ansi256"] }, hcg: { channels: 3, labels: ["h", "c", "g"] }, apple: { channels: 3, labels: ["r16", "g16", "b16"] }, gray: { channels: 1, labels: ["gray"] } };
for (var n in o)
if (o.hasOwnProperty(n)) {
if (!("channels" in o[n])) throw new Error("missing channels property: " + n);
if (!("labels" in o[n])) throw new Error("missing channel labels property: " + n);
if (o[n].labels.length !== o[n].channels) throw new Error("channel and label counts mismatch: " + n);
var i = o[n].channels,
r = o[n].labels;
delete o[n].channels, delete o[n].labels, Object.defineProperty(o[n], "channels", { value: i }), Object.defineProperty(o[n], "labels", { value: r })
}
o.rgb.hsl = function(e) {
var t, n, i = e[0] / 255,
r = e[1] / 255,
a = e[2] / 255,
o = Math.min(i, r, a),
s = Math.max(i, r, a),
l = s - o;
return s === o ? t = 0 : i === s ? t = (r - a) / l : r === s ? t = 2 + (a - i) / l : a === s && (t = 4 + (i - r) / l), (t = Math.min(60 * t, 360)) < 0 && (t += 360), n = (o + s) / 2, [t, 100 * (s === o ? 0 : n <= .5 ? l / (s + o) : l / (2 - s - o)), 100 * n]
}, o.rgb.hsv = function(e) {
function t(e) { return (d - e) / 6 / u + .5 }
var n, i, r, a, o, s = e[0] / 255,
l = e[1] / 255,
c = e[2] / 255,
d = Math.max(s, l, c),
u = d - Math.min(s, l, c);
return 0 == u ? a = o = 0 : (o = u / d, n = t(s), i = t(l), r = t(c), s === d ? a = r - i : l === d ? a = 1 / 3 + n - r : c === d && (a = 2 / 3 + i - n), a < 0 ? a += 1 : 1 < a && (a -= 1)), [360 * a, 100 * o, 100 * d]
}, o.rgb.hwb = function(e) {
var t = e[0],
n = e[1],
i = e[2];
return [o.rgb.hsl(e)[0], 100 * (1 / 255 * Math.min(t, Math.min(n, i))), 100 * (i = 1 - 1 / 255 * Math.max(t, Math.max(n, i)))]
}, o.rgb.cmyk = function(e) {
var t, n = e[0] / 255,
i = e[1] / 255,
r = e[2] / 255;
return [100 * ((1 - n - (t = Math.min(1 - n, 1 - i, 1 - r))) / (1 - t) || 0), 100 * ((1 - i - t) / (1 - t) || 0), 100 * ((1 - r - t) / (1 - t) || 0), 100 * t]
}, o.rgb.keyword = function(e) {
var t = c[e];
if (t) return t;
var n, i, r, a = 1 / 0;
for (var o in d)
if (d.hasOwnProperty(o)) {
var s = d[o],
l = (i = e, r = s, Math.pow(i[0] - r[0], 2) + Math.pow(i[1] - r[1], 2) + Math.pow(i[2] - r[2], 2));
l < a && (a = l, n = o)
}
return n
}, o.keyword.rgb = function(e) { return d[e] }, o.rgb.xyz = function(e) {
var t = e[0] / 255,
n = e[1] / 255,
i = e[2] / 255;
return [100 * (.4124 * (t = .04045 < t ? Math.pow((t + .055) / 1.055, 2.4) : t / 12.92) + .3576 * (n = .04045 < n ? Math.pow((n + .055) / 1.055, 2.4) : n / 12.92) + .1805 * (i = .04045 < i ? Math.pow((i + .055) / 1.055, 2.4) : i / 12.92)), 100 * (.2126 * t + .7152 * n + .0722 * i), 100 * (.0193 * t + .1192 * n + .9505 * i)]
}, o.rgb.lab = function(e) {
var t = o.rgb.xyz(e),
n = t[0],
i = t[1],
r = t[2];
return i /= 100, r /= 108.883, n = .008856 < (n /= 95.047) ? Math.pow(n, 1 / 3) : 7.787 * n + 16 / 116, [116 * (i = .008856 < i ? Math.pow(i, 1 / 3) : 7.787 * i + 16 / 116) - 16, 500 * (n - i), 200 * (i - (r = .008856 < r ? Math.pow(r, 1 / 3) : 7.787 * r + 16 / 116))]
}, o.hsl.rgb = function(e) {
var t, n, i, r, a, o = e[0] / 360,
s = e[1] / 100,
l = e[2] / 100;
if (0 == s) return [a = 255 * l, a, a];
t = 2 * l - (n = l < .5 ? l * (1 + s) : l + s - l * s), r = [0, 0, 0];
for (var c = 0; c < 3; c++)(i = o + 1 / 3 * -(c - 1)) < 0 && i++, 1 < i && i--, a = 6 * i < 1 ? t + 6 * (n - t) * i : 2 * i < 1 ? n : 3 * i < 2 ? t + (n - t) * (2 / 3 - i) * 6 : t, r[c] = 255 * a;
return r
}, o.hsl.hsv = function(e) {
var t = e[0],
n = e[1] / 100,
i = e[2] / 100,
r = n,
a = Math.max(i, .01);
return n *= (i *= 2) <= 1 ? i : 2 - i, r *= a <= 1 ? a : 2 - a, [t, 100 * (0 === i ? 2 * r / (a + r) : 2 * n / (i + n)), 100 * ((i + n) / 2)]
}, o.hsv.rgb = function(e) {
var t = e[0] / 60,
n = e[1] / 100,
i = e[2] / 100,
r = Math.floor(t) % 6,
a = t - Math.floor(t),
o = 255 * i * (1 - n),
s = 255 * i * (1 - n * a),
l = 255 * i * (1 - n * (1 - a));
switch (i *= 255, r) {
case 0:
return [i, l, o];
case 1:
return [s, i, o];
case 2:
return [o, i, l];
case 3:
return [o, s, i];
case 4:
return [l, o, i];
case 5:
return [i, o, s]
}
}, o.hsv.hsl = function(e) {
var t, n, i, r = e[0],
a = e[1] / 100,
o = e[2] / 100,
s = Math.max(o, .01);
return i = (2 - a) * o, n = a * s, [r, 100 * (n = (n /= (t = (2 - a) * s) <= 1 ? t : 2 - t) || 0), 100 * (i /= 2)]
}, o.hwb.rgb = function(e) {
var t, n, i, r, a, o, s, l = e[0] / 360,
c = e[1] / 100,
d = e[2] / 100,
u = c + d;
switch (1 < u && (c /= u, d /= u), i = 6 * l - (t = Math.floor(6 * l)), 0 != (1 & t) && (i = 1 - i), r = c + i * ((n = 1 - d) - c), t) {
default:
case 6:
case 0:
a = n,
o = r,
s = c;
break;
case 1:
a = r,
o = n,
s = c;
break;
case 2:
a = c,
o = n,
s = r;
break;
case 3:
a = c,
o = r,
s = n;
break;
case 4:
a = r,
o = c,
s = n;
break;
case 5:
a = n,
o = c,
s = r
}
return [255 * a, 255 * o, 255 * s]
}, o.cmyk.rgb = function(e) {
var t = e[0] / 100,
n = e[1] / 100,
i = e[2] / 100,
r = e[3] / 100;
return [255 * (1 - Math.min(1, t * (1 - r) + r)), 255 * (1 - Math.min(1, n * (1 - r) + r)), 255 * (1 - Math.min(1, i * (1 - r) + r))]
}, o.xyz.rgb = function(e) {
var t, n, i, r = e[0] / 100,
a = e[1] / 100,
o = e[2] / 100;
return n = -.9689 * r + 1.8758 * a + .0415 * o, i = .0557 * r + -.204 * a + 1.057 * o, t = .0031308 < (t = 3.2406 * r + -1.5372 * a + -.4986 * o) ? 1.055 * Math.pow(t, 1 / 2.4) - .055 : 12.92 * t, n = .0031308 < n ? 1.055 * Math.pow(n, 1 / 2.4) - .055 : 12.92 * n, i = .0031308 < i ? 1.055 * Math.pow(i, 1 / 2.4) - .055 : 12.92 * i, [255 * (t = Math.min(Math.max(0, t), 1)), 255 * (n = Math.min(Math.max(0, n), 1)), 255 * (i = Math.min(Math.max(0, i), 1))]
}, o.xyz.lab = function(e) {
var t = e[0],
n = e[1],
i = e[2];
return n /= 100, i /= 108.883, t = .008856 < (t /= 95.047) ? Math.pow(t, 1 / 3) : 7.787 * t + 16 / 116, [116 * (n = .008856 < n ? Math.pow(n, 1 / 3) : 7.787 * n + 16 / 116) - 16, 500 * (t - n), 200 * (n - (i = .008856 < i ? Math.pow(i, 1 / 3) : 7.787 * i + 16 / 116))]
}, o.lab.xyz = function(e) {
var t, n, i, r = e[0];
t = e[1] / 500 + (n = (r + 16) / 116), i = n - e[2] / 200;
var a = Math.pow(n, 3),
o = Math.pow(t, 3),
s = Math.pow(i, 3);
return n = .008856 < a ? a : (n - 16 / 116) / 7.787, t = .008856 < o ? o : (t - 16 / 116) / 7.787, i = .008856 < s ? s : (i - 16 / 116) / 7.787, [t *= 95.047, n *= 100, i *= 108.883]
}, o.lab.lch = function(e) {
var t, n = e[0],
i = e[1],
r = e[2];
return (t = 360 * Math.atan2(r, i) / 2 / Math.PI) < 0 && (t += 360), [n, Math.sqrt(i * i + r * r), t]
}, o.lch.lab = function(e) {
var t, n = e[0],
i = e[1];
return t = e[2] / 360 * 2 * Math.PI, [n, i * Math.cos(t), i * Math.sin(t)]
}, o.rgb.ansi16 = function(e) {
var t = e[0],
n = e[1],
i = e[2],
r = 1 in arguments ? arguments[1] : o.rgb.hsv(e)[2];
if (0 === (r = Math.round(r / 50))) return 30;
var a = 30 + (Math.round(i / 255) << 2 | Math.round(n / 255) << 1 | Math.round(t / 255));
return 2 === r && (a += 60), a
}, o.hsv.ansi16 = function(e) { return o.rgb.ansi16(o.hsv.rgb(e), e[2]) }, o.rgb.ansi256 = function(e) {
var t = e[0],
n = e[1],
i = e[2];
return t === n && n === i ? t < 8 ? 16 : 248 < t ? 231 : Math.round((t - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(t / 255 * 5) + 6 * Math.round(n / 255 * 5) + Math.round(i / 255 * 5)
}, o.ansi16.rgb = function(e) { var t = e % 10; if (0 === t || 7 === t) return 50 < e && (t += 3.5), [t = t / 10.5 * 255, t, t]; var n = .5 * (1 + ~~(50 < e)); return [(1 & t) * n * 255, (t >> 1 & 1) * n * 255, (t >> 2 & 1) * n * 255] }, o.ansi256.rgb = function(e) { if (232 <= e) { var t = 10 * (e - 232) + 8; return [t, t, t] } var n; return e -= 16, [Math.floor(e / 36) / 5 * 255, Math.floor((n = e % 36) / 6) / 5 * 255, n % 6 / 5 * 255] }, o.rgb.hex = function(e) { var t = (((255 & Math.round(e[0])) << 16) + ((255 & Math.round(e[1])) << 8) + (255 & Math.round(e[2]))).toString(16).toUpperCase(); return "000000".substring(t.length) + t }, o.hex.rgb = function(e) {
var t = e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);
if (!t) return [0, 0, 0];
var n = t[0];
3 === t[0].length && (n = n.split("").map(function(e) { return e + e }).join(""));
var i = parseInt(n, 16);
return [i >> 16 & 255, i >> 8 & 255, 255 & i]
}, o.rgb.hcg = function(e) {
var t, n = e[0] / 255,
i = e[1] / 255,
r = e[2] / 255,
a = Math.max(Math.max(n, i), r),
o = Math.min(Math.min(n, i), r),
s = a - o;
return t = s <= 0 ? 0 : a === n ? (i - r) / s % 6 : a === i ? 2 + (r - n) / s : 4 + (n - i) / s + 4, t /= 6, [360 * (t %= 1), 100 * s, 100 * (s < 1 ? o / (1 - s) : 0)]
}, o.hsl.hcg = function(e) {
var t = e[1] / 100,
n = e[2] / 100,
i = 1,
r = 0;
return (i = n < .5 ? 2 * t * n : 2 * t * (1 - n)) < 1 && (r = (n - .5 * i) / (1 - i)), [e[0], 100 * i, 100 * r]
}, o.hsv.hcg = function(e) {
var t = e[1] / 100,
n = e[2] / 100,
i = t * n,
r = 0;
return i < 1 && (r = (n - i) / (1 - i)), [e[0], 100 * i, 100 * r]
}, o.hcg.rgb = function(e) {
var t = e[0] / 360,
n = e[1] / 100,
i = e[2] / 100;
if (0 == n) return [255 * i, 255 * i, 255 * i];
var r, a = [0, 0, 0],
o = t % 1 * 6,
s = o % 1,
l = 1 - s;
switch (Math.floor(o)) {
case 0:
a[0] = 1, a[1] = s, a[2] = 0;
break;
case 1:
a[0] = l, a[1] = 1, a[2] = 0;
break;
case 2:
a[0] = 0, a[1] = 1, a[2] = s;
break;
case 3:
a[0] = 0, a[1] = l, a[2] = 1;
break;
case 4:
a[0] = s, a[1] = 0, a[2] = 1;
break;
default:
a[0] = 1, a[1] = 0, a[2] = l
}
return r = (1 - n) * i, [255 * (n * a[0] + r), 255 * (n * a[1] + r), 255 * (n * a[2] + r)]
}, o.hcg.hsv = function(e) {
var t = e[1] / 100,
n = t + e[2] / 100 * (1 - t),
i = 0;
return 0 < n && (i = t / n), [e[0], 100 * i, 100 * n]
}, o.hcg.hsl = function(e) {
var t = e[1] / 100,
n = e[2] / 100 * (1 - t) + .5 * t,
i = 0;
return 0 < n && n < .5 ? i = t / (2 * n) : .5 <= n && n < 1 && (i = t / (2 * (1 - n))), [e[0], 100 * i, 100 * n]
}, o.hcg.hwb = function(e) {
var t = e[1] / 100,
n = t + e[2] / 100 * (1 - t);
return [e[0], 100 * (n - t), 100 * (1 - n)]
}, o.hwb.hcg = function(e) {
var t = e[1] / 100,
n = 1 - e[2] / 100,
i = n - t,
r = 0;
return i < 1 && (r = (n - i) / (1 - i)), [e[0], 100 * i, 100 * r]
}, o.apple.rgb = function(e) { return [e[0] / 65535 * 255, e[1] / 65535 * 255, e[2] / 65535 * 255] }, o.rgb.apple = function(e) { return [e[0] / 255 * 65535, e[1] / 255 * 65535, e[2] / 255 * 65535] }, o.gray.rgb = function(e) { return [e[0] / 100 * 255, e[0] / 100 * 255, e[0] / 100 * 255] }, o.gray.hsl = o.gray.hsv = function(e) { return [0, 0, e[0]] }, o.gray.hwb = function(e) { return [0, 100, e[0]] }, o.gray.cmyk = function(e) { return [0, 0, 0, e[0]] }, o.gray.lab = function(e) { return [e[0], 0, 0] }, o.gray.hex = function(e) {
var t = 255 & Math.round(e[0] / 100 * 255),
n = ((t << 16) + (t << 8) + t).toString(16).toUpperCase();
return "000000".substring(n.length) + n
}, o.rgb.gray = function(e) { return [(e[0] + e[1] + e[2]) / 3 / 255 * 100] }
}(e = { exports: {} }, e.exports), e.exports);
c.rgb, c.hsl, c.hsv, c.hwb, c.cmyk, c.xyz, c.lab, c.lch, c.hex, c.keyword, c.ansi16, c.ansi256, c.hcg, c.apple, c.gray;
function s(e) {
var t = function() { for (var e = {}, t = Object.keys(c), n = t.length, i = 0; i < n; i++) e[t[i]] = { distance: -1, parent: null }; return e }(),
n = [e];
for (t[e].distance = 0; n.length;)
for (var i = n.pop(), r = Object.keys(c[i]), a = r.length, o = 0; o < a; o++) {
var s = r[o],
l = t[s]; - 1 === l.distance && (l.distance = t[i].distance + 1, l.parent = i, n.unshift(s))
}
return t
}
function a(t, n) { return function(e) { return n(t(e)) } }
function l(e, t) { for (var n = [t[e].parent, e], i = c[t[e].parent][e], r = t[e].parent; t[r].parent;) n.unshift(t[r].parent), i = a(c[t[r].parent][r], i), r = t[r].parent; return i.conversion = n, i }
var r = {};
Object.keys(c).forEach(function(n) {
r[n] = {}, Object.defineProperty(r[n], "channels", { value: c[n].channels }), Object.defineProperty(r[n], "labels", { value: c[n].labels });
var i = function(e) {
for (var t = s(e), n = {}, i = Object.keys(t), r = i.length, a = 0; a < r; a++) {
var o = i[a];
null !== t[o].parent && (n[o] = l(o, t))
}
return n
}(n);
Object.keys(i).forEach(function(e) {
var t = i[e];
r[n][e] = function(r) {
function e(e) {
if (null == e) return e;
1 < arguments.length && (e = Array.prototype.slice.call(arguments));
var t = r(e);
if ("object" == typeof t)
for (var n = t.length, i = 0; i < n; i++) t[i] = Math.round(t[i]);
return t
}
return "conversion" in r && (e.conversion = r.conversion), e
}(t), r[n][e].raw = function(t) {
function e(e) { return null == e ? e : (1 < arguments.length && (e = Array.prototype.slice.call(arguments)), t(e)) }
return "conversion" in t && (e.conversion = t.conversion), e
}(t)
})
});
var u = r,
o = { aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], grey: [128, 128, 128], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], rebeccapurple: [102, 51, 153], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] },
n = {
getRgba: h,
getHsla: f,
getRgb: function(e) { var t = h(e); return t && t.slice(0, 3) },
getHsl: function(e) { var t = f(e); return t && t.slice(0, 3) },
getHwb: g,
getAlpha: function(e) { var t = h(e); { if (t) return t[3]; if (t = f(e)) return t[3]; if (t = g(e)) return t[3] } },
hexString: function(e, t) { t = void 0 !== t && 3 === e.length ? t : e[3]; return "#" + b(e[0]) + b(e[1]) + b(e[2]) + (0 <= t && t < 1 ? b(Math.round(255 * t)) : "") },
rgbString: function(e, t) { if (t < 1 || e[3] && e[3] < 1) return p(e, t); return "rgb(" + e[0] + ", " + e[1] + ", " + e[2] + ")" },
rgbaString: p,
percentString: function(e, t) {
if (t < 1 || e[3] && e[3] < 1) return v(e, t);
var n = Math.round(e[0] / 255 * 100),
i = Math.round(e[1] / 255 * 100),
r = Math.round(e[2] / 255 * 100);
return "rgb(" + n + "%, " + i + "%, " + r + "%)"
},
percentaString: v,
hslString: function(e, t) { if (t < 1 || e[3] && e[3] < 1) return m(e, t); return "hsl(" + e[0] + ", " + e[1] + "%, " + e[2] + "%)" },
hslaString: m,
hwbString: function(e, t) { void 0 === t && (t = void 0 !== e[3] ? e[3] : 1); return "hwb(" + e[0] + ", " + e[1] + "%, " + e[2] + "%" + (void 0 !== t && 1 !== t ? ", " + t : "") + ")" },
keyword: function(e) { return t[e.slice(0, 3)] }
};
function h(e) {
if (e) {
var t = [0, 0, 0],
n = 1,
i = e.match(/^#([a-fA-F0-9]{3,4})$/i),
r = "";
if (i) {
r = (i = i[1])[3];
for (var a = 0; a < t.length; a++) t[a] = parseInt(i[a] + i[a], 16);
r && (n = Math.round(parseInt(r + r, 16) / 255 * 100) / 100)
} else if (i = e.match(/^#([a-fA-F0-9]{6}([a-fA-F0-9]{2})?)$/i)) {
r = i[2], i = i[1];
for (a = 0; a < t.length; a++) t[a] = parseInt(i.slice(2 * a, 2 * a + 2), 16);
r && (n = Math.round(parseInt(r, 16) / 255 * 100) / 100)
} else if (i = e.match(/^rgba?\(\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*,\s*([+-]?\d+)\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)) {
for (a = 0; a < t.length; a++) t[a] = parseInt(i[a + 1]);
n = parseFloat(i[4])
} else if (i = e.match(/^rgba?\(\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*,\s*([+-]?[\d\.]+)\%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)$/i)) {
for (a = 0; a < t.length; a++) t[a] = Math.round(2.55 * parseFloat(i[a + 1]));
n = parseFloat(i[4])
} else if (i = e.match(/(\w+)/)) { if ("transparent" == i[1]) return [0, 0, 0, 0]; if (!(t = o[i[1]])) return }
for (a = 0; a < t.length; a++) t[a] = y(t[a], 0, 255);
return n = n || 0 == n ? y(n, 0, 1) : 1, t[3] = n, t
}
}
function f(e) { if (e) { var t = e.match(/^hsla?\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/); if (t) { var n = parseFloat(t[4]); return [y(parseInt(t[1]), 0, 360), y(parseFloat(t[2]), 0, 100), y(parseFloat(t[3]), 0, 100), y(isNaN(n) ? 1 : n, 0, 1)] } } }
function g(e) { if (e) { var t = e.match(/^hwb\(\s*([+-]?\d+)(?:deg)?\s*,\s*([+-]?[\d\.]+)%\s*,\s*([+-]?[\d\.]+)%\s*(?:,\s*([+-]?[\d\.]+)\s*)?\)/); if (t) { var n = parseFloat(t[4]); return [y(parseInt(t[1]), 0, 360), y(parseFloat(t[2]), 0, 100), y(parseFloat(t[3]), 0, 100), y(isNaN(n) ? 1 : n, 0, 1)] } } }
function p(e, t) { return void 0 === t && (t = void 0 !== e[3] ? e[3] : 1), "rgba(" + e[0] + ", " + e[1] + ", " + e[2] + ", " + t + ")" }
function v(e, t) { return "rgba(" + Math.round(e[0] / 255 * 100) + "%, " + Math.round(e[1] / 255 * 100) + "%, " + Math.round(e[2] / 255 * 100) + "%, " + (t || e[3] || 1) + ")" }
function m(e, t) { return void 0 === t && (t = void 0 !== e[3] ? e[3] : 1), "hsla(" + e[0] + ", " + e[1] + "%, " + e[2] + "%, " + t + ")" }
function y(e, t, n) { return Math.min(Math.max(t, e), n) }
function b(e) { var t = e.toString(16).toUpperCase(); return t.length < 2 ? "0" + t : t }
var t = {};
for (var x in o) t[o[x]] = x;
var M = function(e) { return e instanceof M ? e : this instanceof M ? (this.valid = !1, this.values = { rgb: [0, 0, 0], hsl: [0, 0, 0], hsv: [0, 0, 0], hwb: [0, 0, 0], cmyk: [0, 0, 0, 0], alpha: 1 }, void("string" == typeof e ? (t = n.getRgba(e)) ? this.setValues("rgb", t) : (t = n.getHsla(e)) ? this.setValues("hsl", t) : (t = n.getHwb(e)) && this.setValues("hwb", t) : "object" == typeof e && (void 0 !== (t = e).r || void 0 !== t.red ? this.setValues("rgb", t) : void 0 !== t.l || void 0 !== t.lightness ? this.setValues("hsl", t) : void 0 !== t.v || void 0 !== t.value ? this.setValues("hsv", t) : void 0 !== t.w || void 0 !== t.whiteness ? this.setValues("hwb", t) : void 0 === t.c && void 0 === t.cyan || this.setValues("cmyk", t)))) : new M(e); var t };
M.prototype = {
isValid: function() { return this.valid },
rgb: function() { return this.setSpace("rgb", arguments) },
hsl: function() { return this.setSpace("hsl", arguments) },
hsv: function() { return this.setSpace("hsv", arguments) },
hwb: function() { return this.setSpace("hwb", arguments) },
cmyk: function() { return this.setSpace("cmyk", arguments) },
rgbArray: function() { return this.values.rgb },
hslArray: function() { return this.values.hsl },
hsvArray: function() { return this.values.hsv },
hwbArray: function() { var e = this.values; return 1 !== e.alpha ? e.hwb.concat([e.alpha]) : e.hwb },
cmykArray: function() { return this.values.cmyk },
rgbaArray: function() { var e = this.values; return e.rgb.concat([e.alpha]) },
hslaArray: function() { var e = this.values; return e.hsl.concat([e.alpha]) },
alpha: function(e) { return void 0 === e ? this.values.alpha : (this.setValues("alpha", e), this) },
red: function(e) { return this.setChannel("rgb", 0, e) },
green: function(e) { return this.setChannel("rgb", 1, e) },
blue: function(e) { return this.setChannel("rgb", 2, e) },
hue: function(e) { return e = e && ((e %= 360) < 0 ? 360 + e : e), this.setChannel("hsl", 0, e) },
saturation: function(e) { return this.setChannel("hsl", 1, e) },
lightness: function(e) { return this.setChannel("hsl", 2, e) },
saturationv: function(e) { return this.setChannel("hsv", 1, e) },
whiteness: function(e) { return this.setChannel("hwb", 1, e) },
blackness: function(e) { return this.setChannel("hwb", 2, e) },
value: function(e) { return this.setChannel("hsv", 2, e) },
cyan: function(e) { return this.setChannel("cmyk", 0, e) },
magenta: function(e) { return this.setChannel("cmyk", 1, e) },
yellow: function(e) { return this.setChannel("cmyk", 2, e) },
black: function(e) { return this.setChannel("cmyk", 3, e) },
hexString: function() { return n.hexString(this.values.rgb) },
rgbString: function() { return n.rgbString(this.values.rgb, this.values.alpha) },
rgbaString: function() { return n.rgbaString(this.values.rgb, this.values.alpha) },
percentString: function() { return n.percentString(this.values.rgb, this.values.alpha) },
hslString: function() { return n.hslString(this.values.hsl, this.values.alpha) },
hslaString: function() { return n.hslaString(this.values.hsl, this.values.alpha) },
hwbString: function() { return n.hwbString(this.values.hwb, this.values.alpha) },
keyword: function() { return n.keyword(this.values.rgb, this.values.alpha) },
rgbNumber: function() { var e = this.values.rgb; return e[0] << 16 | e[1] << 8 | e[2] },
luminosity: function() {
for (var e = this.values.rgb, t = [], n = 0; n < e.length; n++) {
var i = e[n] / 255;
t[n] = i <= .03928 ? i / 12.92 : Math.pow((.055 + i) / 1.055, 2.4)
}
return .2126 * t[0] + .7152 * t[1] + .0722 * t[2]
},
contrast: function(e) {
var t = this.luminosity(),
n = e.luminosity();
return n < t ? (t + .05) / (n + .05) : (n + .05) / (t + .05)
},
level: function(e) { var t = this.contrast(e); return 7.1 <= t ? "AAA" : 4.5 <= t ? "AA" : "" },
dark: function() { var e = this.values.rgb; return (299 * e[0] + 587 * e[1] + 114 * e[2]) / 1e3 < 128 },
light: function() { return !this.dark() },
negate: function() { for (var e = [], t = 0; t < 3; t++) e[t] = 255 - this.values.rgb[t]; return this.setValues("rgb", e), this },
lighten: function(e) { var t = this.values.hsl; return t[2] += t[2] * e, this.setValues("hsl", t), this },
darken: function(e) { var t = this.values.hsl; return t[2] -= t[2] * e, this.setValues("hsl", t), this },
saturate: function(e) { var t = this.values.hsl; return t[1] += t[1] * e, this.setValues("hsl", t), this },
desaturate: function(e) { var t = this.values.hsl; return t[1] -= t[1] * e, this.setValues("hsl", t), this },
whiten: function(e) { var t = this.values.hwb; return t[1] += t[1] * e, this.setValues("hwb", t), this },
blacken: function(e) { var t = this.values.hwb; return t[2] += t[2] * e, this.setValues("hwb", t), this },
greyscale: function() {
var e = this.values.rgb,
t = .3 * e[0] + .59 * e[1] + .11 * e[2];
return this.setValues("rgb", [t, t, t]), this
},
clearer: function(e) { var t = this.values.alpha; return this.setValues("alpha", t - t * e), this },
opaquer: function(e) { var t = this.values.alpha; return this.setValues("alpha", t + t * e), this },
rotate: function(e) {
var t = this.values.hsl,
n = (t[0] + e) % 360;
return t[0] = n < 0 ? 360 + n : n, this.setValues("hsl", t), this
},
mix: function(e, t) {
var n = this,
i = e,
r = void 0 === t ? .5 : t,
a = 2 * r - 1,
o = n.alpha() - i.alpha(),
s = (1 + (a * o == -1 ? a : (a + o) / (1 + a * o))) / 2,
l = 1 - s;
return this.rgb(s * n.red() + l * i.red(), s * n.green() + l * i.green(), s * n.blue() + l * i.blue()).alpha(n.alpha() * r + i.alpha() * (1 - r))
},
toJSON: function() { return this.rgb() },
clone: function() {
var e, t, n = new M,
i = this.values,
r = n.values;
for (var a in i) i.hasOwnProperty(a) && (e = i[a], "[object Array]" === (t = {}.toString.call(e)) ? r[a] = e.slice(0) : "[object Number]" === t ? r[a] = e : console.error("unexpected color value:", e));
return n
}
}, M.prototype.spaces = { rgb: ["red", "green", "blue"], hsl: ["hue", "saturation", "lightness"], hsv: ["hue", "saturation", "value"], hwb: ["hue", "whiteness", "blackness"], cmyk: ["cyan", "magenta", "yellow", "black"] }, M.prototype.maxes = { rgb: [255, 255, 255], hsl: [360, 100, 100], hsv: [360, 100, 100], hwb: [360, 100, 100], cmyk: [100, 100, 100, 100] }, M.prototype.getValues = function(e) { for (var t = this.values, n = {}, i = 0; i < e.length; i++) n[e.charAt(i)] = t[e][i]; return 1 !== t.alpha && (n.a = t.alpha), n }, M.prototype.setValues = function(e, t) {
var n, i, r = this.values,
a = this.spaces,
o = this.maxes,
s = 1;
if (this.valid = !0, "alpha" === e) s = t;
else if (t.length) r[e] = t.slice(0, e.length), s = t[e.length];
else if (void 0 !== t[e.charAt(0)]) {
for (n = 0; n < e.length; n++) r[e][n] = t[e.charAt(n)];
s = t.a
} else if (void 0 !== t[a[e][0]]) {
var l = a[e];
for (n = 0; n < e.length; n++) r[e][n] = t[l[n]];
s = t.alpha
}
if (r.alpha = Math.max(0, Math.min(1, void 0 === s ? r.alpha : s)), "alpha" === e) return !1;
for (n = 0; n < e.length; n++) i = Math.max(0, Math.min(o[e][n], r[e][n])), r[e][n] = Math.round(i);
for (var c in a) c !== e && (r[c] = u[e][c](r[e]));
return !0
}, M.prototype.setSpace = function(e, t) { var n = t[0]; return void 0 === n ? this.getValues(e) : ("number" == typeof n && (n = Array.prototype.slice.call(t)), this.setValues(e, n), this) }, M.prototype.setChannel = function(e, t, n) { var i = this.values[e]; return void 0 === n ? i[t] : (n === i[t] || (i[t] = n, this.setValues(e, i)), this) }, "undefined" != typeof window && (window.Color = M);
var w, _ = M,
S = {
noop: function() {},
uid: (w = 0, function() { return w++ }),
isNullOrUndef: function(e) { return null == e },
isArray: function(e) { if (Array.isArray && Array.isArray(e)) return !0; var t = Object.prototype.toString.call(e); return "[object" === t.substr(0, 7) && "Array]" === t.substr(-6) },
isObject: function(e) { return null !== e && "[object Object]" === Object.prototype.toString.call(e) },
isFinite: function(e) { return ("number" == typeof e || e instanceof Number) && isFinite(e) },
valueOrDefault: function(e, t) { return void 0 === e ? t : e },
valueAtIndexOrDefault: function(e, t, n) { return S.valueOrDefault(S.isArray(e) ? e[t] : e, n) },
callback: function(e, t, n) { if (e && "function" == typeof e.call) return e.apply(n, t) },
each: function(e, t, n, i) {
var r, a, o;
if (S.isArray(e))
if (a = e.length, i)
for (r = a - 1; 0 <= r; r--) t.call(n, e[r], r);
else
for (r = 0; r < a; r++) t.call(n, e[r], r);
else if (S.isObject(e))
for (a = (o = Object.keys(e)).length, r = 0; r < a; r++) t.call(n, e[o[r]], o[r])
},
arrayEquals: function(e, t) {
var n, i, r, a;
if (!e || !t || e.length !== t.length) return !1;
for (n = 0, i = e.length; n < i; ++n)
if (r = e[n], a = t[n], r instanceof Array && a instanceof Array) { if (!S.arrayEquals(r, a)) return !1 } else if (r !== a) return !1;
return !0
},
clone: function(e) { if (S.isArray(e)) return e.map(S.clone); if (S.isObject(e)) { for (var t = {}, n = Object.keys(e), i = n.length, r = 0; r < i; ++r) t[n[r]] = S.clone(e[n[r]]); return t } return e },
_merger: function(e, t, n, i) {
var r = t[e],
a = n[e];
S.isObject(r) && S.isObject(a) ? S.merge(r, a, i) : t[e] = S.clone(a)
},
_mergerIf: function(e, t, n) {
var i = t[e],
r = n[e];
S.isObject(i) && S.isObject(r) ? S.mergeIf(i, r) : t.hasOwnProperty(e) || (t[e] = S.clone(r))
},
merge: function(e, t, n) {
var i, r, a, o, s, l = S.isArray(t) ? t : [t],
c = l.length;
if (!S.isObject(e)) return e;
for (i = (n = n || {}).merger || S._merger, r = 0; r < c; ++r)
if (t = l[r], S.isObject(t))
for (s = 0, o = (a = Object.keys(t)).length; s < o; ++s) i(a[s], e, t, n);
return e
},
mergeIf: function(e, t) { return S.merge(e, t, { merger: S._mergerIf }) },
extend: Object.assign || function(e) { return S.merge(e, [].slice.call(arguments, 1), { merger: function(e, t, n) { t[e] = n[e] } }) },
inherits: function(e) {
function t() { this.constructor = i }
var n = this,
i = e && e.hasOwnProperty("constructor") ? e.constructor : function() { return n.apply(this, arguments) };
return t.prototype = n.prototype, i.prototype = new t, i.extend = S.inherits, e && S.extend(i.prototype, e), i.__super__ = n.prototype, i
},
_deprecated: function(e, t, n, i) { void 0 !== t && console.warn(e + ': "' + n + '" is deprecated. Please use "' + i + '" instead') }
},
C = S;
S.callCallback = S.callback, S.indexOf = function(e, t, n) { return Array.prototype.indexOf.call(e, t, n) }, S.getValueOrDefault = S.valueOrDefault, S.getValueAtIndexOrDefault = S.valueAtIndexOrDefault;
var k = {
linear: function(e) { return e },
easeInQuad: function(e) { return e * e },
easeOutQuad: function(e) { return -e * (e - 2) },
easeInOutQuad: function(e) { return (e /= .5) < 1 ? .5 * e * e : -.5 * (--e * (e - 2) - 1) },
easeInCubic: function(e) { return e * e * e },
easeOutCubic: function(e) { return (e -= 1) * e * e + 1 },
easeInOutCubic: function(e) { return (e /= .5) < 1 ? .5 * e * e * e : .5 * ((e -= 2) * e * e + 2) },
easeInQuart: function(e) { return e * e * e * e },
easeOutQuart: function(e) { return -((e -= 1) * e * e * e - 1) },
easeInOutQuart: function(e) { return (e /= .5) < 1 ? .5 * e * e * e * e : -.5 * ((e -= 2) * e * e * e - 2) },
easeInQuint: function(e) { return e * e * e * e * e },
easeOutQuint: function(e) { return (e -= 1) * e * e * e * e + 1 },
easeInOutQuint: function(e) { return (e /= .5) < 1 ? .5 * e * e * e * e * e : .5 * ((e -= 2) * e * e * e * e + 2) },
easeInSine: function(e) { return 1 - Math.cos(e * (Math.PI / 2)) },
easeOutSine: function(e) { return Math.sin(e * (Math.PI / 2)) },
easeInOutSine: function(e) { return -.5 * (Math.cos(Math.PI * e) - 1) },
easeInExpo: function(e) { return 0 === e ? 0 : Math.pow(2, 10 * (e - 1)) },
easeOutExpo: function(e) { return 1 === e ? 1 : 1 - Math.pow(2, -10 * e) },
easeInOutExpo: function(e) { return 0 === e ? 0 : 1 === e ? 1 : (e /= .5) < 1 ? .5 * Math.pow(2, 10 * (e - 1)) : .5 * (2 - Math.pow(2, -10 * --e)) },
easeInCirc: function(e) { return 1 <= e ? e : -(Math.sqrt(1 - e * e) - 1) },
easeOutCirc: function(e) { return Math.sqrt(1 - (e -= 1) * e) },
easeInOutCirc: function(e) { return (e /= .5) < 1 ? -.5 * (Math.sqrt(1 - e * e) - 1) : .5 * (Math.sqrt(1 - (e -= 2) * e) + 1) },
easeInElastic: function(e) {
var t = 1.70158,
n = 0,
i = 1;
return 0 === e ? 0 : 1 === e ? 1 : (n = n || .3, t = i < 1 ? (i = 1, n / 4) : n / (2 * Math.PI) * Math.asin(1 / i), -i * Math.pow(2, 10 * (e -= 1)) * Math.sin((e - t) * (2 * Math.PI) / n))
},
easeOutElastic: function(e) {
var t = 1.70158,
n = 0,
i = 1;
return 0 === e ? 0 : 1 === e ? 1 : (n = n || .3, t = i < 1 ? (i = 1, n / 4) : n / (2 * Math.PI) * Math.asin(1 / i), i * Math.pow(2, -10 * e) * Math.sin((e - t) * (2 * Math.PI) / n) + 1)
},
easeInOutElastic: function(e) {
var t = 1.70158,
n = 0,
i = 1;
return 0 === e ? 0 : 2 == (e /= .5) ? 1 : (n = n || .45, t = i < 1 ? (i = 1, n / 4) : n / (2 * Math.PI) * Math.asin(1 / i), e < 1 ? i * Math.pow(2, 10 * (e -= 1)) * Math.sin((e - t) * (2 * Math.PI) / n) * -.5 : i * Math.pow(2, -10 * (e -= 1)) * Math.sin((e - t) * (2 * Math.PI) / n) * .5 + 1)
},
easeInBack: function(e) { return e * e * (2.70158 * e - 1.70158) },
easeOutBack: function(e) { return (e -= 1) * e * (2.70158 * e + 1.70158) + 1 },
easeInOutBack: function(e) { var t = 1.70158; return (e /= .5) < 1 ? e * e * ((1 + (t *= 1.525)) * e - t) * .5 : .5 * ((e -= 2) * e * ((1 + (t *= 1.525)) * e + t) + 2) },
easeInBounce: function(e) { return 1 - k.easeOutBounce(1 - e) },
easeOutBounce: function(e) { return e < 1 / 2.75 ? 7.5625 * e * e : e < 2 / 2.75 ? 7.5625 * (e -= 1.5 / 2.75) * e + .75 : e < 2.5 / 2.75 ? 7.5625 * (e -= 2.25 / 2.75) * e + .9375 : 7.5625 * (e -= 2.625 / 2.75) * e + .984375 },
easeInOutBounce: function(e) { return e < .5 ? .5 * k.easeInBounce(2 * e) : .5 * k.easeOutBounce(2 * e - 1) + .5 }
},
T = { effects: k };
C.easingEffects = k;
var L = Math.PI,
A = L / 180,
E = 2 * L,
O = L / 2,
P = L / 4,
D = 2 * L / 3,
V = {
clear: function(e) { e.ctx.clearRect(0, 0, e.width, e.height) },
roundedRect: function(e, t, n, i, r, a) {
if (a) {
var o = Math.min(a, r / 2, i / 2),
s = t + o,
l = n + o,
c = t + i - o,
d = n + r - o;
e.moveTo(t, l), s < c && l < d ? (e.arc(s, l, o, -L, -O), e.arc(c, l, o, -O, 0), e.arc(c, d, o, 0, O), e.arc(s, d, o, O, L)) : s < c ? (e.moveTo(s, n), e.arc(c, l, o, -O, O), e.arc(s, l, o, O, L + O)) : l < d ? (e.arc(s, l, o, -L, 0), e.arc(s, d, o, 0, L)) : e.arc(s, l, o, -L, L), e.closePath(), e.moveTo(t, n)
} else e.rect(t, n, i, r)
},
drawPoint: function(e, t, n, i, r, a) {
var o, s, l, c, d, u = (a || 0) * A;
if (t && "object" == typeof t && ("[object HTMLImageElement]" === (o = t.toString()) || "[object HTMLCanvasElement]" === o)) return e.save(), e.translate(i, r), e.rotate(u), e.drawImage(t, -t.width / 2, -t.height / 2, t.width, t.height), void e.restore();
if (!(isNaN(n) || n <= 0)) {
switch (e.beginPath(), t) {
default: e.arc(i, r, n, 0, E),
e.closePath();
break;
case "triangle":
e.moveTo(i + Math.sin(u) * n, r - Math.cos(u) * n),
u += D,
e.lineTo(i + Math.sin(u) * n, r - Math.cos(u) * n),
u += D,
e.lineTo(i + Math.sin(u) * n, r - Math.cos(u) * n),
e.closePath();
break;
case "rectRounded":
c = n - (d = .516 * n),
s = Math.cos(u + P) * c,
l = Math.sin(u + P) * c,
e.arc(i - s, r - l, d, u - L, u - O),
e.arc(i + l, r - s, d, u - O, u),
e.arc(i + s, r + l, d, u, u + O),
e.arc(i - l, r + s, d, u + O, u + L),
e.closePath();
break;
case "rect":
if (!a) { c = Math.SQRT1_2 * n, e.rect(i - c, r - c, 2 * c, 2 * c); break }u += P;
case "rectRot":
s = Math.cos(u) * n,
l = Math.sin(u) * n,
e.moveTo(i - s, r - l),
e.lineTo(i + l, r - s),
e.lineTo(i + s, r + l),
e.lineTo(i - l, r + s),
e.closePath();
break;
case "crossRot":
u += P;
case "cross":
s = Math.cos(u) * n,
l = Math.sin(u) * n,
e.moveTo(i - s, r - l),
e.lineTo(i + s, r + l),
e.moveTo(i + l, r - s),
e.lineTo(i - l, r + s);
break;
case "star":
s = Math.cos(u) * n,
l = Math.sin(u) * n,
e.moveTo(i - s, r - l),
e.lineTo(i + s, r + l),
e.moveTo(i + l, r - s),
e.lineTo(i - l, r + s),
u += P,
s = Math.cos(u) * n,
l = Math.sin(u) * n,
e.moveTo(i - s, r - l),
e.lineTo(i + s, r + l),
e.moveTo(i + l, r - s),
e.lineTo(i - l, r + s);
break;
case "line":
s = Math.cos(u) * n,
l = Math.sin(u) * n,
e.moveTo(i - s, r - l),
e.lineTo(i + s, r + l);
break;
case "dash":
e.moveTo(i, r),
e.lineTo(i + Math.cos(u) * n, r + Math.sin(u) * n)
}
e.fill(), e.stroke()
}
},
_isPointInArea: function(e, t) { return e.x > t.left - 1e-6 && e.x < t.right + 1e-6 && e.y > t.top - 1e-6 && e.y < t.bottom + 1e-6 },
clipArea: function(e, t) { e.save(), e.beginPath(), e.rect(t.left, t.top, t.right - t.left, t.bottom - t.top), e.clip() },
unclipArea: function(e) { e.restore() },
lineTo: function(e, t, n, i) {
var r = n.steppedLine;
if (r) {
if ("middle" === r) {
var a = (t.x + n.x) / 2;
e.lineTo(a, i ? n.y : t.y), e.lineTo(a, i ? t.y : n.y)
} else "after" === r && !i || "after" !== r && i ? e.lineTo(t.x, n.y) : e.lineTo(n.x, t.y);
e.lineTo(n.x, n.y)
} else n.tension ? e.bezierCurveTo(i ? t.controlPointPreviousX : t.controlPointNextX, i ? t.controlPointPreviousY : t.controlPointNextY, i ? n.controlPointNextX : n.controlPointPreviousX, i ? n.controlPointNextY : n.controlPointPreviousY, n.x, n.y) : e.lineTo(n.x, n.y)
}
},
R = V;
C.clear = V.clear, C.drawRoundedRectangle = function(e) { e.beginPath(), V.roundedRect.apply(V, arguments) };
var z = { _set: function(e, t) { return C.merge(this[e] || (this[e] = {}), t) } };
z._set("global", { defaultColor: "rgba(0,0,0,0.1)", defaultFontColor: "#666", defaultFontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif", defaultFontSize: 12, defaultFontStyle: "normal", defaultLineHeight: 1.2, showLines: !0 });
var B = z,
H = C.valueOrDefault;
var N = {
toLineHeight: function(e, t) {
var n = ("" + e).match(/^(normal|(\d+(?:\.\d+)?)(px|em|%)?)$/);
if (!n || "normal" === n[1]) return 1.2 * t;
switch (e = +n[2], n[3]) {
case "px":
return e;
case "%":
e /= 100
}
return t * e
},
toPadding: function(e) { var t, n, i, r; return C.isObject(e) ? (t = +e.top || 0, n = +e.right || 0, i = +e.bottom || 0, r = +e.left || 0) : t = n = i = r = +e || 0, { top: t, right: n, bottom: i, left: r, height: t + i, width: r + n } },
_parseFont: function(e) {
var t = B.global,
n = H(e.fontSize, t.defaultFontSize),
i = { family: H(e.fontFamily, t.defaultFontFamily), lineHeight: C.options.toLineHeight(H(e.lineHeight, t.defaultLineHeight), n), size: n, style: H(e.fontStyle, t.defaultFontStyle), weight: null, string: "" };
return i.string = function(e) { return !e || C.isNullOrUndef(e.size) || C.isNullOrUndef(e.family) ? null : (e.style ? e.style + " " : "") + (e.weight ? e.weight + " " : "") + e.size + "px " + e.family }(i), i
},
resolve: function(e, t, n, i) {
var r, a, o, s = !0;
for (r = 0, a = e.length; r < a; ++r)
if (void 0 !== (o = e[r]) && (void 0 !== t && "function" == typeof o && (o = o(t), s = !1), void 0 !== n && C.isArray(o) && (o = o[n], s = !1), void 0 !== o)) return i && !s && (i.cacheable = !1), o
}
},
I = {
_factorize: function(e) {
var t, n = [],
i = Math.sqrt(e);
for (t = 1; t < i; t++) e % t == 0 && (n.push(t), n.push(e / t));
return i === (0 | i) && n.push(i), n.sort(function(e, t) { return e - t }).pop(), n
},
log10: Math.log10 || function(e) {
var t = Math.log(e) * Math.LOG10E,
n = Math.round(t);
return e === Math.pow(10, n) ? n : t
}
},
F = I;
C.log10 = I.log10;
var W = C,
j = T,
Y = R,
G = N,
U = F,
q = {
getRtlAdapter: function(e, t, n) { return e ? function(t, n) { return { x: function(e) { return t + t + n - e }, setWidth: function(e) { n = e }, textAlign: function(e) { return "center" === e ? e : "right" === e ? "left" : "right" }, xPlus: function(e, t) { return e - t }, leftForLtr: function(e, t) { return e - t } } }(t, n) : { x: function(e) { return e }, setWidth: function(e) {}, textAlign: function(e) { return e }, xPlus: function(e, t) { return e + t }, leftForLtr: function(e, t) { return e } } },
overrideTextDirection: function(e, t) { var n, i; "ltr" !== t && "rtl" !== t || (i = [(n = e.canvas.style).getPropertyValue("direction"), n.getPropertyPriority("direction")], n.setProperty("direction", t, "important"), e.prevTextDirection = i) },
restoreTextDirection: function(e) {
var t = e.prevTextDirection;
void 0 !== t && (delete e.prevTextDirection, e.canvas.style.setProperty("direction", t[0], t[1]))
}
};
W.easing = j, W.canvas = Y, W.options = G, W.math = U, W.rtl = q;
function X(e) { W.extend(this, e), this.initialize.apply(this, arguments) }
W.extend(X.prototype, {
_type: void 0,
initialize: function() { this.hidden = !1 },
pivot: function() { var e = this; return e._view || (e._view = W.extend({}, e._model)), e._start = {}, e },
transition: function(e) {
var t = this,
n = t._model,
i = t._start,
r = t._view;
return n && 1 !== e ? (r = r || (t._view = {}), function(e, t, n, i) {
var r, a, o, s, l, c, d, u, h, f = Object.keys(n);
for (r = 0, a = f.length; r < a; ++r)
if (c = n[o = f[r]], t.hasOwnProperty(o) || (t[o] = c), (s = t[o]) !== c && "_" !== o[0]) {
if (e.hasOwnProperty(o) || (e[o] = s), (d = typeof c) == typeof(l = e[o]))
if ("string" == d) { if ((u = _(l)).valid && (h = _(c)).valid) { t[o] = h.mix(u, i).rgbString(); continue } } else if (W.isFinite(l) && W.isFinite(c)) { t[o] = l + (c - l) * i; continue }
t[o] = c
}
}(i = i || (t._start = {}), r, n, e)) : (t._view = W.extend({}, n), t._start = null), t
},
tooltipPosition: function() { return { x: this._model.x, y: this._model.y } },
hasValue: function() { return W.isNumber(this._model.x) && W.isNumber(this._model.y) }
}), X.extend = W.inherits;
var $ = X,
Z = $.extend({ chart: null, currentStep: 0, numSteps: 60, easing: "", render: null, onAnimationProgress: null, onAnimationComplete: null }),
K = Z;
Object.defineProperty(Z.prototype, "animationObject", { get: function() { return this } }), Object.defineProperty(Z.prototype, "chartInstance", { get: function() { return this.chart }, set: function(e) { this.chart = e } }), B._set("global", { animation: { duration: 1e3, easing: "easeOutQuart", onProgress: W.noop, onComplete: W.noop } });
var J = {
animations: [],
request: null,
addAnimation: function(e, t, n, i) {
var r, a, o = this.animations;
for (t.chart = e, t.startTime = Date.now(), t.duration = n, i || (e.animating = !0), r = 0, a = o.length; r < a; ++r)
if (o[r].chart === e) return void(o[r] = t);
o.push(t), 1 === o.length && this.requestAnimationFrame()
},
cancelAnimation: function(t) { var e = W.findIndex(this.animations, function(e) { return e.chart === t }); - 1 !== e && (this.animations.splice(e, 1), t.animating = !1) },
requestAnimationFrame: function() {
var e = this;
null === e.request && (e.request = W.requestAnimFrame.call(window, function() { e.request = null, e.startDigest() }))
},
startDigest: function() { this.advance(), 0 < this.animations.length && this.requestAnimationFrame() },
advance: function() { for (var e, t, n, i, r = this.animations, a = 0; a < r.length;) t = (e = r[a]).chart, n = e.numSteps, i = Math.floor((Date.now() - e.startTime) / e.duration * n) + 1, e.currentStep = Math.min(i, n), W.callback(e.render, [t, e], t), W.callback(e.onAnimationProgress, [e], t), e.currentStep >= n ? (W.callback(e.onAnimationComplete, [e], t), t.animating = !1, r.splice(a, 1)) : ++a }
},
Q = W.options.resolve,
ee = ["push", "pop", "shift", "splice", "unshift"];
function te(t, e) {
var n = t._chartjs;
if (n) {
var i = n.listeners,
r = i.indexOf(e); - 1 !== r && i.splice(r, 1), 0 < i.length || (ee.forEach(function(e) { delete t[e] }), delete t._chartjs)
}
}
function ne(e, t) { this.initialize(e, t) }
W.extend(ne.prototype, {
datasetElementType: null,
dataElementType: null,
_datasetElementOptions: ["backgroundColor", "borderCapStyle", "borderColor", "borderDash", "borderDashOffset", "borderJoinStyle", "borderWidth"],
_dataElementOptions: ["backgroundColor", "borderColor", "borderWidth", "pointStyle"],
initialize: function(e, t) {
var n = this;
n.chart = e, n.index = t, n.linkScales(), n.addElements(), n._type = n.getMeta().type
},
updateIndex: function(e) { this.index = e },
linkScales: function() {
var e = this.getMeta(),
t = this.chart,
n = t.scales,
i = this.getDataset(),
r = t.options.scales;
null !== e.xAxisID && e.xAxisID in n && !i.xAxisID || (e.xAxisID = i.xAxisID || r.xAxes[0].id), null !== e.yAxisID && e.yAxisID in n && !i.yAxisID || (e.yAxisID = i.yAxisID || r.yAxes[0].id)
},
getDataset: function() { return this.chart.data.datasets[this.index] },
getMeta: function() { return this.chart.getDatasetMeta(this.index) },
getScaleForId: function(e) { return this.chart.scales[e] },
_getValueScaleId: function() { return this.getMeta().yAxisID },
_getIndexScaleId: function() { return this.getMeta().xAxisID },
_getValueScale: function() { return this.getScaleForId(this._getValueScaleId()) },
_getIndexScale: function() { return this.getScaleForId(this._getIndexScaleId()) },
reset: function() { this._update(!0) },
destroy: function() { this._data && te(this._data, this) },
createMetaDataset: function() { var e = this.datasetElementType; return e && new e({ _chart: this.chart, _datasetIndex: this.index }) },
createMetaData: function(e) { var t = this.dataElementType; return t && new t({ _chart: this.chart, _datasetIndex: this.index, _index: e }) },
addElements: function() {
var e, t, n = this.getMeta(),
i = this.getDataset().data || [],
r = n.data;
for (e = 0, t = i.length; e < t; ++e) r[e] = r[e] || this.createMetaData(e);
n.dataset = n.dataset || this.createMetaDataset()
},
addElementAndReset: function(e) {
var t = this.createMetaData(e);
this.getMeta().data.splice(e, 0, t), this.updateElement(t, e, !0)
},
buildOrUpdateElements: function() {
var e = this,
t = e.getDataset(),
n = t.data || (t.data = []);
e._data !== n && (e._data && te(e._data, e), n && Object.isExtensible(n) && function(r, e) {
r._chartjs ? r._chartjs.listeners.push(e) : (Object.defineProperty(r, "_chartjs", { configurable: !0, enumerable: !1, value: { listeners: [e] } }), ee.forEach(function(e) {
var n = "onData" + e.charAt(0).toUpperCase() + e.slice(1),
i = r[e];
Object.defineProperty(r, e, {
configurable: !0,
enumerable: !1,
value: function() {
var t = Array.prototype.slice.call(arguments),
e = i.apply(this, t);
return W.each(r._chartjs.listeners, function(e) { "function" == typeof e[n] && e[n].apply(e, t) }), e
}
})
}))
}(n, e), e._data = n), e.resyncElements()
},
_configure: function() { this._config = W.merge({}, [this.chart.options.datasets[this._type], this.getDataset()], { merger: function(e, t, n) { "_meta" !== e && "data" !== e && W._merger(e, t, n) } }) },
_update: function(e) { this._configure(), this._cachedDataOpts = null, this.update(e) },
update: W.noop,
transition: function(e) {
for (var t = this.getMeta(), n = t.data || [], i = n.length, r = 0; r < i; ++r) n[r].transition(e);
t.dataset && t.dataset.transition(e)
},
draw: function() {
var e = this.getMeta(),
t = e.data || [],
n = t.length,
i = 0;
for (e.dataset && e.dataset.draw(); i < n; ++i) t[i].draw()
},
getStyle: function(e) {
var t, n = this.getMeta(),
i = n.dataset;
return this._configure(), !1 !== (t = i && void 0 === e ? this._resolveDatasetElementOptions(i || {}) : (e = e || 0, this._resolveDataElementOptions(n.data[e] || {}, e))).fill && null !== t.fill || (t.backgroundColor = t.borderColor), t
},
_resolveDatasetElementOptions: function(e, t) {
var n, i, r, a, o = this,
s = o.chart,
l = o._config,
c = e.custom || {},
d = s.options.elements[o.datasetElementType.prototype._type] || {},
u = o._datasetElementOptions,
h = {},
f = { chart: s, dataset: o.getDataset(), datasetIndex: o.index, hover: t };
for (n = 0, i = u.length; n < i; ++n) r = u[n], a = t ? "hover" + r.charAt(0).toUpperCase() + r.slice(1) : r, h[r] = Q([c[a], l[a], d[a]], f);
return h
},
_resolveDataElementOptions: function(e, t) {
var n = this,
i = e && e.custom,
r = n._cachedDataOpts;
if (r && !i) return r;
var a, o, s, l, c = n.chart,
d = n._config,
u = c.options.elements[n.dataElementType.prototype._type] || {},
h = n._dataElementOptions,
f = {},
g = { chart: c, dataIndex: t, dataset: n.getDataset(), datasetIndex: n.index },
p = { cacheable: !i };
if (i = i || {}, W.isArray(h))
for (o = 0, s = h.length; o < s; ++o) f[l = h[o]] = Q([i[l], d[l], u[l]], g, t, p);
else
for (o = 0, s = (a = Object.keys(h)).length; o < s; ++o) f[l = a[o]] = Q([i[l], d[h[l]], d[l], u[l]], g, t, p);
return p.cacheable && (n._cachedDataOpts = Object.freeze(f)), f
},
removeHoverStyle: function(e) { W.merge(e._model, e.$previousStyle || {}), delete e.$previousStyle },
setHoverStyle: function(e) {
var t = this.chart.data.datasets[e._datasetIndex],
n = e._index,
i = e.custom || {},
r = e._model,
a = W.getHoverColor;
e.$previousStyle = { backgroundColor: r.backgroundColor, borderColor: r.borderColor, borderWidth: r.borderWidth }, r.backgroundColor = Q([i.hoverBackgroundColor, t.hoverBackgroundColor, a(r.backgroundColor)], void 0, n), r.borderColor = Q([i.hoverBorderColor, t.hoverBorderColor, a(r.borderColor)], void 0, n), r.borderWidth = Q([i.hoverBorderWidth, t.hoverBorderWidth, r.borderWidth], void 0, n)
},
_removeDatasetHoverStyle: function() {
var e = this.getMeta().dataset;
e && this.removeHoverStyle(e)
},
_setDatasetHoverStyle: function() {
var e, t, n, i, r, a, o = this.getMeta().dataset,
s = {};
if (o) {
for (a = o._model, r = this._resolveDatasetElementOptions(o, !0), e = 0, t = (i = Object.keys(r)).length; e < t; ++e) s[n = i[e]] = a[n], a[n] = r[n];
o.$previousStyle = s
}
},
resyncElements: function() {
var e = this.getMeta(),
t = this.getDataset().data,
n = e.data.length,
i = t.length;
i < n ? e.data.splice(i, n - i) : n < i && this.insertElements(n, i - n)
},
insertElements: function(e, t) { for (var n = 0; n < t; ++n) this.addElementAndReset(e + n) },
onDataPush: function() {
var e = arguments.length;
this.insertElements(this.getDataset().data.length - e, e)
},
onDataPop: function() { this.getMeta().data.pop() },
onDataShift: function() { this.getMeta().data.shift() },
onDataSplice: function(e, t) { this.getMeta().data.splice(e, t), this.insertElements(e, arguments.length - 2) },
onDataUnshift: function() { this.insertElements(0, arguments.length) }
}), ne.extend = W.inherits;
var ie = ne,
re = 2 * Math.PI;
function ae(e, t) {
var n = t.startAngle,
i = t.endAngle,
r = t.pixelMargin,
a = r / t.outerRadius,
o = t.x,
s = t.y;
e.beginPath(), e.arc(o, s, t.outerRadius, n - a, i + a), t.innerRadius > r ? (a = r / t.innerRadius, e.arc(o, s, t.innerRadius - r, i + a, n - a, !0)) : e.arc(o, s, r, i + Math.PI / 2, n - Math.PI / 2), e.closePath(), e.clip()
}
function oe(e, t, n) {
var i = "inner" === t.borderAlign;
i ? (e.lineWidth = 2 * t.borderWidth, e.lineJoin = "round") : (e.lineWidth = t.borderWidth, e.lineJoin = "bevel"), n.fullCircles && function(e, t, n, i) { var r, a = n.endAngle; for (i && (n.endAngle = n.startAngle + re, ae(e, n), n.endAngle = a, n.endAngle === n.startAngle && n.fullCircles && (n.endAngle += re, n.fullCircles--)), e.beginPath(), e.arc(n.x, n.y, n.innerRadius, n.startAngle + re, n.startAngle, !0), r = 0; r < n.fullCircles; ++r) e.stroke(); for (e.beginPath(), e.arc(n.x, n.y, t.outerRadius, n.startAngle, n.startAngle + re), r = 0; r < n.fullCircles; ++r) e.stroke() }(e, t, n, i), i && ae(e, n), e.beginPath(), e.arc(n.x, n.y, t.outerRadius, n.startAngle, n.endAngle), e.arc(n.x, n.y, n.innerRadius, n.endAngle, n.startAngle, !0), e.closePath(), e.stroke()
}
B._set("global", { elements: { arc: { backgroundColor: B.global.defaultColor, borderColor: "#fff", borderWidth: 2, borderAlign: "center" } } });
var se = $.extend({
_type: "arc",
inLabelRange: function(e) { var t = this._view; return !!t && Math.pow(e - t.x, 2) < Math.pow(t.radius + t.hoverRadius, 2) },
inRange: function(e, t) {
var n = this._view;
if (n) {
for (var i = W.getAngleFromPoint(n, { x: e, y: t }), r = i.angle, a = i.distance, o = n.startAngle, s = n.endAngle; s < o;) s += re;
for (; s < r;) r -= re;
for (; r < o;) r += re;
var l = o <= r && r <= s,
c = a >= n.innerRadius && a <= n.outerRadius;
return l && c
}
return !1
},
getCenterPoint: function() {
var e = this._view,
t = (e.startAngle + e.endAngle) / 2,
n = (e.innerRadius + e.outerRadius) / 2;
return { x: e.x + Math.cos(t) * n, y: e.y + Math.sin(t) * n }
},
getArea: function() { var e = this._view; return Math.PI * ((e.endAngle - e.startAngle) / (2 * Math.PI)) * (Math.pow(e.outerRadius, 2) - Math.pow(e.innerRadius, 2)) },
tooltipPosition: function() {
var e = this._view,
t = e.startAngle + (e.endAngle - e.startAngle) / 2,
n = (e.outerRadius - e.innerRadius) / 2 + e.innerRadius;
return { x: e.x + Math.cos(t) * n, y: e.y + Math.sin(t) * n }
},
draw: function() {
var e, t = this._chart.ctx,
n = this._view,
i = "inner" === n.borderAlign ? .33 : 0,
r = { x: n.x, y: n.y, innerRadius: n.innerRadius, outerRadius: Math.max(n.outerRadius - i, 0), pixelMargin: i, startAngle: n.startAngle, endAngle: n.endAngle, fullCircles: Math.floor(n.circumference / re) };
if (t.save(), t.fillStyle = n.backgroundColor, t.strokeStyle = n.borderColor, r.fullCircles) {
for (r.endAngle = r.startAngle + re, t.beginPath(), t.arc(r.x, r.y, r.outerRadius, r.startAngle, r.endAngle), t.arc(r.x, r.y, r.innerRadius, r.endAngle, r.startAngle, !0), t.closePath(), e = 0; e < r.fullCircles; ++e) t.fill();
r.endAngle = r.startAngle + n.circumference % re
}
t.beginPath(), t.arc(r.x, r.y, r.outerRadius, r.startAngle, r.endAngle), t.arc(r.x, r.y, r.innerRadius, r.endAngle, r.startAngle, !0), t.closePath(), t.fill(), n.borderWidth && oe(t, n, r), t.restore()
}
}),
le = W.valueOrDefault,
ce = B.global.defaultColor;
B._set("global", { elements: { line: { tension: .4, backgroundColor: ce, borderWidth: 3, borderColor: ce, borderCapStyle: "butt", borderDash: [], borderDashOffset: 0, borderJoinStyle: "miter", capBezierPoints: !0, fill: !0 } } });
var de = $.extend({
_type: "line",
draw: function() {
var e, t, n, i = this,
r = i._view,
a = i._chart.ctx,
o = r.spanGaps,
s = i._children.slice(),
l = B.global,
c = l.elements.line,
d = -1,
u = i._loop;
if (s.length) {
if (i._loop) {
for (e = 0; e < s.length; ++e)
if (t = W.previousItem(s, e), !s[e]._view.skip && t._view.skip) { s = s.slice(e).concat(s.slice(0, e)), u = o; break }
u && s.push(s[0])
}
for (a.save(), a.lineCap = r.borderCapStyle || c.borderCapStyle, a.setLineDash && a.setLineDash(r.borderDash || c.borderDash), a.lineDashOffset = le(r.borderDashOffset, c.borderDashOffset), a.lineJoin = r.borderJoinStyle || c.borderJoinStyle, a.lineWidth = le(r.borderWidth, c.borderWidth), a.strokeStyle = r.borderColor || l.defaultColor, a.beginPath(), (n = s[0]._view).skip || (a.moveTo(n.x, n.y), d = 0), e = 1; e < s.length; ++e) n = s[e]._view, t = -1 === d ? W.previousItem(s, e) : s[d], n.skip || (d !== e - 1 && !o || -1 === d ? a.moveTo(n.x, n.y) : W.canvas.lineTo(a, t._view, n), d = e);
u && a.closePath(), a.stroke(), a.restore()
}
}
}),
ue = W.valueOrDefault,
he = B.global.defaultColor;
function fe(e) { var t = this._view; return !!t && Math.abs(e - t.x) < t.radius + t.hitRadius }
B._set("global", { elements: { point: { radius: 3, pointStyle: "circle", backgroundColor: he, borderColor: he, borderWidth: 1, hitRadius: 1, hoverRadius: 4, hoverBorderWidth: 1 } } });
var ge = $.extend({
_type: "point",
inRange: function(e, t) { var n = this._view; return !!n && Math.pow(e - n.x, 2) + Math.pow(t - n.y, 2) < Math.pow(n.hitRadius + n.radius, 2) },
inLabelRange: fe,
inXRange: fe,
inYRange: function(e) { var t = this._view; return !!t && Math.abs(e - t.y) < t.radius + t.hitRadius },
getCenterPoint: function() { var e = this._view; return { x: e.x, y: e.y } },
getArea: function() { return Math.PI * Math.pow(this._view.radius, 2) },
tooltipPosition: function() { var e = this._view; return { x: e.x, y: e.y, padding: e.radius + e.borderWidth } },
draw: function(e) {
var t = this._view,
n = this._chart.ctx,
i = t.pointStyle,
r = t.rotation,
a = t.radius,
o = t.x,
s = t.y,
l = B.global,
c = l.defaultColor;
t.skip || void 0 !== e && !W.canvas._isPointInArea(t, e) || (n.strokeStyle = t.borderColor || c, n.lineWidth = ue(t.borderWidth, l.elements.point.borderWidth), n.fillStyle = t.backgroundColor || c, W.canvas.drawPoint(n, i, a, o, s, r))
}
}),
pe = B.global.defaultColor;
function ve(e) { return e && void 0 !== e.width }
function me(e) { var t, n, i, r, a; return r = ve(e) ? (a = e.width / 2, t = e.x - a, n = e.x + a, i = Math.min(e.y, e.base), Math.max(e.y, e.base)) : (a = e.height / 2, t = Math.min(e.x, e.base), n = Math.max(e.x, e.base), i = e.y - a, e.y + a), { left: t, top: i, right: n, bottom: r } }
function ye(e, t, n) { return e === t ? n : e === n ? t : e }
function be(e, t, n) {
var i, r, a, o, s = e.borderWidth,
l = function(e) {
var t = e.borderSkipped,
n = {};
return t && (e.horizontal ? e.base > e.x && (t = ye(t, "left", "right")) : e.base < e.y && (t = ye(t, "bottom", "top")), n[t] = !0), n
}(e);
return W.isObject(s) ? (i = +s.top || 0, r = +s.right || 0, a = +s.bottom || 0, o = +s.left || 0) : i = r = a = o = +s || 0, { t: l.top || i < 0 ? 0 : n < i ? n : i, r: l.right || r < 0 ? 0 : t < r ? t : r, b: l.bottom || a < 0 ? 0 : n < a ? n : a, l: l.left || o < 0 ? 0 : t < o ? t : o }
}
function xe(e, t, n) {
var i = null === t,
r = null === n,
a = !(!e || i && r) && me(e);
return a && (i || t >= a.left && t <= a.right) && (r || n >= a.top && n <= a.bottom)
}
B._set("global", { elements: { rectangle: { backgroundColor: pe, borderColor: pe, borderSkipped: "bottom", borderWidth: 0 } } });
var Me = $.extend({
_type: "rectangle",
draw: function() {
var e = this._chart.ctx,
t = this._view,
n = function(e) {
var t = me(e),
n = t.right - t.left,
i = t.bottom - t.top,
r = be(e, n / 2, i / 2);
return { outer: { x: t.left, y: t.top, w: n, h: i }, inner: { x: t.left + r.l, y: t.top + r.t, w: n - r.l - r.r, h: i - r.t - r.b } }
}(t),
i = n.outer,
r = n.inner;
e.fillStyle = t.backgroundColor, e.fillRect(i.x, i.y, i.w, i.h), i.w === r.w && i.h === r.h || (e.save(), e.beginPath(), e.rect(i.x, i.y, i.w, i.h), e.clip(), e.fillStyle = t.borderColor, e.rect(r.x, r.y, r.w, r.h), e.fill("evenodd"), e.restore())
},
height: function() { var e = this._view; return e.base - e.y },
inRange: function(e, t) { return xe(this._view, e, t) },
inLabelRange: function(e, t) { var n = this._view; return ve(n) ? xe(n, e, null) : xe(n, null, t) },
inXRange: function(e) { return xe(this._view, e, null) },
inYRange: function(e) { return xe(this._view, null, e) },
getCenterPoint: function() { var e, t, n = this._view; return t = ve(n) ? (e = n.x, (n.y + n.base) / 2) : (e = (n.x + n.base) / 2, n.y), { x: e, y: t } },
getArea: function() { var e = this._view; return ve(e) ? e.width * Math.abs(e.y - e.base) : e.height * Math.abs(e.x - e.base) },
tooltipPosition: function() { var e = this._view; return { x: e.x, y: e.y } }
}),
we = {},
_e = se,
Se = de,
Ce = ge,
ke = Me;
we.Arc = _e, we.Line = Se, we.Point = Ce, we.Rectangle = ke;
var Te = W._deprecated,
Le = W.valueOrDefault;
function Ae(e, t, n) {
var i, r, a = n.barThickness,
o = t.stackCount,
s = t.pixels[e],
l = W.isNullOrUndef(a) ? function(e, t) { var n, i, r, a, o = e._length; for (r = 1, a = t.length; r < a; ++r) o = Math.min(o, Math.abs(t[r] - t[r - 1])); for (r = 0, a = e.getTicks().length; r < a; ++r) i = e.getPixelForTick(r), o = 0 < r ? Math.min(o, Math.abs(i - n)) : o, n = i; return o }(t.scale, t.pixels) : -1;
return r = W.isNullOrUndef(a) ? (i = l * n.categoryPercentage, n.barPercentage) : (i = a * o, 1), { chunk: i / o, ratio: r, start: s - i / 2 }
}
B._set("bar", { hover: { mode: "label" }, scales: { xAxes: [{ type: "category", offset: !0, gridLines: { offsetGridLines: !0 } }], yAxes: [{ type: "linear" }] } }), B._set("global", { datasets: { bar: { categoryPercentage: .8, barPercentage: .9 } } });
var Ee = ie.extend({
dataElementType: we.Rectangle,
_dataElementOptions: ["backgroundColor", "borderColor", "borderSkipped", "borderWidth", "barPercentage", "barThickness", "categoryPercentage", "maxBarThickness", "minBarLength"],
initialize: function() {
var e, t, n = this;
ie.prototype.initialize.apply(n, arguments), (e = n.getMeta()).stack = n.getDataset().stack, e.bar = !0, t = n._getIndexScale().options, Te("bar chart", t.barPercentage, "scales.[x/y]Axes.barPercentage", "dataset.barPercentage"), Te("bar chart", t.barThickness, "scales.[x/y]Axes.barThickness", "dataset.barThickness"), Te("bar chart", t.categoryPercentage, "scales.[x/y]Axes.categoryPercentage", "dataset.categoryPercentage"), Te("bar chart", n._getValueScale().options.minBarLength, "scales.[x/y]Axes.minBarLength", "dataset.minBarLength"), Te("bar chart", t.maxBarThickness, "scales.[x/y]Axes.maxBarThickness", "dataset.maxBarThickness")
},
update: function(e) { var t, n, i = this.getMeta().data; for (this._ruler = this.getRuler(), t = 0, n = i.length; t < n; ++t) this.updateElement(i[t], t, e) },
updateElement: function(e, t, n) {
var i = this,
r = i.getMeta(),
a = i.getDataset(),
o = i._resolveDataElementOptions(e, t);
e._xScale = i.getScaleForId(r.xAxisID), e._yScale = i.getScaleForId(r.yAxisID), e._datasetIndex = i.index, e._index = t, e._model = { backgroundColor: o.backgroundColor, borderColor: o.borderColor, borderSkipped: o.borderSkipped, borderWidth: o.borderWidth, datasetLabel: a.label, label: i.chart.data.labels[t] }, W.isArray(a.data[t]) && (e._model.borderSkipped = null), i._updateElementGeometry(e, t, n, o), e.pivot()
},
_updateElementGeometry: function(e, t, n, i) {
var r = this,
a = e._model,
o = r._getValueScale(),
s = o.getBasePixel(),
l = o.isHorizontal(),
c = r._ruler || r.getRuler(),
d = r.calculateBarValuePixels(r.index, t, i),
u = r.calculateBarIndexPixels(r.index, t, c, i);
a.horizontal = l, a.base = n ? s : d.base, a.x = l ? n ? s : d.head : u.center, a.y = l ? u.center : n ? s : d.head, a.height = l ? u.size : void 0, a.width = l ? void 0 : u.size
},
_getStacks: function(e) {
var t, n, i = this._getIndexScale(),
r = i._getMatchingVisibleMetas(this._type),
a = i.options.stacked,
o = r.length,
s = [];
for (t = 0; t < o && (n = r[t], (!1 === a || -1 === s.indexOf(n.stack) || void 0 === a && void 0 === n.stack) && s.push(n.stack), n.index !== e); ++t);
return s
},
getStackCount: function() { return this._getStacks().length },
getStackIndex: function(e, t) {
var n = this._getStacks(e),
i = void 0 !== t ? n.indexOf(t) : -1;
return -1 === i ? n.length - 1 : i
},
getRuler: function() {
var e, t, n = this._getIndexScale(),
i = [];
for (e = 0, t = this.getMeta().data.length; e < t; ++e) i.push(n.getPixelForValue(null, e, this.index));
return { pixels: i, start: n._startPixel, end: n._endPixel, stackCount: this.getStackCount(), scale: n }
},
calculateBarValuePixels: function(e, t, n) {
var i, r, a, o, s, l, c, d = this.chart,
u = this._getValueScale(),
h = u.isHorizontal(),
f = d.data.datasets,
g = u._getMatchingVisibleMetas(this._type),
p = u._parseValue(f[e].data[t]),
v = n.minBarLength,
m = u.options.stacked,
y = this.getMeta().stack,
b = void 0 === p.start ? 0 : 0 <= p.max && 0 <= p.min ? p.min : p.max,
x = void 0 === p.start ? p.end : 0 <= p.max && 0 <= p.min ? p.max - p.min : p.min - p.max,
M = g.length;
if (m || void 0 === m && void 0 !== y)
for (i = 0; i < M && (r = g[i]).index !== e; ++i) r.stack === y && (a = void 0 === (c = u._parseValue(f[r.index].data[t])).start ? c.end : 0 <= c.min && 0 <= c.max ? c.max : c.min, (p.min < 0 && a < 0 || 0 <= p.max && 0 < a) && (b += a));
return o = u.getPixelForValue(b), l = (s = u.getPixelForValue(b + x)) - o, void 0 !== v && Math.abs(l) < v && (l = v, s = 0 <= x && !h || x < 0 && h ? o - v : o + v), { size: l, base: o, head: s, center: s + l / 2 }
},
calculateBarIndexPixels: function(e, t, n, i) {
var r = "flex" === i.barThickness ? function(e, t, n) {
var i, r = t.pixels,
a = r[e],
o = 0 < e ? r[e - 1] : null,
s = e < r.length - 1 ? r[e + 1] : null,
l = n.categoryPercentage;
return null === o && (o = a - (null === s ? t.end - t.start : s - a)), null === s && (s = a + a - o), i = a - (a - Math.min(o, s)) / 2 * l, { chunk: Math.abs(s - o) / 2 * l / t.stackCount, ratio: n.barPercentage, start: i }
}(t, n, i) : Ae(t, n, i),
a = this.getStackIndex(e, this.getMeta().stack),
o = r.start + r.chunk * a + r.chunk / 2,
s = Math.min(Le(i.maxBarThickness, 1 / 0), r.chunk * r.ratio);
return { base: o - s / 2, head: o + s / 2, center: o, size: s }
},
draw: function() {
var e = this.chart,
t = this._getValueScale(),
n = this.getMeta().data,
i = this.getDataset(),
r = n.length,
a = 0;
for (W.canvas.clipArea(e.ctx, e.chartArea); a < r; ++a) {
var o = t._parseValue(i.data[a]);
isNaN(o.min) || isNaN(o.max) || n[a].draw()
}
W.canvas.unclipArea(e.ctx)
},
_resolveDataElementOptions: function() {
var e = W.extend({}, ie.prototype._resolveDataElementOptions.apply(this, arguments)),
t = this._getIndexScale().options,
n = this._getValueScale().options;
return e.barPercentage = Le(t.barPercentage, e.barPercentage), e.barThickness = Le(t.barThickness, e.barThickness), e.categoryPercentage = Le(t.categoryPercentage, e.categoryPercentage), e.maxBarThickness = Le(t.maxBarThickness, e.maxBarThickness), e.minBarLength = Le(n.minBarLength, e.minBarLength), e
}
}),
Oe = W.valueOrDefault,
Pe = W.options.resolve;
B._set("bubble", {
hover: { mode: "single" },
scales: { xAxes: [{ type: "linear", position: "bottom", id: "x-axis-0" }], yAxes: [{ type: "linear", position: "left", id: "y-axis-0" }] },
tooltips: {
callbacks: {
title: function() { return "" },
label: function(e, t) {
var n = t.datasets[e.datasetIndex].label || "",
i = t.datasets[e.datasetIndex].data[e.index];
return n + ": (" + e.xLabel + ", " + e.yLabel + ", " + i.r + ")"
}
}
}
});
var De = ie.extend({
dataElementType: we.Point,
_dataElementOptions: ["backgroundColor", "borderColor", "borderWidth", "hoverBackgroundColor", "hoverBorderColor", "hoverBorderWidth", "hoverRadius", "hitRadius", "pointStyle", "rotation"],
update: function(n) {
var i = this,
e = i.getMeta().data;
W.each(e, function(e, t) { i.updateElement(e, t, n) })
},
updateElement: function(e, t, n) {
var i = this,
r = i.getMeta(),
a = e.custom || {},
o = i.getScaleForId(r.xAxisID),
s = i.getScaleForId(r.yAxisID),
l = i._resolveDataElementOptions(e, t),
c = i.getDataset().data[t],
d = i.index,
u = n ? o.getPixelForDecimal(.5) : o.getPixelForValue("object" == typeof c ? c : NaN, t, d),
h = n ? s.getBasePixel() : s.getPixelForValue(c, t, d);
e._xScale = o, e._yScale = s, e._options = l, e._datasetIndex = d, e._index = t, e._model = { backgroundColor: l.backgroundColor, borderColor: l.borderColor, borderWidth: l.borderWidth, hitRadius: l.hitRadius, pointStyle: l.pointStyle, rotation: l.rotation, radius: n ? 0 : l.radius, skip: a.skip || isNaN(u) || isNaN(h), x: u, y: h }, e.pivot()
},
setHoverStyle: function(e) {
var t = e._model,
n = e._options,
i = W.getHoverColor;
e.$previousStyle = { backgroundColor: t.backgroundColor, borderColor: t.borderColor, borderWidth: t.borderWidth, radius: t.radius }, t.backgroundColor = Oe(n.hoverBackgroundColor, i(n.backgroundColor)), t.borderColor = Oe(n.hoverBorderColor, i(n.borderColor)), t.borderWidth = Oe(n.hoverBorderWidth, n.borderWidth), t.radius = n.radius + n.hoverRadius
},
_resolveDataElementOptions: function(e, t) {
var n = this,
i = n.chart,
r = n.getDataset(),
a = e.custom || {},
o = r.data[t] || {},
s = ie.prototype._resolveDataElementOptions.apply(n, arguments),
l = { chart: i, dataIndex: t, dataset: r, datasetIndex: n.index };
return n._cachedDataOpts === s && (s = W.extend({}, s)), s.radius = Pe([a.radius, o.r, n._config.radius, i.options.elements.point.radius], l, t), s
}
}),
Ve = W.valueOrDefault,
Re = Math.PI,
ze = 2 * Re,
Be = Re / 2;
B._set("doughnut", {
animation: { animateRotate: !0, animateScale: !1 },
hover: { mode: "single" },
legendCallback: function(e) {
var t, n, i, r = document.createElement("ul"),
a = e.data,
o = a.datasets,
s = a.labels;
if (r.setAttribute("class", e.id + "-legend"), o.length)
for (n = o[t = 0].data.length; t < n; ++t)(i = r.appendChild(document.createElement("li"))).appendChild(document.createElement("span")).style.backgroundColor = o[0].backgroundColor[t], s[t] && i.appendChild(document.createTextNode(s[t]));
return r.outerHTML
},
legend: {
labels: {
generateLabels: function(r) {
var a = r.data;
return a.labels.length && a.datasets.length ? a.labels.map(function(e, t) {
var n = r.getDatasetMeta(0),
i = n.controller.getStyle(t);
return { text: e, fillStyle: i.backgroundColor, strokeStyle: i.borderColor, lineWidth: i.borderWidth, hidden: isNaN(a.datasets[0].data[t]) || n.data[t].hidden, index: t }
}) : []
}
},
onClick: function(e, t) {
var n, i, r, a = t.index,
o = this.chart;
for (n = 0, i = (o.data.datasets || []).length; n < i; ++n)(r = o.getDatasetMeta(n)).data[a] && (r.data[a].hidden = !r.data[a].hidden);
o.update()
}
},
cutoutPercentage: 50,
rotation: -Be,
circumference: ze,
tooltips: {
callbacks: {
title: function() { return "" },
label: function(e, t) {
var n = t.labels[e.index],
i = ": " + t.datasets[e.datasetIndex].data[e.index];
return W.isArray(n) ? (n = n.slice())[0] += i : n += i, n
}
}
}
});
var He = ie.extend({
dataElementType: we.Arc,
linkScales: W.noop,
_dataElementOptions: ["backgroundColor", "borderColor", "borderWidth", "borderAlign", "hoverBackgroundColor", "hoverBorderColor", "hoverBorderWidth"],
getRingIndex: function(e) { for (var t = 0, n = 0; n < e; ++n) this.chart.isDatasetVisible(n) && ++t; return t },
update: function(e) {
var t, n, i, r, a = this,
o = a.chart,
s = o.chartArea,
l = o.options,
c = 1,
d = 1,
u = 0,
h = 0,
f = a.getMeta(),
g = f.data,
p = l.cutoutPercentage / 100 || 0,
v = l.circumference,
m = a._getRingWeight(a.index);
if (v < ze) {
var y = l.rotation % ze,
b = (y += Re <= y ? -ze : y < -Re ? ze : 0) + v,
x = Math.cos(y),
M = Math.sin(y),
w = Math.cos(b),
_ = Math.sin(b),
S = y <= 0 && 0 <= b || ze <= b,
C = y <= Be && Be <= b || ze + Be <= b,
k = y <= -Be && -Be <= b || Re + Be <= b,
T = y === -Re || Re <= b ? -1 : Math.min(x, x * p, w, w * p),
L = k ? -1 : Math.min(M, M * p, _, _ * p),
A = S ? 1 : Math.max(x, x * p, w, w * p),
E = C ? 1 : Math.max(M, M * p, _, _ * p);
c = (A - T) / 2, d = (E - L) / 2, u = -(A + T) / 2, h = -(E + L) / 2
}
for (i = 0, r = g.length; i < r; ++i) g[i]._options = a._resolveDataElementOptions(g[i], i);
for (o.borderWidth = a.getMaxBorderWidth(), t = (s.right - s.left - o.borderWidth) / c, n = (s.bottom - s.top - o.borderWidth) / d, o.outerRadius = Math.max(Math.min(t, n) / 2, 0), o.innerRadius = Math.max(o.outerRadius * p, 0), o.radiusLength = (o.outerRadius - o.innerRadius) / (a._getVisibleDatasetWeightTotal() || 1), o.offsetX = u * o.outerRadius, o.offsetY = h * o.outerRadius, f.total = a.calculateTotal(), a.outerRadius = o.outerRadius - o.radiusLength * a._getRingWeightOffset(a.index), a.innerRadius = Math.max(a.outerRadius - o.radiusLength * m, 0), i = 0, r = g.length; i < r; ++i) a.updateElement(g[i], i, e)
},
updateElement: function(e, t, n) {
var i = this,
r = i.chart,
a = r.chartArea,
o = r.options,
s = o.animation,
l = (a.left + a.right) / 2,
c = (a.top + a.bottom) / 2,
d = o.rotation,
u = o.rotation,
h = i.getDataset(),
f = n && s.animateRotate ? 0 : e.hidden ? 0 : i.calculateCircumference(h.data[t]) * (o.circumference / ze),
g = n && s.animateScale ? 0 : i.innerRadius,
p = n && s.animateScale ? 0 : i.outerRadius,
v = e._options || {};
W.extend(e, { _datasetIndex: i.index, _index: t, _model: { backgroundColor: v.backgroundColor, borderColor: v.borderColor, borderWidth: v.borderWidth, borderAlign: v.borderAlign, x: l + r.offsetX, y: c + r.offsetY, startAngle: d, endAngle: u, circumference: f, outerRadius: p, innerRadius: g, label: W.valueAtIndexOrDefault(h.label, t, r.data.labels[t]) } });
var m = e._model;
n && s.animateRotate || (m.startAngle = 0 === t ? o.rotation : i.getMeta().data[t - 1]._model.endAngle, m.endAngle = m.startAngle + m.circumference), e.pivot()
},
calculateTotal: function() {
var n, i = this.getDataset(),
e = this.getMeta(),
r = 0;
return W.each(e.data, function(e, t) { n = i.data[t], isNaN(n) || e.hidden || (r += Math.abs(n)) }), r
},
calculateCircumference: function(e) { var t = this.getMeta().total; return 0 < t && !isNaN(e) ? ze * (Math.abs(e) / t) : 0 },
getMaxBorderWidth: function(e) {
var t, n, i, r, a, o, s, l, c = 0,
d = this.chart;
if (!e)
for (t = 0, n = d.data.datasets.length; t < n; ++t)
if (d.isDatasetVisible(t)) { e = (i = d.getDatasetMeta(t)).data, t !== this.index && (a = i.controller); break }
if (!e) return 0;
for (t = 0, n = e.length; t < n; ++t) r = e[t], "inner" !== (o = a ? (a._configure(), a._resolveDataElementOptions(r, t)) : r._options).borderAlign && (c = (c = c < (s = o.borderWidth) ? s : c) < (l = o.hoverBorderWidth) ? l : c);
return c
},
setHoverStyle: function(e) {
var t = e._model,
n = e._options,
i = W.getHoverColor;
e.$previousStyle = { backgroundColor: t.backgroundColor, borderColor: t.borderColor, borderWidth: t.borderWidth }, t.backgroundColor = Ve(n.hoverBackgroundColor, i(n.backgroundColor)), t.borderColor = Ve(n.hoverBorderColor, i(n.borderColor)), t.borderWidth = Ve(n.hoverBorderWidth, n.borderWidth)
},
_getRingWeightOffset: function(e) { for (var t = 0, n = 0; n < e; ++n) this.chart.isDatasetVisible(n) && (t += this._getRingWeight(n)); return t },
_getRingWeight: function(e) { return Math.max(Ve(this.chart.data.datasets[e].weight, 1), 0) },
_getVisibleDatasetWeightTotal: function() { return this._getRingWeightOffset(this.chart.data.datasets.length) }
});
B._set("horizontalBar", { hover: { mode: "index", axis: "y" }, scales: { xAxes: [{ type: "linear", position: "bottom" }], yAxes: [{ type: "category", position: "left", offset: !0, gridLines: { offsetGridLines: !0 } }] }, elements: { rectangle: { borderSkipped: "left" } }, tooltips: { mode: "index", axis: "y" } }), B._set("global", { datasets: { horizontalBar: { categoryPercentage: .8, barPercentage: .9 } } });
var Ne = Ee.extend({ _getValueScaleId: function() { return this.getMeta().xAxisID }, _getIndexScaleId: function() { return this.getMeta().yAxisID } }),
Ie = W.valueOrDefault,
Fe = W.options.resolve,
We = W.canvas._isPointInArea;
function je(e, t) {
var n = e && e.options.ticks || {},
i = n.reverse,
r = void 0 === n.min ? t : 0,
a = void 0 === n.max ? t : 0;
return { start: i ? a : r, end: i ? r : a }
}
B._set("line", { showLines: !0, spanGaps: !1, hover: { mode: "label" }, scales: { xAxes: [{ type: "category", id: "x-axis-0" }], yAxes: [{ type: "linear", id: "y-axis-0" }] } });
var Ye = ie.extend({
datasetElementType: we.Line,
dataElementType: we.Point,
_datasetElementOptions: ["backgroundColor", "borderCapStyle", "borderColor", "borderDash", "borderDashOffset", "borderJoinStyle", "borderWidth", "cubicInterpolationMode", "fill"],
_dataElementOptions: { backgroundColor: "pointBackgroundColor", borderColor: "pointBorderColor", borderWidth: "pointBorderWidth", hitRadius: "pointHitRadius", hoverBackgroundColor: "pointHoverBackgroundColor", hoverBorderColor: "pointHoverBorderColor", hoverBorderWidth: "pointHoverBorderWidth", hoverRadius: "pointHoverRadius", pointStyle: "pointStyle", radius: "pointRadius", rotation: "pointRotation" },
update: function(e) {
var t, n, i = this,
r = i.getMeta(),
a = r.dataset,
o = r.data || [],
s = i.chart.options,
l = i._config,
c = i._showLine = Ie(l.showLine, s.showLines);
for (i._xScale = i.getScaleForId(r.xAxisID), i._yScale = i.getScaleForId(r.yAxisID), c && (void 0 !== l.tension && void 0 === l.lineTension && (l.lineTension = l.tension), a._scale = i._yScale, a._datasetIndex = i.index, a._children = o, a._model = i._resolveDatasetElementOptions(a), a.pivot()), t = 0, n = o.length; t < n; ++t) i.updateElement(o[t], t, e);
for (c && 0 !== a._model.tension && i.updateBezierControlPoints(), t = 0, n = o.length; t < n; ++t) o[t].pivot()
},
updateElement: function(e, t, n) {
var i, r, a = this,
o = a.getMeta(),
s = e.custom || {},
l = a.getDataset(),
c = a.index,
d = l.data[t],
u = a._xScale,
h = a._yScale,
f = o.dataset._model,
g = a._resolveDataElementOptions(e, t);
i = u.getPixelForValue("object" == typeof d ? d : NaN, t, c), r = n ? h.getBasePixel() : a.calculatePointY(d, t, c), e._xScale = u, e._yScale = h, e._options = g, e._datasetIndex = c, e._index = t, e._model = { x: i, y: r, skip: s.skip || isNaN(i) || isNaN(r), radius: g.radius, pointStyle: g.pointStyle, rotation: g.rotation, backgroundColor: g.backgroundColor, borderColor: g.borderColor, borderWidth: g.borderWidth, tension: Ie(s.tension, f ? f.tension : 0), steppedLine: !!f && f.steppedLine, hitRadius: g.hitRadius }
},
_resolveDatasetElementOptions: function(e) {
var t = this,
n = t._config,
i = e.custom || {},
r = t.chart.options,
a = r.elements.line,
o = ie.prototype._resolveDatasetElementOptions.apply(t, arguments);
return o.spanGaps = Ie(n.spanGaps, r.spanGaps), o.tension = Ie(n.lineTension, a.tension), o.steppedLine = Fe([i.steppedLine, n.steppedLine, a.stepped]), o.clip = function(e) { var t, n, i, r; return W.isObject(e) ? (t = e.top, n = e.right, i = e.bottom, r = e.left) : t = n = i = r = e, { top: t, right: n, bottom: i, left: r } }(Ie(n.clip, function(e, t, n) {
var i = n / 2,
r = je(e, i),
a = je(t, i);
return { top: a.end, right: r.end, bottom: a.start, left: r.start }
}(t._xScale, t._yScale, o.borderWidth))), o
},
calculatePointY: function(e, t, n) {
var i, r, a, o, s, l, c, d = this.chart,
u = this._yScale,
h = 0,
f = 0;
if (u.options.stacked) { for (s = +u.getRightValue(e), c = (l = d._getSortedVisibleDatasetMetas()).length, i = 0; i < c && (a = l[i]).index !== n; ++i) r = d.data.datasets[a.index], "line" === a.type && a.yAxisID === u.id && ((o = +u.getRightValue(r.data[t])) < 0 ? f += o || 0 : h += o || 0); return s < 0 ? u.getPixelForValue(f + s) : u.getPixelForValue(h + s) }
return u.getPixelForValue(e)
},
updateBezierControlPoints: function() {
var e, t, n, i, r = this.chart,
a = this.getMeta(),
o = a.dataset._model,
s = r.chartArea,
l = a.data || [];
function c(e, t, n) { return Math.max(Math.min(e, n), t) }
if (o.spanGaps && (l = l.filter(function(e) { return !e._model.skip })), "monotone" === o.cubicInterpolationMode) W.splineCurveMonotone(l);
else
for (e = 0, t = l.length; e < t; ++e) n = l[e]._model, i = W.splineCurve(W.previousItem(l, e)._model, n, W.nextItem(l, e)._model, o.tension), n.controlPointPreviousX = i.previous.x, n.controlPointPreviousY = i.previous.y, n.controlPointNextX = i.next.x, n.controlPointNextY = i.next.y;
if (r.options.elements.line.capBezierPoints)
for (e = 0, t = l.length; e < t; ++e) n = l[e]._model, We(n, s) && (0 < e && We(l[e - 1]._model, s) && (n.controlPointPreviousX = c(n.controlPointPreviousX, s.left, s.right), n.controlPointPreviousY = c(n.controlPointPreviousY, s.top, s.bottom)), e < l.length - 1 && We(l[e + 1]._model, s) && (n.controlPointNextX = c(n.controlPointNextX, s.left, s.right), n.controlPointNextY = c(n.controlPointNextY, s.top, s.bottom)))
},
draw: function() {
var e, t = this.chart,
n = this.getMeta(),
i = n.data || [],
r = t.chartArea,
a = t.canvas,
o = 0,
s = i.length;
for (this._showLine && (e = n.dataset._model.clip, W.canvas.clipArea(t.ctx, { left: !1 === e.left ? 0 : r.left - e.left, right: !1 === e.right ? a.width : r.right + e.right, top: !1 === e.top ? 0 : r.top - e.top, bottom: !1 === e.bottom ? a.height : r.bottom + e.bottom }), n.dataset.draw(), W.canvas.unclipArea(t.ctx)); o < s; ++o) i[o].draw(r)
},
setHoverStyle: function(e) {
var t = e._model,
n = e._options,
i = W.getHoverColor;
e.$previousStyle = { backgroundColor: t.backgroundColor, borderColor: t.borderColor, borderWidth: t.borderWidth, radius: t.radius }, t.backgroundColor = Ie(n.hoverBackgroundColor, i(n.backgroundColor)), t.borderColor = Ie(n.hoverBorderColor, i(n.borderColor)), t.borderWidth = Ie(n.hoverBorderWidth, n.borderWidth), t.radius = Ie(n.hoverRadius, n.radius)
}
}),
Ge = W.options.resolve;
B._set("polarArea", {
scale: { type: "radialLinear", angleLines: { display: !1 }, gridLines: { circular: !0 }, pointLabels: { display: !1 }, ticks: { beginAtZero: !0 } },
animation: { animateRotate: !0, animateScale: !0 },
startAngle: -.5 * Math.PI,
legendCallback: function(e) {
var t, n, i, r = document.createElement("ul"),
a = e.data,
o = a.datasets,
s = a.labels;
if (r.setAttribute("class", e.id + "-legend"), o.length)
for (n = o[t = 0].data.length; t < n; ++t)(i = r.appendChild(document.createElement("li"))).appendChild(document.createElement("span")).style.backgroundColor = o[0].backgroundColor[t], s[t] && i.appendChild(document.createTextNode(s[t]));
return r.outerHTML
},
legend: {
labels: {
generateLabels: function(r) {
var a = r.data;
return a.labels.length && a.datasets.length ? a.labels.map(function(e, t) {
var n = r.getDatasetMeta(0),
i = n.controller.getStyle(t);
return { text: e, fillStyle: i.backgroundColor, strokeStyle: i.borderColor, lineWidth: i.borderWidth, hidden: isNaN(a.datasets[0].data[t]) || n.data[t].hidden, index: t }
}) : []
}
},
onClick: function(e, t) {
var n, i, r, a = t.index,
o = this.chart;
for (n = 0, i = (o.data.datasets || []).length; n < i; ++n)(r = o.getDatasetMeta(n)).data[a].hidden = !r.data[a].hidden;
o.update()
}
},
tooltips: { callbacks: { title: function() { return "" }, label: function(e, t) { return t.labels[e.index] + ": " + e.yLabel } } }
});
var Ue = ie.extend({
dataElementType: we.Arc,
linkScales: W.noop,
_dataElementOptions: ["backgroundColor", "borderColor", "borderWidth", "borderAlign", "hoverBackgroundColor", "hoverBorderColor", "hoverBorderWidth"],
_getIndexScaleId: function() { return this.chart.scale.id },
_getValueScaleId: function() { return this.chart.scale.id },
update: function(e) {
var t, n, i, r = this,
a = r.getDataset(),
o = r.getMeta(),
s = r.chart.options.startAngle || 0,
l = r._starts = [],
c = r._angles = [],
d = o.data;
for (r._updateRadius(), o.count = r.countVisibleElements(), t = 0, n = a.data.length; t < n; t++) l[t] = s, i = r._computeAngle(t), s += c[t] = i;
for (t = 0, n = d.length; t < n; ++t) d[t]._options = r._resolveDataElementOptions(d[t], t), r.updateElement(d[t], t, e)
},
_updateRadius: function() {
var e = this,
t = e.chart,
n = t.chartArea,
i = t.options,
r = Math.min(n.right - n.left, n.bottom - n.top);
t.outerRadius = Math.max(r / 2, 0), t.innerRadius = Math.max(i.cutoutPercentage ? t.outerRadius / 100 * i.cutoutPercentage : 1, 0), t.radiusLength = (t.outerRadius - t.innerRadius) / t.getVisibleDatasetCount(), e.outerRadius = t.outerRadius - t.radiusLength * e.index, e.innerRadius = e.outerRadius - t.radiusLength
},
updateElement: function(e, t, n) {
var i = this,
r = i.chart,
a = i.getDataset(),
o = r.options,
s = o.animation,
l = r.scale,
c = r.data.labels,
d = l.xCenter,
u = l.yCenter,
h = o.startAngle,
f = e.hidden ? 0 : l.getDistanceFromCenterForValue(a.data[t]),
g = i._starts[t],
p = g + (e.hidden ? 0 : i._angles[t]),
v = s.animateScale ? 0 : l.getDistanceFromCenterForValue(a.data[t]),
m = e._options || {};
W.extend(e, { _datasetIndex: i.index, _index: t, _scale: l, _model: { backgroundColor: m.backgroundColor, borderColor: m.borderColor, borderWidth: m.borderWidth, borderAlign: m.borderAlign, x: d, y: u, innerRadius: 0, outerRadius: n ? v : f, startAngle: n && s.animateRotate ? h : g, endAngle: n && s.animateRotate ? h : p, label: W.valueAtIndexOrDefault(c, t, c[t]) } }), e.pivot()
},
countVisibleElements: function() {
var n = this.getDataset(),
e = this.getMeta(),
i = 0;
return W.each(e.data, function(e, t) { isNaN(n.data[t]) || e.hidden || i++ }), i
},
setHoverStyle: function(e) {
var t = e._model,
n = e._options,
i = W.getHoverColor,
r = W.valueOrDefault;
e.$previousStyle = { backgroundColor: t.backgroundColor, borderColor: t.borderColor, borderWidth: t.borderWidth }, t.backgroundColor = r(n.hoverBackgroundColor, i(n.backgroundColor)), t.borderColor = r(n.hoverBorderColor, i(n.borderColor)), t.borderWidth = r(n.hoverBorderWidth, n.borderWidth)
},
_computeAngle: function(e) {
var t = this,
n = this.getMeta().count,
i = t.getDataset(),
r = t.getMeta();
if (isNaN(i.data[e]) || r.data[e].hidden) return 0;
var a = { chart: t.chart, dataIndex: e, dataset: i, datasetIndex: t.index };
return Ge([t.chart.options.elements.arc.angle, 2 * Math.PI / n], a, e)
}
});
B._set("pie", W.clone(B.doughnut)), B._set("pie", { cutoutPercentage: 0 });
var qe = He,
Xe = W.valueOrDefault;
B._set("radar", { spanGaps: !1, scale: { type: "radialLinear" }, elements: { line: { fill: "start", tension: 0 } } });
var $e = ie.extend({
datasetElementType: we.Line,
dataElementType: we.Point,
linkScales: W.noop,
_datasetElementOptions: ["backgroundColor", "borderWidth", "borderColor", "borderCapStyle", "borderDash", "borderDashOffset", "borderJoinStyle", "fill"],
_dataElementOptions: { backgroundColor: "pointBackgroundColor", borderColor: "pointBorderColor", borderWidth: "pointBorderWidth", hitRadius: "pointHitRadius", hoverBackgroundColor: "pointHoverBackgroundColor", hoverBorderColor: "pointHoverBorderColor", hoverBorderWidth: "pointHoverBorderWidth", hoverRadius: "pointHoverRadius", pointStyle: "pointStyle", radius: "pointRadius", rotation: "pointRotation" },
_getIndexScaleId: function() { return this.chart.scale.id },
_getValueScaleId: function() { return this.chart.scale.id },
update: function(e) {
var t, n, i = this,
r = i.getMeta(),
a = r.dataset,
o = r.data || [],
s = i.chart.scale,
l = i._config;
for (void 0 !== l.tension && void 0 === l.lineTension && (l.lineTension = l.tension), a._scale = s, a._datasetIndex = i.index, a._children = o, a._loop = !0, a._model = i._resolveDatasetElementOptions(a), a.pivot(), t = 0, n = o.length; t < n; ++t) i.updateElement(o[t], t, e);
for (i.updateBezierControlPoints(), t = 0, n = o.length; t < n; ++t) o[t].pivot()
},
updateElement: function(e, t, n) {
var i = this,
r = e.custom || {},
a = i.getDataset(),
o = i.chart.scale,
s = o.getPointPositionForValue(t, a.data[t]),
l = i._resolveDataElementOptions(e, t),
c = i.getMeta().dataset._model,
d = n ? o.xCenter : s.x,
u = n ? o.yCenter : s.y;
e._scale = o, e._options = l, e._datasetIndex = i.index, e._index = t, e._model = { x: d, y: u, skip: r.skip || isNaN(d) || isNaN(u), radius: l.radius, pointStyle: l.pointStyle, rotation: l.rotation, backgroundColor: l.backgroundColor, borderColor: l.borderColor, borderWidth: l.borderWidth, tension: Xe(r.tension, c ? c.tension : 0), hitRadius: l.hitRadius }
},
_resolveDatasetElementOptions: function() {
var e = this._config,
t = this.chart.options,
n = ie.prototype._resolveDatasetElementOptions.apply(this, arguments);
return n.spanGaps = Xe(e.spanGaps, t.spanGaps), n.tension = Xe(e.lineTension, t.elements.line.tension), n
},
updateBezierControlPoints: function() {
var e, t, n, i, r = this.getMeta(),
a = this.chart.chartArea,
o = r.data || [];
function s(e, t, n) { return Math.max(Math.min(e, n), t) }
for (r.dataset._model.spanGaps && (o = o.filter(function(e) { return !e._model.skip })), e = 0, t = o.length; e < t; ++e) n = o[e]._model, i = W.splineCurve(W.previousItem(o, e, !0)._model, n, W.nextItem(o, e, !0)._model, n.tension), n.controlPointPreviousX = s(i.previous.x, a.left, a.right), n.controlPointPreviousY = s(i.previous.y, a.top, a.bottom), n.controlPointNextX = s(i.next.x, a.left, a.right), n.controlPointNextY = s(i.next.y, a.top, a.bottom)
},
setHoverStyle: function(e) {
var t = e._model,
n = e._options,
i = W.getHoverColor;
e.$previousStyle = { backgroundColor: t.backgroundColor, borderColor: t.borderColor, borderWidth: t.borderWidth, radius: t.radius }, t.backgroundColor = Xe(n.hoverBackgroundColor, i(n.backgroundColor)), t.borderColor = Xe(n.hoverBorderColor, i(n.borderColor)), t.borderWidth = Xe(n.hoverBorderWidth, n.borderWidth), t.radius = Xe(n.hoverRadius, n.radius)
}
});
B._set("scatter", { hover: { mode: "single" }, scales: { xAxes: [{ id: "x-axis-1", type: "linear", position: "bottom" }], yAxes: [{ id: "y-axis-1", type: "linear", position: "left" }] }, tooltips: { callbacks: { title: function() { return "" }, label: function(e) { return "(" + e.xLabel + ", " + e.yLabel + ")" } } } }), B._set("global", { datasets: { scatter: { showLine: !1 } } });
var Ze = { bar: Ee, bubble: De, doughnut: He, horizontalBar: Ne, line: Ye, polarArea: Ue, pie: qe, radar: $e, scatter: Ye };
function Ke(e, t) { return e.native ? { x: e.x, y: e.y } : W.getRelativePosition(e, t) }
function Je(e, t) {
var n, i, r, a, o, s, l = e._getSortedVisibleDatasetMetas();
for (i = 0, a = l.length; i < a; ++i)
for (r = 0, o = (n = l[i].data).length; r < o; ++r)(s = n[r])._view.skip || t(s)
}
function Qe(e, t) { var n = []; return Je(e, function(e) { e.inRange(t.x, t.y) && n.push(e) }), n }
function et(e, i, r, a) {
var o = Number.POSITIVE_INFINITY,
s = [];
return Je(e, function(e) {
if (!r || e.inRange(i.x, i.y)) {
var t = e.getCenterPoint(),
n = a(i, t);
n < o ? (s = [e], o = n) : n === o && s.push(e)
}
}), s
}
function tt(e) {
var r = -1 !== e.indexOf("x"),
a = -1 !== e.indexOf("y");
return function(e, t) {
var n = r ? Math.abs(e.x - t.x) : 0,
i = a ? Math.abs(e.y - t.y) : 0;
return Math.sqrt(Math.pow(n, 2) + Math.pow(i, 2))
}
}
function nt(e, t, n) {
var i = Ke(t, e);
n.axis = n.axis || "x";
var r = tt(n.axis),
a = n.intersect ? Qe(e, i) : et(e, i, !1, r),
o = [];
return a.length ? (e._getSortedVisibleDatasetMetas().forEach(function(e) {
var t = e.data[a[0]._index];
t && !t._view.skip && o.push(t)
}), o) : []
}
var it = {
modes: {
single: function(e, t) {
var n = Ke(t, e),
i = [];
return Je(e, function(e) { if (e.inRange(n.x, n.y)) return i.push(e), i }), i.slice(0, 1)
},
label: nt,
index: nt,
dataset: function(e, t, n) {
var i = Ke(t, e);
n.axis = n.axis || "xy";
var r = tt(n.axis),
a = n.intersect ? Qe(e, i) : et(e, i, !1, r);
return 0 < a.length && (a = e.getDatasetMeta(a[0]._datasetIndex).data), a
},
"x-axis": function(e, t) { return nt(e, t, { intersect: !1 }) },
point: function(e, t) { return Qe(e, Ke(t, e)) },
nearest: function(e, t, n) {
var i = Ke(t, e);
n.axis = n.axis || "xy";
var r = tt(n.axis);
return et(e, i, n.intersect, r)
},
x: function(e, t, n) {
var i = Ke(t, e),
r = [],
a = !1;
return Je(e, function(e) { e.inXRange(i.x) && r.push(e), e.inRange(i.x, i.y) && (a = !0) }), n.intersect && !a && (r = []), r
},
y: function(e, t, n) {
var i = Ke(t, e),
r = [],
a = !1;
return Je(e, function(e) { e.inYRange(i.y) && r.push(e), e.inRange(i.x, i.y) && (a = !0) }), n.intersect && !a && (r = []), r
}
}
},
rt = W.extend;
function at(e, t) { return W.where(e, function(e) { return e.pos === t }) }
function ot(e, r) {
return e.sort(function(e, t) {
var n = r ? t : e,
i = r ? e : t;
return n.weight === i.weight ? n.index - i.index : n.weight - i.weight
})
}
function st(e, t, n, i) { return Math.max(e[n], t[n]) + Math.max(e[i], t[i]) }
function lt(e, t, n) {
var i, r, a = n.box,
o = e.maxPadding;
if (n.size && (e[n.pos] -= n.size), n.size = n.horizontal ? a.height : a.width, e[n.pos] += n.size, a.getPadding) {
var s = a.getPadding();
o.top = Math.max(o.top, s.top), o.left = Math.max(o.left, s.left), o.bottom = Math.max(o.bottom, s.bottom), o.right = Math.max(o.right, s.right)
}
if (i = t.outerWidth - st(o, e, "left", "right"), r = t.outerHeight - st(o, e, "top", "bottom"), i !== e.w || r !== e.h) return e.w = i, e.h = r, n.horizontal ? i !== e.w : r !== e.h
}
function ct(e, n) {
var i = n.maxPadding;
function t(e) { var t = { left: 0, top: 0, right: 0, bottom: 0 }; return e.forEach(function(e) { t[e] = Math.max(n[e], i[e]) }), t }
return t(e ? ["left", "right"] : ["top", "bottom"])
}
function dt(e, t, n) { var i, r, a, o, s, l, c = []; for (i = 0, r = e.length; i < r; ++i)(o = (a = e[i]).box).update(a.width || t.w, a.height || t.h, ct(a.horizontal, t)), lt(t, n, a) && (l = !0, c.length && (s = !0)), o.fullWidth || c.push(a); return s && dt(c, t, n) || l }
function ut(e, t, n) {
var i, r, a, o, s = n.padding,
l = t.x,
c = t.y;
for (i = 0, r = e.length; i < r; ++i) o = (a = e[i]).box, a.horizontal ? (o.left = o.fullWidth ? s.left : t.left, o.right = o.fullWidth ? n.outerWidth - s.right : t.left + t.w, o.top = c, o.bottom = c + o.height, o.width = o.right - o.left, c = o.bottom) : (o.left = l, o.right = l + o.width, o.top = t.top, o.bottom = t.top + t.h, o.height = o.bottom - o.top, l = o.right);
t.x = l, t.y = c
}
B._set("global", { layout: { padding: { top: 0, right: 0, bottom: 0, left: 0 } } });
var ht, ft = {
defaults: {},
addBox: function(e, t) { e.boxes || (e.boxes = []), t.fullWidth = t.fullWidth || !1, t.position = t.position || "top", t.weight = t.weight || 0, t._layers = t._layers || function() { return [{ z: 0, draw: function() { t.draw.apply(t, arguments) } }] }, e.boxes.push(t) },
removeBox: function(e, t) { var n = e.boxes ? e.boxes.indexOf(t) : -1; - 1 !== n && e.boxes.splice(n, 1) },
configure: function(e, t, n) { for (var i, r = ["fullWidth", "position", "weight"], a = r.length, o = 0; o < a; ++o) i = r[o], n.hasOwnProperty(i) && (t[i] = n[i]) },
update: function(n, e, t) {
if (n) {
var i = n.options.layout || {},
r = W.options.toPadding(i.padding),
a = e - r.width,
o = t - r.height,
s = function(e) {
var t = function(e) { var t, n, i, r = []; for (t = 0, n = (e || []).length; t < n; ++t) i = e[t], r.push({ index: t, box: i, pos: i.position, horizontal: i.isHorizontal(), weight: i.weight }); return r }(e),
n = ot(at(t, "left"), !0),
i = ot(at(t, "right")),
r = ot(at(t, "top"), !0),
a = ot(at(t, "bottom"));
return { leftAndTop: n.concat(r), rightAndBottom: i.concat(a), chartArea: at(t, "chartArea"), vertical: n.concat(i), horizontal: r.concat(a) }
}(n.boxes),
l = s.vertical,
c = s.horizontal,
d = Object.freeze({ outerWidth: e, outerHeight: t, padding: r, availableWidth: a, vBoxMaxWidth: a / 2 / l.length, hBoxMaxHeight: o / 2 }),
u = rt({ maxPadding: rt({}, r), w: a, h: o, x: r.left, y: r.top }, r);
! function(e, t) { var n, i, r; for (n = 0, i = e.length; n < i; ++n)(r = e[n]).width = r.horizontal ? r.box.fullWidth && t.availableWidth : t.vBoxMaxWidth, r.height = r.horizontal && t.hBoxMaxHeight }(l.concat(c), d), dt(l, u, d), dt(c, u, d) && dt(l, u, d),
function(n) {
var i = n.maxPadding;
function e(e) { var t = Math.max(i[e] - n[e], 0); return n[e] += t, t }
n.y += e("top"), n.x += e("left"), e("right"), e("bottom")
}(u), ut(s.leftAndTop, u, d), u.x += u.w, u.y += u.h, ut(s.rightAndBottom, u, d), n.chartArea = { left: u.left, top: u.top, right: u.left + u.w, bottom: u.top + u.h }, W.each(s.chartArea, function(e) {
var t = e.box;
rt(t, n.chartArea), t.update(u.w, u.h)
})
}
}
},
gt = (ht = Object.freeze({ __proto__: null, default: "/*\n * DOM element rendering detection\n * https://davidwalsh.name/detect-node-insertion\n */\n@keyframes chartjs-render-animation {\n\tfrom { opacity: 0.99; }\n\tto { opacity: 1; }\n}\n\n.chartjs-render-monitor {\n\tanimation: chartjs-render-animation 0.001s;\n}\n\n/*\n * DOM element resizing detection\n * https://github.com/marcj/css-element-queries\n */\n.chartjs-size-monitor,\n.chartjs-size-monitor-expand,\n.chartjs-size-monitor-shrink {\n\tposition: absolute;\n\tdirection: ltr;\n\tleft: 0;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\toverflow: hidden;\n\tpointer-events: none;\n\tvisibility: hidden;\n\tz-index: -1;\n}\n\n.chartjs-size-monitor-expand > div {\n\tposition: absolute;\n\twidth: 1000000px;\n\theight: 1000000px;\n\tleft: 0;\n\ttop: 0;\n}\n\n.chartjs-size-monitor-shrink > div {\n\tposition: absolute;\n\twidth: 200%;\n\theight: 200%;\n\tleft: 0;\n\ttop: 0;\n}\n" })) && ht.default || ht,
pt = "$chartjs",
vt = "chartjs-",
mt = vt + "size-monitor",
yt = vt + "render-monitor",
bt = vt + "render-animation",
xt = ["animationstart", "webkitAnimationStart"],
Mt = { touchstart: "mousedown", touchmove: "mousemove", touchend: "mouseup", pointerenter: "mouseenter", pointerdown: "mousedown", pointermove: "mousemove", pointerup: "mouseup", pointerleave: "mouseout", pointerout: "mouseout" };
function wt(e, t) {
var n = W.getStyle(e, t),
i = n && n.match(/^(\d+)(\.\d+)?px$/);
return i ? Number(i[1]) : void 0
}
var _t = !! function() {
var e = !1;
try {
var t = Object.defineProperty({}, "passive", { get: function() { e = !0 } });
window.addEventListener("e", null, t)
} catch (e) {}
return e
}() && { passive: !0 };
function St(e, t, n) { e.addEventListener(t, n, _t) }
function Ct(e, t, n) { e.removeEventListener(t, n, _t) }
function kt(e, t, n, i, r) { return { type: e, chart: t, native: r || null, x: void 0 !== n ? n : null, y: void 0 !== i ? i : null } }
function Tt(e) { var t = document.createElement("div"); return t.className = e || "", t }
function Lt(n, i, r) {
var a = n[pt] || (n[pt] = {}),
t = a.resizer = function(e) {
var t = Tt(mt),
n = Tt(mt + "-expand"),
i = Tt(mt + "-shrink");
function r() { t._reset(), e() }
return n.appendChild(Tt()), i.appendChild(Tt()), t.appendChild(n), t.appendChild(i), t._reset = function() { n.scrollLeft = 1e6, n.scrollTop = 1e6, i.scrollLeft = 1e6, i.scrollTop = 1e6 }, St(n, "scroll", r.bind(n, "expand")), St(i, "scroll", r.bind(i, "shrink")), t
}(function(e, t) {
var n = !1,
i = [];
return function() { i = Array.prototype.slice.call(arguments), t = t || this, n || (n = !0, W.requestAnimFrame.call(window, function() { n = !1, e.apply(t, i) })) }
}(function() {
if (a.resizer) {
var e = r.options.maintainAspectRatio && n.parentNode,
t = e ? e.clientWidth : 0;
i(kt("resize", r)), e && e.clientWidth < t && r.canvas && i(kt("resize", r))
}
}));
! function(t, n) {
var e = t[pt] || (t[pt] = {}),
i = e.renderProxy = function(e) { e.animationName === bt && n() };
W.each(xt, function(e) { St(t, e, i) }), e.reflow = !!t.offsetParent, t.classList.add(yt)
}(n, function() {
if (a.resizer) {
var e = n.parentNode;
e && e !== t.parentNode && e.insertBefore(t, e.firstChild), t._reset()
}
})
}
function At(e) {
var t = e[pt] || {},
n = t.resizer;
delete t.resizer,
function(t) {
var e = t[pt] || {},
n = e.renderProxy;
n && (W.each(xt, function(e) { Ct(t, e, n) }), delete e.renderProxy), t.classList.remove(yt)
}(e), n && n.parentNode && n.parentNode.removeChild(n)
}
var Et = {
disableCSSInjection: !1,
_enabled: "undefined" != typeof window && "undefined" != typeof document,
_ensureLoaded: function(e) {
if (!this.disableCSSInjection) {
var t = e.getRootNode ? e.getRootNode() : document;
! function(e, t) {
var n = e[pt] || (e[pt] = {});
if (!n.containsStyles) {
n.containsStyles = !0, t = "/* Chart.js */\n" + t;
var i = document.createElement("style");
i.setAttribute("type", "text/css"), i.appendChild(document.createTextNode(t)), e.appendChild(i)
}
}(t.host ? t : document.head, gt)
}
},
acquireContext: function(e, t) {
"string" == typeof e ? e = document.getElementById(e) : e.length && (e = e[0]), e && e.canvas && (e = e.canvas);
var n = e && e.getContext && e.getContext("2d");
return n && n.canvas === e ? (this._ensureLoaded(e), function(e, t) {
var n = e.style,
i = e.getAttribute("height"),
r = e.getAttribute("width");
if (e[pt] = { initial: { height: i, width: r, style: { display: n.display, height: n.height, width: n.width } } }, n.display = n.display || "block", null === r || "" === r) {
var a = wt(e, "width");
void 0 !== a && (e.width = a)
}
if (null === i || "" === i)
if ("" === e.style.height) e.height = e.width / (t.options.aspectRatio || 2);
else {
var o = wt(e, "height");
void 0 !== a && (e.height = o)
}
}(e, t), n) : null
},
releaseContext: function(e) {
var n = e.canvas;
if (n[pt]) {
var i = n[pt].initial;
["height", "width"].forEach(function(e) {
var t = i[e];
W.isNullOrUndef(t) ? n.removeAttribute(e) : n.setAttribute(e, t)
}), W.each(i.style || {}, function(e, t) { n.style[t] = e }), n.width = n.width, delete n[pt]
}
},
addEventListener: function(t, e, n) {
var i = t.canvas;
if ("resize" !== e) {
var r = n[pt] || (n[pt] = {});
St(i, e, (r.proxies || (r.proxies = {}))[t.id + "_" + e] = function(e) {
n(function(e, t) {
var n = Mt[e.type] || e.type,
i = W.getRelativePosition(e, t);
return kt(n, t, i.x, i.y, e)
}(e, t))
})
} else Lt(i, n, t)
},
removeEventListener: function(e, t, n) {
var i = e.canvas;
if ("resize" !== t) {
var r = ((n[pt] || {}).proxies || {})[e.id + "_" + t];
r && Ct(i, t, r)
} else At(i)
}
};
W.addEvent = St, W.removeEvent = Ct;
var Ot = Et._enabled ? Et : { acquireContext: function(e) { return e && e.canvas && (e = e.canvas), e && e.getContext("2d") || null } },
Pt = W.extend({ initialize: function() {}, acquireContext: function() {}, releaseContext: function() {}, addEventListener: function() {}, removeEventListener: function() {} }, Ot);
B._set("global", { plugins: {} });
var Dt = {
_plugins: [],
_cacheId: 0,
register: function(e) {
var t = this._plugins;
[].concat(e).forEach(function(e) {-1 === t.indexOf(e) && t.push(e) }), this._cacheId++
},
unregister: function(e) {
var n = this._plugins;
[].concat(e).forEach(function(e) { var t = n.indexOf(e); - 1 !== t && n.splice(t, 1) }), this._cacheId++
},
clear: function() { this._plugins = [], this._cacheId++ },
count: function() { return this._plugins.length },
getAll: function() { return this._plugins },
notify: function(e, t, n) {
var i, r, a, o, s, l = this.descriptors(e),
c = l.length;
for (i = 0; i < c; ++i)
if ("function" == typeof(s = (a = (r = l[i]).plugin)[t]) && ((o = [e].concat(n || [])).push(r.options), !1 === s.apply(a, o))) return !1;
return !0
},
descriptors: function(e) {
var t = e.$plugins || (e.$plugins = {});
if (t.id === this._cacheId) return t.descriptors;
var i = [],
r = [],
n = e && e.config || {},
a = n.options && n.options.plugins || {};
return this._plugins.concat(n.plugins || []).forEach(function(e) {
if (-1 === i.indexOf(e)) {
var t = e.id,
n = a[t];
!1 !== n && (!0 === n && (n = W.clone(B.global.plugins[t])), i.push(e), r.push({ plugin: e, options: n || {} }))
}
}), t.descriptors = r, t.id = this._cacheId, r
},
_invalidate: function(e) { delete e.$plugins }
},
Vt = { constructors: {}, defaults: {}, registerScaleType: function(e, t, n) { this.constructors[e] = t, this.defaults[e] = W.clone(n) }, getScaleConstructor: function(e) { return this.constructors.hasOwnProperty(e) ? this.constructors[e] : void 0 }, getScaleDefaults: function(e) { return this.defaults.hasOwnProperty(e) ? W.merge({}, [B.scale, this.defaults[e]]) : {} }, updateScaleDefaults: function(e, t) { this.defaults.hasOwnProperty(e) && (this.defaults[e] = W.extend(this.defaults[e], t)) }, addScalesToLayout: function(t) { W.each(t.scales, function(e) { e.fullWidth = e.options.fullWidth, e.position = e.options.position, e.weight = e.options.weight, ft.addBox(t, e) }) } },
Rt = W.valueOrDefault,
zt = W.rtl.getRtlAdapter;
B._set("global", {
tooltips: {
enabled: !0,
custom: null,
mode: "nearest",
position: "average",
intersect: !0,
backgroundColor: "rgba(0,0,0,0.8)",
titleFontStyle: "bold",
titleSpacing: 2,
titleMarginBottom: 6,
titleFontColor: "#fff",
titleAlign: "left",
bodySpacing: 2,
bodyFontColor: "#fff",
bodyAlign: "left",
footerFontStyle: "bold",
footerSpacing: 2,
footerMarginTop: 6,
footerFontColor: "#fff",
footerAlign: "left",
yPadding: 6,
xPadding: 6,
caretPadding: 2,
caretSize: 5,
cornerRadius: 6,
multiKeyBackground: "#fff",
displayColors: !0,
borderColor: "rgba(0,0,0,0)",
borderWidth: 0,
callbacks: {
beforeTitle: W.noop,
title: function(e, t) {
var n = "",
i = t.labels,
r = i ? i.length : 0;
if (0 < e.length) {
var a = e[0];
a.label ? n = a.label : a.xLabel ? n = a.xLabel : 0 < r && a.index < r && (n = i[a.index])
}
return n
},
afterTitle: W.noop,
beforeBody: W.noop,
beforeLabel: W.noop,
label: function(e, t) { var n = t.datasets[e.datasetIndex].label || ""; return n && (n += ": "), W.isNullOrUndef(e.value) ? n += e.yLabel : n += e.value, n },
labelColor: function(e, t) { var n = t.getDatasetMeta(e.datasetIndex).data[e.index]._view; return { borderColor: n.borderColor, backgroundColor: n.backgroundColor } },
labelTextColor: function() { return this._options.bodyFontColor },
afterLabel: W.noop,
afterBody: W.noop,
beforeFooter: W.noop,
footer: W.noop,
afterFooter: W.noop
}
}
});
var Bt = {
average: function(e) {
if (!e.length) return !1;
var t, n, i = 0,
r = 0,
a = 0;
for (t = 0, n = e.length; t < n; ++t) {
var o = e[t];
if (o && o.hasValue()) {
var s = o.tooltipPosition();
i += s.x, r += s.y, ++a
}
}
return { x: i / a, y: r / a }
},
nearest: function(e, t) {
var n, i, r, a = t.x,
o = t.y,
s = Number.POSITIVE_INFINITY;
for (n = 0, i = e.length; n < i; ++n) {
var l = e[n];
if (l && l.hasValue()) {
var c = l.getCenterPoint(),
d = W.distanceBetweenPoints(t, c);
d < s && (s = d, r = l)
}
}
if (r) {
var u = r.tooltipPosition();
a = u.x, o = u.y
}
return { x: a, y: o }
}
};
function Ht(e, t) { return t && (W.isArray(t) ? Array.prototype.push.apply(e, t) : e.push(t)), e }
function Nt(e) { return ("string" == typeof e || e instanceof String) && -1 < e.indexOf("\n") ? e.split("\n") : e }
function It(e) { var t = B.global; return { xPadding: e.xPadding, yPadding: e.yPadding, xAlign: e.xAlign, yAlign: e.yAlign, rtl: e.rtl, textDirection: e.textDirection, bodyFontColor: e.bodyFontColor, _bodyFontFamily: Rt(e.bodyFontFamily, t.defaultFontFamily), _bodyFontStyle: Rt(e.bodyFontStyle, t.defaultFontStyle), _bodyAlign: e.bodyAlign, bodyFontSize: Rt(e.bodyFontSize, t.defaultFontSize), bodySpacing: e.bodySpacing, titleFontColor: e.titleFontColor, _titleFontFamily: Rt(e.titleFontFamily, t.defaultFontFamily), _titleFontStyle: Rt(e.titleFontStyle, t.defaultFontStyle), titleFontSize: Rt(e.titleFontSize, t.defaultFontSize), _titleAlign: e.titleAlign, titleSpacing: e.titleSpacing, titleMarginBottom: e.titleMarginBottom, footerFontColor: e.footerFontColor, _footerFontFamily: Rt(e.footerFontFamily, t.defaultFontFamily), _footerFontStyle: Rt(e.footerFontStyle, t.defaultFontStyle), footerFontSize: Rt(e.footerFontSize, t.defaultFontSize), _footerAlign: e.footerAlign, footerSpacing: e.footerSpacing, footerMarginTop: e.footerMarginTop, caretSize: e.caretSize, cornerRadius: e.cornerRadius, backgroundColor: e.backgroundColor, opacity: 0, legendColorBackground: e.multiKeyBackground, displayColors: e.displayColors, borderColor: e.borderColor, borderWidth: e.borderWidth } }
function Ft(e, t) { return "center" === t ? e.x + e.width / 2 : "right" === t ? e.x + e.width - e.xPadding : e.x + e.xPadding }
function Wt(e) { return Ht([], Nt(e)) }
var jt = $.extend({
initialize: function() { this._model = It(this._options), this._lastActive = [] },
getTitle: function() {
var e = this._options.callbacks,
t = e.beforeTitle.apply(this, arguments),
n = e.title.apply(this, arguments),
i = e.afterTitle.apply(this, arguments),
r = [];
return r = Ht(r = Ht(r = Ht(r, Nt(t)), Nt(n)), Nt(i))
},
getBeforeBody: function() { return Wt(this._options.callbacks.beforeBody.apply(this, arguments)) },
getBody: function(e, n) {
var i = this,
r = i._options.callbacks,
a = [];
return W.each(e, function(e) {
var t = { before: [], lines: [], after: [] };
Ht(t.before, Nt(r.beforeLabel.call(i, e, n))), Ht(t.lines, r.label.call(i, e, n)), Ht(t.after, Nt(r.afterLabel.call(i, e, n))), a.push(t)
}), a
},
getAfterBody: function() { return Wt(this._options.callbacks.afterBody.apply(this, arguments)) },
getFooter: function() {
var e = this._options.callbacks,
t = e.beforeFooter.apply(this, arguments),
n = e.footer.apply(this, arguments),
i = e.afterFooter.apply(this, arguments),
r = [];
return r = Ht(r = Ht(r = Ht(r, Nt(t)), Nt(n)), Nt(i))
},
update: function(e) {
var t, n, i, r, a, o, s, l, c, d, u = this,
h = u._options,
f = u._model,
g = u._model = It(h),
p = u._active,
v = u._data,
m = { xAlign: f.xAlign, yAlign: f.yAlign },
y = { x: f.x, y: f.y },
b = { width: f.width, height: f.height },
x = { x: f.caretX, y: f.caretY };
if (p.length) {
g.opacity = 1;
var M = [],
w = [];
x = Bt[h.position].call(u, p, u._eventPosition);
var _ = [];
for (t = 0, n = p.length; t < n; ++t) _.push((i = p[t], d = c = l = a = r = void 0, r = i._xScale, a = i._yScale || i._scale, o = i._index, s = i._datasetIndex, l = i._chart.getDatasetMeta(s).controller, c = l._getIndexScale(), d = l._getValueScale(), { xLabel: r ? r.getLabelForIndex(o, s) : "", yLabel: a ? a.getLabelForIndex(o, s) : "", label: c ? "" + c.getLabelForIndex(o, s) : "", value: d ? "" + d.getLabelForIndex(o, s) : "", index: o, datasetIndex: s, x: i._model.x, y: i._model.y }));
h.filter && (_ = _.filter(function(e) { return h.filter(e, v) })), h.itemSort && (_ = _.sort(function(e, t) { return h.itemSort(e, t, v) })), W.each(_, function(e) { M.push(h.callbacks.labelColor.call(u, e, u._chart)), w.push(h.callbacks.labelTextColor.call(u, e, u._chart)) }), g.title = u.getTitle(_, v), g.beforeBody = u.getBeforeBody(_, v), g.body = u.getBody(_, v), g.afterBody = u.getAfterBody(_, v), g.footer = u.getFooter(_, v), g.x = x.x, g.y = x.y, g.caretPadding = h.caretPadding, g.labelColors = M, g.labelTextColors = w, g.dataPoints = _, y = function(e, t, n, i) {
var r = e.x,
a = e.y,
o = e.caretSize,
s = e.caretPadding,
l = e.cornerRadius,
c = n.xAlign,
d = n.yAlign,
u = o + s,
h = l + s;
return "right" === c ? r -= t.width : "center" === c && ((r -= t.width / 2) + t.width > i.width && (r = i.width - t.width), r < 0 && (r = 0)), "top" === d ? a += u : a -= "bottom" === d ? t.height + u : t.height / 2, "center" === d ? "left" === c ? r += u : "right" === c && (r -= u) : "left" === c ? r -= h : "right" === c && (r += h), { x: r, y: a }
}(g, b = function(e, t) {
var n = e._chart.ctx,
i = 2 * t.yPadding,
r = 0,
a = t.body,
o = a.reduce(function(e, t) { return e + t.before.length + t.lines.length + t.after.length }, 0);
o += t.beforeBody.length + t.afterBody.length;
var s = t.title.length,
l = t.footer.length,
c = t.titleFontSize,
d = t.bodyFontSize,
u = t.footerFontSize;
function h(e) { r = Math.max(r, n.measureText(e).width + f) }
i += s * c, i += s ? (s - 1) * t.titleSpacing : 0, i += s ? t.titleMarginBottom : 0, i += o * d, i += o ? (o - 1) * t.bodySpacing : 0, i += l ? t.footerMarginTop : 0, i += l * u, i += l ? (l - 1) * t.footerSpacing : 0;
var f = 0;
return n.font = W.fontString(c, t._titleFontStyle, t._titleFontFamily), W.each(t.title, h), n.font = W.fontString(d, t._bodyFontStyle, t._bodyFontFamily), W.each(t.beforeBody.concat(t.afterBody), h), f = t.displayColors ? d + 2 : 0, W.each(a, function(e) { W.each(e.before, h), W.each(e.lines, h), W.each(e.after, h) }), f = 0, n.font = W.fontString(u, t._footerFontStyle, t._footerFontFamily), W.each(t.footer, h), { width: r += 2 * t.xPadding, height: i }
}(this, g), m = function(e, t) {
var n, i, r, a, o, s = e._model,
l = e._chart,
c = e._chart.chartArea,
d = "center",
u = "center";
s.y < t.height ? u = "top" : s.y > l.height - t.height && (u = "bottom");
var h = (c.left + c.right) / 2,
f = (c.top + c.bottom) / 2;
i = "center" === u ? (n = function(e) { return e <= h }, function(e) { return h < e }) : (n = function(e) { return e <= t.width / 2 }, function(e) { return e >= l.width - t.width / 2 }), r = function(e) { return e + t.width + s.caretSize + s.caretPadding > l.width }, a = function(e) { return e - t.width - s.caretSize - s.caretPadding < 0 }, o = function(e) { return e <= f ? "top" : "bottom" }, n(s.x) ? (d = "left", r(s.x) && (d = "center", u = o(s.y))) : i(s.x) && (d = "right", a(s.x) && (d = "center", u = o(s.y)));
var g = e._options;
return { xAlign: g.xAlign ? g.xAlign : d, yAlign: g.yAlign ? g.yAlign : u }
}(this, b), u._chart)
} else g.opacity = 0;
return g.xAlign = m.xAlign, g.yAlign = m.yAlign, g.x = y.x, g.y = y.y, g.width = b.width, g.height = b.height, g.caretX = x.x, g.caretY = x.y, u._model = g, e && h.custom && h.custom.call(u, g), u
},
drawCaret: function(e, t) {
var n = this._chart.ctx,
i = this._view,
r = this.getCaretPosition(e, t, i);
n.lineTo(r.x1, r.y1), n.lineTo(r.x2, r.y2), n.lineTo(r.x3, r.y3)
},
getCaretPosition: function(e, t, n) {
var i, r, a, o, s, l, c = n.caretSize,
d = n.cornerRadius,
u = n.xAlign,
h = n.yAlign,
f = e.x,
g = e.y,
p = t.width,
v = t.height;
if ("center" === h) s = g + v / 2, l = "left" === u ? (r = (i = f) - c, a = i, o = s + c, s - c) : (r = (i = f + p) + c, a = i, o = s - c, s + c);
else if (a = (i = "left" === u ? (r = f + d + c) - c : "right" === u ? (r = f + p - d - c) - c : (r = n.caretX) - c, r + c), "top" === h) s = (o = g) - c, l = o;
else {
s = (o = g + v) + c, l = o;
var m = a;
a = i, i = m
}
return { x1: i, x2: r, x3: a, y1: o, y2: s, y3: l }
},
drawTitle: function(e, t, n) {
var i, r, a, o = t.title,
s = o.length;
if (s) { var l = zt(t.rtl, t.x, t.width); for (e.x = Ft(t, t._titleAlign), n.textAlign = l.textAlign(t._titleAlign), n.textBaseline = "middle", i = t.titleFontSize, r = t.titleSpacing, n.fillStyle = t.titleFontColor, n.font = W.fontString(i, t._titleFontStyle, t._titleFontFamily), a = 0; a < s; ++a) n.fillText(o[a], l.x(e.x), e.y + i / 2), e.y += i + r, a + 1 === s && (e.y += t.titleMarginBottom - r) }
},
drawBody: function(t, e, n) {
function i(e) { n.fillText(e, b.x(t.x + m), t.y + h / 2), t.y += h + f }
var r, a, o, s, l, c, d, u, h = e.bodyFontSize,
f = e.bodySpacing,
g = e._bodyAlign,
p = e.body,
v = e.displayColors,
m = 0,
y = v ? Ft(e, "left") : 0,
b = zt(e.rtl, e.x, e.width),
x = b.textAlign(g);
for (n.textAlign = g, n.textBaseline = "middle", n.font = W.fontString(h, e._bodyFontStyle, e._bodyFontFamily), t.x = Ft(e, x), n.fillStyle = e.bodyFontColor, W.each(e.beforeBody, i), m = v && "right" !== x ? "center" === g ? h / 2 + 1 : h + 2 : 0, l = 0, d = p.length; l < d; ++l) {
for (r = p[l], a = e.labelTextColors[l], o = e.labelColors[l], n.fillStyle = a, W.each(r.before, i), c = 0, u = (s = r.lines).length; c < u; ++c) {
if (v) {
var M = b.x(y);
n.fillStyle = e.legendColorBackground, n.fillRect(b.leftForLtr(M, h), t.y, h, h), n.lineWidth = 1, n.strokeStyle = o.borderColor, n.strokeRect(b.leftForLtr(M, h), t.y, h, h), n.fillStyle = o.backgroundColor, n.fillRect(b.leftForLtr(b.xPlus(M, 1), h - 2), t.y + 1, h - 2, h - 2), n.fillStyle = a
}
i(s[c])
}
W.each(r.after, i)
}
m = 0, W.each(e.afterBody, i), t.y -= f
},
drawFooter: function(e, t, n) {
var i, r, a = t.footer,
o = a.length;
if (o) { var s = zt(t.rtl, t.x, t.width); for (e.x = Ft(t, t._footerAlign), e.y += t.footerMarginTop, n.textAlign = s.textAlign(t._footerAlign), n.textBaseline = "middle", i = t.footerFontSize, n.fillStyle = t.footerFontColor, n.font = W.fontString(i, t._footerFontStyle, t._footerFontFamily), r = 0; r < o; ++r) n.fillText(a[r], s.x(e.x), e.y + i / 2), e.y += i + t.footerSpacing }
},
drawBackground: function(e, t, n, i) {
n.fillStyle = t.backgroundColor, n.strokeStyle = t.borderColor, n.lineWidth = t.borderWidth;
var r = t.xAlign,
a = t.yAlign,
o = e.x,
s = e.y,
l = i.width,
c = i.height,
d = t.cornerRadius;
n.beginPath(), n.moveTo(o + d, s), "top" === a && this.drawCaret(e, i), n.lineTo(o + l - d, s), n.quadraticCurveTo(o + l, s, o + l, s + d), "center" === a && "right" === r && this.drawCaret(e, i), n.lineTo(o + l, s + c - d), n.quadraticCurveTo(o + l, s + c, o + l - d, s + c), "bottom" === a && this.drawCaret(e, i), n.lineTo(o + d, s + c), n.quadraticCurveTo(o, s + c, o, s + c - d), "center" === a && "left" === r && this.drawCaret(e, i), n.lineTo(o, s + d), n.quadraticCurveTo(o, s, o + d, s), n.closePath(), n.fill(), 0 < t.borderWidth && n.stroke()
},
draw: function() {
var e = this._chart.ctx,
t = this._view;
if (0 !== t.opacity) {
var n = { width: t.width, height: t.height },
i = { x: t.x, y: t.y },
r = Math.abs(t.opacity < .001) ? 0 : t.opacity,
a = t.title.length || t.beforeBody.length || t.body.length || t.afterBody.length || t.footer.length;
this._options.enabled && a && (e.save(), e.globalAlpha = r, this.drawBackground(i, t, e, n), i.y += t.yPadding, W.rtl.overrideTextDirection(e, t.textDirection), this.drawTitle(i, t, e), this.drawBody(i, t, e), this.drawFooter(i, t, e), W.rtl.restoreTextDirection(e, t.textDirection), e.restore())
}
},
handleEvent: function(e) {
var t, n = this,
i = n._options;
return n._lastActive = n._lastActive || [], "mouseout" === e.type ? n._active = [] : (n._active = n._chart.getElementsAtEventForMode(e, i.mode, i), i.reverse && n._active.reverse()), (t = !W.arrayEquals(n._active, n._lastActive)) && (n._lastActive = n._active, (i.enabled || i.custom) && (n._eventPosition = { x: e.x, y: e.y }, n.update(!0), n.pivot())), t
}
}),
Yt = Bt,
Gt = jt;
Gt.positioners = Yt;
var Ut = W.valueOrDefault;
function qt() { return W.merge({}, [].slice.call(arguments), { merger: function(e, t, n, i) { if ("xAxes" === e || "yAxes" === e) { var r, a, o, s = n[e].length; for (t[e] || (t[e] = []), r = 0; r < s; ++r) o = n[e][r], a = Ut(o.type, "xAxes" === e ? "category" : "linear"), r >= t[e].length && t[e].push({}), !t[e][r].type || o.type && o.type !== t[e][r].type ? W.merge(t[e][r], [Vt.getScaleDefaults(a), o]) : W.merge(t[e][r], o) } else W._merger(e, t, n, i) } }) }
function Xt() {
return W.merge({}, [].slice.call(arguments), {
merger: function(e, t, n, i) {
var r = t[e] || {},
a = n[e];
"scales" === e ? t[e] = qt(r, a) : "scale" === e ? t[e] = W.merge(r, [Vt.getScaleDefaults(a.type), a]) : W._merger(e, t, n, i)
}
})
}
function $t(e, t, n) { for (var i, r = function(e) { return e.id === i }; i = t + n++, 0 <= W.findIndex(e, r);); return i }
function Zt(e) { return "top" === e || "bottom" === e }
function Kt(n, i) { return function(e, t) { return e[n] === t[n] ? e[i] - t[i] : e[n] - t[n] } }
B._set("global", { elements: {}, events: ["mousemove", "mouseout", "click", "touchstart", "touchmove"], hover: { onHover: null, mode: "nearest", intersect: !0, animationDuration: 400 }, onClick: null, maintainAspectRatio: !0, responsive: !0, responsiveAnimationDuration: 0 });
function Jt(e, t) { return this.construct(e, t), this }
W.extend(Jt.prototype, {
construct: function(e, t) {
var n = this;
t = function(e) { var t = (e = e || {}).data = e.data || {}; return t.datasets = t.datasets || [], t.labels = t.labels || [], e.options = Xt(B.global, B[e.type], e.options || {}), e }(t);
var i = Pt.acquireContext(e, t),
r = i && i.canvas,
a = r && r.height,
o = r && r.width;
n.id = W.uid(), n.ctx = i, n.canvas = r, n.config = t, n.width = o, n.height = a, n.aspectRatio = a ? o / a : null, n.options = t.options, n._bufferedRender = !1, n._layers = [], (n.chart = n).controller = n, Jt.instances[n.id] = n, Object.defineProperty(n, "data", { get: function() { return n.config.data }, set: function(e) { n.config.data = e } }), i && r ? (n.initialize(), n.update()) : console.error("Failed to create chart: can't acquire context from the given item")
},
initialize: function() { var e = this; return Dt.notify(e, "beforeInit"), W.retinaScale(e, e.options.devicePixelRatio), e.bindEvents(), e.options.responsive && e.resize(!0), e.initToolTip(), Dt.notify(e, "afterInit"), e },
clear: function() { return W.canvas.clear(this), this },
stop: function() { return J.cancelAnimation(this), this },
resize: function(e) {
var t = this,
n = t.options,
i = t.canvas,
r = n.maintainAspectRatio && t.aspectRatio || null,
a = Math.max(0, Math.floor(W.getMaximumWidth(i))),
o = Math.max(0, Math.floor(r ? a / r : W.getMaximumHeight(i)));
if ((t.width !== a || t.height !== o) && (i.width = t.width = a, i.height = t.height = o, i.style.width = a + "px", i.style.height = o + "px", W.retinaScale(t, n.devicePixelRatio), !e)) {
var s = { width: a, height: o };
Dt.notify(t, "resize", [s]), n.onResize && n.onResize(t, s), t.stop(), t.update({ duration: n.responsiveAnimationDuration })
}
},
ensureScalesHaveIDs: function() {
var e = this.options,
n = e.scales || {},
t = e.scale;
W.each(n.xAxes, function(e, t) { e.id || (e.id = $t(n.xAxes, "x-axis-", t)) }), W.each(n.yAxes, function(e, t) { e.id || (e.id = $t(n.yAxes, "y-axis-", t)) }), t && (t.id = t.id || "scale")
},
buildOrUpdateScales: function() {
var o = this,
e = o.options,
s = o.scales || {},
t = [],
l = Object.keys(s).reduce(function(e, t) { return e[t] = !1, e }, {});
e.scales && (t = t.concat((e.scales.xAxes || []).map(function(e) { return { options: e, dtype: "category", dposition: "bottom" } }), (e.scales.yAxes || []).map(function(e) { return { options: e, dtype: "linear", dposition: "left" } }))), e.scale && t.push({ options: e.scale, dtype: "radialLinear", isDefault: !0, dposition: "chartArea" }), W.each(t, function(e) {
var t = e.options,
n = t.id,
i = Ut(t.type, e.dtype);
Zt(t.position) !== Zt(e.dposition) && (t.position = e.dposition), l[n] = !0;
var r = null;
if (n in s && s[n].type === i)(r = s[n]).options = t, r.ctx = o.ctx, r.chart = o;
else {
var a = Vt.getScaleConstructor(i);
if (!a) return;
r = new a({ id: n, type: i, options: t, ctx: o.ctx, chart: o }), s[r.id] = r
}
r.mergeTicksOptions(), e.isDefault && (o.scale = r)
}), W.each(l, function(e, t) { e || delete s[t] }), o.scales = s, Vt.addScalesToLayout(this)
},
buildOrUpdateControllers: function() {
var e, t, n = this,
i = [],
r = n.data.datasets;
for (e = 0, t = r.length; e < t; e++) {
var a = r[e],
o = n.getDatasetMeta(e),
s = a.type || n.config.type;
if (o.type && o.type !== s && (n.destroyDatasetMeta(e), o = n.getDatasetMeta(e)), o.type = s, o.order = a.order || 0, o.index = e, o.controller) o.controller.updateIndex(e), o.controller.linkScales();
else {
var l = Ze[o.type];
if (void 0 === l) throw new Error('"' + o.type + '" is not a chart type.');
o.controller = new l(n, e), i.push(o.controller)
}
}
return i
},
resetElements: function() {
var n = this;
W.each(n.data.datasets, function(e, t) { n.getDatasetMeta(t).controller.reset() }, n)
},
reset: function() { this.resetElements(), this.tooltip.initialize() },
update: function(e) {
var t, n, i = this;
if (e && "object" == typeof e || (e = { duration: e, lazy: arguments[1] }), function(t) {
var e = t.options;
W.each(t.scales, function(e) { ft.removeBox(t, e) }), e = Xt(B.global, B[t.config.type], e), t.options = t.config.options = e, t.ensureScalesHaveIDs(), t.buildOrUpdateScales(), t.tooltip._options = e.tooltips, t.tooltip.initialize()
}(i), Dt._invalidate(i), !1 !== Dt.notify(i, "beforeUpdate")) {
i.tooltip._data = i.data;
var r = i.buildOrUpdateControllers();
for (t = 0, n = i.data.datasets.length; t < n; t++) i.getDatasetMeta(t).controller.buildOrUpdateElements();
i.updateLayout(), i.options.animation && i.options.animation.duration && W.each(r, function(e) { e.reset() }), i.updateDatasets(), i.tooltip.initialize(), i.lastActive = [], Dt.notify(i, "afterUpdate"), i._layers.sort(Kt("z", "_idx")), i._bufferedRender ? i._bufferedRequest = { duration: e.duration, easing: e.easing, lazy: e.lazy } : i.render(e)
}
},
updateLayout: function() { var t = this;!1 !== Dt.notify(t, "beforeLayout") && (ft.update(this, this.width, this.height), t._layers = [], W.each(t.boxes, function(e) { e._configure && e._configure(), t._layers.push.apply(t._layers, e._layers()) }, t), t._layers.forEach(function(e, t) { e._idx = t }), Dt.notify(t, "afterScaleUpdate"), Dt.notify(t, "afterLayout")) },
updateDatasets: function() {
if (!1 !== Dt.notify(this, "beforeDatasetsUpdate")) {
for (var e = 0, t = this.data.datasets.length; e < t; ++e) this.updateDataset(e);
Dt.notify(this, "afterDatasetsUpdate")
}
},
updateDataset: function(e) {
var t = this.getDatasetMeta(e),
n = { meta: t, index: e };
!1 !== Dt.notify(this, "beforeDatasetUpdate", [n]) && (t.controller._update(), Dt.notify(this, "afterDatasetUpdate", [n]))
},
render: function(e) {
var t = this;
e && "object" == typeof e || (e = { duration: e, lazy: arguments[1] });
var n = t.options.animation,
i = Ut(e.duration, n && n.duration),
r = e.lazy;
if (!1 !== Dt.notify(t, "beforeRender")) {
var a = function(e) { Dt.notify(t, "afterRender"), W.callback(n && n.onComplete, [e], t) };
if (n && i) {
var o = new K({
numSteps: i / 16.66,
easing: e.easing || n.easing,
render: function(e, t) {
var n = W.easing.effects[t.easing],
i = t.currentStep,
r = i / t.numSteps;
e.draw(n(r), r, i)
},
onAnimationProgress: n.onProgress,
onAnimationComplete: a
});
J.addAnimation(t, o, i, r)
} else t.draw(), a(new K({ numSteps: 0, chart: t }));
return t
}
},
draw: function(e) {
var t, n, i = this;
if (i.clear(), W.isNullOrUndef(e) && (e = 1), i.transition(e), !(i.width <= 0 || i.height <= 0) && !1 !== Dt.notify(i, "beforeDraw", [e])) {
for (n = i._layers, t = 0; t < n.length && n[t].z <= 0; ++t) n[t].draw(i.chartArea);
for (i.drawDatasets(e); t < n.length; ++t) n[t].draw(i.chartArea);
i._drawTooltip(e), Dt.notify(i, "afterDraw", [e])
}
},
transition: function(e) {
for (var t = 0, n = (this.data.datasets || []).length; t < n; ++t) this.isDatasetVisible(t) && this.getDatasetMeta(t).controller.transition(e);
this.tooltip.transition(e)
},
_getSortedDatasetMetas: function(e) { var t, n, i = []; for (t = 0, n = (this.data.datasets || []).length; t < n; ++t) e && !this.isDatasetVisible(t) || i.push(this.getDatasetMeta(t)); return i.sort(Kt("order", "index")), i },
_getSortedVisibleDatasetMetas: function() { return this._getSortedDatasetMetas(!0) },
drawDatasets: function(e) {
var t, n;
if (!1 !== Dt.notify(this, "beforeDatasetsDraw", [e])) {
for (n = (t = this._getSortedVisibleDatasetMetas()).length - 1; 0 <= n; --n) this.drawDataset(t[n], e);
Dt.notify(this, "afterDatasetsDraw", [e])
}
},
drawDataset: function(e, t) { var n = { meta: e, index: e.index, easingValue: t };!1 !== Dt.notify(this, "beforeDatasetDraw", [n]) && (e.controller.draw(t), Dt.notify(this, "afterDatasetDraw", [n])) },
_drawTooltip: function(e) {
var t = this.tooltip,
n = { tooltip: t, easingValue: e };
!1 !== Dt.notify(this, "beforeTooltipDraw", [n]) && (t.draw(), Dt.notify(this, "afterTooltipDraw", [n]))
},
getElementAtEvent: function(e) { return it.modes.single(this, e) },
getElementsAtEvent: function(e) { return it.modes.label(this, e, { intersect: !0 }) },
getElementsAtXAxis: function(e) { return it.modes["x-axis"](this, e, { intersect: !0 }) },
getElementsAtEventForMode: function(e, t, n) { var i = it.modes[t]; return "function" == typeof i ? i(this, e, n) : [] },
getDatasetAtEvent: function(e) { return it.modes.dataset(this, e, { intersect: !0 }) },
getDatasetMeta: function(e) {
var t = this.data.datasets[e];
t._meta || (t._meta = {});
var n = t._meta[this.id];
return n = n || (t._meta[this.id] = { type: null, data: [], dataset: null, controller: null, hidden: null, xAxisID: null, yAxisID: null, order: t.order || 0, index: e })
},
getVisibleDatasetCount: function() { for (var e = 0, t = 0, n = this.data.datasets.length; t < n; ++t) this.isDatasetVisible(t) && e++; return e },
isDatasetVisible: function(e) { var t = this.getDatasetMeta(e); return "boolean" == typeof t.hidden ? !t.hidden : !this.data.datasets[e].hidden },
generateLegend: function() { return this.options.legendCallback(this) },
destroyDatasetMeta: function(e) {
var t = this.id,
n = this.data.datasets[e],
i = n._meta && n._meta[t];
i && (i.controller.destroy(), delete n._meta[t])
},
destroy: function() {
var e, t, n = this,
i = n.canvas;
for (n.stop(), e = 0, t = n.data.datasets.length; e < t; ++e) n.destroyDatasetMeta(e);
i && (n.unbindEvents(), W.canvas.clear(n), Pt.releaseContext(n.ctx), n.canvas = null, n.ctx = null), Dt.notify(n, "destroy"), delete Jt.instances[n.id]
},
toBase64Image: function() { return this.canvas.toDataURL.apply(this.canvas, arguments) },
initToolTip: function() {
var e = this;
e.tooltip = new Gt({ _chart: e, _chartInstance: e, _data: e.data, _options: e.options.tooltips }, e)
},
bindEvents: function() {
var t = this,
n = t._listeners = {},
i = function() { t.eventHandler.apply(t, arguments) };
W.each(t.options.events, function(e) { Pt.addEventListener(t, e, i), n[e] = i }), t.options.responsive && (i = function() { t.resize() }, Pt.addEventListener(t, "resize", i), n.resize = i)
},
unbindEvents: function() {
var n = this,
e = n._listeners;
e && (delete n._listeners, W.each(e, function(e, t) { Pt.removeEventListener(n, t, e) }))
},
updateHoverStyle: function(e, t, n) { var i, r, a, o = n ? "set" : "remove"; for (r = 0, a = e.length; r < a; ++r)(i = e[r]) && this.getDatasetMeta(i._datasetIndex).controller[o + "HoverStyle"](i); "dataset" === t && this.getDatasetMeta(e[0]._datasetIndex).controller["_" + o + "DatasetHoverStyle"]() },
eventHandler: function(e) {
var t = this,
n = t.tooltip;
if (!1 !== Dt.notify(t, "beforeEvent", [e])) {
t._bufferedRender = !0, t._bufferedRequest = null;
var i = t.handleEvent(e);
n && (i = n._start ? n.handleEvent(e) : i | n.handleEvent(e)), Dt.notify(t, "afterEvent", [e]);
var r = t._bufferedRequest;
return r ? t.render(r) : i && !t.animating && (t.stop(), t.render({ duration: t.options.hover.animationDuration, lazy: !0 })), t._bufferedRender = !1, t._bufferedRequest = null, t
}
},
handleEvent: function(e) {
var t, n = this,
i = n.options || {},
r = i.hover;
return n.lastActive = n.lastActive || [], "mouseout" === e.type ? n.active = [] : n.active = n.getElementsAtEventForMode(e, r.mode, r), W.callback(i.onHover || i.hover.onHover, [e.native, n.active], n), "mouseup" !== e.type && "click" !== e.type || i.onClick && i.onClick.call(n, e.native, n.active), n.lastActive.length && n.updateHoverStyle(n.lastActive, r.mode, !1), n.active.length && r.mode && n.updateHoverStyle(n.active, r.mode, !0), t = !W.arrayEquals(n.active, n.lastActive), n.lastActive = n.active, t
}
}), Jt.instances = {};
var Qt = Jt;
(Jt.Controller = Jt).types = {}, W.configMerge = Xt, W.scaleMerge = qt;
function en() { throw new Error("This method is not implemented: either no adapter can be found or an incomplete integration was provided.") }
function tn(e) { this.options = e || {} }
W.extend(tn.prototype, { formats: en, parse: en, format: en, add: en, diff: en, startOf: en, endOf: en, _create: function(e) { return e } }), tn.override = function(e) { W.extend(tn.prototype, e) };
var nn = { _date: tn },
rn = {
formatters: {
values: function(e) { return W.isArray(e) ? e : "" + e },
linear: function(e, t, n) {
var i = 3 < n.length ? n[2] - n[1] : n[1] - n[0];
1 < Math.abs(i) && e !== Math.floor(e) && (i = e - Math.floor(e));
var r = W.log10(Math.abs(i)),
a = "";
if (0 !== e)
if (Math.max(Math.abs(n[0]), Math.abs(n[n.length - 1])) < 1e-4) {
var o = W.log10(Math.abs(e)),
s = Math.floor(o) - Math.floor(r);
s = Math.max(Math.min(s, 20), 0), a = e.toExponential(s)
} else {
var l = -1 * Math.floor(r);
l = Math.max(Math.min(l, 20), 0), a = e.toFixed(l)
}
else a = "0";
return a
},
logarithmic: function(e, t, n) { var i = e / Math.pow(10, Math.floor(W.log10(e))); return 0 === e ? "0" : 1 == i || 2 == i || 5 == i || 0 === t || t === n.length - 1 ? e.toExponential() : "" }
}
},
an = W.isArray,
on = W.isNullOrUndef,
sn = W.valueOrDefault,
ln = W.valueAtIndexOrDefault;
function cn(e, t, n) {
var i, r = e.getTicks().length,
a = Math.min(t, r - 1),
o = e.getPixelForTick(a),
s = e._startPixel,
l = e._endPixel;
if (!(n && (i = 1 === r ? Math.max(o - s, l - o) : 0 === t ? (e.getPixelForTick(1) - o) / 2 : (o - e.getPixelForTick(a - 1)) / 2, (o += a < t ? i : -i) < s - 1e-6 || l + 1e-6 < o))) return o
}
function dn(e, t, n, i) {
var r, a, o, s, l, c, d, u, h, f, g, p, v, m = n.length,
y = [],
b = [],
x = [];
for (r = 0; r < m; ++r) {
if (s = n[r].label, l = n[r].major ? t.major : t.minor, e.font = c = l.string, d = i[c] = i[c] || { data: {}, gc: [] }, u = l.lineHeight, h = f = 0, on(s) || an(s)) {
if (an(s))
for (a = 0, o = s.length; a < o; ++a) g = s[a], on(g) || an(g) || (h = W.measureText(e, d.data, d.gc, h, g), f += u)
} else h = W.measureText(e, d.data, d.gc, h, s), f = u;
y.push(h), b.push(f), x.push(u / 2)
}
function M(e) { return { width: y[e] || 0, height: b[e] || 0, offset: x[e] || 0 } }
return function(e, r) {
W.each(e, function(e) {
var t, n = e.gc,
i = n.length / 2;
if (r < i) {
for (t = 0; t < i; ++t) delete e.data[n[t]];
n.splice(0, i)
}
})
}(i, m), p = y.indexOf(Math.max.apply(null, y)), v = b.indexOf(Math.max.apply(null, b)), { first: M(0), last: M(m - 1), widest: M(p), highest: M(v) }
}
function un(e) { return e.drawTicks ? e.tickMarkLength : 0 }
function hn(e) { var t, n; return e.display ? (t = W.options._parseFont(e), n = W.options.toPadding(e.padding), t.lineHeight + n.height) : 0 }
function fn(e, t) { return W.extend(W.options._parseFont({ fontFamily: sn(t.fontFamily, e.fontFamily), fontSize: sn(t.fontSize, e.fontSize), fontStyle: sn(t.fontStyle, e.fontStyle), lineHeight: sn(t.lineHeight, e.lineHeight) }), { color: W.options.resolve([t.fontColor, e.fontColor, B.global.defaultFontColor]) }) }
function gn(e) { var t = fn(e, e.minor); return { minor: t, major: e.major.enabled ? fn(e, e.major) : t } }
function pn(e) { var t, n, i, r = []; for (n = 0, i = e.length; n < i; ++n) void 0 !== (t = e[n])._index && r.push(t); return r }
function vn(e, t, n, i) {
var r, a, o, s, l = sn(n, 0),
c = Math.min(sn(i, e.length), e.length),
d = 0;
for (t = Math.ceil(t), i && (t = (r = i - n) / Math.floor(r / t)), s = l; s < 0;) d++, s = Math.round(l + d * t);
for (a = Math.max(l, 0); a < c; a++) o = e[a], a === s ? (o._index = a, d++, s = Math.round(l + d * t)) : delete o.label
}
B._set("scale", { display: !0, position: "left", offset: !1, gridLines: { display: !0, color: "rgba(0,0,0,0.1)", lineWidth: 1, drawBorder: !0, drawOnChartArea: !0, drawTicks: !0, tickMarkLength: 10, zeroLineWidth: 1, zeroLineColor: "rgba(0,0,0,0.25)", zeroLineBorderDash: [], zeroLineBorderDashOffset: 0, offsetGridLines: !1, borderDash: [], borderDashOffset: 0 }, scaleLabel: { display: !1, labelString: "", padding: { top: 4, bottom: 4 } }, ticks: { beginAtZero: !1, minRotation: 0, maxRotation: 50, mirror: !1, padding: 0, reverse: !1, display: !0, autoSkip: !0, autoSkipPadding: 0, labelOffset: 0, callback: rn.formatters.values, minor: {}, major: {} } });
var mn = $.extend({
zeroLineIndex: 0,
getPadding: function() { return { left: this.paddingLeft || 0, top: this.paddingTop || 0, right: this.paddingRight || 0, bottom: this.paddingBottom || 0 } },
getTicks: function() { return this._ticks },
_getLabels: function() { var e = this.chart.data; return this.options.labels || (this.isHorizontal() ? e.xLabels : e.yLabels) || e.labels || [] },
mergeTicksOptions: function() {},
beforeUpdate: function() { W.callback(this.options.beforeUpdate, [this]) },
update: function(e, t, n) {
var i, r, a, o, s, l = this,
c = l.options.ticks,
d = c.sampleSize;
if (l.beforeUpdate(), l.maxWidth = e, l.maxHeight = t, l.margins = W.extend({ left: 0, right: 0, top: 0, bottom: 0 }, n), l._ticks = null, l.ticks = null, l._labelSizes = null, l._maxLabelLines = 0, l.longestLabelWidth = 0, l.longestTextCache = l.longestTextCache || {}, l._gridLineItems = null, l._labelItems = null, l.beforeSetDimensions(), l.setDimensions(), l.afterSetDimensions(), l.beforeDataLimits(), l.determineDataLimits(), l.afterDataLimits(), l.beforeBuildTicks(), o = l.buildTicks() || [], (!(o = l.afterBuildTicks(o) || o) || !o.length) && l.ticks)
for (o = [], i = 0, r = l.ticks.length; i < r; ++i) o.push({ value: l.ticks[i], major: !1 });
return s = d < (l._ticks = o).length, a = l._convertTicksToLabels(s ? function(e, t) { for (var n = [], i = e.length / t, r = 0, a = e.length; r < a; r += i) n.push(e[Math.floor(r)]); return n }(o, d) : o), l._configure(), l.beforeCalculateTickRotation(), l.calculateTickRotation(), l.afterCalculateTickRotation(), l.beforeFit(), l.fit(), l.afterFit(), l._ticksToDraw = c.display && (c.autoSkip || "auto" === c.source) ? l._autoSkip(o) : o, s && (a = l._convertTicksToLabels(l._ticksToDraw)), l.ticks = a, l.afterUpdate(), l.minSize
},
_configure: function() {
var e, t, n = this,
i = n.options.ticks.reverse;
n.isHorizontal() ? (e = n.left, t = n.right) : (e = n.top, t = n.bottom, i = !i), n._startPixel = e, n._endPixel = t, n._reversePixels = i, n._length = t - e
},
afterUpdate: function() { W.callback(this.options.afterUpdate, [this]) },
beforeSetDimensions: function() { W.callback(this.options.beforeSetDimensions, [this]) },
setDimensions: function() {
var e = this;
e.isHorizontal() ? (e.width = e.maxWidth, e.left = 0, e.right = e.width) : (e.height = e.maxHeight, e.top = 0, e.bottom = e.height), e.paddingLeft = 0, e.paddingTop = 0, e.paddingRight = 0, e.paddingBottom = 0
},
afterSetDimensions: function() { W.callback(this.options.afterSetDimensions, [this]) },
beforeDataLimits: function() { W.callback(this.options.beforeDataLimits, [this]) },
determineDataLimits: W.noop,
afterDataLimits: function() { W.callback(this.options.afterDataLimits, [this]) },
beforeBuildTicks: function() { W.callback(this.options.beforeBuildTicks, [this]) },
buildTicks: W.noop,
afterBuildTicks: function(e) { var t = this; return an(e) && e.length ? W.callback(t.options.afterBuildTicks, [t, e]) : (t.ticks = W.callback(t.options.afterBuildTicks, [t, t.ticks]) || t.ticks, e) },
beforeTickToLabelConversion: function() { W.callback(this.options.beforeTickToLabelConversion, [this]) },
convertTicksToLabels: function() {
var e = this.options.ticks;
this.ticks = this.ticks.map(e.userCallback || e.callback, this)
},
afterTickToLabelConversion: function() { W.callback(this.options.afterTickToLabelConversion, [this]) },
beforeCalculateTickRotation: function() { W.callback(this.options.beforeCalculateTickRotation, [this]) },
calculateTickRotation: function() {
var e, t, n, i, r, a, o, s = this,
l = s.options,
c = l.ticks,
d = s.getTicks().length,
u = c.minRotation || 0,
h = c.maxRotation,
f = u;
!s._isVisible() || !c.display || h <= u || d <= 1 || !s.isHorizontal() ? s.labelRotation = u : (t = (e = s._getLabelSizes()).widest.width, n = e.highest.height - e.highest.offset, i = Math.min(s.maxWidth, s.chart.width - t), (r = l.offset ? s.maxWidth / d : i / (d - 1)) < t + 6 && (r = i / (d - (l.offset ? .5 : 1)), a = s.maxHeight - un(l.gridLines) - c.padding - hn(l.scaleLabel), o = Math.sqrt(t * t + n * n), f = W.toDegrees(Math.min(Math.asin(Math.min((e.highest.height + 6) / r, 1)), Math.asin(Math.min(a / o, 1)) - Math.asin(n / o))), f = Math.max(u, Math.min(h, f))), s.labelRotation = f)
},
afterCalculateTickRotation: function() { W.callback(this.options.afterCalculateTickRotation, [this]) },
beforeFit: function() { W.callback(this.options.beforeFit, [this]) },
fit: function() {
var e = this,
t = e.minSize = { width: 0, height: 0 },
n = e.chart,
i = e.options,
r = i.ticks,
a = i.scaleLabel,
o = i.gridLines,
s = e._isVisible(),
l = "bottom" === i.position,
c = e.isHorizontal();
if (c ? t.width = e.maxWidth : s && (t.width = un(o) + hn(a)), c ? s && (t.height = un(o) + hn(a)) : t.height = e.maxHeight, r.display && s) {
var d = gn(r),
u = e._getLabelSizes(),
h = u.first,
f = u.last,
g = u.widest,
p = u.highest,
v = .4 * d.minor.lineHeight,
m = r.padding;
if (c) {
var y = 0 !== e.labelRotation,
b = W.toRadians(e.labelRotation),
x = Math.cos(b),
M = Math.sin(b),
w = M * g.width + x * (p.height - (y ? p.offset : 0)) + (y ? 0 : v);
t.height = Math.min(e.maxHeight, t.height + w + m);
var _, S, C = e.getPixelForTick(0) - e.left,
k = e.right - e.getPixelForTick(e.getTicks().length - 1);
S = y ? (_ = l ? x * h.width + M * h.offset : M * (h.height - h.offset), l ? M * (f.height - f.offset) : x * f.width + M * f.offset) : (_ = h.width / 2, f.width / 2), e.paddingLeft = Math.max((_ - C) * e.width / (e.width - C), 0) + 3, e.paddingRight = Math.max((S - k) * e.width / (e.width - k), 0) + 3
} else {
var T = r.mirror ? 0 : g.width + m + v;
t.width = Math.min(e.maxWidth, t.width + T), e.paddingTop = h.height / 2, e.paddingBottom = f.height / 2
}
}
e.handleMargins(), c ? (e.width = e._length = n.width - e.margins.left - e.margins.right, e.height = t.height) : (e.width = t.width, e.height = e._length = n.height - e.margins.top - e.margins.bottom)
},
handleMargins: function() {
var e = this;
e.margins && (e.margins.left = Math.max(e.paddingLeft, e.margins.left), e.margins.top = Math.max(e.paddingTop, e.margins.top), e.margins.right = Math.max(e.paddingRight, e.margins.right), e.margins.bottom = Math.max(e.paddingBottom, e.margins.bottom))
},
afterFit: function() { W.callback(this.options.afterFit, [this]) },
isHorizontal: function() { var e = this.options.position; return "top" === e || "bottom" === e },
isFullWidth: function() { return this.options.fullWidth },
getRightValue: function(e) {
if (on(e)) return NaN;
if (("number" == typeof e || e instanceof Number) && !isFinite(e)) return NaN;
if (e)
if (this.isHorizontal()) { if (void 0 !== e.x) return this.getRightValue(e.x) } else if (void 0 !== e.y) return this.getRightValue(e.y);
return e
},
_convertTicksToLabels: function(e) { var t, n, i, r = this; for (r.ticks = e.map(function(e) { return e.value }), r.beforeTickToLabelConversion(), t = r.convertTicksToLabels(e) || r.ticks, r.afterTickToLabelConversion(), n = 0, i = e.length; n < i; ++n) e[n].label = t[n]; return t },
_getLabelSizes: function() {
var e = this,
t = e._labelSizes;
return t || (e._labelSizes = t = dn(e.ctx, gn(e.options.ticks), e.getTicks(), e.longestTextCache), e.longestLabelWidth = t.widest.width), t
},
_parseValue: function(e) { var t, n, i, r; return r = an(e) ? (t = +this.getRightValue(e[0]), n = +this.getRightValue(e[1]), i = Math.min(t, n), Math.max(t, n)) : (t = void 0, i = n = e = +this.getRightValue(e)), { min: i, max: r, start: t, end: n } },
_getScaleLabel: function(e) { var t = this._parseValue(e); return void 0 !== t.start ? "[" + t.start + ", " + t.end + "]" : +this.getRightValue(e) },
getLabelForIndex: W.noop,
getPixelForValue: W.noop,
getValueForPixel: W.noop,
getPixelForTick: function(e) {
var t = this.options.offset,
n = this._ticks.length,
i = 1 / Math.max(n - (t ? 0 : 1), 1);
return e < 0 || n - 1 < e ? null : this.getPixelForDecimal(e * i + (t ? i / 2 : 0))
},
getPixelForDecimal: function(e) { return this._reversePixels && (e = 1 - e), this._startPixel + e * this._length },
getDecimalForPixel: function(e) { var t = (e - this._startPixel) / this._length; return this._reversePixels ? 1 - t : t },
getBasePixel: function() { return this.getPixelForValue(this.getBaseValue()) },
getBaseValue: function() {
var e = this.min,
t = this.max;
return this.beginAtZero ? 0 : e < 0 && t < 0 ? t : 0 < e && 0 < t ? e : 0
},
_autoSkip: function(e) {
var t, n, i, r, a = this.options.ticks,
o = this._length,
s = a.maxTicksLimit || o / this._tickSize() + 1,
l = a.major.enabled ? function(e) { var t, n, i = []; for (t = 0, n = e.length; t < n; t++) e[t].major && i.push(t); return i }(e) : [],
c = l.length,
d = l[0],
u = l[c - 1];
if (s < c) return function(e, t, n) {
var i, r, a = 0,
o = t[0];
for (n = Math.ceil(n), i = 0; i < e.length; i++) r = e[i], i === o ? (r._index = i, o = t[++a * n]) : delete r.label
}(e, l, c / s), pn(e);
if (i = function(e, t, n, i) {
var r, a, o, s, l = function(e) {
var t, n, i = e.length;
if (i < 2) return !1;
for (n = e[0], t = 1; t < i; ++t)
if (e[t] - e[t - 1] !== n) return !1;
return n
}(e),
c = (t.length - 1) / i;
if (!l) return Math.max(c, 1);
for (o = 0, s = (r = W.math._factorize(l)).length - 1; o < s; o++)
if (c < (a = r[o])) return a;
return Math.max(c, 1)
}(l, e, 0, s), 0 < c) { for (t = 0, n = c - 1; t < n; t++) vn(e, i, l[t], l[t + 1]); return r = 1 < c ? (u - d) / (c - 1) : null, vn(e, i, W.isNullOrUndef(r) ? 0 : d - r, d), vn(e, i, u, W.isNullOrUndef(r) ? e.length : u + r), pn(e) }
return vn(e, i), pn(e)
},
_tickSize: function() {
var e = this.options.ticks,
t = W.toRadians(this.labelRotation),
n = Math.abs(Math.cos(t)),
i = Math.abs(Math.sin(t)),
r = this._getLabelSizes(),
a = e.autoSkipPadding || 0,
o = r ? r.widest.width + a : 0,
s = r ? r.highest.height + a : 0;
return this.isHorizontal() ? o * i < s * n ? o / n : s / i : s * i < o * n ? s / n : o / i
},
_isVisible: function() {
var e, t, n, i = this.chart,
r = this.options.display;
if ("auto" !== r) return !!r;
for (e = 0, t = i.data.datasets.length; e < t; ++e)
if (i.isDatasetVisible(e) && ((n = i.getDatasetMeta(e)).xAxisID === this.id || n.yAxisID === this.id)) return !0;
return !1
},
_computeGridLineItems: function(e) {
function t(e) { return P(x, e, E) }
var n, i, r, a, o, s, l, c, d, u, h, f, g, p, v, m, y, b = this,
x = b.chart,
M = b.options,
w = M.gridLines,
_ = M.position,
S = w.offsetGridLines,
C = b.isHorizontal(),
k = b._ticksToDraw,
T = k.length + (S ? 1 : 0),
L = un(w),
A = [],
E = w.drawBorder ? ln(w.lineWidth, 0, 0) : 0,
O = E / 2,
P = W._alignPixel;
for ("top" === _ ? (n = t(b.bottom), l = b.bottom - L, d = n - O, h = t(e.top) + O, g = e.bottom) : "bottom" === _ ? (n = t(b.top), h = e.top, g = t(e.bottom) - O, l = n + O, d = b.top + L) : "left" === _ ? (n = t(b.right), s = b.right - L, c = n - O, u = t(e.left) + O, f = e.right) : (n = t(b.left), u = e.left, f = t(e.right) - O, s = n + O, c = b.left + L), i = 0; i < T; ++i) r = k[i] || {}, on(r.label) && i < k.length || (y = i === b.zeroLineIndex && M.offset === S ? (p = w.zeroLineWidth, v = w.zeroLineColor, m = w.zeroLineBorderDash || [], w.zeroLineBorderDashOffset || 0) : (p = ln(w.lineWidth, i, 1), v = ln(w.color, i, "rgba(0,0,0,0.1)"), m = w.borderDash || [], w.borderDashOffset || 0), void 0 !== (a = cn(b, r._index || i, S)) && (o = P(x, a, p), C ? s = c = u = f = o : l = d = h = g = o, A.push({ tx1: s, ty1: l, tx2: c, ty2: d, x1: u, y1: h, x2: f, y2: g, width: p, color: v, borderDash: m, borderDashOffset: y })));
return A.ticksLength = T, A.borderValue = n, A
},
_computeLabelItems: function() {
var e, t, n, i, r, a, o, s, l, c, d, u, h = this,
f = h.options,
g = f.ticks,
p = f.position,
v = g.mirror,
m = h.isHorizontal(),
y = h._ticksToDraw,
b = gn(g),
x = g.padding,
M = un(f.gridLines),
w = -W.toRadians(h.labelRotation),
_ = [];
for (o = "top" === p ? (a = h.bottom - M - x, w ? "left" : "center") : "bottom" === p ? (a = h.top + M + x, w ? "right" : "center") : "left" === p ? (r = h.right - (v ? 0 : M) - x, v ? "left" : "right") : (r = h.left + (v ? 0 : M) + x, v ? "right" : "left"), e = 0, t = y.length; e < t; ++e) i = (n = y[e]).label, on(i) || (s = h.getPixelForTick(n._index || e) + g.labelOffset, c = (l = n.major ? b.major : b.minor).lineHeight, d = an(i) ? i.length : 1, u = m ? (r = s, "top" === p ? ((w ? 1 : .5) - d) * c : (w ? 0 : .5) * c) : (a = s, (1 - d) * c / 2), _.push({ x: r, y: a, rotation: w, label: i, font: l, textOffset: u, textAlign: o }));
return _
},
_drawGrid: function(e) {
var t = this,
n = t.options.gridLines;
if (n.display) {
var i, r, a, o, s, l = t.ctx,
c = t.chart,
d = W._alignPixel,
u = n.drawBorder ? ln(n.lineWidth, 0, 0) : 0,
h = t._gridLineItems || (t._gridLineItems = t._computeGridLineItems(e));
for (a = 0, o = h.length; a < o; ++a) i = (s = h[a]).width, r = s.color, i && r && (l.save(), l.lineWidth = i, l.strokeStyle = r, l.setLineDash && (l.setLineDash(s.borderDash), l.lineDashOffset = s.borderDashOffset), l.beginPath(), n.drawTicks && (l.moveTo(s.tx1, s.ty1), l.lineTo(s.tx2, s.ty2)), n.drawOnChartArea && (l.moveTo(s.x1, s.y1), l.lineTo(s.x2, s.y2)), l.stroke(), l.restore());
if (u) {
var f, g, p, v, m = u,
y = ln(n.lineWidth, h.ticksLength - 1, 1),
b = h.borderValue;
t.isHorizontal() ? (f = d(c, t.left, m) - m / 2, g = d(c, t.right, y) + y / 2, p = v = b) : (p = d(c, t.top, m) - m / 2, v = d(c, t.bottom, y) + y / 2, f = g = b), l.lineWidth = u, l.strokeStyle = ln(n.color, 0), l.beginPath(), l.moveTo(f, p), l.lineTo(g, v), l.stroke()
}
}
},
_drawLabels: function() {
var e = this;
if (e.options.ticks.display) {
var t, n, i, r, a, o, s, l, c = e.ctx,
d = e._labelItems || (e._labelItems = e._computeLabelItems());
for (t = 0, i = d.length; t < i; ++t) {
if (o = (a = d[t]).font, c.save(), c.translate(a.x, a.y), c.rotate(a.rotation), c.font = o.string, c.fillStyle = o.color, c.textBaseline = "middle", c.textAlign = a.textAlign, s = a.label, l = a.textOffset, an(s))
for (n = 0, r = s.length; n < r; ++n) c.fillText("" + s[n], 0, l), l += o.lineHeight;
else c.fillText(s, 0, l);
c.restore()
}
}
},
_drawTitle: function() {
var e = this,
t = e.ctx,
n = e.options,
i = n.scaleLabel;
if (i.display) {
var r, a, o = sn(i.fontColor, B.global.defaultFontColor),
s = W.options._parseFont(i),
l = W.options.toPadding(i.padding),
c = s.lineHeight / 2,
d = n.position,
u = 0;
if (e.isHorizontal()) r = e.left + e.width / 2, a = "bottom" === d ? e.bottom - c - l.bottom : e.top + c + l.top;
else {
var h = "left" === d;
r = h ? e.left + c + l.top : e.right - c - l.top, a = e.top + e.height / 2, u = h ? -.5 * Math.PI : .5 * Math.PI
}
t.save(), t.translate(r, a), t.rotate(u), t.textAlign = "center", t.textBaseline = "middle", t.fillStyle = o, t.font = s.string, t.fillText(i.labelString, 0, 0), t.restore()
}
},
draw: function(e) { this._isVisible() && (this._drawGrid(e), this._drawTitle(), this._drawLabels()) },
_layers: function() {
var e = this,
t = e.options,
n = t.ticks && t.ticks.z || 0,
i = t.gridLines && t.gridLines.z || 0;
return e._isVisible() && n !== i && e.draw === e._draw ? [{ z: i, draw: function() { e._drawGrid.apply(e, arguments), e._drawTitle.apply(e, arguments) } }, { z: n, draw: function() { e._drawLabels.apply(e, arguments) } }] : [{ z: n, draw: function() { e.draw.apply(e, arguments) } }]
},
_getMatchingVisibleMetas: function(t) {
var n = this,
i = n.isHorizontal();
return n.chart._getSortedVisibleDatasetMetas().filter(function(e) { return (!t || e.type === t) && (i ? e.xAxisID === n.id : e.yAxisID === n.id) })
}
});
mn.prototype._draw = mn.prototype.draw;
var yn = mn,
bn = W.isNullOrUndef,
xn = yn.extend({
determineDataLimits: function() {
var e, t = this,
n = t._getLabels(),
i = t.options.ticks,
r = i.min,
a = i.max,
o = 0,
s = n.length - 1;
void 0 !== r && 0 <= (e = n.indexOf(r)) && (o = e), void 0 !== a && 0 <= (e = n.indexOf(a)) && (s = e), t.minIndex = o, t.maxIndex = s, t.min = n[o], t.max = n[s]
},
buildTicks: function() {
var e = this._getLabels(),
t = this.minIndex,
n = this.maxIndex;
this.ticks = 0 === t && n === e.length - 1 ? e : e.slice(t, n + 1)
},
getLabelForIndex: function(e, t) { var n = this.chart; return n.getDatasetMeta(t).controller._getValueScaleId() === this.id ? this.getRightValue(n.data.datasets[t].data[e]) : this._getLabels()[e] },
_configure: function() {
var e = this,
t = e.options.offset,
n = e.ticks;
yn.prototype._configure.call(e), e.isHorizontal() || (e._reversePixels = !e._reversePixels), n && (e._startValue = e.minIndex - (t ? .5 : 0), e._valueRange = Math.max(n.length - (t ? 0 : 1), 1))
},
getPixelForValue: function(e, t, n) { var i, r, a, o = this; return bn(t) || bn(n) || (e = o.chart.data.datasets[n].data[t]), bn(e) || (i = o.isHorizontal() ? e.x : e.y), (void 0 !== i || void 0 !== e && isNaN(t)) && (r = o._getLabels(), e = W.valueOrDefault(i, e), t = -1 !== (a = r.indexOf(e)) ? a : t, isNaN(t) && (t = e)), o.getPixelForDecimal((t - o._startValue) / o._valueRange) },
getPixelForTick: function(e) { var t = this.ticks; return e < 0 || e > t.length - 1 ? null : this.getPixelForValue(t[e], e + this.minIndex) },
getValueForPixel: function(e) { var t = Math.round(this._startValue + this.getDecimalForPixel(e) * this._valueRange); return Math.min(Math.max(t, 0), this.ticks.length - 1) },
getBasePixel: function() { return this.bottom }
}),
Mn = { position: "bottom" };
xn._defaults = Mn;
var wn = W.noop,
_n = W.isNullOrUndef;
var Sn = yn.extend({
getRightValue: function(e) { return "string" == typeof e ? +e : yn.prototype.getRightValue.call(this, e) },
handleTickRangeOptions: function() {
var e = this,
t = e.options.ticks;
if (t.beginAtZero) {
var n = W.sign(e.min),
i = W.sign(e.max);
n < 0 && i < 0 ? e.max = 0 : 0 < n && 0 < i && (e.min = 0)
}
var r = void 0 !== t.min || void 0 !== t.suggestedMin,
a = void 0 !== t.max || void 0 !== t.suggestedMax;
void 0 !== t.min ? e.min = t.min : void 0 !== t.suggestedMin && (null === e.min ? e.min = t.suggestedMin : e.min = Math.min(e.min, t.suggestedMin)), void 0 !== t.max ? e.max = t.max : void 0 !== t.suggestedMax && (null === e.max ? e.max = t.suggestedMax : e.max = Math.max(e.max, t.suggestedMax)), r != a && e.min >= e.max && (r ? e.max = e.min + 1 : e.min = e.max - 1), e.min === e.max && (e.max++, t.beginAtZero || e.min--)
},
getTickLimit: function() {
var e, t = this.options.ticks,
n = t.stepSize,
i = t.maxTicksLimit;
return n ? e = Math.ceil(this.max / n) - Math.floor(this.min / n) + 1 : (e = this._computeTickLimit(), i = i || 11), i && (e = Math.min(i, e)), e
},
_computeTickLimit: function() { return Number.POSITIVE_INFINITY },
handleDirectionalChanges: wn,
buildTicks: function() {
var e = this,
t = e.options.ticks,
n = e.getTickLimit(),
i = { maxTicks: n = Math.max(2, n), min: t.min, max: t.max, precision: t.precision, stepSize: W.valueOrDefault(t.fixedStepSize, t.stepSize) },
r = e.ticks = function(e, t) {
var n, i, r, a, o = [],
s = e.stepSize,
l = s || 1,
c = e.maxTicks - 1,
d = e.min,
u = e.max,
h = e.precision,
f = t.min,
g = t.max,
p = W.niceNum((g - f) / c / l) * l;
if (p < 1e-14 && _n(d) && _n(u)) return [f, g];
c < (a = Math.ceil(g / p) - Math.floor(f / p)) && (p = W.niceNum(a * p / c / l) * l), s || _n(h) ? n = Math.pow(10, W._decimalPlaces(p)) : (n = Math.pow(10, h), p = Math.ceil(p * n) / n), i = Math.floor(f / p) * p, r = Math.ceil(g / p) * p, s && (!_n(d) && W.almostWhole(d / p, p / 1e3) && (i = d), !_n(u) && W.almostWhole(u / p, p / 1e3) && (r = u)), a = (r - i) / p, a = W.almostEquals(a, Math.round(a), p / 1e3) ? Math.round(a) : Math.ceil(a), i = Math.round(i * n) / n, r = Math.round(r * n) / n, o.push(_n(d) ? i : d);
for (var v = 1; v < a; ++v) o.push(Math.round((i + v * p) * n) / n);
return o.push(_n(u) ? r : u), o
}(i, e);
e.handleDirectionalChanges(), e.max = W.max(r), e.min = W.min(r), t.reverse ? (r.reverse(), e.start = e.max, e.end = e.min) : (e.start = e.min, e.end = e.max)
},
convertTicksToLabels: function() {
var e = this;
e.ticksAsNumbers = e.ticks.slice(), e.zeroLineIndex = e.ticks.indexOf(0), yn.prototype.convertTicksToLabels.call(e)
},
_configure: function() {
var e, t = this,
n = t.getTicks(),
i = t.min,
r = t.max;
yn.prototype._configure.call(t), t.options.offset && n.length && (i -= e = (r - i) / Math.max(n.length - 1, 1) / 2, r += e), t._startValue = i, t._endValue = r, t._valueRange = r - i
}
}),
Cn = { position: "left", ticks: { callback: rn.formatters.linear } };
function kn(e, t, n, i) {
var r, a, o = e.options,
s = function(e, t, n) { var i = [n.type, void 0 === t && void 0 === n.stack ? n.index : "", n.stack].join("."); return void 0 === e[i] && (e[i] = { pos: [], neg: [] }), e[i] }(t, o.stacked, n),
l = s.pos,
c = s.neg,
d = i.length;
for (r = 0; r < d; ++r) a = e._parseValue(i[r]), isNaN(a.min) || isNaN(a.max) || n.data[r].hidden || (l[r] = l[r] || 0, c[r] = c[r] || 0, o.relativePoints ? l[r] = 100 : a.min < 0 || a.max < 0 ? c[r] += a.min : l[r] += a.max)
}
function Tn(e, t, n) { var i, r, a = n.length; for (i = 0; i < a; ++i) r = e._parseValue(n[i]), isNaN(r.min) || isNaN(r.max) || t.data[i].hidden || (e.min = Math.min(e.min, r.min), e.max = Math.max(e.max, r.max)) }
var Ln = Sn.extend({
determineDataLimits: function() {
var e, t, n, i, r = this,
a = r.options,
o = r.chart.data.datasets,
s = r._getMatchingVisibleMetas(),
l = a.stacked,
c = {},
d = s.length;
if (r.min = Number.POSITIVE_INFINITY, r.max = Number.NEGATIVE_INFINITY, void 0 === l)
for (e = 0; !l && e < d; ++e) l = void 0 !== (t = s[e]).stack;
for (e = 0; e < d; ++e) n = o[(t = s[e]).index].data, l ? kn(r, c, t, n) : Tn(r, t, n);
W.each(c, function(e) { i = e.pos.concat(e.neg), r.min = Math.min(r.min, W.min(i)), r.max = Math.max(r.max, W.max(i)) }), r.min = W.isFinite(r.min) && !isNaN(r.min) ? r.min : 0, r.max = W.isFinite(r.max) && !isNaN(r.max) ? r.max : 1, r.handleTickRangeOptions()
},
_computeTickLimit: function() { var e; return this.isHorizontal() ? Math.ceil(this.width / 40) : (e = W.options._parseFont(this.options.ticks), Math.ceil(this.height / e.lineHeight)) },
handleDirectionalChanges: function() { this.isHorizontal() || this.ticks.reverse() },
getLabelForIndex: function(e, t) { return this._getScaleLabel(this.chart.data.datasets[t].data[e]) },
getPixelForValue: function(e) { return this.getPixelForDecimal((+this.getRightValue(e) - this._startValue) / this._valueRange) },
getValueForPixel: function(e) { return this._startValue + this.getDecimalForPixel(e) * this._valueRange },
getPixelForTick: function(e) { var t = this.ticksAsNumbers; return e < 0 || e > t.length - 1 ? null : this.getPixelForValue(t[e]) }
}),
An = Cn;
Ln._defaults = An;
var En = W.valueOrDefault,
On = W.math.log10;
var Pn = { position: "left", ticks: { callback: rn.formatters.logarithmic } };
function Dn(e, t) { return W.isFinite(e) && 0 <= e ? e : t }
var Vn = yn.extend({
determineDataLimits: function() {
var e, t, n, i, r, a, o = this,
s = o.options,
l = o.chart,
c = l.data.datasets,
d = o.isHorizontal();
function u(e) { return d ? e.xAxisID === o.id : e.yAxisID === o.id }
o.min = Number.POSITIVE_INFINITY, o.max = Number.NEGATIVE_INFINITY, o.minNotZero = Number.POSITIVE_INFINITY;
var h = s.stacked;
if (void 0 === h)
for (e = 0; e < c.length; e++)
if (t = l.getDatasetMeta(e), l.isDatasetVisible(e) && u(t) && void 0 !== t.stack) { h = !0; break }
if (s.stacked || h) {
var f = {};
for (e = 0; e < c.length; e++) {
var g = [(t = l.getDatasetMeta(e)).type, void 0 === s.stacked && void 0 === t.stack ? e : "", t.stack].join(".");
if (l.isDatasetVisible(e) && u(t))
for (void 0 === f[g] && (f[g] = []), r = 0, a = (i = c[e].data).length; r < a; r++) {
var p = f[g];
n = o._parseValue(i[r]), isNaN(n.min) || isNaN(n.max) || t.data[r].hidden || n.min < 0 || n.max < 0 || (p[r] = p[r] || 0, p[r] += n.max)
}
}
W.each(f, function(e) {
if (0 < e.length) {
var t = W.min(e),
n = W.max(e);
o.min = Math.min(o.min, t), o.max = Math.max(o.max, n)
}
})
} else
for (e = 0; e < c.length; e++)
if (t = l.getDatasetMeta(e), l.isDatasetVisible(e) && u(t))
for (r = 0, a = (i = c[e].data).length; r < a; r++) n = o._parseValue(i[r]), isNaN(n.min) || isNaN(n.max) || t.data[r].hidden || n.min < 0 || n.max < 0 || (o.min = Math.min(n.min, o.min), o.max = Math.max(n.max, o.max), 0 !== n.min && (o.minNotZero = Math.min(n.min, o.minNotZero)));
o.min = W.isFinite(o.min) ? o.min : null, o.max = W.isFinite(o.max) ? o.max : null, o.minNotZero = W.isFinite(o.minNotZero) ? o.minNotZero : null, this.handleTickRangeOptions()
},
handleTickRangeOptions: function() {
var e = this,
t = e.options.ticks;
e.min = Dn(t.min, e.min), e.max = Dn(t.max, e.max), e.min === e.max && (0 !== e.min && null !== e.min ? (e.min = Math.pow(10, Math.floor(On(e.min)) - 1), e.max = Math.pow(10, Math.floor(On(e.max)) + 1)) : (e.min = 1, e.max = 10)), null === e.min && (e.min = Math.pow(10, Math.floor(On(e.max)) - 1)), null === e.max && (e.max = 0 !== e.min ? Math.pow(10, Math.floor(On(e.min)) + 1) : 10), null === e.minNotZero && (0 < e.min ? e.minNotZero = e.min : e.max < 1 ? e.minNotZero = Math.pow(10, Math.floor(On(e.max))) : e.minNotZero = 1)
},
buildTicks: function() {
var e = this,
t = e.options.ticks,
n = !e.isHorizontal(),
i = { min: Dn(t.min), max: Dn(t.max) },
r = e.ticks = function(e, t) {
var n, i, r = [],
a = En(e.min, Math.pow(10, Math.floor(On(t.min)))),
o = Math.floor(On(t.max)),
s = Math.ceil(t.max / Math.pow(10, o));
0 === a ? (n = Math.floor(On(t.minNotZero)), i = Math.floor(t.minNotZero / Math.pow(10, n)), r.push(a), a = i * Math.pow(10, n)) : (n = Math.floor(On(a)), i = Math.floor(a / Math.pow(10, n)));
for (var l = n < 0 ? Math.pow(10, Math.abs(n)) : 1; r.push(a), 10 === ++i && (i = 1, l = 0 <= ++n ? 1 : l), a = Math.round(i * Math.pow(10, n) * l) / l, n < o || n === o && i < s;);
var c = En(e.max, a);
return r.push(c), r
}(i, e);
e.max = W.max(r), e.min = W.min(r), t.reverse ? (n = !n, e.start = e.max, e.end = e.min) : (e.start = e.min, e.end = e.max), n && r.reverse()
},
convertTicksToLabels: function() { this.tickValues = this.ticks.slice(), yn.prototype.convertTicksToLabels.call(this) },
getLabelForIndex: function(e, t) { return this._getScaleLabel(this.chart.data.datasets[t].data[e]) },
getPixelForTick: function(e) { var t = this.tickValues; return e < 0 || e > t.length - 1 ? null : this.getPixelForValue(t[e]) },
_getFirstTickValue: function(e) { var t = Math.floor(On(e)); return Math.floor(e / Math.pow(10, t)) * Math.pow(10, t) },
_configure: function() {
var e = this,
t = e.min,
n = 0;
yn.prototype._configure.call(e), 0 === t && (t = e._getFirstTickValue(e.minNotZero), n = En(e.options.ticks.fontSize, B.global.defaultFontSize) / e._length), e._startValue = On(t), e._valueOffset = n, e._valueRange = (On(e.max) - On(t)) / (1 - n)
},
getPixelForValue: function(e) {
var t = this,
n = 0;
return (e = +t.getRightValue(e)) > t.min && 0 < e && (n = (On(e) - t._startValue) / t._valueRange + t._valueOffset), t.getPixelForDecimal(n)
},
getValueForPixel: function(e) {
var t = this,
n = t.getDecimalForPixel(e);
return 0 === n && 0 === t.min ? 0 : Math.pow(10, t._startValue + (n - t._valueOffset) * t._valueRange)
}
}),
Rn = Pn;
Vn._defaults = Rn;
var zn = W.valueOrDefault,
Bn = W.valueAtIndexOrDefault,
Hn = W.options.resolve,
Nn = { display: !0, animate: !0, position: "chartArea", angleLines: { display: !0, color: "rgba(0,0,0,0.1)", lineWidth: 1, borderDash: [], borderDashOffset: 0 }, gridLines: { circular: !1 }, ticks: { showLabelBackdrop: !0, backdropColor: "rgba(255,255,255,0.75)", backdropPaddingY: 2, backdropPaddingX: 2, callback: rn.formatters.linear }, pointLabels: { display: !0, fontSize: 10, callback: function(e) { return e } } };
function In(e) { var t = e.ticks; return t.display && e.display ? zn(t.fontSize, B.global.defaultFontSize) + 2 * t.backdropPaddingY : 0 }
function Fn(e, t, n, i, r) { return e === i || e === r ? { start: t - n / 2, end: t + n / 2 } : e < i || r < e ? { start: t - n, end: t } : { start: t, end: t + n } }
function Wn(e, t, n, i) {
var r, a, o = n.y + i / 2;
if (W.isArray(t))
for (r = 0, a = t.length; r < a; ++r) e.fillText(t[r], n.x, o), o += i;
else e.fillText(t, n.x, o)
}
function jn(e) { return W.isNumber(e) ? e : 0 }
var Yn = Sn.extend({
setDimensions: function() {
var e = this;
e.width = e.maxWidth, e.height = e.maxHeight, e.paddingTop = In(e.options) / 2, e.xCenter = Math.floor(e.width / 2), e.yCenter = Math.floor((e.height - e.paddingTop) / 2), e.drawingArea = Math.min(e.height - e.paddingTop, e.width) / 2
},
determineDataLimits: function() {
var r = this,
n = r.chart,
a = Number.POSITIVE_INFINITY,
o = Number.NEGATIVE_INFINITY;
W.each(n.data.datasets, function(e, t) {
if (n.isDatasetVisible(t)) {
var i = n.getDatasetMeta(t);
W.each(e.data, function(e, t) {
var n = +r.getRightValue(e);
isNaN(n) || i.data[t].hidden || (a = Math.min(n, a), o = Math.max(n, o))
})
}
}), r.min = a === Number.POSITIVE_INFINITY ? 0 : a, r.max = o === Number.NEGATIVE_INFINITY ? 0 : o, r.handleTickRangeOptions()
},
_computeTickLimit: function() { return Math.ceil(this.drawingArea / In(this.options)) },
convertTicksToLabels: function() {
var t = this;
Sn.prototype.convertTicksToLabels.call(t), t.pointLabels = t.chart.data.labels.map(function() { var e = W.callback(t.options.pointLabels.callback, arguments, t); return e || 0 === e ? e : "" })
},
getLabelForIndex: function(e, t) { return +this.getRightValue(this.chart.data.datasets[t].data[e]) },
fit: function() {
var e = this.options;
e.display && e.pointLabels.display ? function(e) {
var t, n, i, r = W.options._parseFont(e.options.pointLabels),
a = { l: 0, r: e.width, t: 0, b: e.height - e.paddingTop },
o = {};
e.ctx.font = r.string, e._pointLabelSizes = [];
var s, l, c, d = e.chart.data.labels.length;
for (t = 0; t < d; t++) {
i = e.getPointPosition(t, e.drawingArea + 5), s = e.ctx, l = r.lineHeight, c = e.pointLabels[t], n = W.isArray(c) ? { w: W.longestText(s, s.font, c), h: c.length * l } : { w: s.measureText(c).width, h: l }, e._pointLabelSizes[t] = n;
var u = e.getIndexAngle(t),
h = W.toDegrees(u) % 360,
f = Fn(h, i.x, n.w, 0, 180),
g = Fn(h, i.y, n.h, 90, 270);
f.start < a.l && (a.l = f.start, o.l = u), f.end > a.r && (a.r = f.end, o.r = u), g.start < a.t && (a.t = g.start, o.t = u), g.end > a.b && (a.b = g.end, o.b = u)
}
e.setReductions(e.drawingArea, a, o)
}(this) : this.setCenterPoint(0, 0, 0, 0)
},
setReductions: function(e, t, n) {
var i = this,
r = t.l / Math.sin(n.l),
a = Math.max(t.r - i.width, 0) / Math.sin(n.r),
o = -t.t / Math.cos(n.t),
s = -Math.max(t.b - (i.height - i.paddingTop), 0) / Math.cos(n.b);
r = jn(r), a = jn(a), o = jn(o), s = jn(s), i.drawingArea = Math.min(Math.floor(e - (r + a) / 2), Math.floor(e - (o + s) / 2)), i.setCenterPoint(r, a, o, s)
},
setCenterPoint: function(e, t, n, i) {
var r = this,
a = r.width - t - r.drawingArea,
o = e + r.drawingArea,
s = n + r.drawingArea,
l = r.height - r.paddingTop - i - r.drawingArea;
r.xCenter = Math.floor((o + a) / 2 + r.left), r.yCenter = Math.floor((s + l) / 2 + r.top + r.paddingTop)
},
getIndexAngle: function(e) {
var t = this.chart,
n = (e * (360 / t.data.labels.length) + ((t.options || {}).startAngle || 0)) % 360;
return (n < 0 ? 360 + n : n) * Math.PI * 2 / 360
},
getDistanceFromCenterForValue: function(e) { var t = this; if (W.isNullOrUndef(e)) return NaN; var n = t.drawingArea / (t.max - t.min); return t.options.ticks.reverse ? (t.max - e) * n : (e - t.min) * n },
getPointPosition: function(e, t) { var n = this.getIndexAngle(e) - Math.PI / 2; return { x: Math.cos(n) * t + this.xCenter, y: Math.sin(n) * t + this.yCenter } },
getPointPositionForValue: function(e, t) { return this.getPointPosition(e, this.getDistanceFromCenterForValue(t)) },
getBasePosition: function(e) {
var t = this.min,
n = this.max;
return this.getPointPositionForValue(e || 0, this.beginAtZero ? 0 : t < 0 && n < 0 ? n : 0 < t && 0 < n ? t : 0)
},
_drawGrid: function() {
var e, n, t, i = this,
r = i.ctx,
a = i.options,
o = a.gridLines,
s = a.angleLines,
l = zn(s.lineWidth, o.lineWidth),
c = zn(s.color, o.color);
if (a.pointLabels.display && function(e) {
var t, n, i, r, a = e.ctx,
o = e.options,
s = o.pointLabels,
l = In(o),
c = e.getDistanceFromCenterForValue(o.ticks.reverse ? e.min : e.max),
d = W.options._parseFont(s);
a.save(), a.font = d.string, a.textBaseline = "middle";
for (var u = e.chart.data.labels.length - 1; 0 <= u; u--) {
var h = 0 === u ? l / 2 : 0,
f = e.getPointPosition(u, c + h + 5),
g = Bn(s.fontColor, u, B.global.defaultFontColor);
a.fillStyle = g;
var p = e.getIndexAngle(u),
v = W.toDegrees(p);
a.textAlign = 0 === (r = v) || 180 === r ? "center" : r < 180 ? "left" : "right", t = v, n = e._pointLabelSizes[u], i = f, 90 === t || 270 === t ? i.y -= n.h / 2 : (270 < t || t < 90) && (i.y -= n.h), Wn(a, e.pointLabels[u], f, d.lineHeight)
}
a.restore()
}(i), o.display && W.each(i.ticks, function(e, t) {
0 !== t && (n = i.getDistanceFromCenterForValue(i.ticksAsNumbers[t]), function(e, t, n, i) {
var r, a = e.ctx,
o = t.circular,
s = e.chart.data.labels.length,
l = Bn(t.color, i - 1),
c = Bn(t.lineWidth, i - 1);
if ((o || s) && l && c) {
if (a.save(), a.strokeStyle = l, a.lineWidth = c, a.setLineDash && (a.setLineDash(t.borderDash || []), a.lineDashOffset = t.borderDashOffset || 0), a.beginPath(), o) a.arc(e.xCenter, e.yCenter, n, 0, 2 * Math.PI);
else { r = e.getPointPosition(0, n), a.moveTo(r.x, r.y); for (var d = 1; d < s; d++) r = e.getPointPosition(d, n), a.lineTo(r.x, r.y) }
a.closePath(), a.stroke(), a.restore()
}
}(i, o, n, t))
}), s.display && l && c) {
for (r.save(), r.lineWidth = l, r.strokeStyle = c, r.setLineDash && (r.setLineDash(Hn([s.borderDash, o.borderDash, []])), r.lineDashOffset = Hn([s.borderDashOffset, o.borderDashOffset, 0])), e = i.chart.data.labels.length - 1; 0 <= e; e--) n = i.getDistanceFromCenterForValue(a.ticks.reverse ? i.min : i.max), t = i.getPointPosition(e, n), r.beginPath(), r.moveTo(i.xCenter, i.yCenter), r.lineTo(t.x, t.y), r.stroke();
r.restore()
}
},
_drawLabels: function() {
var n = this,
i = n.ctx,
r = n.options.ticks;
if (r.display) {
var a, o, e = n.getIndexAngle(0),
s = W.options._parseFont(r),
l = zn(r.fontColor, B.global.defaultFontColor);
i.save(), i.font = s.string, i.translate(n.xCenter, n.yCenter), i.rotate(e), i.textAlign = "center", i.textBaseline = "middle", W.each(n.ticks, function(e, t) { 0 === t && !r.reverse || (a = n.getDistanceFromCenterForValue(n.ticksAsNumbers[t]), r.showLabelBackdrop && (o = i.measureText(e).width, i.fillStyle = r.backdropColor, i.fillRect(-o / 2 - r.backdropPaddingX, -a - s.size / 2 - r.backdropPaddingY, o + 2 * r.backdropPaddingX, s.size + 2 * r.backdropPaddingY)), i.fillStyle = l, i.fillText(e, 0, -a)) }), i.restore()
}
},
_drawTitle: W.noop
}),
Gn = Nn;
Yn._defaults = Gn;
var Un = W._deprecated,
qn = W.options.resolve,
Xn = W.valueOrDefault,
$n = Number.MIN_SAFE_INTEGER || -9007199254740991,
Zn = Number.MAX_SAFE_INTEGER || 9007199254740991,
Kn = { millisecond: { common: !0, size: 1, steps: 1e3 }, second: { common: !0, size: 1e3, steps: 60 }, minute: { common: !0, size: 6e4, steps: 60 }, hour: { common: !0, size: 36e5, steps: 24 }, day: { common: !0, size: 864e5, steps: 30 }, week: { common: !1, size: 6048e5, steps: 4 }, month: { common: !0, size: 2628e6, steps: 12 }, quarter: { common: !1, size: 7884e6, steps: 4 }, year: { common: !0, size: 3154e7 } },
Jn = Object.keys(Kn);
function Qn(e, t) { return e - t }
function ei(e) { return W.valueOrDefault(e.time.min, e.ticks.min) }
function ti(e) { return W.valueOrDefault(e.time.max, e.ticks.max) }
function ni(e, t, n, i) {
var r = function(e, t, n) {
for (var i, r, a, o = 0, s = e.length - 1; 0 <= o && o <= s;) {
if (r = e[(i = o + s >> 1) - 1] || null, a = e[i], !r) return { lo: null, hi: a };
if (a[t] < n) o = 1 + i;
else {
if (!(r[t] > n)) return { lo: r, hi: a };
s = i - 1
}
}
return { lo: a, hi: null }
}(e, t, n),
a = r.lo ? r.hi ? r.lo : e[e.length - 2] : e[0],
o = r.lo ? r.hi ? r.hi : e[e.length - 1] : e[1],
s = o[t] - a[t],
l = s ? (n - a[t]) / s : 0,
c = (o[i] - a[i]) * l;
return a[i] + c
}
function ii(e, t) {
var n = e._adapter,
i = e.options.time,
r = i.parser,
a = r || i.format,
o = t;
return "function" == typeof r && (o = r(o)), W.isFinite(o) || (o = "string" == typeof a ? n.parse(o, a) : n.parse(o)), null !== o ? +o : (r || "function" != typeof a || (o = a(t), W.isFinite(o) || (o = n.parse(o))), o)
}
function ri(e, t) {
if (W.isNullOrUndef(t)) return null;
var n = e.options.time,
i = ii(e, e.getRightValue(t));
return null === i || n.round && (i = +e._adapter.startOf(i, n.round)), i
}
function ai(e, t, n, i) {
var r, a, o, s = Jn.length;
for (r = Jn.indexOf(e); r < s - 1; ++r)
if (o = (a = Kn[Jn[r]]).steps ? a.steps : Zn, a.common && Math.ceil((n - t) / (o * a.size)) <= i) return Jn[r];
return Jn[s - 1]
}
function oi(e, t, n) {
var i, r, a = [],
o = {},
s = t.length;
for (i = 0; i < s; ++i) o[r = t[i]] = i, a.push({ value: r, major: !1 });
return 0 !== s && n ? function(e, t, n, i) {
var r, a, o = e._adapter,
s = +o.startOf(t[0].value, i),
l = t[t.length - 1].value;
for (r = s; r <= l; r = +o.add(r, 1, i)) 0 <= (a = n[r]) && (t[a].major = !0);
return t
}(e, a, o, n) : a
}
var si = yn.extend({
initialize: function() { this.mergeTicksOptions(), yn.prototype.initialize.call(this) },
update: function() {
var e = this.options,
t = e.time || (e.time = {}),
n = this._adapter = new nn._date(e.adapters.date);
return Un("time scale", t.format, "time.format", "time.parser"), Un("time scale", t.min, "time.min", "ticks.min"), Un("time scale", t.max, "time.max", "ticks.max"), W.mergeIf(t.displayFormats, n.formats()), yn.prototype.update.apply(this, arguments)
},
getRightValue: function(e) { return e && void 0 !== e.t && (e = e.t), yn.prototype.getRightValue.call(this, e) },
determineDataLimits: function() {
var e, t, n, i, r, a, o, s = this,
l = s.chart,
c = s._adapter,
d = s.options,
u = d.time.unit || "day",
h = Zn,
f = $n,
g = [],
p = [],
v = [],
m = s._getLabels();
for (e = 0, n = m.length; e < n; ++e) v.push(ri(s, m[e]));
for (e = 0, n = (l.data.datasets || []).length; e < n; ++e)
if (l.isDatasetVisible(e))
if (r = l.data.datasets[e].data, W.isObject(r[0]))
for (p[e] = [], t = 0, i = r.length; t < i; ++t) a = ri(s, r[t]), g.push(a), p[e][t] = a;
else p[e] = v.slice(0), o || (g = g.concat(v), o = !0);
else p[e] = [];
v.length && (h = Math.min(h, v[0]), f = Math.max(f, v[v.length - 1])), g.length && (g = 1 < n ? function(e) {
var t, n, i, r = {},
a = [];
for (t = 0, n = e.length; t < n; ++t) r[i = e[t]] || (r[i] = !0, a.push(i));
return a
}(g).sort(Qn) : g.sort(Qn), h = Math.min(h, g[0]), f = Math.max(f, g[g.length - 1])), h = ri(s, ei(d)) || h, f = ri(s, ti(d)) || f, h = h === Zn ? +c.startOf(Date.now(), u) : h, f = f === $n ? +c.endOf(Date.now(), u) + 1 : f, s.min = Math.min(h, f), s.max = Math.max(h + 1, f), s._table = [], s._timestamps = { data: g, datasets: p, labels: v }
},
buildTicks: function() {
var e, t, n, i = this,
r = i.min,
a = i.max,
o = i.options,
s = o.ticks,
l = o.time,
c = i._timestamps,
d = [],
u = i.getLabelCapacity(r),
h = s.source,
f = o.distribution;
for (c = "data" === h || "auto" === h && "series" === f ? c.data : "labels" === h ? c.labels : function(e, t, n, i) {
var r, a = e._adapter,
o = e.options,
s = o.time,
l = s.unit || ai(s.minUnit, t, n, i),
c = qn([s.stepSize, s.unitStepSize, 1]),
d = "week" === l && s.isoWeekday,
u = t,
h = [];
if (d && (u = +a.startOf(u, "isoWeek", d)), u = +a.startOf(u, d ? "day" : l), a.diff(n, t, l) > 1e5 * c) throw t + " and " + n + " are too far apart with stepSize of " + c + " " + l;
for (r = u; r < n; r = +a.add(r, c, l)) h.push(r);
return r !== n && "ticks" !== o.bounds || h.push(r), h
}(i, r, a, u), "ticks" === o.bounds && c.length && (r = c[0], a = c[c.length - 1]), r = ri(i, ei(o)) || r, a = ri(i, ti(o)) || a, e = 0, t = c.length; e < t; ++e) r <= (n = c[e]) && n <= a && d.push(n);
return i.min = r, i.max = a, i._unit = l.unit || (s.autoSkip ? ai(l.minUnit, i.min, i.max, u) : function(e, t, n, i, r) {
var a, o;
for (a = Jn.length - 1; a >= Jn.indexOf(n); a--)
if (o = Jn[a], Kn[o].common && e._adapter.diff(r, i, o) >= t - 1) return o;
return Jn[n ? Jn.indexOf(n) : 0]
}(i, d.length, l.minUnit, i.min, i.max)), i._majorUnit = s.major.enabled && "year" !== i._unit ? function(e) {
for (var t = Jn.indexOf(e) + 1, n = Jn.length; t < n; ++t)
if (Kn[Jn[t]].common) return Jn[t]
}(i._unit) : void 0, i._table = function(e, t, n, i) {
if ("linear" === i || !e.length) return [{ time: t, pos: 0 }, { time: n, pos: 1 }];
var r, a, o, s, l, c = [],
d = [t];
for (r = 0, a = e.length; r < a; ++r) t < (s = e[r]) && s < n && d.push(s);
for (d.push(n), r = 0, a = d.length; r < a; ++r) l = d[r + 1], o = d[r - 1], s = d[r], void 0 !== o && void 0 !== l && Math.round((l + o) / 2) === s || c.push({ time: s, pos: r / (a - 1) });
return c
}(i._timestamps.data, r, a, f), i._offsets = function(e, t, n, i, r) {
var a, o, s = 0,
l = 0;
return r.offset && t.length && (a = ni(e, "time", t[0], "pos"), s = 1 === t.length ? 1 - a : (ni(e, "time", t[1], "pos") - a) / 2, o = ni(e, "time", t[t.length - 1], "pos"), l = 1 === t.length ? o : (o - ni(e, "time", t[t.length - 2], "pos")) / 2), { start: s, end: l, factor: 1 / (s + 1 + l) }
}(i._table, d, 0, 0, o), s.reverse && d.reverse(), oi(i, d, i._majorUnit)
},
getLabelForIndex: function(e, t) {
var n = this,
i = n._adapter,
r = n.chart.data,
a = n.options.time,
o = r.labels && e < r.labels.length ? r.labels[e] : "",
s = r.datasets[t].data[e];
return W.isObject(s) && (o = n.getRightValue(s)), a.tooltipFormat ? i.format(ii(n, o), a.tooltipFormat) : "string" == typeof o ? o : i.format(ii(n, o), a.displayFormats.datetime)
},
tickFormatFunction: function(e, t, n, i) {
var r = this._adapter,
a = this.options,
o = a.time.displayFormats,
s = o[this._unit],
l = this._majorUnit,
c = o[l],
d = n[t],
u = a.ticks,
h = l && c && d && d.major,
f = r.format(e, i || (h ? c : s)),
g = h ? u.major : u.minor,
p = qn([g.callback, g.userCallback, u.callback, u.userCallback]);
return p ? p(f, t, n) : f
},
convertTicksToLabels: function(e) { var t, n, i = []; for (t = 0, n = e.length; t < n; ++t) i.push(this.tickFormatFunction(e[t].value, t, e)); return i },
getPixelForOffset: function(e) {
var t = this._offsets,
n = ni(this._table, "time", e, "pos");
return this.getPixelForDecimal((t.start + n) * t.factor)
},
getPixelForValue: function(e, t, n) { var i = null; if (void 0 !== t && void 0 !== n && (i = this._timestamps.datasets[n][t]), null === i && (i = ri(this, e)), null !== i) return this.getPixelForOffset(i) },
getPixelForTick: function(e) { var t = this.getTicks(); return 0 <= e && e < t.length ? this.getPixelForOffset(t[e].value) : null },
getValueForPixel: function(e) {
var t = this._offsets,
n = this.getDecimalForPixel(e) / t.factor - t.end,
i = ni(this._table, "pos", n, "time");
return this._adapter._create(i)
},
_getLabelSize: function(e) {
var t = this.options.ticks,
n = this.ctx.measureText(e).width,
i = W.toRadians(this.isHorizontal() ? t.maxRotation : t.minRotation),
r = Math.cos(i),
a = Math.sin(i),
o = Xn(t.fontSize, B.global.defaultFontSize);
return { w: n * r + o * a, h: n * a + o * r }
},
getLabelWidth: function(e) { return this._getLabelSize(e).w },
getLabelCapacity: function(e) {
var t = this.options.time,
n = t.displayFormats,
i = n[t.unit] || n.millisecond,
r = this.tickFormatFunction(e, 0, oi(this, [e], this._majorUnit), i),
a = this._getLabelSize(r),
o = Math.floor(this.isHorizontal() ? this.width / a.w : this.height / a.h);
return this.options.offset && o--, 0 < o ? o : 1
}
}),
li = { position: "bottom", distribution: "linear", bounds: "data", adapters: {}, time: { parser: !1, unit: !1, round: !1, displayFormat: !1, isoWeekday: !1, minUnit: "millisecond", displayFormats: {} }, ticks: { autoSkip: !1, source: "auto", major: { enabled: !1 } } };
si._defaults = li;
var ci = { category: xn, linear: Ln, logarithmic: Vn, radialLinear: Yn, time: si },
di = { datetime: "MMM D, YYYY, h:mm:ss a", millisecond: "h:mm:ss.SSS a", second: "h:mm:ss a", minute: "h:mm a", hour: "hA", day: "MMM D", week: "ll", month: "MMM YYYY", quarter: "[Q]Q - YYYY", year: "YYYY" };
nn._date.override("function" == typeof i ? { _id: "moment", formats: function() { return di }, parse: function(e, t) { return "string" == typeof e && "string" == typeof t ? e = i(e, t) : e instanceof i || (e = i(e)), e.isValid() ? e.valueOf() : null }, format: function(e, t) { return i(e).format(t) }, add: function(e, t, n) { return i(e).add(t, n).valueOf() }, diff: function(e, t, n) { return i(e).diff(i(t), n) }, startOf: function(e, t, n) { return e = i(e), "isoWeek" === t ? e.isoWeekday(n).valueOf() : e.startOf(t).valueOf() }, endOf: function(e, t) { return i(e).endOf(t).valueOf() }, _create: function(e) { return i(e) } } : {}), B._set("global", { plugins: { filler: { propagate: !0 } } });
var ui = {
dataset: function(e) {
var t = e.fill,
n = e.chart,
i = n.getDatasetMeta(t),
r = i && n.isDatasetVisible(t) && i.dataset._children || [],
a = r.length || 0;
return a ? function(e, t) { return t < a && r[t]._view || null } : null
},
boundary: function(e) {
var n = e.boundary,
t = n ? n.x : null,
i = n ? n.y : null;
return W.isArray(n) ? function(e, t) { return n[t] } : function(e) { return { x: null === t ? e.x : t, y: null === i ? e.y : i } }
}
};
function hi(e, t, n) {
var i, r = e._model || {},
a = r.fill;
if (void 0 === a && (a = !!r.backgroundColor), !1 === a || null === a) return !1;
if (!0 === a) return "origin";
if (i = parseFloat(a, 10), isFinite(i) && Math.floor(i) === i) return "-" !== a[0] && "+" !== a[0] || (i = t + i), !(i === t || i < 0 || n <= i) && i;
switch (a) {
case "bottom":
return "start";
case "top":
return "end";
case "zero":
return "origin";
case "origin":
case "start":
case "end":
return a;
default:
return !1
}
}
function fi(e) {
return (e.el._scale || {}).getPointPositionForValue ? function(e) {
var t, n, i, r, a, o = e.el._scale,
s = o.options,
l = o.chart.data.labels.length,
c = e.fill,
d = [];
if (!l) return null;
for (t = s.ticks.reverse ? o.max : o.min, n = s.ticks.reverse ? o.min : o.max, i = o.getPointPositionForValue(0, t), r = 0; r < l; ++r) a = "start" === c || "end" === c ? o.getPointPositionForValue(r, "start" === c ? t : n) : o.getBasePosition(r), s.gridLines.circular && (a.cx = i.x, a.cy = i.y, a.angle = o.getIndexAngle(r) - Math.PI / 2), d.push(a);
return d
}(e) : function(e) {
var t, n = e.el._model || {},
i = e.el._scale || {},
r = e.fill,
a = null;
if (isFinite(r)) return null;
if ("start" === r ? a = void 0 === n.scaleBottom ? i.bottom : n.scaleBottom : "end" === r ? a = void 0 === n.scaleTop ? i.top : n.scaleTop : void 0 !== n.scaleZero ? a = n.scaleZero : i.getBasePixel && (a = i.getBasePixel()), null != a) { if (void 0 !== a.x && void 0 !== a.y) return a; if (W.isFinite(a)) return { x: (t = i.isHorizontal()) ? a : null, y: t ? null : a } }
return null
}(e)
}
function gi(e, t, n) {
var i, r = e[t].fill,
a = [t];
if (!n) return r;
for (; !1 !== r && -1 === a.indexOf(r);) {
if (!isFinite(r)) return r;
if (!(i = e[r])) return !1;
if (i.visible) return r;
a.push(r), r = i.fill
}
return !1
}
function pi(e) { return e && !e.skip }
function vi(e, t, n, i, r) {
var a, o, s, l;
if (i && r) {
for (e.moveTo(t[0].x, t[0].y), a = 1; a < i; ++a) W.canvas.lineTo(e, t[a - 1], t[a]);
if (void 0 === n[0].angle)
for (e.lineTo(n[r - 1].x, n[r - 1].y), a = r - 1; 0 < a; --a) W.canvas.lineTo(e, n[a], n[a - 1], !0);
else
for (o = n[0].cx, s = n[0].cy, l = Math.sqrt(Math.pow(n[0].x - o, 2) + Math.pow(n[0].y - s, 2)), a = r - 1; 0 < a; --a) e.arc(o, s, l, n[a].angle, n[a - 1].angle, !0)
}
}
function mi(e, t, n, i, r, a) {
var o, s, l, c, d, u, h, f, g = t.length,
p = i.spanGaps,
v = [],
m = [],
y = 0,
b = 0;
for (e.beginPath(), o = 0, s = g; o < s; ++o) d = n(c = t[l = o % g]._view, l, i), u = pi(c), h = pi(d), a && void 0 === f && u && (s = g + (f = o + 1)), u && h ? (y = v.push(c), b = m.push(d)) : y && b && (p ? (u && v.push(c), h && m.push(d)) : (vi(e, v, m, y, b), y = b = 0, v = [], m = []));
vi(e, v, m, y, b), e.closePath(), e.fillStyle = r, e.fill()
}
var yi = {
id: "filler",
afterDatasetsUpdate: function(e, t) {
var n, i, r, a, o, s, l, c = (e.data.datasets || []).length,
d = t.propagate,
u = [];
for (i = 0; i < c; ++i) a = null, (r = (n = e.getDatasetMeta(i)).dataset) && r._model && r instanceof we.Line && (a = { visible: e.isDatasetVisible(i), fill: hi(r, i, c), chart: e, el: r }), n.$filler = a, u.push(a);
for (i = 0; i < c; ++i)(a = u[i]) && (a.fill = gi(u, i, d), a.boundary = fi(a), a.mapper = (l = void 0, s = (o = a).fill, !(l = "dataset") === s ? null : (isFinite(s) || (l = "boundary"), ui[l](o))))
},
beforeDatasetsDraw: function(e) {
var t, n, i, r, a, o, s, l = e._getSortedVisibleDatasetMetas(),
c = e.ctx;
for (n = l.length - 1; 0 <= n; --n)(t = l[n].$filler) && t.visible && (r = (i = t.el)._view, a = i._children || [], o = t.mapper, s = r.backgroundColor || B.global.defaultColor, o && s && a.length && (W.canvas.clipArea(c, e.chartArea), mi(c, a, o, r, s, i._loop), W.canvas.unclipArea(c)))
}
},
bi = W.rtl.getRtlAdapter,
xi = W.noop,
Mi = W.valueOrDefault;
function wi(e, t) { return e.usePointStyle && e.boxWidth > t ? t : e.boxWidth }
B._set("global", {
legend: {
display: !0,
position: "top",
align: "center",
fullWidth: !0,
reverse: !1,
weight: 1e3,
onClick: function(e, t) {
var n = t.datasetIndex,
i = this.chart,
r = i.getDatasetMeta(n);
r.hidden = null === r.hidden ? !i.data.datasets[n].hidden : null, i.update()
},
onHover: null,
onLeave: null,
labels: {
boxWidth: 40,
padding: 10,
generateLabels: function(n) {
var i = n.data.datasets,
e = n.options.legend || {},
r = e.labels && e.labels.usePointStyle;
return n._getSortedDatasetMetas().map(function(e) { var t = e.controller.getStyle(r ? 0 : void 0); return { text: i[e.index].label, fillStyle: t.backgroundColor, hidden: !n.isDatasetVisible(e.index), lineCap: t.borderCapStyle, lineDash: t.borderDash, lineDashOffset: t.borderDashOffset, lineJoin: t.borderJoinStyle, lineWidth: t.borderWidth, strokeStyle: t.borderColor, pointStyle: t.pointStyle, rotation: t.rotation, datasetIndex: e.index } }, this)
}
}
},
legendCallback: function(e) {
var t, n, i, r = document.createElement("ul"),
a = e.data.datasets;
for (r.setAttribute("class", e.id + "-legend"), t = 0, n = a.length; t < n; t++)(i = r.appendChild(document.createElement("li"))).appendChild(document.createElement("span")).style.backgroundColor = a[t].backgroundColor, a[t].label && i.appendChild(document.createTextNode(a[t].label));
return r.outerHTML
}
});
var _i = $.extend({
initialize: function(e) { W.extend(this, e), this.legendHitBoxes = [], this._hoveredItem = null, this.doughnutMode = !1 },
beforeUpdate: xi,
update: function(e, t, n) { var i = this; return i.beforeUpdate(), i.maxWidth = e, i.maxHeight = t, i.margins = n, i.beforeSetDimensions(), i.setDimensions(), i.afterSetDimensions(), i.beforeBuildLabels(), i.buildLabels(), i.afterBuildLabels(), i.beforeFit(), i.fit(), i.afterFit(), i.afterUpdate(), i.minSize },
afterUpdate: xi,
beforeSetDimensions: xi,
setDimensions: function() {
var e = this;
e.isHorizontal() ? (e.width = e.maxWidth, e.left = 0, e.right = e.width) : (e.height = e.maxHeight, e.top = 0, e.bottom = e.height), e.paddingLeft = 0, e.paddingTop = 0, e.paddingRight = 0, e.paddingBottom = 0, e.minSize = { width: 0, height: 0 }
},
afterSetDimensions: xi,
beforeBuildLabels: xi,
buildLabels: function() {
var t = this,
n = t.options.labels || {},
e = W.callback(n.generateLabels, [t.chart], t) || [];
n.filter && (e = e.filter(function(e) { return n.filter(e, t.chart.data) })), t.options.reverse && e.reverse(), t.legendItems = e
},
afterBuildLabels: xi,
beforeFit: xi,
fit: function() {
var e = this,
t = e.options,
i = t.labels,
n = t.display,
r = e.ctx,
a = W.options._parseFont(i),
o = a.size,
s = e.legendHitBoxes = [],
l = e.minSize,
c = e.isHorizontal();
if (c ? (l.width = e.maxWidth, l.height = n ? 10 : 0) : (l.width = n ? 10 : 0, l.height = e.maxHeight), n) {
if (r.font = a.string, c) {
var d = e.lineWidths = [0],
u = 0;
r.textAlign = "left", r.textBaseline = "middle", W.each(e.legendItems, function(e, t) {
var n = wi(i, o) + o / 2 + r.measureText(e.text).width;
(0 === t || d[d.length - 1] + n + 2 * i.padding > l.width) && (u += o + i.padding, d[d.length - (0 < t ? 0 : 1)] = 0), s[t] = { left: 0, top: 0, width: n, height: o }, d[d.length - 1] += n + i.padding
}), l.height += u
} else {
var h = i.padding,
f = e.columnWidths = [],
g = e.columnHeights = [],
p = i.padding,
v = 0,
m = 0;
W.each(e.legendItems, function(e, t) {
var n = wi(i, o) + o / 2 + r.measureText(e.text).width;
0 < t && m + o + 2 * h > l.height && (p += v + i.padding, f.push(v), g.push(m), m = v = 0), v = Math.max(v, n), m += o + h, s[t] = { left: 0, top: 0, width: n, height: o }
}), p += v, f.push(v), g.push(m), l.width += p
}
e.width = l.width, e.height = l.height
} else e.width = l.width = e.height = l.height = 0
},
afterFit: xi,
isHorizontal: function() { return "top" === this.options.position || "bottom" === this.options.position },
draw: function() {
var s = this,
n = s.options,
l = n.labels,
e = B.global,
c = e.defaultColor,
d = e.elements.line,
u = s.height,
h = s.columnHeights,
f = s.width,
g = s.lineWidths;
if (n.display) {
var p, v = bi(n.rtl, s.left, s.minSize.width),
m = s.ctx,
t = Mi(l.fontColor, e.defaultFontColor),
i = W.options._parseFont(l),
y = i.size;
m.textAlign = v.textAlign("left"), m.textBaseline = "middle", m.lineWidth = .5, m.strokeStyle = t, m.fillStyle = t, m.font = i.string;
var b = wi(l, y),
x = s.legendHitBoxes,
M = function(e, t) {
switch (n.align) {
case "start":
return l.padding;
case "end":
return e - t;
default:
return (e - t + l.padding) / 2
}
},
w = s.isHorizontal();
p = w ? { x: s.left + M(f, g[0]), y: s.top + l.padding, line: 0 } : { x: s.left + l.padding, y: s.top + M(u, h[0]), line: 0 }, W.rtl.overrideTextDirection(s.ctx, n.textDirection);
var _ = y + l.padding;
W.each(s.legendItems, function(e, t) {
var n = m.measureText(e.text).width,
i = b + y / 2 + n,
r = p.x,
a = p.y;
v.setWidth(s.minSize.width), w ? 0 < t && r + i + l.padding > s.left + s.minSize.width && (a = p.y += _, p.line++, r = p.x = s.left + M(f, g[p.line])) : 0 < t && a + _ > s.top + s.minSize.height && (r = p.x = r + s.columnWidths[p.line] + l.padding, p.line++, a = p.y = s.top + M(u, h[p.line]));
var o = v.x(r);
! function(e, t, n) {
if (!(isNaN(b) || b <= 0)) {
m.save();
var i = Mi(n.lineWidth, d.borderWidth);
if (m.fillStyle = Mi(n.fillStyle, c), m.lineCap = Mi(n.lineCap, d.borderCapStyle), m.lineDashOffset = Mi(n.lineDashOffset, d.borderDashOffset), m.lineJoin = Mi(n.lineJoin, d.borderJoinStyle), m.lineWidth = i, m.strokeStyle = Mi(n.strokeStyle, c), m.setLineDash && m.setLineDash(Mi(n.lineDash, d.borderDash)), l && l.usePointStyle) {
var r = b * Math.SQRT2 / 2,
a = v.xPlus(e, b / 2),
o = t + y / 2;
W.canvas.drawPoint(m, n.pointStyle, r, a, o, n.rotation)
} else m.fillRect(v.leftForLtr(e, b), t, b, y), 0 !== i && m.strokeRect(v.leftForLtr(e, b), t, b, y);
m.restore()
}
}(o, a, e), x[t].left = v.leftForLtr(o, x[t].width),
function(e, t, n, i) {
var r = y / 2,
a = v.xPlus(e, b + r),
o = t + r;
m.fillText(n.text, a, o), n.hidden && (m.beginPath(), m.lineWidth = 2, m.moveTo(a, o), m.lineTo(v.xPlus(a, i), o), m.stroke())
}(o, x[t].top = a, e, n), w ? p.x += i + l.padding : p.y += _
}), W.rtl.restoreTextDirection(s.ctx, n.textDirection)
}
},
_getLegendItemAt: function(e, t) {
var n, i, r;
if (e >= this.left && e <= this.right && t >= this.top && t <= this.bottom)
for (r = this.legendHitBoxes, n = 0; n < r.length; ++n)
if (e >= (i = r[n]).left && e <= i.left + i.width && t >= i.top && t <= i.top + i.height) return this.legendItems[n];
return null
},
handleEvent: function(e) {
var t, n = this.options,
i = "mouseup" === e.type ? "click" : e.type;
if ("mousemove" === i) { if (!n.onHover && !n.onLeave) return } else { if ("click" !== i) return; if (!n.onClick) return }
t = this._getLegendItemAt(e.x, e.y), "click" === i ? t && n.onClick && n.onClick.call(this, e.native, t) : (n.onLeave && t !== this._hoveredItem && (this._hoveredItem && n.onLeave.call(this, e.native, this._hoveredItem), this._hoveredItem = t), n.onHover && t && n.onHover.call(this, e.native, t))
}
});
function Si(e, t) {
var n = new _i({ ctx: e.ctx, options: t, chart: e });
ft.configure(e, n, t), ft.addBox(e, n), e.legend = n
}
var Ci = {
id: "legend",
_element: _i,
beforeInit: function(e) {
var t = e.options.legend;
t && Si(e, t)
},
beforeUpdate: function(e) {
var t = e.options.legend,
n = e.legend;
t ? (W.mergeIf(t, B.global.legend), n ? (ft.configure(e, n, t), n.options = t) : Si(e, t)) : n && (ft.removeBox(e, n), delete e.legend)
},
afterEvent: function(e, t) {
var n = e.legend;
n && n.handleEvent(t)
}
},
ki = W.noop;
B._set("global", { title: { display: !1, fontStyle: "bold", fullWidth: !0, padding: 10, position: "top", text: "", weight: 2e3 } });
var Ti = $.extend({
initialize: function(e) { W.extend(this, e), this.legendHitBoxes = [] },
beforeUpdate: ki,
update: function(e, t, n) { var i = this; return i.beforeUpdate(), i.maxWidth = e, i.maxHeight = t, i.margins = n, i.beforeSetDimensions(), i.setDimensions(), i.afterSetDimensions(), i.beforeBuildLabels(), i.buildLabels(), i.afterBuildLabels(), i.beforeFit(), i.fit(), i.afterFit(), i.afterUpdate(), i.minSize },
afterUpdate: ki,
beforeSetDimensions: ki,
setDimensions: function() {
var e = this;
e.isHorizontal() ? (e.width = e.maxWidth, e.left = 0, e.right = e.width) : (e.height = e.maxHeight, e.top = 0, e.bottom = e.height), e.paddingLeft = 0, e.paddingTop = 0, e.paddingRight = 0, e.paddingBottom = 0, e.minSize = { width: 0, height: 0 }
},
afterSetDimensions: ki,
beforeBuildLabels: ki,
buildLabels: ki,
afterBuildLabels: ki,
beforeFit: ki,
fit: function() {
var e, t = this.options,
n = this.minSize = {},
i = this.isHorizontal();
t.display ? (e = (W.isArray(t.text) ? t.text.length : 1) * W.options._parseFont(t).lineHeight + 2 * t.padding, this.width = n.width = i ? this.maxWidth : e, this.height = n.height = i ? e : this.maxHeight) : this.width = n.width = this.height = n.height = 0
},
afterFit: ki,
isHorizontal: function() { var e = this.options.position; return "top" === e || "bottom" === e },
draw: function() {
var e = this.ctx,
t = this.options;
if (t.display) {
var n, i, r, a = W.options._parseFont(t),
o = a.lineHeight,
s = o / 2 + t.padding,
l = 0,
c = this.top,
d = this.left,
u = this.bottom,
h = this.right;
e.fillStyle = W.valueOrDefault(t.fontColor, B.global.defaultFontColor), e.font = a.string, this.isHorizontal() ? (i = d + (h - d) / 2, r = c + s, n = h - d) : (i = "left" === t.position ? d + s : h - s, r = c + (u - c) / 2, n = u - c, l = Math.PI * ("left" === t.position ? -.5 : .5)), e.save(), e.translate(i, r), e.rotate(l), e.textAlign = "center", e.textBaseline = "middle";
var f = t.text;
if (W.isArray(f))
for (var g = 0, p = 0; p < f.length; ++p) e.fillText(f[p], 0, g, n), g += o;
else e.fillText(f, 0, 0, n);
e.restore()
}
}
});
function Li(e, t) {
var n = new Ti({ ctx: e.ctx, options: t, chart: e });
ft.configure(e, n, t), ft.addBox(e, n), e.titleBlock = n
}
var Ai = {},
Ei = yi,
Oi = Ci,
Pi = {
id: "title",
_element: Ti,
beforeInit: function(e) {
var t = e.options.title;
t && Li(e, t)
},
beforeUpdate: function(e) {
var t = e.options.title,
n = e.titleBlock;
t ? (W.mergeIf(t, B.global.title), n ? (ft.configure(e, n, t), n.options = t) : Li(e, t)) : n && (ft.removeBox(e, n), delete e.titleBlock)
}
};
function Di(e, t, n) { var i; return "string" == typeof e ? (i = parseInt(e, 10), -1 !== e.indexOf("%") && (i = i / 100 * t.parentNode[n])) : i = e, i }
function Vi(e) { return null != e && "none" !== e }
function Ri(e, t, n) {
var i = document.defaultView,
r = W._getParentNode(e),
a = i.getComputedStyle(e)[t],
o = i.getComputedStyle(r)[t],
s = Vi(a),
l = Vi(o),
c = Number.POSITIVE_INFINITY;
return s || l ? Math.min(s ? Di(a, e, n) : c, l ? Di(o, r, n) : c) : "none"
}
for (var zi in Ai.filler = Ei, Ai.legend = Oi, Ai.title = Pi, (Qt.helpers = W).where = function(e, t) { if (W.isArray(e) && Array.prototype.filter) return e.filter(t); var n = []; return W.each(e, function(e) { t(e) && n.push(e) }), n }, W.findIndex = Array.prototype.findIndex ? function(e, t, n) { return e.findIndex(t, n) } : function(e, t, n) {
n = void 0 === n ? e : n;
for (var i = 0, r = e.length; i < r; ++i)
if (t.call(n, e[i], i, e)) return i;
return -1
}, W.findNextWhere = function(e, t, n) { W.isNullOrUndef(n) && (n = -1); for (var i = n + 1; i < e.length; i++) { var r = e[i]; if (t(r)) return r } }, W.findPreviousWhere = function(e, t, n) { W.isNullOrUndef(n) && (n = e.length); for (var i = n - 1; 0 <= i; i--) { var r = e[i]; if (t(r)) return r } }, W.isNumber = function(e) { return !isNaN(parseFloat(e)) && isFinite(e) }, W.almostEquals = function(e, t, n) { return Math.abs(e - t) < n }, W.almostWhole = function(e, t) { var n = Math.round(e); return n - t <= e && e <= n + t }, W.max = function(e) { return e.reduce(function(e, t) { return isNaN(t) ? e : Math.max(e, t) }, Number.NEGATIVE_INFINITY) }, W.min = function(e) { return e.reduce(function(e, t) { return isNaN(t) ? e : Math.min(e, t) }, Number.POSITIVE_INFINITY) }, W.sign = Math.sign ? function(e) { return Math.sign(e) } : function(e) { return 0 == (e = +e) || isNaN(e) ? e : 0 < e ? 1 : -1 }, W.toRadians = function(e) { return e * (Math.PI / 180) }, W.toDegrees = function(e) { return e * (180 / Math.PI) }, W._decimalPlaces = function(e) { if (W.isFinite(e)) { for (var t = 1, n = 0; Math.round(e * t) / t !== e;) t *= 10, n++; return n } }, W.getAngleFromPoint = function(e, t) {
var n = t.x - e.x,
i = t.y - e.y,
r = Math.sqrt(n * n + i * i),
a = Math.atan2(i, n);
return a < -.5 * Math.PI && (a += 2 * Math.PI), { angle: a, distance: r }
}, W.distanceBetweenPoints = function(e, t) { return Math.sqrt(Math.pow(t.x - e.x, 2) + Math.pow(t.y - e.y, 2)) }, W.aliasPixel = function(e) { return e % 2 == 0 ? 0 : .5 }, W._alignPixel = function(e, t, n) {
var i = e.currentDevicePixelRatio,
r = n / 2;
return Math.round((t - r) * i) / i + r
}, W.splineCurve = function(e, t, n, i) {
var r = e.skip ? t : e,
a = t,
o = n.skip ? t : n,
s = Math.sqrt(Math.pow(a.x - r.x, 2) + Math.pow(a.y - r.y, 2)),
l = Math.sqrt(Math.pow(o.x - a.x, 2) + Math.pow(o.y - a.y, 2)),
c = s / (s + l),
d = l / (s + l),
u = i * (c = isNaN(c) ? 0 : c),
h = i * (d = isNaN(d) ? 0 : d);
return { previous: { x: a.x - u * (o.x - r.x), y: a.y - u * (o.y - r.y) }, next: { x: a.x + h * (o.x - r.x), y: a.y + h * (o.y - r.y) } }
}, W.EPSILON = Number.EPSILON || 1e-14, W.splineCurveMonotone = function(e) {
var t, n, i, r, a, o, s, l, c, d = (e || []).map(function(e) { return { model: e._model, deltaK: 0, mK: 0 } }),
u = d.length;
for (t = 0; t < u; ++t)
if (!(i = d[t]).model.skip) {
if (n = 0 < t ? d[t - 1] : null, (r = t < u - 1 ? d[t + 1] : null) && !r.model.skip) {
var h = r.model.x - i.model.x;
i.deltaK = 0 != h ? (r.model.y - i.model.y) / h : 0
}!n || n.model.skip ? i.mK = i.deltaK : !r || r.model.skip ? i.mK = n.deltaK : this.sign(n.deltaK) !== this.sign(i.deltaK) ? i.mK = 0 : i.mK = (n.deltaK + i.deltaK) / 2
}
for (t = 0; t < u - 1; ++t) i = d[t], r = d[t + 1], i.model.skip || r.model.skip || (W.almostEquals(i.deltaK, 0, this.EPSILON) ? i.mK = r.mK = 0 : (a = i.mK / i.deltaK, o = r.mK / i.deltaK, (l = Math.pow(a, 2) + Math.pow(o, 2)) <= 9 || (s = 3 / Math.sqrt(l), i.mK = a * s * i.deltaK, r.mK = o * s * i.deltaK)));
for (t = 0; t < u; ++t)(i = d[t]).model.skip || (n = 0 < t ? d[t - 1] : null, r = t < u - 1 ? d[t + 1] : null, n && !n.model.skip && (c = (i.model.x - n.model.x) / 3, i.model.controlPointPreviousX = i.model.x - c, i.model.controlPointPreviousY = i.model.y - c * i.mK), r && !r.model.skip && (c = (r.model.x - i.model.x) / 3, i.model.controlPointNextX = i.model.x + c, i.model.controlPointNextY = i.model.y + c * i.mK))
}, W.nextItem = function(e, t, n) { return n ? t >= e.length - 1 ? e[0] : e[t + 1] : t >= e.length - 1 ? e[e.length - 1] : e[t + 1] }, W.previousItem = function(e, t, n) { return n ? t <= 0 ? e[e.length - 1] : e[t - 1] : t <= 0 ? e[0] : e[t - 1] }, W.niceNum = function(e, t) {
var n = Math.floor(W.log10(e)),
i = e / Math.pow(10, n);
return (t ? i < 1.5 ? 1 : i < 3 ? 2 : i < 7 ? 5 : 10 : i <= 1 ? 1 : i <= 2 ? 2 : i <= 5 ? 5 : 10) * Math.pow(10, n)
}, W.requestAnimFrame = "undefined" == typeof window ? function(e) { e() } : window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function(e) { return window.setTimeout(e, 1e3 / 60) }, W.getRelativePosition = function(e, t) {
var n, i, r = e.originalEvent || e,
a = e.target || e.srcElement,
o = a.getBoundingClientRect(),
s = r.touches;
i = s && 0 < s.length ? (n = s[0].clientX, s[0].clientY) : (n = r.clientX, r.clientY);
var l = parseFloat(W.getStyle(a, "padding-left")),
c = parseFloat(W.getStyle(a, "padding-top")),
d = parseFloat(W.getStyle(a, "padding-right")),
u = parseFloat(W.getStyle(a, "padding-bottom")),
h = o.right - o.left - l - d,
f = o.bottom - o.top - c - u;
return { x: n = Math.round((n - o.left - l) / h * a.width / t.currentDevicePixelRatio), y: i = Math.round((i - o.top - c) / f * a.height / t.currentDevicePixelRatio) }
}, W.getConstraintWidth = function(e) { return Ri(e, "max-width", "clientWidth") }, W.getConstraintHeight = function(e) { return Ri(e, "max-height", "clientHeight") }, W._calculatePadding = function(e, t, n) { return -1 < (t = W.getStyle(e, t)).indexOf("%") ? n * parseInt(t, 10) / 100 : parseInt(t, 10) }, W._getParentNode = function(e) { var t = e.parentNode; return t && "[object ShadowRoot]" === t.toString() && (t = t.host), t }, W.getMaximumWidth = function(e) {
var t = W._getParentNode(e);
if (!t) return e.clientWidth;
var n = t.clientWidth,
i = n - W._calculatePadding(t, "padding-left", n) - W._calculatePadding(t, "padding-right", n),
r = W.getConstraintWidth(e);
return isNaN(r) ? i : Math.min(i, r)
}, W.getMaximumHeight = function(e) {
var t = W._getParentNode(e);
if (!t) return e.clientHeight;
var n = t.clientHeight,
i = n - W._calculatePadding(t, "padding-top", n) - W._calculatePadding(t, "padding-bottom", n),
r = W.getConstraintHeight(e);
return isNaN(r) ? i : Math.min(i, r)
}, W.getStyle = function(e, t) { return e.currentStyle ? e.currentStyle[t] : document.defaultView.getComputedStyle(e, null).getPropertyValue(t) }, W.retinaScale = function(e, t) {
var n = e.currentDevicePixelRatio = t || "undefined" != typeof window && window.devicePixelRatio || 1;
if (1 !== n) {
var i = e.canvas,
r = e.height,
a = e.width;
i.height = r * n, i.width = a * n, e.ctx.scale(n, n), i.style.height || i.style.width || (i.style.height = r + "px", i.style.width = a + "px")
}
}, W.fontString = function(e, t, n) { return t + " " + e + "px " + n }, W.longestText = function(e, t, n, i) {
var r = (i = i || {}).data = i.data || {},
a = i.garbageCollect = i.garbageCollect || [];
i.font !== t && (r = i.data = {}, a = i.garbageCollect = [], i.font = t), e.font = t;
var o, s, l, c, d, u = 0,
h = n.length;
for (o = 0; o < h; o++)
if (null != (c = n[o]) && !0 !== W.isArray(c)) u = W.measureText(e, r, a, u, c);
else if (W.isArray(c))
for (s = 0, l = c.length; s < l; s++) null == (d = c[s]) || W.isArray(d) || (u = W.measureText(e, r, a, u, d));
var f = a.length / 2;
if (f > n.length) {
for (o = 0; o < f; o++) delete r[a[o]];
a.splice(0, f)
}
return u
}, W.measureText = function(e, t, n, i, r) { var a = t[r]; return a || (a = t[r] = e.measureText(r).width, n.push(r)), i < a && (i = a), i }, W.numberOfLabelLines = function(e) { var t = 1; return W.each(e, function(e) { W.isArray(e) && e.length > t && (t = e.length) }), t }, W.color = _ ? function(e) { return e instanceof CanvasGradient && (e = B.global.defaultColor), _(e) } : function(e) { return console.error("Color.js not found!"), e }, W.getHoverColor = function(e) { return e instanceof CanvasPattern || e instanceof CanvasGradient ? e : W.color(e).saturate(.5).darken(.1).rgbString() }, Qt._adapters = nn, Qt.Animation = K, Qt.animationService = J, Qt.controllers = Ze, Qt.DatasetController = ie, Qt.defaults = B, Qt.Element = $, Qt.elements = we, Qt.Interaction = it, Qt.layouts = ft, Qt.platform = Pt, Qt.plugins = Dt, Qt.Scale = yn, Qt.scaleService = Vt, Qt.Ticks = rn, Qt.Tooltip = Gt, Qt.helpers.each(ci, function(e, t) { Qt.scaleService.registerScaleType(t, e, e._defaults) }), Ai) Ai.hasOwnProperty(zi) && Qt.plugins.register(Ai[zi]);
Qt.platform.initialize();
var Bi = Qt;
return "undefined" != typeof window && (window.Chart = Qt), (Qt.Chart = Qt).Legend = Ai.legend._element, Qt.Title = Ai.title._element, Qt.pluginService = Qt.plugins, Qt.PluginBase = Qt.Element.extend({}), Qt.canvasHelpers = Qt.helpers.canvas, Qt.layoutService = Qt.layouts, Qt.LinearScaleBase = Sn, Qt.helpers.each(["Bar", "Bubble", "Doughnut", "Line", "PolarArea", "Radar", "Scatter"], function(n) { Qt[n] = function(e, t) { return new Qt(e, Qt.helpers.merge(t || {}, { type: n.charAt(0).toLowerCase() + n.slice(1) })) } }), Bi
}, "object" == typeof n && void 0 !== t ? t.exports = r(function() { try { return e("moment") } catch (e) {} }()) : "function" == typeof define && define.amd ? define(["require"], function(e) { return r(function() { try { return e("moment") } catch (e) {} }()) }) : (i = i || self).Chart = r(i.moment)
}, { moment: 2 }],
2: [function($n, Zn, e) {
var t, n;
t = this, n = function() {
"use strict";
var e, r;
function h() { return e.apply(null, arguments) }
function o(e) { return e instanceof Array || "[object Array]" === Object.prototype.toString.call(e) }
function s(e) { return null != e && "[object Object]" === Object.prototype.toString.call(e) }
function a(e) { return void 0 === e }
function l(e) { return "number" == typeof e || "[object Number]" === Object.prototype.toString.call(e) }
function c(e) { return e instanceof Date || "[object Date]" === Object.prototype.toString.call(e) }
function i(e, t) { var n, i = []; for (n = 0; n < e.length; ++n) i.push(t(e[n], n)); return i }
function f(e, t) { return Object.prototype.hasOwnProperty.call(e, t) }
function d(e, t) { for (var n in t) f(t, n) && (e[n] = t[n]); return f(t, "toString") && (e.toString = t.toString), f(t, "valueOf") && (e.valueOf = t.valueOf), e }
function u(e, t, n, i) { return Tt(e, t, n, i, !0).utc() }
function g(e) { return null == e._pf && (e._pf = { empty: !1, unusedTokens: [], unusedInput: [], overflow: -2, charsLeftOver: 0, nullInput: !1, invalidMonth: null, invalidFormat: !1, userInvalidated: !1, iso: !1, parsedDateParts: [], meridiem: null, rfc2822: !1, weekdayMismatch: !1 }), e._pf }
function p(e) {
if (null == e._isValid) {
var t = g(e),
n = r.call(t.parsedDateParts, function(e) { return null != e }),
i = !isNaN(e._d.getTime()) && t.overflow < 0 && !t.empty && !t.invalidMonth && !t.invalidWeekday && !t.weekdayMismatch && !t.nullInput && !t.invalidFormat && !t.userInvalidated && (!t.meridiem || t.meridiem && n);
if (e._strict && (i = i && 0 === t.charsLeftOver && 0 === t.unusedTokens.length && void 0 === t.bigHour), null != Object.isFrozen && Object.isFrozen(e)) return i;
e._isValid = i
}
return e._isValid
}
function v(e) { var t = u(NaN); return null != e ? d(g(t), e) : g(t).userInvalidated = !0, t }
r = Array.prototype.some ? Array.prototype.some : function(e) {
for (var t = Object(this), n = t.length >>> 0, i = 0; i < n; i++)
if (i in t && e.call(this, t[i], i, t)) return !0;
return !1
};
var m = h.momentProperties = [];
function y(e, t) {
var n, i, r;
if (a(t._isAMomentObject) || (e._isAMomentObject = t._isAMomentObject), a(t._i) || (e._i = t._i), a(t._f) || (e._f = t._f), a(t._l) || (e._l = t._l), a(t._strict) || (e._strict = t._strict), a(t._tzm) || (e._tzm = t._tzm), a(t._isUTC) || (e._isUTC = t._isUTC), a(t._offset) || (e._offset = t._offset), a(t._pf) || (e._pf = g(t)), a(t._locale) || (e._locale = t._locale), 0 < m.length)
for (n = 0; n < m.length; n++) a(r = t[i = m[n]]) || (e[i] = r);
return e
}
var t = !1;
function b(e) { y(this, e), this._d = new Date(null != e._d ? e._d.getTime() : NaN), this.isValid() || (this._d = new Date(NaN)), !1 === t && (t = !0, h.updateOffset(this), t = !1) }
function x(e) { return e instanceof b || null != e && null != e._isAMomentObject }
function M(e) { return e < 0 ? Math.ceil(e) || 0 : Math.floor(e) }
function w(e) {
var t = +e,
n = 0;
return 0 != t && isFinite(t) && (n = M(t)), n
}
function _(e, t, n) {
var i, r = Math.min(e.length, t.length),
a = Math.abs(e.length - t.length),
o = 0;
for (i = 0; i < r; i++)(n && e[i] !== t[i] || !n && w(e[i]) !== w(t[i])) && o++;
return o + a
}
function S(e) {!1 === h.suppressDeprecationWarnings && "undefined" != typeof console && console.warn && console.warn("Deprecation warning: " + e) }
function n(r, a) {
var o = !0;
return d(function() {
if (null != h.deprecationHandler && h.deprecationHandler(null, r), o) {
for (var e, t = [], n = 0; n < arguments.length; n++) {
if (e = "", "object" == typeof arguments[n]) {
for (var i in e += "\n[" + n + "] ", arguments[0]) e += i + ": " + arguments[0][i] + ", ";
e = e.slice(0, -2)
} else e = arguments[n];
t.push(e)
}
S(r + "\nArguments: " + Array.prototype.slice.call(t).join("") + "\n" + (new Error).stack), o = !1
}
return a.apply(this, arguments)
}, a)
}
var C, k = {};
function T(e, t) { null != h.deprecationHandler && h.deprecationHandler(e, t), k[e] || (S(t), k[e] = !0) }
function L(e) { return e instanceof Function || "[object Function]" === Object.prototype.toString.call(e) }
function A(e, t) { var n, i = d({}, e); for (n in t) f(t, n) && (s(e[n]) && s(t[n]) ? (i[n] = {}, d(i[n], e[n]), d(i[n], t[n])) : null != t[n] ? i[n] = t[n] : delete i[n]); for (n in e) f(e, n) && !f(t, n) && s(e[n]) && (i[n] = d({}, i[n])); return i }
function E(e) { null != e && this.set(e) }
h.suppressDeprecationWarnings = !1, h.deprecationHandler = null, C = Object.keys ? Object.keys : function(e) { var t, n = []; for (t in e) f(e, t) && n.push(t); return n };
var O = {};
function P(e, t) {
var n = e.toLowerCase();
O[n] = O[n + "s"] = O[t] = e
}
function D(e) { return "string" == typeof e ? O[e] || O[e.toLowerCase()] : void 0 }
function V(e) { var t, n, i = {}; for (n in e) f(e, n) && (t = D(n)) && (i[t] = e[n]); return i }
var R = {};
function z(e, t) { R[e] = t }
function B(e, t, n) {
var i = "" + Math.abs(e),
r = t - i.length;
return (0 <= e ? n ? "+" : "" : "-") + Math.pow(10, Math.max(0, r)).toString().substr(1) + i
}
var H = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
N = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
I = {},
F = {};
function W(e, t, n, i) { var r = i; "string" == typeof i && (r = function() { return this[i]() }), e && (F[e] = r), t && (F[t[0]] = function() { return B(r.apply(this, arguments), t[1], t[2]) }), n && (F[n] = function() { return this.localeData().ordinal(r.apply(this, arguments), e) }) }
function j(e, t) { return e.isValid() ? (t = Y(t, e.localeData()), I[t] = I[t] || function(i) { var e, r, t, a = i.match(H); for (e = 0, r = a.length; e < r; e++) F[a[e]] ? a[e] = F[a[e]] : a[e] = (t = a[e]).match(/\[[\s\S]/) ? t.replace(/^\[|\]$/g, "") : t.replace(/\\/g, ""); return function(e) { var t, n = ""; for (t = 0; t < r; t++) n += L(a[t]) ? a[t].call(e, i) : a[t]; return n } }(t), I[t](e)) : e.localeData().invalidDate() }
function Y(e, t) {
var n = 5;
function i(e) { return t.longDateFormat(e) || e }
for (N.lastIndex = 0; 0 <= n && N.test(e);) e = e.replace(N, i), N.lastIndex = 0, n -= 1;
return e
}
var G = /\d/,
U = /\d\d/,
q = /\d{3}/,
X = /\d{4}/,
$ = /[+-]?\d{6}/,
Z = /\d\d?/,
K = /\d\d\d\d?/,
J = /\d\d\d\d\d\d?/,
Q = /\d{1,3}/,
ee = /\d{1,4}/,
te = /[+-]?\d{1,6}/,
ne = /\d+/,
ie = /[+-]?\d+/,
re = /Z|[+-]\d\d:?\d\d/gi,
ae = /Z|[+-]\d\d(?::?\d\d)?/gi,
oe = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
se = {};
function le(e, n, i) { se[e] = L(n) ? n : function(e, t) { return e && i ? i : n } }
function ce(e, t) { return f(se, e) ? se[e](t._strict, t._locale) : new RegExp(function(e) { return de(e.replace("\\", "").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function(e, t, n, i, r) { return t || n || i || r })) }(e)) }
function de(e) { return e.replace(/[-\/\\^$*+?.()|[\]{}]/g, "\\$&") }
var ue = {};
function he(e, n) { var t, i = n; for ("string" == typeof e && (e = [e]), l(n) && (i = function(e, t) { t[n] = w(e) }), t = 0; t < e.length; t++) ue[e[t]] = i }
function fe(e, r) { he(e, function(e, t, n, i) { n._w = n._w || {}, r(e, n._w, n, i) }) }
var ge = 0,
pe = 1,
ve = 2,
me = 3,
ye = 4,
be = 5,
xe = 6,
Me = 7,
we = 8;
function _e(e) { return Se(e) ? 366 : 365 }
function Se(e) { return e % 4 == 0 && e % 100 != 0 || e % 400 == 0 }
W("Y", 0, 0, function() { var e = this.year(); return e <= 9999 ? "" + e : "+" + e }), W(0, ["YY", 2], 0, function() { return this.year() % 100 }), W(0, ["YYYY", 4], 0, "year"), W(0, ["YYYYY", 5], 0, "year"), W(0, ["YYYYYY", 6, !0], 0, "year"), P("year", "y"), z("year", 1), le("Y", ie), le("YY", Z, U), le("YYYY", ee, X), le("YYYYY", te, $), le("YYYYYY", te, $), he(["YYYYY", "YYYYYY"], ge), he("YYYY", function(e, t) { t[ge] = 2 === e.length ? h.parseTwoDigitYear(e) : w(e) }), he("YY", function(e, t) { t[ge] = h.parseTwoDigitYear(e) }), he("Y", function(e, t) { t[ge] = parseInt(e, 10) }), h.parseTwoDigitYear = function(e) { return w(e) + (68 < w(e) ? 1900 : 2e3) };
var Ce, ke = Te("FullYear", !0);
function Te(t, n) { return function(e) { return null != e ? (Ae(this, t, e), h.updateOffset(this, n), this) : Le(this, t) } }
function Le(e, t) { return e.isValid() ? e._d["get" + (e._isUTC ? "UTC" : "") + t]() : NaN }
function Ae(e, t, n) { e.isValid() && !isNaN(n) && ("FullYear" === t && Se(e.year()) && 1 === e.month() && 29 === e.date() ? e._d["set" + (e._isUTC ? "UTC" : "") + t](n, e.month(), Ee(n, e.month())) : e._d["set" + (e._isUTC ? "UTC" : "") + t](n)) }
function Ee(e, t) { if (isNaN(e) || isNaN(t)) return NaN; var n = function(e, t) { return (e % t + t) % t }(t, 12); return e += (t - n) / 12, 1 === n ? Se(e) ? 29 : 28 : 31 - n % 7 % 2 }
Ce = Array.prototype.indexOf ? Array.prototype.indexOf : function(e) {
var t;
for (t = 0; t < this.length; ++t)
if (this[t] === e) return t;
return -1
}, W("M", ["MM", 2], "Mo", function() { return this.month() + 1 }), W("MMM", 0, 0, function(e) { return this.localeData().monthsShort(this, e) }), W("MMMM", 0, 0, function(e) { return this.localeData().months(this, e) }), P("month", "M"), z("month", 8), le("M", Z), le("MM", Z, U), le("MMM", function(e, t) { return t.monthsShortRegex(e) }), le("MMMM", function(e, t) { return t.monthsRegex(e) }), he(["M", "MM"], function(e, t) { t[pe] = w(e) - 1 }), he(["MMM", "MMMM"], function(e, t, n, i) {
var r = n._locale.monthsParse(e, i, n._strict);
null != r ? t[pe] = r : g(n).invalidMonth = e
});
var Oe = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
Pe = "January_February_March_April_May_June_July_August_September_October_November_December".split("_");
var De = "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_");
function Ve(e, t) {
var n;
if (!e.isValid()) return e;
if ("string" == typeof t)
if (/^\d+$/.test(t)) t = w(t);
else if (!l(t = e.localeData().monthsParse(t))) return e;
return n = Math.min(e.date(), Ee(e.year(), t)), e._d["set" + (e._isUTC ? "UTC" : "") + "Month"](t, n), e
}
function Re(e) { return null != e ? (Ve(this, e), h.updateOffset(this, !0), this) : Le(this, "Month") }
var ze = oe;
var Be = oe;
function He() {
function e(e, t) { return t.length - e.length }
var t, n, i = [],
r = [],
a = [];
for (t = 0; t < 12; t++) n = u([2e3, t]), i.push(this.monthsShort(n, "")), r.push(this.months(n, "")), a.push(this.months(n, "")), a.push(this.monthsShort(n, ""));
for (i.sort(e), r.sort(e), a.sort(e), t = 0; t < 12; t++) i[t] = de(i[t]), r[t] = de(r[t]);
for (t = 0; t < 24; t++) a[t] = de(a[t]);
this._monthsRegex = new RegExp("^(" + a.join("|") + ")", "i"), this._monthsShortRegex = this._monthsRegex, this._monthsStrictRegex = new RegExp("^(" + r.join("|") + ")", "i"), this._monthsShortStrictRegex = new RegExp("^(" + i.join("|") + ")", "i")
}
function Ne(e) {
var t;
if (e < 100 && 0 <= e) {
var n = Array.prototype.slice.call(arguments);
n[0] = e + 400, t = new Date(Date.UTC.apply(null, n)), isFinite(t.getUTCFullYear()) && t.setUTCFullYear(e)
} else t = new Date(Date.UTC.apply(null, arguments));
return t
}
function Ie(e, t, n) { var i = 7 + t - n; return i - (7 + Ne(e, 0, i).getUTCDay() - t) % 7 - 1 }
function Fe(e, t, n, i, r) { var a, o, s = 1 + 7 * (t - 1) + (7 + n - i) % 7 + Ie(e, i, r); return o = s <= 0 ? _e(a = e - 1) + s : s > _e(e) ? (a = e + 1, s - _e(e)) : (a = e, s), { year: a, dayOfYear: o } }
function We(e, t, n) {
var i, r, a = Ie(e.year(), t, n),
o = Math.floor((e.dayOfYear() - a - 1) / 7) + 1;
return o < 1 ? i = o + je(r = e.year() - 1, t, n) : o > je(e.year(), t, n) ? (i = o - je(e.year(), t, n), r = e.year() + 1) : (r = e.year(), i = o), { week: i, year: r }
}
function je(e, t, n) {
var i = Ie(e, t, n),
r = Ie(e + 1, t, n);
return (_e(e) - i + r) / 7
}
W("w", ["ww", 2], "wo", "week"), W("W", ["WW", 2], "Wo", "isoWeek"), P("week", "w"), P("isoWeek", "W"), z("week", 5), z("isoWeek", 5), le("w", Z), le("ww", Z, U), le("W", Z), le("WW", Z, U), fe(["w", "ww", "W", "WW"], function(e, t, n, i) { t[i.substr(0, 1)] = w(e) });
function Ye(e, t) { return e.slice(t, 7).concat(e.slice(0, t)) }
W("d", 0, "do", "day"), W("dd", 0, 0, function(e) { return this.localeData().weekdaysMin(this, e) }), W("ddd", 0, 0, function(e) { return this.localeData().weekdaysShort(this, e) }), W("dddd", 0, 0, function(e) { return this.localeData().weekdays(this, e) }), W("e", 0, 0, "weekday"), W("E", 0, 0, "isoWeekday"), P("day", "d"), P("weekday", "e"), P("isoWeekday", "E"), z("day", 11), z("weekday", 11), z("isoWeekday", 11), le("d", Z), le("e", Z), le("E", Z), le("dd", function(e, t) { return t.weekdaysMinRegex(e) }), le("ddd", function(e, t) { return t.weekdaysShortRegex(e) }), le("dddd", function(e, t) { return t.weekdaysRegex(e) }), fe(["dd", "ddd", "dddd"], function(e, t, n, i) {
var r = n._locale.weekdaysParse(e, i, n._strict);
null != r ? t.d = r : g(n).invalidWeekday = e
}), fe(["d", "e", "E"], function(e, t, n, i) { t[i] = w(e) });
var Ge = "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_");
var Ue = "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_");
var qe = "Su_Mo_Tu_We_Th_Fr_Sa".split("_");
var Xe = oe;
var $e = oe;
var Ze = oe;
function Ke() {
function e(e, t) { return t.length - e.length }
var t, n, i, r, a, o = [],
s = [],
l = [],
c = [];
for (t = 0; t < 7; t++) n = u([2e3, 1]).day(t), i = this.weekdaysMin(n, ""), r = this.weekdaysShort(n, ""), a = this.weekdays(n, ""), o.push(i), s.push(r), l.push(a), c.push(i), c.push(r), c.push(a);
for (o.sort(e), s.sort(e), l.sort(e), c.sort(e), t = 0; t < 7; t++) s[t] = de(s[t]), l[t] = de(l[t]), c[t] = de(c[t]);
this._weekdaysRegex = new RegExp("^(" + c.join("|") + ")", "i"), this._weekdaysShortRegex = this._weekdaysRegex, this._weekdaysMinRegex = this._weekdaysRegex, this._weekdaysStrictRegex = new RegExp("^(" + l.join("|") + ")", "i"), this._weekdaysShortStrictRegex = new RegExp("^(" + s.join("|") + ")", "i"), this._weekdaysMinStrictRegex = new RegExp("^(" + o.join("|") + ")", "i")
}
function Je() { return this.hours() % 12 || 12 }
function Qe(e, t) { W(e, 0, 0, function() { return this.localeData().meridiem(this.hours(), this.minutes(), t) }) }
function et(e, t) { return t._meridiemParse }
W("H", ["HH", 2], 0, "hour"), W("h", ["hh", 2], 0, Je), W("k", ["kk", 2], 0, function() { return this.hours() || 24 }), W("hmm", 0, 0, function() { return "" + Je.apply(this) + B(this.minutes(), 2) }), W("hmmss", 0, 0, function() { return "" + Je.apply(this) + B(this.minutes(), 2) + B(this.seconds(), 2) }), W("Hmm", 0, 0, function() { return "" + this.hours() + B(this.minutes(), 2) }), W("Hmmss", 0, 0, function() { return "" + this.hours() + B(this.minutes(), 2) + B(this.seconds(), 2) }), Qe("a", !0), Qe("A", !1), P("hour", "h"), z("hour", 13), le("a", et), le("A", et), le("H", Z), le("h", Z), le("k", Z), le("HH", Z, U), le("hh", Z, U), le("kk", Z, U), le("hmm", K), le("hmmss", J), le("Hmm", K), le("Hmmss", J), he(["H", "HH"], me), he(["k", "kk"], function(e, t, n) {
var i = w(e);
t[me] = 24 === i ? 0 : i
}), he(["a", "A"], function(e, t, n) { n._isPm = n._locale.isPM(e), n._meridiem = e }), he(["h", "hh"], function(e, t, n) { t[me] = w(e), g(n).bigHour = !0 }), he("hmm", function(e, t, n) {
var i = e.length - 2;
t[me] = w(e.substr(0, i)), t[ye] = w(e.substr(i)), g(n).bigHour = !0
}), he("hmmss", function(e, t, n) {
var i = e.length - 4,
r = e.length - 2;
t[me] = w(e.substr(0, i)), t[ye] = w(e.substr(i, 2)), t[be] = w(e.substr(r)), g(n).bigHour = !0
}), he("Hmm", function(e, t, n) {
var i = e.length - 2;
t[me] = w(e.substr(0, i)), t[ye] = w(e.substr(i))
}), he("Hmmss", function(e, t, n) {
var i = e.length - 4,
r = e.length - 2;
t[me] = w(e.substr(0, i)), t[ye] = w(e.substr(i, 2)), t[be] = w(e.substr(r))
});
var tt, nt = Te("Hours", !0),
it = { calendar: { sameDay: "[Today at] LT", nextDay: "[Tomorrow at] LT", nextWeek: "dddd [at] LT", lastDay: "[Yesterday at] LT", lastWeek: "[Last] dddd [at] LT", sameElse: "L" }, longDateFormat: { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, invalidDate: "Invalid date", ordinal: "%d", dayOfMonthOrdinalParse: /\d{1,2}/, relativeTime: { future: "in %s", past: "%s ago", s: "a few seconds", ss: "%d seconds", m: "a minute", mm: "%d minutes", h: "an hour", hh: "%d hours", d: "a day", dd: "%d days", M: "a month", MM: "%d months", y: "a year", yy: "%d years" }, months: Pe, monthsShort: De, week: { dow: 0, doy: 6 }, weekdays: Ge, weekdaysMin: qe, weekdaysShort: Ue, meridiemParse: /[ap]\.?m?\.?/i },
rt = {},
at = {};
function ot(e) { return e ? e.toLowerCase().replace("_", "-") : e }
function st(e) {
var t = null;
if (!rt[e] && void 0 !== Zn && Zn && Zn.exports) try { t = tt._abbr, $n("./locale/" + e), lt(t) } catch (e) {}
return rt[e]
}
function lt(e, t) { var n; return e && ((n = a(t) ? dt(e) : ct(e, t)) ? tt = n : "undefined" != typeof console && console.warn && console.warn("Locale " + e + " not found. Did you forget to load it?")), tt._abbr }
function ct(e, t) {
if (null === t) return delete rt[e], null;
var n, i = it;
if (t.abbr = e, null != rt[e]) T("defineLocaleOverride", "use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."), i = rt[e]._config;
else if (null != t.parentLocale)
if (null != rt[t.parentLocale]) i = rt[t.parentLocale]._config;
else {
if (null == (n = st(t.parentLocale))) return at[t.parentLocale] || (at[t.parentLocale] = []), at[t.parentLocale].push({ name: e, config: t }), null;
i = n._config
}
return rt[e] = new E(A(i, t)), at[e] && at[e].forEach(function(e) { ct(e.name, e.config) }), lt(e), rt[e]
}
function dt(e) {
var t;
if (e && e._locale && e._locale._abbr && (e = e._locale._abbr), !e) return tt;
if (!o(e)) {
if (t = st(e)) return t;
e = [e]
}
return function(e) {
for (var t, n, i, r, a = 0; a < e.length;) {
for (t = (r = ot(e[a]).split("-")).length, n = (n = ot(e[a + 1])) ? n.split("-") : null; 0 < t;) {
if (i = st(r.slice(0, t).join("-"))) return i;
if (n && n.length >= t && _(r, n, !0) >= t - 1) break;
t--
}
a++
}
return tt
}(e)
}
function ut(e) { var t, n = e._a; return n && -2 === g(e).overflow && (t = n[pe] < 0 || 11 < n[pe] ? pe : n[ve] < 1 || n[ve] > Ee(n[ge], n[pe]) ? ve : n[me] < 0 || 24 < n[me] || 24 === n[me] && (0 !== n[ye] || 0 !== n[be] || 0 !== n[xe]) ? me : n[ye] < 0 || 59 < n[ye] ? ye : n[be] < 0 || 59 < n[be] ? be : n[xe] < 0 || 999 < n[xe] ? xe : -1, g(e)._overflowDayOfYear && (t < ge || ve < t) && (t = ve), g(e)._overflowWeeks && -1 === t && (t = Me), g(e)._overflowWeekday && -1 === t && (t = we), g(e).overflow = t), e }
function ht(e, t, n) { return null != e ? e : null != t ? t : n }
function ft(e) {
var t, n, i, r, a, o = [];
if (!e._d) {
for (i = function(e) { var t = new Date(h.now()); return e._useUTC ? [t.getUTCFullYear(), t.getUTCMonth(), t.getUTCDate()] : [t.getFullYear(), t.getMonth(), t.getDate()] }(e), e._w && null == e._a[ve] && null == e._a[pe] && function(e) {
var t, n, i, r, a, o, s, l;
if (null != (t = e._w).GG || null != t.W || null != t.E) a = 1, o = 4, n = ht(t.GG, e._a[ge], We(Lt(), 1, 4).year), i = ht(t.W, 1), ((r = ht(t.E, 1)) < 1 || 7 < r) && (l = !0);
else {
a = e._locale._week.dow, o = e._locale._week.doy;
var c = We(Lt(), a, o);
n = ht(t.gg, e._a[ge], c.year), i = ht(t.w, c.week), null != t.d ? ((r = t.d) < 0 || 6 < r) && (l = !0) : null != t.e ? (r = t.e + a, (t.e < 0 || 6 < t.e) && (l = !0)) : r = a
}
i < 1 || i > je(n, a, o) ? g(e)._overflowWeeks = !0 : null != l ? g(e)._overflowWeekday = !0 : (s = Fe(n, i, r, a, o), e._a[ge] = s.year, e._dayOfYear = s.dayOfYear)
}(e), null != e._dayOfYear && (a = ht(e._a[ge], i[ge]), (e._dayOfYear > _e(a) || 0 === e._dayOfYear) && (g(e)._overflowDayOfYear = !0), n = Ne(a, 0, e._dayOfYear), e._a[pe] = n.getUTCMonth(), e._a[ve] = n.getUTCDate()), t = 0; t < 3 && null == e._a[t]; ++t) e._a[t] = o[t] = i[t];
for (; t < 7; t++) e._a[t] = o[t] = null == e._a[t] ? 2 === t ? 1 : 0 : e._a[t];
24 === e._a[me] && 0 === e._a[ye] && 0 === e._a[be] && 0 === e._a[xe] && (e._nextDay = !0, e._a[me] = 0), e._d = (e._useUTC ? Ne : function(e, t, n, i, r, a, o) { var s; return e < 100 && 0 <= e ? (s = new Date(e + 400, t, n, i, r, a, o), isFinite(s.getFullYear()) && s.setFullYear(e)) : s = new Date(e, t, n, i, r, a, o), s }).apply(null, o), r = e._useUTC ? e._d.getUTCDay() : e._d.getDay(), null != e._tzm && e._d.setUTCMinutes(e._d.getUTCMinutes() - e._tzm), e._nextDay && (e._a[me] = 24), e._w && void 0 !== e._w.d && e._w.d !== r && (g(e).weekdayMismatch = !0)
}
}
var gt = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
pt = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
vt = /Z|[+-]\d\d(?::?\d\d)?/,
mt = [
["YYYYYY-MM-DD", /[+-]\d{6}-\d\d-\d\d/],
["YYYY-MM-DD", /\d{4}-\d\d-\d\d/],
["GGGG-[W]WW-E", /\d{4}-W\d\d-\d/],
["GGGG-[W]WW", /\d{4}-W\d\d/, !1],
["YYYY-DDD", /\d{4}-\d{3}/],
["YYYY-MM", /\d{4}-\d\d/, !1],
["YYYYYYMMDD", /[+-]\d{10}/],
["YYYYMMDD", /\d{8}/],
["GGGG[W]WWE", /\d{4}W\d{3}/],
["GGGG[W]WW", /\d{4}W\d{2}/, !1],
["YYYYDDD", /\d{7}/]
],
yt = [
["HH:mm:ss.SSSS", /\d\d:\d\d:\d\d\.\d+/],
["HH:mm:ss,SSSS", /\d\d:\d\d:\d\d,\d+/],
["HH:mm:ss", /\d\d:\d\d:\d\d/],
["HH:mm", /\d\d:\d\d/],
["HHmmss.SSSS", /\d\d\d\d\d\d\.\d+/],
["HHmmss,SSSS", /\d\d\d\d\d\d,\d+/],
["HHmmss", /\d\d\d\d\d\d/],
["HHmm", /\d\d\d\d/],
["HH", /\d\d/]
],
bt = /^\/?Date\((\-?\d+)/i;
function xt(e) {
var t, n, i, r, a, o, s = e._i,
l = gt.exec(s) || pt.exec(s);
if (l) {
for (g(e).iso = !0, t = 0, n = mt.length; t < n; t++)
if (mt[t][1].exec(l[1])) { r = mt[t][0], i = !1 !== mt[t][2]; break }
if (null == r) return void(e._isValid = !1);
if (l[3]) {
for (t = 0, n = yt.length; t < n; t++)
if (yt[t][1].exec(l[3])) { a = (l[2] || " ") + yt[t][0]; break }
if (null == a) return void(e._isValid = !1)
}
if (!i && null != a) return void(e._isValid = !1);
if (l[4]) {
if (!vt.exec(l[4])) return void(e._isValid = !1);
o = "Z"
}
e._f = r + (a || "") + (o || ""), Ct(e)
} else e._isValid = !1
}
var Mt = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/;
function wt(e, t, n, i, r, a) { var o = [function(e) { var t = parseInt(e, 10); { if (t <= 49) return 2e3 + t; if (t <= 999) return 1900 + t } return t }(e), De.indexOf(t), parseInt(n, 10), parseInt(i, 10), parseInt(r, 10)]; return a && o.push(parseInt(a, 10)), o }
var _t = { UT: 0, GMT: 0, EDT: -240, EST: -300, CDT: -300, CST: -360, MDT: -360, MST: -420, PDT: -420, PST: -480 };
function St(e) {
var t = Mt.exec(function(e) { return e.replace(/\([^)]*\)|[\n\t]/g, " ").replace(/(\s\s+)/g, " ").replace(/^\s\s*/, "").replace(/\s\s*$/, "") }(e._i));
if (t) {
var n = wt(t[4], t[3], t[2], t[5], t[6], t[7]);
if (! function(e, t, n) { return !e || Ue.indexOf(e) === new Date(t[0], t[1], t[2]).getDay() || (g(n).weekdayMismatch = !0, n._isValid = !1) }(t[1], n, e)) return;
e._a = n, e._tzm = function(e, t, n) {
if (e) return _t[e];
if (t) return 0;
var i = parseInt(n, 10),
r = i % 100;
return 60 * ((i - r) / 100) + r
}(t[8], t[9], t[10]), e._d = Ne.apply(null, e._a), e._d.setUTCMinutes(e._d.getUTCMinutes() - e._tzm), g(e).rfc2822 = !0
} else e._isValid = !1
}
function Ct(e) {
if (e._f !== h.ISO_8601)
if (e._f !== h.RFC_2822) {
e._a = [], g(e).empty = !0;
var t, n, i, r, a, o, s, l, c = "" + e._i,
d = c.length,
u = 0;
for (i = Y(e._f, e._locale).match(H) || [], t = 0; t < i.length; t++) r = i[t], (n = (c.match(ce(r, e)) || [])[0]) && (0 < (a = c.substr(0, c.indexOf(n))).length && g(e).unusedInput.push(a), c = c.slice(c.indexOf(n) + n.length), u += n.length), F[r] ? (n ? g(e).empty = !1 : g(e).unusedTokens.push(r), o = r, l = e, null != (s = n) && f(ue, o) && ue[o](s, l._a, l, o)) : e._strict && !n && g(e).unusedTokens.push(r);
g(e).charsLeftOver = d - u, 0 < c.length && g(e).unusedInput.push(c), e._a[me] <= 12 && !0 === g(e).bigHour && 0 < e._a[me] && (g(e).bigHour = void 0), g(e).parsedDateParts = e._a.slice(0), g(e).meridiem = e._meridiem, e._a[me] = function(e, t, n) { var i; if (null == n) return t; return null != e.meridiemHour ? e.meridiemHour(t, n) : (null != e.isPM && ((i = e.isPM(n)) && t < 12 && (t += 12), i || 12 !== t || (t = 0)), t) }(e._locale, e._a[me], e._meridiem), ft(e), ut(e)
} else St(e);
else xt(e)
}
function kt(e) {
var t = e._i,
n = e._f;
return e._locale = e._locale || dt(e._l), null === t || void 0 === n && "" === t ? v({ nullInput: !0 }) : ("string" == typeof t && (e._i = t = e._locale.preparse(t)), x(t) ? new b(ut(t)) : (c(t) ? e._d = t : o(n) ? function(e) {
var t, n, i, r, a;
if (0 === e._f.length) return g(e).invalidFormat = !0, e._d = new Date(NaN);
for (r = 0; r < e._f.length; r++) a = 0, t = y({}, e), null != e._useUTC && (t._useUTC = e._useUTC), t._f = e._f[r], Ct(t), p(t) && (a += g(t).charsLeftOver, a += 10 * g(t).unusedTokens.length, g(t).score = a, (null == i || a < i) && (i = a, n = t));
d(e, n || t)
}(e) : n ? Ct(e) : function(e) {
var t = e._i;
a(t) ? e._d = new Date(h.now()) : c(t) ? e._d = new Date(t.valueOf()) : "string" == typeof t ? function(e) {
var t = bt.exec(e._i);
null === t ? (xt(e), !1 === e._isValid && (delete e._isValid, St(e), !1 === e._isValid && (delete e._isValid, h.createFromInputFallback(e)))) : e._d = new Date(+t[1])
}(e) : o(t) ? (e._a = i(t.slice(0), function(e) { return parseInt(e, 10) }), ft(e)) : s(t) ? function(e) {
if (!e._d) {
var t = V(e._i);
e._a = i([t.year, t.month, t.day || t.date, t.hour, t.minute, t.second, t.millisecond], function(e) { return e && parseInt(e, 10) }), ft(e)
}
}(e) : l(t) ? e._d = new Date(t) : h.createFromInputFallback(e)
}(e), p(e) || (e._d = null), e))
}
function Tt(e, t, n, i, r) {
var a = {};
return !0 !== n && !1 !== n || (i = n, n = void 0), (s(e) && function(e) {
if (Object.getOwnPropertyNames) return 0 === Object.getOwnPropertyNames(e).length;
var t;
for (t in e)
if (e.hasOwnProperty(t)) return !1;
return !0
}(e) || o(e) && 0 === e.length) && (e = void 0), a._isAMomentObject = !0, a._useUTC = a._isUTC = r, a._l = n, a._i = e, a._f = t, a._strict = i,
function(e) { var t = new b(ut(kt(e))); return t._nextDay && (t.add(1, "d"), t._nextDay = void 0), t }(a)
}
function Lt(e, t, n, i) { return Tt(e, t, n, i, !1) }
h.createFromInputFallback = n("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.", function(e) { e._d = new Date(e._i + (e._useUTC ? " UTC" : "")) }), h.ISO_8601 = function() {}, h.RFC_2822 = function() {};
var At = n("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/", function() { var e = Lt.apply(null, arguments); return this.isValid() && e.isValid() ? e < this ? this : e : v() }),
Et = n("moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/", function() { var e = Lt.apply(null, arguments); return this.isValid() && e.isValid() ? this < e ? this : e : v() });
function Ot(e, t) { var n, i; if (1 === t.length && o(t[0]) && (t = t[0]), !t.length) return Lt(); for (n = t[0], i = 1; i < t.length; ++i) t[i].isValid() && !t[i][e](n) || (n = t[i]); return n }
var Pt = ["year", "quarter", "month", "week", "day", "hour", "minute", "second", "millisecond"];
function Dt(e) {
var t = V(e),
n = t.year || 0,
i = t.quarter || 0,
r = t.month || 0,
a = t.week || t.isoWeek || 0,
o = t.day || 0,
s = t.hour || 0,
l = t.minute || 0,
c = t.second || 0,
d = t.millisecond || 0;
this._isValid = function(e) {
for (var t in e)
if (-1 === Ce.call(Pt, t) || null != e[t] && isNaN(e[t])) return !1;
for (var n = !1, i = 0; i < Pt.length; ++i)
if (e[Pt[i]]) {
if (n) return !1;
parseFloat(e[Pt[i]]) !== w(e[Pt[i]]) && (n = !0)
}
return !0
}(t), this._milliseconds = +d + 1e3 * c + 6e4 * l + 1e3 * s * 60 * 60, this._days = +o + 7 * a, this._months = +r + 3 * i + 12 * n, this._data = {}, this._locale = dt(), this._bubble()
}
function Vt(e) { return e instanceof Dt }
function Rt(e) { return e < 0 ? -1 * Math.round(-1 * e) : Math.round(e) }
function zt(e, n) {
W(e, 0, 0, function() {
var e = this.utcOffset(),
t = "+";
return e < 0 && (e = -e, t = "-"), t + B(~~(e / 60), 2) + n + B(~~e % 60, 2)
})
}
zt("Z", ":"), zt("ZZ", ""), le("Z", ae), le("ZZ", ae), he(["Z", "ZZ"], function(e, t, n) { n._useUTC = !0, n._tzm = Ht(ae, e) });
var Bt = /([\+\-]|\d\d)/gi;
function Ht(e, t) {
var n = (t || "").match(e);
if (null === n) return null;
var i = ((n[n.length - 1] || []) + "").match(Bt) || ["-", 0, 0],
r = 60 * i[1] + w(i[2]);
return 0 === r ? 0 : "+" === i[0] ? r : -r
}
function Nt(e, t) { var n, i; return t._isUTC ? (n = t.clone(), i = (x(e) || c(e) ? e.valueOf() : Lt(e).valueOf()) - n.valueOf(), n._d.setTime(n._d.valueOf() + i), h.updateOffset(n, !1), n) : Lt(e).local() }
function It(e) { return 15 * -Math.round(e._d.getTimezoneOffset() / 15) }
function Ft() { return !!this.isValid() && (this._isUTC && 0 === this._offset) }
h.updateOffset = function() {};
var Wt = /^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,
jt = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
function Yt(e, t) {
var n, i, r, a = e,
o = null;
return Vt(e) ? a = { ms: e._milliseconds, d: e._days, M: e._months } : l(e) ? (a = {}, t ? a[t] = e : a.milliseconds = e) : (o = Wt.exec(e)) ? (n = "-" === o[1] ? -1 : 1, a = { y: 0, d: w(o[ve]) * n, h: w(o[me]) * n, m: w(o[ye]) * n, s: w(o[be]) * n, ms: w(Rt(1e3 * o[xe])) * n }) : (o = jt.exec(e)) ? (n = "-" === o[1] ? -1 : 1, a = { y: Gt(o[2], n), M: Gt(o[3], n), w: Gt(o[4], n), d: Gt(o[5], n), h: Gt(o[6], n), m: Gt(o[7], n), s: Gt(o[8], n) }) : null == a ? a = {} : "object" == typeof a && ("from" in a || "to" in a) && (r = function(e, t) {
var n;
if (!e.isValid() || !t.isValid()) return { milliseconds: 0, months: 0 };
t = Nt(t, e), e.isBefore(t) ? n = Ut(e, t) : ((n = Ut(t, e)).milliseconds = -n.milliseconds, n.months = -n.months);
return n
}(Lt(a.from), Lt(a.to)), (a = {}).ms = r.milliseconds, a.M = r.months), i = new Dt(a), Vt(e) && f(e, "_locale") && (i._locale = e._locale), i
}
function Gt(e, t) { var n = e && parseFloat(e.replace(",", ".")); return (isNaN(n) ? 0 : n) * t }
function Ut(e, t) { var n = {}; return n.months = t.month() - e.month() + 12 * (t.year() - e.year()), e.clone().add(n.months, "M").isAfter(t) && --n.months, n.milliseconds = +t - +e.clone().add(n.months, "M"), n }
function qt(i, r) { return function(e, t) { var n; return null === t || isNaN(+t) || (T(r, "moment()." + r + "(period, number) is deprecated. Please use moment()." + r + "(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."), n = e, e = t, t = n), Xt(this, Yt(e = "string" == typeof e ? +e : e, t), i), this } }
function Xt(e, t, n, i) {
var r = t._milliseconds,
a = Rt(t._days),
o = Rt(t._months);
e.isValid() && (i = null == i || i, o && Ve(e, Le(e, "Month") + o * n), a && Ae(e, "Date", Le(e, "Date") + a * n), r && e._d.setTime(e._d.valueOf() + r * n), i && h.updateOffset(e, a || o))
}
Yt.fn = Dt.prototype, Yt.invalid = function() { return Yt(NaN) };
var $t = qt(1, "add"),
Zt = qt(-1, "subtract");
function Kt(e, t) {
var n = 12 * (t.year() - e.year()) + (t.month() - e.month()),
i = e.clone().add(n, "months");
return -(n + (t - i < 0 ? (t - i) / (i - e.clone().add(n - 1, "months")) : (t - i) / (e.clone().add(1 + n, "months") - i))) || 0
}
function Jt(e) { var t; return void 0 === e ? this._locale._abbr : (null != (t = dt(e)) && (this._locale = t), this) }
h.defaultFormat = "YYYY-MM-DDTHH:mm:ssZ", h.defaultFormatUtc = "YYYY-MM-DDTHH:mm:ss[Z]";
var Qt = n("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.", function(e) { return void 0 === e ? this.localeData() : this.locale(e) });
function en() { return this._locale }
var tn = 126227808e5;
function nn(e, t) { return (e % t + t) % t }
function rn(e, t, n) { return e < 100 && 0 <= e ? new Date(e + 400, t, n) - tn : new Date(e, t, n).valueOf() }
function an(e, t, n) { return e < 100 && 0 <= e ? Date.UTC(e + 400, t, n) - tn : Date.UTC(e, t, n) }
function on(e, t) { W(0, [e, e.length], 0, t) }
function sn(e, t, n, i, r) {
var a;
return null == e ? We(this, i, r).year : ((a = je(e, i, r)) < t && (t = a), function(e, t, n, i, r) {
var a = Fe(e, t, n, i, r),
o = Ne(a.year, 0, a.dayOfYear);
return this.year(o.getUTCFullYear()), this.month(o.getUTCMonth()), this.date(o.getUTCDate()), this
}.call(this, e, t, n, i, r))
}
W(0, ["gg", 2], 0, function() { return this.weekYear() % 100 }), W(0, ["GG", 2], 0, function() { return this.isoWeekYear() % 100 }), on("gggg", "weekYear"), on("ggggg", "weekYear"), on("GGGG", "isoWeekYear"), on("GGGGG", "isoWeekYear"), P("weekYear", "gg"), P("isoWeekYear", "GG"), z("weekYear", 1), z("isoWeekYear", 1), le("G", ie), le("g", ie), le("GG", Z, U), le("gg", Z, U), le("GGGG", ee, X), le("gggg", ee, X), le("GGGGG", te, $), le("ggggg", te, $), fe(["gggg", "ggggg", "GGGG", "GGGGG"], function(e, t, n, i) { t[i.substr(0, 2)] = w(e) }), fe(["gg", "GG"], function(e, t, n, i) { t[i] = h.parseTwoDigitYear(e) }), W("Q", 0, "Qo", "quarter"), P("quarter", "Q"), z("quarter", 7), le("Q", G), he("Q", function(e, t) { t[pe] = 3 * (w(e) - 1) }), W("D", ["DD", 2], "Do", "date"), P("date", "D"), z("date", 9), le("D", Z), le("DD", Z, U), le("Do", function(e, t) { return e ? t._dayOfMonthOrdinalParse || t._ordinalParse : t._dayOfMonthOrdinalParseLenient }), he(["D", "DD"], ve), he("Do", function(e, t) { t[ve] = w(e.match(Z)[0]) });
var ln = Te("Date", !0);
W("DDD", ["DDDD", 3], "DDDo", "dayOfYear"), P("dayOfYear", "DDD"), z("dayOfYear", 4), le("DDD", Q), le("DDDD", q), he(["DDD", "DDDD"], function(e, t, n) { n._dayOfYear = w(e) }), W("m", ["mm", 2], 0, "minute"), P("minute", "m"), z("minute", 14), le("m", Z), le("mm", Z, U), he(["m", "mm"], ye);
var cn = Te("Minutes", !1);
W("s", ["ss", 2], 0, "second"), P("second", "s"), z("second", 15), le("s", Z), le("ss", Z, U), he(["s", "ss"], be);
var dn, un = Te("Seconds", !1);
for (W("S", 0, 0, function() { return ~~(this.millisecond() / 100) }), W(0, ["SS", 2], 0, function() { return ~~(this.millisecond() / 10) }), W(0, ["SSS", 3], 0, "millisecond"), W(0, ["SSSS", 4], 0, function() { return 10 * this.millisecond() }), W(0, ["SSSSS", 5], 0, function() { return 100 * this.millisecond() }), W(0, ["SSSSSS", 6], 0, function() { return 1e3 * this.millisecond() }), W(0, ["SSSSSSS", 7], 0, function() { return 1e4 * this.millisecond() }), W(0, ["SSSSSSSS", 8], 0, function() { return 1e5 * this.millisecond() }), W(0, ["SSSSSSSSS", 9], 0, function() { return 1e6 * this.millisecond() }), P("millisecond", "ms"), z("millisecond", 16), le("S", Q, G), le("SS", Q, U), le("SSS", Q, q), dn = "SSSS"; dn.length <= 9; dn += "S") le(dn, ne);
function hn(e, t) { t[xe] = w(1e3 * ("0." + e)) }
for (dn = "S"; dn.length <= 9; dn += "S") he(dn, hn);
var fn = Te("Milliseconds", !1);
W("z", 0, 0, "zoneAbbr"), W("zz", 0, 0, "zoneName");
var gn = b.prototype;
function pn(e) { return e }
gn.add = $t, gn.calendar = function(e, t) {
var n = e || Lt(),
i = Nt(n, this).startOf("day"),
r = h.calendarFormat(this, i) || "sameElse",
a = t && (L(t[r]) ? t[r].call(this, n) : t[r]);
return this.format(a || this.localeData().calendar(r, this, Lt(n)))
}, gn.clone = function() { return new b(this) }, gn.diff = function(e, t, n) {
var i, r, a;
if (!this.isValid()) return NaN;
if (!(i = Nt(e, this)).isValid()) return NaN;
switch (r = 6e4 * (i.utcOffset() - this.utcOffset()), t = D(t)) {
case "year":
a = Kt(this, i) / 12;
break;
case "month":
a = Kt(this, i);
break;
case "quarter":
a = Kt(this, i) / 3;
break;
case "second":
a = (this - i) / 1e3;
break;
case "minute":
a = (this - i) / 6e4;
break;
case "hour":
a = (this - i) / 36e5;
break;
case "day":
a = (this - i - r) / 864e5;
break;
case "week":
a = (this - i - r) / 6048e5;
break;
default:
a = this - i
}
return n ? a : M(a)
}, gn.endOf = function(e) {
var t;
if (void 0 === (e = D(e)) || "millisecond" === e || !this.isValid()) return this;
var n = this._isUTC ? an : rn;
switch (e) {
case "year":
t = n(this.year() + 1, 0, 1) - 1;
break;
case "quarter":
t = n(this.year(), this.month() - this.month() % 3 + 3, 1) - 1;
break;
case "month":
t = n(this.year(), this.month() + 1, 1) - 1;
break;
case "week":
t = n(this.year(), this.month(), this.date() - this.weekday() + 7) - 1;
break;
case "isoWeek":
t = n(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1;
break;
case "day":
case "date":
t = n(this.year(), this.month(), this.date() + 1) - 1;
break;
case "hour":
t = this._d.valueOf(), t += 36e5 - nn(t + (this._isUTC ? 0 : 6e4 * this.utcOffset()), 36e5) - 1;
break;
case "minute":
t = this._d.valueOf(), t += 6e4 - nn(t, 6e4) - 1;
break;
case "second":
t = this._d.valueOf(), t += 1e3 - nn(t, 1e3) - 1
}
return this._d.setTime(t), h.updateOffset(this, !0), this
}, gn.format = function(e) { e = e || (this.isUtc() ? h.defaultFormatUtc : h.defaultFormat); var t = j(this, e); return this.localeData().postformat(t) }, gn.from = function(e, t) { return this.isValid() && (x(e) && e.isValid() || Lt(e).isValid()) ? Yt({ to: this, from: e }).locale(this.locale()).humanize(!t) : this.localeData().invalidDate() }, gn.fromNow = function(e) { return this.from(Lt(), e) }, gn.to = function(e, t) { return this.isValid() && (x(e) && e.isValid() || Lt(e).isValid()) ? Yt({ from: this, to: e }).locale(this.locale()).humanize(!t) : this.localeData().invalidDate() }, gn.toNow = function(e) { return this.to(Lt(), e) }, gn.get = function(e) { return L(this[e = D(e)]) ? this[e]() : this }, gn.invalidAt = function() { return g(this).overflow }, gn.isAfter = function(e, t) { var n = x(e) ? e : Lt(e); return !(!this.isValid() || !n.isValid()) && ("millisecond" === (t = D(t) || "millisecond") ? this.valueOf() > n.valueOf() : n.valueOf() < this.clone().startOf(t).valueOf()) }, gn.isBefore = function(e, t) { var n = x(e) ? e : Lt(e); return !(!this.isValid() || !n.isValid()) && ("millisecond" === (t = D(t) || "millisecond") ? this.valueOf() < n.valueOf() : this.clone().endOf(t).valueOf() < n.valueOf()) }, gn.isBetween = function(e, t, n, i) {
var r = x(e) ? e : Lt(e),
a = x(t) ? t : Lt(t);
return !!(this.isValid() && r.isValid() && a.isValid()) && (("(" === (i = i || "()")[0] ? this.isAfter(r, n) : !this.isBefore(r, n)) && (")" === i[1] ? this.isBefore(a, n) : !this.isAfter(a, n)))
}, gn.isSame = function(e, t) { var n, i = x(e) ? e : Lt(e); return !(!this.isValid() || !i.isValid()) && ("millisecond" === (t = D(t) || "millisecond") ? this.valueOf() === i.valueOf() : (n = i.valueOf(), this.clone().startOf(t).valueOf() <= n && n <= this.clone().endOf(t).valueOf())) }, gn.isSameOrAfter = function(e, t) { return this.isSame(e, t) || this.isAfter(e, t) }, gn.isSameOrBefore = function(e, t) { return this.isSame(e, t) || this.isBefore(e, t) }, gn.isValid = function() { return p(this) }, gn.lang = Qt, gn.locale = Jt, gn.localeData = en, gn.max = Et, gn.min = At, gn.parsingFlags = function() { return d({}, g(this)) }, gn.set = function(e, t) {
if ("object" == typeof e)
for (var n = function(e) { var t = []; for (var n in e) t.push({ unit: n, priority: R[n] }); return t.sort(function(e, t) { return e.priority - t.priority }), t }(e = V(e)), i = 0; i < n.length; i++) this[n[i].unit](e[n[i].unit]);
else if (L(this[e = D(e)])) return this[e](t);
return this
}, gn.startOf = function(e) {
var t;
if (void 0 === (e = D(e)) || "millisecond" === e || !this.isValid()) return this;
var n = this._isUTC ? an : rn;
switch (e) {
case "year":
t = n(this.year(), 0, 1);
break;
case "quarter":
t = n(this.year(), this.month() - this.month() % 3, 1);
break;
case "month":
t = n(this.year(), this.month(), 1);
break;
case "week":
t = n(this.year(), this.month(), this.date() - this.weekday());
break;
case "isoWeek":
t = n(this.year(), this.month(), this.date() - (this.isoWeekday() - 1));
break;
case "day":
case "date":
t = n(this.year(), this.month(), this.date());
break;
case "hour":
t = this._d.valueOf(), t -= nn(t + (this._isUTC ? 0 : 6e4 * this.utcOffset()), 36e5);
break;
case "minute":
t = this._d.valueOf(), t -= nn(t, 6e4);
break;
case "second":
t = this._d.valueOf(), t -= nn(t, 1e3)
}
return this._d.setTime(t), h.updateOffset(this, !0), this
}, gn.subtract = Zt, gn.toArray = function() { return [this.year(), this.month(), this.date(), this.hour(), this.minute(), this.second(), this.millisecond()] }, gn.toObject = function() { return { years: this.year(), months: this.month(), date: this.date(), hours: this.hours(), minutes: this.minutes(), seconds: this.seconds(), milliseconds: this.milliseconds() } }, gn.toDate = function() { return new Date(this.valueOf()) }, gn.toISOString = function(e) {
if (!this.isValid()) return null;
var t = !0 !== e,
n = t ? this.clone().utc() : this;
return n.year() < 0 || 9999 < n.year() ? j(n, t ? "YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]" : "YYYYYY-MM-DD[T]HH:mm:ss.SSSZ") : L(Date.prototype.toISOString) ? t ? this.toDate().toISOString() : new Date(this.valueOf() + 60 * this.utcOffset() * 1e3).toISOString().replace("Z", j(n, "Z")) : j(n, t ? "YYYY-MM-DD[T]HH:mm:ss.SSS[Z]" : "YYYY-MM-DD[T]HH:mm:ss.SSSZ")
}, gn.inspect = function() {
if (!this.isValid()) return "moment.invalid(/* " + this._i + " */)";
var e = "moment",
t = "";
this.isLocal() || (e = 0 === this.utcOffset() ? "moment.utc" : "moment.parseZone", t = "Z");
var n = "[" + e + '("]',
i = 0 <= this.year() && this.year() <= 9999 ? "YYYY" : "YYYYYY",
r = t + '[")]';
return this.format(n + i + "-MM-DD[T]HH:mm:ss.SSS" + r)
}, gn.toJSON = function() { return this.isValid() ? this.toISOString() : null }, gn.toString = function() { return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ") }, gn.unix = function() { return Math.floor(this.valueOf() / 1e3) }, gn.valueOf = function() { return this._d.valueOf() - 6e4 * (this._offset || 0) }, gn.creationData = function() { return { input: this._i, format: this._f, locale: this._locale, isUTC: this._isUTC, strict: this._strict } }, gn.year = ke, gn.isLeapYear = function() { return Se(this.year()) }, gn.weekYear = function(e) { return sn.call(this, e, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy) }, gn.isoWeekYear = function(e) { return sn.call(this, e, this.isoWeek(), this.isoWeekday(), 1, 4) }, gn.quarter = gn.quarters = function(e) { return null == e ? Math.ceil((this.month() + 1) / 3) : this.month(3 * (e - 1) + this.month() % 3) }, gn.month = Re, gn.daysInMonth = function() { return Ee(this.year(), this.month()) }, gn.week = gn.weeks = function(e) { var t = this.localeData().week(this); return null == e ? t : this.add(7 * (e - t), "d") }, gn.isoWeek = gn.isoWeeks = function(e) { var t = We(this, 1, 4).week; return null == e ? t : this.add(7 * (e - t), "d") }, gn.weeksInYear = function() { var e = this.localeData()._week; return je(this.year(), e.dow, e.doy) }, gn.isoWeeksInYear = function() { return je(this.year(), 1, 4) }, gn.date = ln, gn.day = gn.days = function(e) { if (!this.isValid()) return null != e ? this : NaN; var t = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); return null != e ? (e = function(e, t) { return "string" != typeof e ? e : isNaN(e) ? "number" == typeof(e = t.weekdaysParse(e)) ? e : null : parseInt(e, 10) }(e, this.localeData()), this.add(e - t, "d")) : t }, gn.weekday = function(e) { if (!this.isValid()) return null != e ? this : NaN; var t = (this.day() + 7 - this.localeData()._week.dow) % 7; return null == e ? t : this.add(e - t, "d") }, gn.isoWeekday = function(e) { if (!this.isValid()) return null != e ? this : NaN; if (null == e) return this.day() || 7; var t = function(e, t) { return "string" == typeof e ? t.weekdaysParse(e) % 7 || 7 : isNaN(e) ? null : e }(e, this.localeData()); return this.day(this.day() % 7 ? t : t - 7) }, gn.dayOfYear = function(e) { var t = Math.round((this.clone().startOf("day") - this.clone().startOf("year")) / 864e5) + 1; return null == e ? t : this.add(e - t, "d") }, gn.hour = gn.hours = nt, gn.minute = gn.minutes = cn, gn.second = gn.seconds = un, gn.millisecond = gn.milliseconds = fn, gn.utcOffset = function(e, t, n) { var i, r = this._offset || 0; if (!this.isValid()) return null != e ? this : NaN; if (null == e) return this._isUTC ? r : It(this); if ("string" == typeof e) { if (null === (e = Ht(ae, e))) return this } else Math.abs(e) < 16 && !n && (e *= 60); return !this._isUTC && t && (i = It(this)), this._offset = e, this._isUTC = !0, null != i && this.add(i, "m"), r !== e && (!t || this._changeInProgress ? Xt(this, Yt(e - r, "m"), 1, !1) : this._changeInProgress || (this._changeInProgress = !0, h.updateOffset(this, !0), this._changeInProgress = null)), this }, gn.utc = function(e) { return this.utcOffset(0, e) }, gn.local = function(e) { return this._isUTC && (this.utcOffset(0, e), this._isUTC = !1, e && this.subtract(It(this), "m")), this }, gn.parseZone = function() {
if (null != this._tzm) this.utcOffset(this._tzm, !1, !0);
else if ("string" == typeof this._i) {
var e = Ht(re, this._i);
null != e ? this.utcOffset(e) : this.utcOffset(0, !0)
}
return this
}, gn.hasAlignedHourOffset = function(e) { return !!this.isValid() && (e = e ? Lt(e).utcOffset() : 0, (this.utcOffset() - e) % 60 == 0) }, gn.isDST = function() { return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset() }, gn.isLocal = function() { return !!this.isValid() && !this._isUTC }, gn.isUtcOffset = function() { return !!this.isValid() && this._isUTC }, gn.isUtc = Ft, gn.isUTC = Ft, gn.zoneAbbr = function() { return this._isUTC ? "UTC" : "" }, gn.zoneName = function() { return this._isUTC ? "Coordinated Universal Time" : "" }, gn.dates = n("dates accessor is deprecated. Use date instead.", ln), gn.months = n("months accessor is deprecated. Use month instead", Re), gn.years = n("years accessor is deprecated. Use year instead", ke), gn.zone = n("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/", function(e, t) { return null != e ? ("string" != typeof e && (e = -e), this.utcOffset(e, t), this) : -this.utcOffset() }), gn.isDSTShifted = n("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information", function() {
if (!a(this._isDSTShifted)) return this._isDSTShifted;
var e = {};
if (y(e, this), (e = kt(e))._a) {
var t = e._isUTC ? u(e._a) : Lt(e._a);
this._isDSTShifted = this.isValid() && 0 < _(e._a, t.toArray())
} else this._isDSTShifted = !1;
return this._isDSTShifted
});
var vn = E.prototype;
function mn(e, t, n, i) {
var r = dt(),
a = u().set(i, t);
return r[n](a, e)
}
function yn(e, t, n) { if (l(e) && (t = e, e = void 0), e = e || "", null != t) return mn(e, t, n, "month"); var i, r = []; for (i = 0; i < 12; i++) r[i] = mn(e, i, n, "month"); return r }
function bn(e, t, n, i) {
t = ("boolean" == typeof e ? l(t) && (n = t, t = void 0) : (t = e, e = !1, l(n = t) && (n = t, t = void 0)), t || "");
var r, a = dt(),
o = e ? a._week.dow : 0;
if (null != n) return mn(t, (n + o) % 7, i, "day");
var s = [];
for (r = 0; r < 7; r++) s[r] = mn(t, (r + o) % 7, i, "day");
return s
}
vn.calendar = function(e, t, n) { var i = this._calendar[e] || this._calendar.sameElse; return L(i) ? i.call(t, n) : i }, vn.longDateFormat = function(e) {
var t = this._longDateFormat[e],
n = this._longDateFormat[e.toUpperCase()];
return t || !n ? t : (this._longDateFormat[e] = n.replace(/MMMM|MM|DD|dddd/g, function(e) { return e.slice(1) }), this._longDateFormat[e])
}, vn.invalidDate = function() { return this._invalidDate }, vn.ordinal = function(e) { return this._ordinal.replace("%d", e) }, vn.preparse = pn, vn.postformat = pn, vn.relativeTime = function(e, t, n, i) { var r = this._relativeTime[n]; return L(r) ? r(e, t, n, i) : r.replace(/%d/i, e) }, vn.pastFuture = function(e, t) { var n = this._relativeTime[0 < e ? "future" : "past"]; return L(n) ? n(t) : n.replace(/%s/i, t) }, vn.set = function(e) {
var t, n;
for (n in e) L(t = e[n]) ? this[n] = t : this["_" + n] = t;
this._config = e, this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + "|" + /\d{1,2}/.source)
}, vn.months = function(e, t) { return e ? o(this._months) ? this._months[e.month()] : this._months[(this._months.isFormat || Oe).test(t) ? "format" : "standalone"][e.month()] : o(this._months) ? this._months : this._months.standalone }, vn.monthsShort = function(e, t) { return e ? o(this._monthsShort) ? this._monthsShort[e.month()] : this._monthsShort[Oe.test(t) ? "format" : "standalone"][e.month()] : o(this._monthsShort) ? this._monthsShort : this._monthsShort.standalone }, vn.monthsParse = function(e, t, n) {
var i, r, a;
if (this._monthsParseExact) return function(e, t, n) {
var i, r, a, o = e.toLocaleLowerCase();
if (!this._monthsParse)
for (this._monthsParse = [], this._longMonthsParse = [], this._shortMonthsParse = [], i = 0; i < 12; ++i) a = u([2e3, i]), this._shortMonthsParse[i] = this.monthsShort(a, "").toLocaleLowerCase(), this._longMonthsParse[i] = this.months(a, "").toLocaleLowerCase();
return n ? "MMM" === t ? -1 !== (r = Ce.call(this._shortMonthsParse, o)) ? r : null : -1 !== (r = Ce.call(this._longMonthsParse, o)) ? r : null : "MMM" === t ? -1 !== (r = Ce.call(this._shortMonthsParse, o)) ? r : -1 !== (r = Ce.call(this._longMonthsParse, o)) ? r : null : -1 !== (r = Ce.call(this._longMonthsParse, o)) ? r : -1 !== (r = Ce.call(this._shortMonthsParse, o)) ? r : null
}.call(this, e, t, n);
for (this._monthsParse || (this._monthsParse = [], this._longMonthsParse = [], this._shortMonthsParse = []), i = 0; i < 12; i++) { if (r = u([2e3, i]), n && !this._longMonthsParse[i] && (this._longMonthsParse[i] = new RegExp("^" + this.months(r, "").replace(".", "") + "$", "i"), this._shortMonthsParse[i] = new RegExp("^" + this.monthsShort(r, "").replace(".", "") + "$", "i")), n || this._monthsParse[i] || (a = "^" + this.months(r, "") + "|^" + this.monthsShort(r, ""), this._monthsParse[i] = new RegExp(a.replace(".", ""), "i")), n && "MMMM" === t && this._longMonthsParse[i].test(e)) return i; if (n && "MMM" === t && this._shortMonthsParse[i].test(e)) return i; if (!n && this._monthsParse[i].test(e)) return i }
}, vn.monthsRegex = function(e) { return this._monthsParseExact ? (f(this, "_monthsRegex") || He.call(this), e ? this._monthsStrictRegex : this._monthsRegex) : (f(this, "_monthsRegex") || (this._monthsRegex = Be), this._monthsStrictRegex && e ? this._monthsStrictRegex : this._monthsRegex) }, vn.monthsShortRegex = function(e) { return this._monthsParseExact ? (f(this, "_monthsRegex") || He.call(this), e ? this._monthsShortStrictRegex : this._monthsShortRegex) : (f(this, "_monthsShortRegex") || (this._monthsShortRegex = ze), this._monthsShortStrictRegex && e ? this._monthsShortStrictRegex : this._monthsShortRegex) }, vn.week = function(e) { return We(e, this._week.dow, this._week.doy).week }, vn.firstDayOfYear = function() { return this._week.doy }, vn.firstDayOfWeek = function() { return this._week.dow }, vn.weekdays = function(e, t) { var n = o(this._weekdays) ? this._weekdays : this._weekdays[e && !0 !== e && this._weekdays.isFormat.test(t) ? "format" : "standalone"]; return !0 === e ? Ye(n, this._week.dow) : e ? n[e.day()] : n }, vn.weekdaysMin = function(e) { return !0 === e ? Ye(this._weekdaysMin, this._week.dow) : e ? this._weekdaysMin[e.day()] : this._weekdaysMin }, vn.weekdaysShort = function(e) { return !0 === e ? Ye(this._weekdaysShort, this._week.dow) : e ? this._weekdaysShort[e.day()] : this._weekdaysShort }, vn.weekdaysParse = function(e, t, n) {
var i, r, a;
if (this._weekdaysParseExact) return function(e, t, n) {
var i, r, a, o = e.toLocaleLowerCase();
if (!this._weekdaysParse)
for (this._weekdaysParse = [], this._shortWeekdaysParse = [], this._minWeekdaysParse = [], i = 0; i < 7; ++i) a = u([2e3, 1]).day(i), this._minWeekdaysParse[i] = this.weekdaysMin(a, "").toLocaleLowerCase(), this._shortWeekdaysParse[i] = this.weekdaysShort(a, "").toLocaleLowerCase(), this._weekdaysParse[i] = this.weekdays(a, "").toLocaleLowerCase();
return n ? "dddd" === t ? -1 !== (r = Ce.call(this._weekdaysParse, o)) ? r : null : "ddd" === t ? -1 !== (r = Ce.call(this._shortWeekdaysParse, o)) ? r : null : -1 !== (r = Ce.call(this._minWeekdaysParse, o)) ? r : null : "dddd" === t ? -1 !== (r = Ce.call(this._weekdaysParse, o)) ? r : -1 !== (r = Ce.call(this._shortWeekdaysParse, o)) ? r : -1 !== (r = Ce.call(this._minWeekdaysParse, o)) ? r : null : "ddd" === t ? -1 !== (r = Ce.call(this._shortWeekdaysParse, o)) ? r : -1 !== (r = Ce.call(this._weekdaysParse, o)) ? r : -1 !== (r = Ce.call(this._minWeekdaysParse, o)) ? r : null : -1 !== (r = Ce.call(this._minWeekdaysParse, o)) ? r : -1 !== (r = Ce.call(this._weekdaysParse, o)) ? r : -1 !== (r = Ce.call(this._shortWeekdaysParse, o)) ? r : null
}.call(this, e, t, n);
for (this._weekdaysParse || (this._weekdaysParse = [], this._minWeekdaysParse = [], this._shortWeekdaysParse = [], this._fullWeekdaysParse = []), i = 0; i < 7; i++) { if (r = u([2e3, 1]).day(i), n && !this._fullWeekdaysParse[i] && (this._fullWeekdaysParse[i] = new RegExp("^" + this.weekdays(r, "").replace(".", "\\.?") + "$", "i"), this._shortWeekdaysParse[i] = new RegExp("^" + this.weekdaysShort(r, "").replace(".", "\\.?") + "$", "i"), this._minWeekdaysParse[i] = new RegExp("^" + this.weekdaysMin(r, "").replace(".", "\\.?") + "$", "i")), this._weekdaysParse[i] || (a = "^" + this.weekdays(r, "") + "|^" + this.weekdaysShort(r, "") + "|^" + this.weekdaysMin(r, ""), this._weekdaysParse[i] = new RegExp(a.replace(".", ""), "i")), n && "dddd" === t && this._fullWeekdaysParse[i].test(e)) return i; if (n && "ddd" === t && this._shortWeekdaysParse[i].test(e)) return i; if (n && "dd" === t && this._minWeekdaysParse[i].test(e)) return i; if (!n && this._weekdaysParse[i].test(e)) return i }
}, vn.weekdaysRegex = function(e) { return this._weekdaysParseExact ? (f(this, "_weekdaysRegex") || Ke.call(this), e ? this._weekdaysStrictRegex : this._weekdaysRegex) : (f(this, "_weekdaysRegex") || (this._weekdaysRegex = Xe), this._weekdaysStrictRegex && e ? this._weekdaysStrictRegex : this._weekdaysRegex) }, vn.weekdaysShortRegex = function(e) { return this._weekdaysParseExact ? (f(this, "_weekdaysRegex") || Ke.call(this), e ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex) : (f(this, "_weekdaysShortRegex") || (this._weekdaysShortRegex = $e), this._weekdaysShortStrictRegex && e ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex) }, vn.weekdaysMinRegex = function(e) { return this._weekdaysParseExact ? (f(this, "_weekdaysRegex") || Ke.call(this), e ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex) : (f(this, "_weekdaysMinRegex") || (this._weekdaysMinRegex = Ze), this._weekdaysMinStrictRegex && e ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex) }, vn.isPM = function(e) { return "p" === (e + "").toLowerCase().charAt(0) }, vn.meridiem = function(e, t, n) { return 11 < e ? n ? "pm" : "PM" : n ? "am" : "AM" }, lt("en", { dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, ordinal: function(e) { var t = e % 10; return e + (1 === w(e % 100 / 10) ? "th" : 1 == t ? "st" : 2 == t ? "nd" : 3 == t ? "rd" : "th") } }), h.lang = n("moment.lang is deprecated. Use moment.locale instead.", lt), h.langData = n("moment.langData is deprecated. Use moment.localeData instead.", dt);
var xn = Math.abs;
function Mn(e, t, n, i) { var r = Yt(t, n); return e._milliseconds += i * r._milliseconds, e._days += i * r._days, e._months += i * r._months, e._bubble() }
function wn(e) { return e < 0 ? Math.floor(e) : Math.ceil(e) }
function _n(e) { return 4800 * e / 146097 }
function Sn(e) { return 146097 * e / 4800 }
function Cn(e) { return function() { return this.as(e) } }
var kn = Cn("ms"),
Tn = Cn("s"),
Ln = Cn("m"),
An = Cn("h"),
En = Cn("d"),
On = Cn("w"),
Pn = Cn("M"),
Dn = Cn("Q"),
Vn = Cn("y");
function Rn(e) { return function() { return this.isValid() ? this._data[e] : NaN } }
var zn = Rn("milliseconds"),
Bn = Rn("seconds"),
Hn = Rn("minutes"),
Nn = Rn("hours"),
In = Rn("days"),
Fn = Rn("months"),
Wn = Rn("years");
var jn = Math.round,
Yn = { ss: 44, s: 45, m: 45, h: 22, d: 26, M: 11 };
var Gn = Math.abs;
function Un(e) { return (0 < e) - (e < 0) || +e }
function qn() {
if (!this.isValid()) return this.localeData().invalidDate();
var e, t, n = Gn(this._milliseconds) / 1e3,
i = Gn(this._days),
r = Gn(this._months);
t = M((e = M(n / 60)) / 60), n %= 60, e %= 60;
var a = M(r / 12),
o = r %= 12,
s = i,
l = t,
c = e,
d = n ? n.toFixed(3).replace(/\.?0+$/, "") : "",
u = this.asSeconds();
if (!u) return "P0D";
var h = u < 0 ? "-" : "",
f = Un(this._months) !== Un(u) ? "-" : "",
g = Un(this._days) !== Un(u) ? "-" : "",
p = Un(this._milliseconds) !== Un(u) ? "-" : "";
return h + "P" + (a ? f + a + "Y" : "") + (o ? f + o + "M" : "") + (s ? g + s + "D" : "") + (l || c || d ? "T" : "") + (l ? p + l + "H" : "") + (c ? p + c + "M" : "") + (d ? p + d + "S" : "")
}
var Xn = Dt.prototype;
return Xn.isValid = function() { return this._isValid }, Xn.abs = function() { var e = this._data; return this._milliseconds = xn(this._milliseconds), this._days = xn(this._days), this._months = xn(this._months), e.milliseconds = xn(e.milliseconds), e.seconds = xn(e.seconds), e.minutes = xn(e.minutes), e.hours = xn(e.hours), e.months = xn(e.months), e.years = xn(e.years), this }, Xn.add = function(e, t) { return Mn(this, e, t, 1) }, Xn.subtract = function(e, t) { return Mn(this, e, t, -1) }, Xn.as = function(e) {
if (!this.isValid()) return NaN;
var t, n, i = this._milliseconds;
if ("month" === (e = D(e)) || "quarter" === e || "year" === e) switch (t = this._days + i / 864e5, n = this._months + _n(t), e) {
case "month":
return n;
case "quarter":
return n / 3;
case "year":
return n / 12
} else switch (t = this._days + Math.round(Sn(this._months)), e) {
case "week":
return t / 7 + i / 6048e5;
case "day":
return t + i / 864e5;
case "hour":
return 24 * t + i / 36e5;
case "minute":
return 1440 * t + i / 6e4;
case "second":
return 86400 * t + i / 1e3;
case "millisecond":
return Math.floor(864e5 * t) + i;
default:
throw new Error("Unknown unit " + e)
}
}, Xn.asMilliseconds = kn, Xn.asSeconds = Tn, Xn.asMinutes = Ln, Xn.asHours = An, Xn.asDays = En, Xn.asWeeks = On, Xn.asMonths = Pn, Xn.asQuarters = Dn, Xn.asYears = Vn, Xn.valueOf = function() { return this.isValid() ? this._milliseconds + 864e5 * this._days + this._months % 12 * 2592e6 + 31536e6 * w(this._months / 12) : NaN }, Xn._bubble = function() {
var e, t, n, i, r, a = this._milliseconds,
o = this._days,
s = this._months,
l = this._data;
return 0 <= a && 0 <= o && 0 <= s || a <= 0 && o <= 0 && s <= 0 || (a += 864e5 * wn(Sn(s) + o), s = o = 0), l.milliseconds = a % 1e3, e = M(a / 1e3), l.seconds = e % 60, t = M(e / 60), l.minutes = t % 60, n = M(t / 60), l.hours = n % 24, s += r = M(_n(o += M(n / 24))), o -= wn(Sn(r)), i = M(s / 12), s %= 12, l.days = o, l.months = s, l.years = i, this
}, Xn.clone = function() { return Yt(this) }, Xn.get = function(e) { return e = D(e), this.isValid() ? this[e + "s"]() : NaN }, Xn.milliseconds = zn, Xn.seconds = Bn, Xn.minutes = Hn, Xn.hours = Nn, Xn.days = In, Xn.weeks = function() { return M(this.days() / 7) }, Xn.months = Fn, Xn.years = Wn, Xn.humanize = function(e) {
if (!this.isValid()) return this.localeData().invalidDate();
var t = this.localeData(),
n = function(e, t, n) {
var i = Yt(e).abs(),
r = jn(i.as("s")),
a = jn(i.as("m")),
o = jn(i.as("h")),
s = jn(i.as("d")),
l = jn(i.as("M")),
c = jn(i.as("y")),
d = r <= Yn.ss && ["s", r] || r < Yn.s && ["ss", r] || a <= 1 && ["m"] || a < Yn.m && ["mm", a] || o <= 1 && ["h"] || o < Yn.h && ["hh", o] || s <= 1 && ["d"] || s < Yn.d && ["dd", s] || l <= 1 && ["M"] || l < Yn.M && ["MM", l] || c <= 1 && ["y"] || ["yy", c];
return d[2] = t, d[3] = 0 < +e, d[4] = n,
function(e, t, n, i, r) { return r.relativeTime(t || 1, !!n, e, i) }.apply(null, d)
}(this, !e, t);
return e && (n = t.pastFuture(+this, n)), t.postformat(n)
}, Xn.toISOString = qn, Xn.toString = qn, Xn.toJSON = qn, Xn.locale = Jt, Xn.localeData = en, Xn.toIsoString = n("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)", qn), Xn.lang = Qt, W("X", 0, 0, "unix"), W("x", 0, 0, "valueOf"), le("x", ie), le("X", /[+-]?\d+(\.\d{1,3})?/), he("X", function(e, t, n) { n._d = new Date(1e3 * parseFloat(e, 10)) }), he("x", function(e, t, n) { n._d = new Date(w(e)) }), h.version = "2.24.0", e = Lt, h.fn = gn, h.min = function() { return Ot("isBefore", [].slice.call(arguments, 0)) }, h.max = function() { return Ot("isAfter", [].slice.call(arguments, 0)) }, h.now = function() { return Date.now ? Date.now() : +new Date }, h.utc = u, h.unix = function(e) { return Lt(1e3 * e) }, h.months = function(e, t) { return yn(e, t, "months") }, h.isDate = c, h.locale = lt, h.invalid = v, h.duration = Yt, h.isMoment = x, h.weekdays = function(e, t, n) { return bn(e, t, n, "weekdays") }, h.parseZone = function() { return Lt.apply(null, arguments).parseZone() }, h.localeData = dt, h.isDuration = Vt, h.monthsShort = function(e, t) { return yn(e, t, "monthsShort") }, h.weekdaysMin = function(e, t, n) { return bn(e, t, n, "weekdaysMin") }, h.defineLocale = ct, h.updateLocale = function(e, t) {
if (null != t) {
var n, i, r = it;
null != (i = st(e)) && (r = i._config), (n = new E(t = A(r, t))).parentLocale = rt[e], rt[e] = n, lt(e)
} else null != rt[e] && (null != rt[e].parentLocale ? rt[e] = rt[e].parentLocale : null != rt[e] && delete rt[e]);
return rt[e]
}, h.locales = function() { return C(rt) }, h.weekdaysShort = function(e, t, n) { return bn(e, t, n, "weekdaysShort") }, h.normalizeUnits = D, h.relativeTimeRounding = function(e) { return void 0 === e ? jn : "function" == typeof e && (jn = e, !0) }, h.relativeTimeThreshold = function(e, t) { return void 0 !== Yn[e] && (void 0 === t ? Yn[e] : (Yn[e] = t, "s" === e && (Yn.ss = t - 1), !0)) }, h.calendarFormat = function(e, t) { var n = e.diff(t, "days", !0); return n < -6 ? "sameElse" : n < -1 ? "lastWeek" : n < 0 ? "lastDay" : n < 1 ? "sameDay" : n < 2 ? "nextDay" : n < 7 ? "nextWeek" : "sameElse" }, h.prototype = gn, h.HTML5_FMT = { DATETIME_LOCAL: "YYYY-MM-DDTHH:mm", DATETIME_LOCAL_SECONDS: "YYYY-MM-DDTHH:mm:ss", DATETIME_LOCAL_MS: "YYYY-MM-DDTHH:mm:ss.SSS", DATE: "YYYY-MM-DD", TIME: "HH:mm", TIME_SECONDS: "HH:mm:ss", TIME_MS: "HH:mm:ss.SSS", WEEK: "GGGG-[W]WW", MONTH: "YYYY-MM" }, h
}, "object" == typeof e && void 0 !== Zn ? Zn.exports = n() : "function" == typeof define && define.amd ? define(n) : t.moment = n()
}, {}],
3: [function(e, n, i) {
(function(Fr) {
var e, t;
e = this, t = function() {
"use strict";
var e = "undefined" != typeof globalThis ? globalThis : "undefined" != typeof window ? window : void 0 !== Fr ? Fr : "undefined" != typeof self ? self : {};
function t(e, t) { return e(t = { exports: {} }, t.exports), t.exports }
function n(e) { return e && e.Math == Math && e }
function v(e) { try { return !!e() } catch (e) { return !0 } }
function x(e, t) { return { enumerable: !(1 & e), configurable: !(2 & e), writable: !(4 & e), value: t } }
function r(e) { return C.call(e).slice(8, -1) }
function l(e) { if (null == e) throw TypeError("Can't call method on " + e); return e }
function d(e) { return T(l(e)) }
function m(e) { return "object" == typeof e ? null !== e : "function" == typeof e }
function i(e, t) { if (!m(e)) return e; var n, i; if (t && "function" == typeof(n = e.toString) && !m(i = n.call(e))) return i; if ("function" == typeof(n = e.valueOf) && !m(i = n.call(e))) return i; if (!t && "function" == typeof(n = e.toString) && !m(i = n.call(e))) return i; throw TypeError("Can't convert object to primitive value") }
function c(e, t) { return L.call(e, t) }
function a(e) { return E ? A.createElement(e) : {} }
function S(e) { if (!m(e)) throw TypeError(String(e) + " is not an object"); return e }
function u(t, n) { try { z(y, t, n) } catch (e) { y[t] = n } return n }
function s(e) { return "Symbol(" + String(void 0 === e ? "" : e) + ")_" + (++F + W).toString(36) }
function o(e) { return j[e] || (j[e] = s(e)) }
var h, f, g, p = "object",
y = n(typeof globalThis == p && globalThis) || n(typeof window == p && window) || n(typeof self == p && self) || n(typeof e == p && e) || Function("return this")(),
b = !v(function() { return 7 != Object.defineProperty({}, "a", { get: function() { return 7 } }).a }),
M = {}.propertyIsEnumerable,
w = Object.getOwnPropertyDescriptor,
_ = { f: w && !M.call({ 1: 2 }, 1) ? function(e) { var t = w(this, e); return !!t && t.enumerable } : M },
C = {}.toString,
k = "".split,
T = v(function() { return !Object("z").propertyIsEnumerable(0) }) ? function(e) { return "String" == r(e) ? k.call(e, "") : Object(e) } : Object,
L = {}.hasOwnProperty,
A = y.document,
E = m(A) && m(A.createElement),
O = !b && !v(function() { return 7 != Object.defineProperty(a("div"), "a", { get: function() { return 7 } }).a }),
P = Object.getOwnPropertyDescriptor,
D = {
f: b ? P : function(e, t) {
if (e = d(e), t = i(t, !0), O) try { return P(e, t) } catch (e) {}
if (c(e, t)) return x(!_.f.call(e, t), e[t])
}
},
V = Object.defineProperty,
R = {
f: b ? V : function(e, t, n) {
if (S(e), t = i(t, !0), S(n), O) try { return V(e, t, n) } catch (e) {}
if ("get" in n || "set" in n) throw TypeError("Accessors not supported");
return "value" in n && (e[t] = n.value), e
}
},
z = b ? function(e, t, n) { return R.f(e, t, x(1, n)) } : function(e, t, n) { return e[t] = n, e },
B = t(function(e) {
var n = y["__core-js_shared__"] || u("__core-js_shared__", {});
(e.exports = function(e, t) { return n[e] || (n[e] = void 0 !== t ? t : {}) })("versions", []).push({ version: "3.2.1", mode: "global", copyright: "© 2019 Denis Pushkarev (zloirock.ru)" })
}),
H = B("native-function-to-string", Function.toString),
N = y.WeakMap,
I = "function" == typeof N && /native code/.test(H.call(N)),
F = 0,
W = Math.random(),
j = B("keys"),
Y = {},
G = y.WeakMap;
if (I) {
var U = new G,
q = U.get,
X = U.has,
$ = U.set;
h = function(e, t) { return $.call(U, e, t), t }, f = function(e) { return q.call(U, e) || {} }, g = function(e) { return X.call(U, e) }
} else {
var Z = o("state");
Y[Z] = !0, h = function(e, t) { return z(e, Z, t), t }, f = function(e) { return c(e, Z) ? e[Z] : {} }, g = function(e) { return c(e, Z) }
}
function K(e) { return "function" == typeof e ? e : void 0 }
function J(e, t) { return arguments.length < 2 ? K(pe[e]) || K(y[e]) : pe[e] && pe[e][t] || y[e] && y[e][t] }
function Q(e) { return isNaN(e = +e) ? 0 : (0 < e ? me : ve)(e) }
function ee(e) { return 0 < e ? ye(Q(e), 9007199254740991) : 0 }
function te(c) {
return function(e, t, n) {
var i, r, a, o = d(e),
s = ee(o.length),
l = (r = s, (a = Q(n)) < 0 ? be(a + r, 0) : xe(a, r));
if (c && t != t) {
for (; l < s;)
if ((i = o[l++]) != i) return !0
} else
for (; l < s; l++)
if ((c || l in o) && o[l] === t) return c || l || 0; return !c && -1
}
}
function ne(e, t) {
var n, i = d(e),
r = 0,
a = [];
for (n in i) !c(Y, n) && c(i, n) && a.push(n);
for (; t.length > r;) c(i, n = t[r++]) && (~Me(a, n) || a.push(n));
return a
}
function ie(e, t) {
for (var n = ke(t), i = R.f, r = D.f, a = 0; a < n.length; a++) {
var o = n[a];
c(e, o) || i(e, o, r(t, o))
}
}
function re(e, t) { var n = Ae[Le(e)]; return n == Oe || n != Ee && ("function" == typeof t ? v(t) : !!t) }
function ae(e, t) {
var n, i, r, a, o, s = e.target,
l = e.global,
c = e.stat;
if (n = l ? y : c ? y[s] || u(s, {}) : (y[s] || {}).prototype)
for (i in t) {
if (a = t[i], r = e.noTargetGet ? (o = De(n, i)) && o.value : n[i], !Pe(l ? i : s + (c ? "." : "#") + i, e.forced) && void 0 !== r) {
if (typeof a == typeof r) continue;
ie(a, r)
}(e.sham || r && r.sham) && z(a, "sham", !0), ge(n, i, a, e)
}
}
function oe(e) { if ("function" != typeof e) throw TypeError(String(e) + " is not a function"); return e }
function se(i, r, e) {
if (oe(i), void 0 === r) return i;
switch (e) {
case 0:
return function() { return i.call(r) };
case 1:
return function(e) { return i.call(r, e) };
case 2:
return function(e, t) { return i.call(r, e, t) };
case 3:
return function(e, t, n) { return i.call(r, e, t, n) }
}
return function() { return i.apply(r, arguments) }
}
function le(e) { return Object(l(e)) }
function ce(e) { return Be[e] || (Be[e] = Re && ze[e] || (Re ? ze : s)("Symbol." + e)) }
function de(e, t) { var n; return Ve(e) && ("function" != typeof(n = e.constructor) || n !== Array && !Ve(n.prototype) ? m(n) && null === (n = n[He]) && (n = void 0) : n = void 0), new(void 0 === n ? Array : n)(0 === t ? 0 : t) }
function ue(f) {
var g = 1 == f,
p = 2 == f,
v = 3 == f,
m = 4 == f,
y = 6 == f,
b = 5 == f || y;
return function(e, t, n, i) {
for (var r, a, o = le(e), s = T(o), l = se(t, n, 3), c = ee(s.length), d = 0, u = i || de, h = g ? u(e, c) : p ? u(e, 0) : void 0; d < c; d++)
if ((b || d in s) && (a = l(r = s[d], d, o), f))
if (g) h[d] = a;
else if (a) switch (f) {
case 3:
return !0;
case 5:
return r;
case 6:
return d;
case 2:
Ne.call(h, r)
} else if (m) return !1;
return y ? -1 : v || m ? m : h
}
}
function he(e, t) { var n = [][e]; return !n || !v(function() { n.call(null, t || function() { throw 1 }, 1) }) }
var fe = { set: h, get: f, has: g, enforce: function(e) { return g(e) ? f(e) : h(e, {}) }, getterFor: function(n) { return function(e) { var t; if (!m(e) || (t = f(e)).type !== n) throw TypeError("Incompatible receiver, " + n + " required"); return t } } },
ge = t(function(e) {
var t = fe.get,
s = fe.enforce,
l = String(H).split("toString");
B("inspectSource", function(e) { return H.call(e) }), (e.exports = function(e, t, n, i) {
var r = !!i && !!i.unsafe,
a = !!i && !!i.enumerable,
o = !!i && !!i.noTargetGet;
"function" == typeof n && ("string" != typeof t || c(n, "name") || z(n, "name", t), s(n).source = l.join("string" == typeof t ? t : "")), e !== y ? (r ? !o && e[t] && (a = !0) : delete e[t], a ? e[t] = n : z(e, t, n)) : a ? e[t] = n : u(t, n)
})(Function.prototype, "toString", function() { return "function" == typeof this && t(this).source || H.call(this) })
}),
pe = y,
ve = Math.ceil,
me = Math.floor,
ye = Math.min,
be = Math.max,
xe = Math.min,
Me = (te(!0), te(!1)),
we = ["constructor", "hasOwnProperty", "isPrototypeOf", "propertyIsEnumerable", "toLocaleString", "toString", "valueOf"],
_e = we.concat("length", "prototype"),
Se = { f: Object.getOwnPropertyNames || function(e) { return ne(e, _e) } },
Ce = { f: Object.getOwnPropertySymbols },
ke = J("Reflect", "ownKeys") || function(e) {
var t = Se.f(S(e)),
n = Ce.f;
return n ? t.concat(n(e)) : t
},
Te = /#|\.prototype\./,
Le = re.normalize = function(e) { return String(e).replace(Te, ".").toLowerCase() },
Ae = re.data = {},
Ee = re.NATIVE = "N",
Oe = re.POLYFILL = "P",
Pe = re,
De = D.f,
Ve = Array.isArray || function(e) { return "Array" == r(e) },
Re = !!Object.getOwnPropertySymbols && !v(function() { return !String(Symbol()) }),
ze = y.Symbol,
Be = B("wks"),
He = ce("species"),
Ne = [].push,
Ie = { forEach: ue(0), map: ue(1), filter: ue(2), some: ue(3), every: ue(4), find: ue(5), findIndex: ue(6) },
Fe = Ie.forEach,
We = he("forEach") ? function(e) { return Fe(this, e, 1 < arguments.length ? arguments[1] : void 0) } : [].forEach;
ae({ target: "Array", proto: !0, forced: [].forEach != We }, { forEach: We });
var je = { CSSRuleList: 0, CSSStyleDeclaration: 0, CSSValueList: 0, ClientRectList: 0, DOMRectList: 0, DOMStringList: 0, DOMTokenList: 1, DataTransferItemList: 0, FileList: 0, HTMLAllCollection: 0, HTMLCollection: 0, HTMLFormElement: 0, HTMLSelectElement: 0, MediaList: 0, MimeTypeArray: 0, NamedNodeMap: 0, NodeList: 1, PaintRequestList: 0, Plugin: 0, PluginArray: 0, SVGLengthList: 0, SVGNumberList: 0, SVGPathSegList: 0, SVGPointList: 0, SVGStringList: 0, SVGTransformList: 0, SourceBufferList: 0, StyleSheetList: 0, TextTrackCueList: 0, TextTrackList: 0, TouchList: 0 };
for (var Ye in je) {
var Ge = y[Ye],
Ue = Ge && Ge.prototype;
if (Ue && Ue.forEach !== We) try { z(Ue, "forEach", We) } catch (e) { Ue.forEach = We }
}
var qe = !("undefined" == typeof window || !window.document || !window.document.createElement),
Xe = ce("species"),
$e = Ie.filter;
ae({ target: "Array", proto: !0, forced: !!v(function() { var e = []; return (e.constructor = {})[Xe] = function() { return { foo: 1 } }, 1 !== e.filter(Boolean).foo }) }, { filter: function(e) { return $e(this, e, 1 < arguments.length ? arguments[1] : void 0) } });
function Ze() {}
var Ke = Object.keys || function(e) { return ne(e, we) },
Je = b ? Object.defineProperties : function(e, t) { S(e); for (var n, i = Ke(t), r = i.length, a = 0; a < r;) R.f(e, n = i[a++], t[n]); return e },
Qe = J("document", "documentElement"),
et = o("IE_PROTO"),
tt = function() {
var e, t = a("iframe"),
n = we.length;
for (t.style.display = "none", Qe.appendChild(t), t.src = String("javascript:"), (e = t.contentWindow.document).open(), e.write("<script>document.F=Object<\/script>"), e.close(), tt = e.F; n--;) delete tt.prototype[we[n]];
return tt()
},
nt = Object.create || function(e, t) { var n; return null !== e ? (Ze.prototype = S(e), n = new Ze, Ze.prototype = null, n[et] = e) : n = tt(), void 0 === t ? n : Je(n, t) };
Y[et] = !0;
var it = ce("unscopables"),
rt = Array.prototype;
null == rt[it] && z(rt, it, nt(null));
function at(e) { rt[it][e] = !0 }
var ot, st, lt, ct = {},
dt = !v(function() {
function e() {}
return e.prototype.constructor = null, Object.getPrototypeOf(new e) !== e.prototype
}),
ut = o("IE_PROTO"),
ht = Object.prototype,
ft = dt ? Object.getPrototypeOf : function(e) { return e = le(e), c(e, ut) ? e[ut] : "function" == typeof e.constructor && e instanceof e.constructor ? e.constructor.prototype : e instanceof Object ? ht : null },
gt = ce("iterator"),
pt = !1;
[].keys && ("next" in (lt = [].keys()) ? (st = ft(ft(lt))) !== Object.prototype && (ot = st) : pt = !0), null == ot && (ot = {}), c(ot, gt) || z(ot, gt, function() { return this });
function vt(e, t, n) { e && !c(e = n ? e : e.prototype, wt) && Mt(e, wt, { configurable: !0, value: t }) }
function mt() { return this }
function yt() { return this }
function bt(e, t, n, i, r, a, o) {
var s, l, c;
function d(e) {
if (e === r && y) return y;
if (!kt && e in v) return v[e];
switch (e) {
case "keys":
case "values":
case "entries":
return function() { return new n(this, e) }
}
return function() { return new n(this) }
}
l = i, c = t + " Iterator", (s = n).prototype = nt(_t, { next: x(1, l) }), vt(s, c, !1), ct[c] = mt;
var u, h, f, g = t + " Iterator",
p = !1,
v = e.prototype,
m = v[Tt] || v["@@iterator"] || r && v[r],
y = !kt && m || d(r),
b = "Array" == t && v.entries || m;
if (b && (u = ft(b.call(new e)), Ct !== Object.prototype && u.next && (ft(u) !== Ct && (St ? St(u, Ct) : "function" != typeof u[Tt] && z(u, Tt, yt)), vt(u, g, !0))), "values" == r && m && "values" !== m.name && (p = !0, y = function() { return m.call(this) }), v[Tt] !== y && z(v, Tt, y), ct[t] = y, r)
if (h = { values: d("values"), keys: a ? y : d("keys"), entries: d("entries") }, o)
for (f in h) !kt && !p && f in v || ge(v, f, h[f]);
else ae({ target: t, proto: !0, forced: kt || p }, h);
return h
}
var xt = { IteratorPrototype: ot, BUGGY_SAFARI_ITERATORS: pt },
Mt = R.f,
wt = ce("toStringTag"),
_t = xt.IteratorPrototype,
St = Object.setPrototypeOf || ("__proto__" in {} ? function() {
var n, i = !1,
e = {};
try {
(n = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__").set).call(e, []), i = e instanceof Array
} catch (n) {}
return function(e, t) {
return S(e),
function(e) { if (!m(e) && null !== e) throw TypeError("Can't set " + String(e) + " as a prototype") }(t), i ? n.call(e, t) : e.__proto__ = t, e
}
}() : void 0),
Ct = xt.IteratorPrototype,
kt = xt.BUGGY_SAFARI_ITERATORS,
Tt = ce("iterator"),
Lt = fe.set,
At = fe.getterFor("Array Iterator"),
Et = bt(Array, "Array", function(e, t) { Lt(this, { type: "Array Iterator", target: d(e), index: 0, kind: t }) }, function() {
var e = At(this),
t = e.target,
n = e.kind,
i = e.index++;
return !t || i >= t.length ? { value: e.target = void 0, done: !0 } : "keys" == n ? { value: i, done: !1 } : "values" == n ? { value: t[i], done: !1 } : { value: [i, t[i]], done: !1 }
}, "values");
ct.Arguments = ct.Array, at("keys"), at("values"), at("entries");
var Ot = Object.assign,
Pt = !Ot || v(function() {
var e = {},
t = {},
n = Symbol();
return e[n] = 7, "abcdefghijklmnopqrst".split("").forEach(function(e) { t[e] = e }), 7 != Ot({}, e)[n] || "abcdefghijklmnopqrst" != Ke(Ot({}, t)).join("")
}) ? function(e, t) {
for (var n = le(e), i = arguments.length, r = 1, a = Ce.f, o = _.f; r < i;)
for (var s, l = T(arguments[r++]), c = a ? Ke(l).concat(a(l)) : Ke(l), d = c.length, u = 0; u < d;) s = c[u++], b && !o.call(l, s) || (n[s] = l[s]);
return n
} : Ot;
ae({ target: "Object", stat: !0, forced: Object.assign !== Pt }, { assign: Pt });
function Dt(e) { var t, n, i; return void 0 === e ? "Undefined" : null === e ? "Null" : "string" == typeof(n = function(e, t) { try { return e[t] } catch (e) {} }(t = Object(e), Vt)) ? n : Rt ? r(t) : "Object" == (i = r(t)) && "function" == typeof t.callee ? "Arguments" : i }
var Vt = ce("toStringTag"),
Rt = "Arguments" == r(function() { return arguments }()),
zt = {};
zt[ce("toStringTag")] = "z";
var Bt = "[object z]" !== String(zt) ? function() { return "[object " + Dt(this) + "]" } : zt.toString,
Ht = Object.prototype;
Bt !== Ht.toString && ge(Ht, "toString", Bt, { unsafe: !0 });
function Nt(n) { return function(e) { var t = String(l(e)); return 1 & n && (t = t.replace(Wt, "")), 2 & n && (t = t.replace(jt, "")), t } }
var It = "\t\n\v\f\r \u2028\u2029\ufeff",
Ft = "[" + It + "]",
Wt = RegExp("^" + Ft + Ft + "*"),
jt = RegExp(Ft + Ft + "*$"),
Yt = (Nt(1), Nt(2), Nt(3)),
Gt = y.parseInt,
Ut = /^[+-]?0[Xx]/,
qt = 8 !== Gt(It + "08") || 22 !== Gt(It + "0x16") ? function(e, t) { var n = Yt(String(e)); return Gt(n, t >>> 0 || (Ut.test(n) ? 16 : 10)) } : Gt;
ae({ global: !0, forced: parseInt != qt }, { parseInt: qt });
function Xt(s) {
return function(e, t) {
var n, i, r = String(l(e)),
a = Q(t),
o = r.length;
return a < 0 || o <= a ? s ? "" : void 0 : (n = r.charCodeAt(a)) < 55296 || 56319 < n || a + 1 === o || (i = r.charCodeAt(a + 1)) < 56320 || 57343 < i ? s ? r.charAt(a) : n : s ? r.slice(a, a + 2) : i - 56320 + (n - 55296 << 10) + 65536
}
}
var $t = { codeAt: Xt(!1), charAt: Xt(!0) },
Zt = $t.charAt,
Kt = fe.set,
Jt = fe.getterFor("String Iterator");
bt(String, "String", function(e) { Kt(this, { type: "String Iterator", string: String(e), index: 0 }) }, function() {
var e, t = Jt(this),
n = t.string,
i = t.index;
return i >= n.length ? { value: void 0, done: !0 } : (e = Zt(n, i), t.index += e.length, { value: e, done: !1 })
});
function Qt(e, t, n) { for (var i in t) ge(e, i, t[i], n); return e }
function en(e, t, n, i) { try { return i ? t(S(n)[0], n[1]) : t(n) } catch (t) { var r = e.return; throw void 0 !== r && S(r.call(e)), t } }
function tn(e, t, n) { if (!(e instanceof t)) throw TypeError("Incorrect " + (n ? n + " " : "") + "invocation"); return e }
var nn = !v(function() { return Object.isExtensible(Object.preventExtensions({})) }),
rn = t(function(e) {
function n(e) { t(e, i, { value: { objectID: "O" + ++r, weakData: {} } }) }
var t = R.f,
i = s("meta"),
r = 0,
a = Object.isExtensible || function() { return !0 },
o = e.exports = {
REQUIRED: !1,
fastKey: function(e, t) {
if (!m(e)) return "symbol" == typeof e ? e : ("string" == typeof e ? "S" : "P") + e;
if (!c(e, i)) {
if (!a(e)) return "F";
if (!t) return "E";
n(e)
}
return e[i].objectID
},
getWeakData: function(e, t) {
if (!c(e, i)) {
if (!a(e)) return !0;
if (!t) return !1;
n(e)
}
return e[i].weakData
},
onFreeze: function(e) { return nn && o.REQUIRED && a(e) && !c(e, i) && n(e), e }
};
Y[i] = !0
}),
an = (rn.REQUIRED, rn.fastKey, rn.getWeakData, rn.onFreeze, ce("iterator")),
on = Array.prototype,
sn = ce("iterator"),
ln = t(function(e) {
function f(e, t) { this.stopped = e, this.result = t }(e.exports = function(e, t, n, i, r) {
var a, o, s, l, c, d, u, h = se(t, n, i ? 2 : 1);
if (r) a = e;
else {
if ("function" != typeof(o = function(e) { if (null != e) return e[sn] || e["@@iterator"] || ct[Dt(e)] }(e))) throw TypeError("Target is not iterable");
if (void 0 !== (u = o) && (ct.Array === u || on[an] === u)) {
for (s = 0, l = ee(e.length); s < l; s++)
if ((c = i ? h(S(d = e[s])[0], d[1]) : h(e[s])) && c instanceof f) return c;
return new f(!1)
}
a = o.call(e)
}
for (; !(d = a.next()).done;)
if ((c = en(a, h, d.value, i)) && c instanceof f) return c;
return new f(!1)
}).stop = function(e) { return new f(!0, e) }
}),
cn = ce("iterator"),
dn = !1;
try {
var un = 0,
hn = { next: function() { return { done: !!un++ } }, return: function() { dn = !0 } };
hn[cn] = function() { return this }, Array.from(hn, function() { throw 2 })
} catch (e) {}
function fn(s, e, t, l, i) {
function n(e) {
var n = r[e];
ge(r, e, "add" == e ? function(e) { return n.call(this, 0 === e ? 0 : e), this } : "delete" == e ? function(e) { return !(i && !m(e)) && n.call(this, 0 === e ? 0 : e) } : "get" == e ? function(e) { return i && !m(e) ? void 0 : n.call(this, 0 === e ? 0 : e) } : "has" == e ? function(e) { return !(i && !m(e)) && n.call(this, 0 === e ? 0 : e) } : function(e, t) { return n.call(this, 0 === e ? 0 : e, t), this })
}
var c = y[s],
r = c && c.prototype,
d = c,
u = l ? "set" : "add",
a = {};
if (Pe(s, "function" != typeof c || !(i || r.forEach && !v(function() {
(new c).entries().next()
})))) d = t.getConstructor(e, s, l, u), rn.REQUIRED = !0;
else if (Pe(s, !0)) {
var o = new d,
h = o[u](i ? {} : -0, 1) != o,
f = v(function() { o.has(1) }),
g = function() {
if (!dn) return !1;
var e = !1;
try {
var t = {};
t[cn] = function() { return { next: function() { return { done: e = !0 } } } },
function(e) { new c(e) }(t)
} catch (e) {}
return e
}(),
p = !i && v(function() { for (var e = new c, t = 5; t--;) e[u](t, t); return !e.has(-0) });
g || (((d = e(function(e, t) { tn(e, d, s); var n, i, r, a, o = (n = new c, i = d, St && "function" == typeof(r = e.constructor) && r !== i && m(a = r.prototype) && a !== i.prototype && St(n, a), n); return null != t && ln(t, o[u], o, l), o })).prototype = r).constructor = d), (f || p) && (n("delete"), n("has"), l && n("get")), (p || h) && n(u), i && r.clear && delete r.clear
}
return a[s] = d, ae({ global: !0, forced: d != c }, a), vt(d, s), i || t.setStrong(d, s, l), d
}
function gn(e) { return e.frozen || (e.frozen = new wn) }
function pn(e, t) { return bn(e.entries, function(e) { return e[0] === t }) }
var vn = rn.getWeakData,
mn = fe.set,
yn = fe.getterFor,
bn = Ie.find,
xn = Ie.findIndex,
Mn = 0,
wn = function() { this.entries = [] };
wn.prototype = {
get: function(e) { var t = pn(this, e); if (t) return t[1] },
has: function(e) { return !!pn(this, e) },
set: function(e, t) {
var n = pn(this, e);
n ? n[1] = t : this.entries.push([e, t])
},
delete: function(t) { var e = xn(this.entries, function(e) { return e[0] === t }); return ~e && this.entries.splice(e, 1), !!~e }
};
var _n = {
getConstructor: function(e, n, i, r) {
function a(e, t, n) {
var i = s(e),
r = vn(S(t), !0);
return !0 === r ? gn(i).set(t, n) : r[i.id] = n, e
}
var o = e(function(e, t) { tn(e, o, n), mn(e, { type: n, id: Mn++, frozen: void 0 }), null != t && ln(t, e[r], e, i) }),
s = yn(n);
return Qt(o.prototype, { delete: function(e) { var t = s(this); if (!m(e)) return !1; var n = vn(e); return !0 === n ? gn(t).delete(e) : n && c(n, t.id) && delete n[t.id] }, has: function(e) { var t = s(this); if (!m(e)) return !1; var n = vn(e); return !0 === n ? gn(t).has(e) : n && c(n, t.id) } }), Qt(o.prototype, i ? { get: function(e) { var t = s(this); if (m(e)) { var n = vn(e); return !0 === n ? gn(t).get(e) : n ? n[t.id] : void 0 } }, set: function(e, t) { return a(this, e, t) } } : { add: function(e) { return a(this, e, !0) } }), o
}
},
Sn = (t(function(e) {
function t(e) { return function() { return e(this, arguments.length ? arguments[0] : void 0) } }
var i, r = fe.enforce,
n = !y.ActiveXObject && "ActiveXObject" in y,
a = Object.isExtensible,
o = e.exports = fn("WeakMap", t, _n, !0, !0);
if (I && n) {
i = _n.getConstructor(t, "WeakMap", !0), rn.REQUIRED = !0;
var s = o.prototype,
l = s.delete,
c = s.has,
d = s.get,
u = s.set;
Qt(s, {
delete: function(e) { if (!m(e) || a(e)) return l.call(this, e); var t = r(this); return t.frozen || (t.frozen = new i), l.call(this, e) || t.frozen.delete(e) },
has: function(e) { if (!m(e) || a(e)) return c.call(this, e); var t = r(this); return t.frozen || (t.frozen = new i), c.call(this, e) || t.frozen.has(e) },
get: function(e) { if (!m(e) || a(e)) return d.call(this, e); var t = r(this); return t.frozen || (t.frozen = new i), c.call(this, e) ? d.call(this, e) : t.frozen.get(e) },
set: function(e, t) {
if (m(e) && !a(e)) {
var n = r(this);
n.frozen || (n.frozen = new i), c.call(this, e) ? u.call(this, e, t) : n.frozen.set(e, t)
} else u.call(this, e, t);
return this
}
})
}
}), ce("iterator")),
Cn = ce("toStringTag"),
kn = Et.values;
for (var Tn in je) {
var Ln = y[Tn],
An = Ln && Ln.prototype;
if (An) {
if (An[Sn] !== kn) try { z(An, Sn, kn) } catch (e) { An[Sn] = kn }
if (An[Cn] || z(An, Cn, Tn), je[Tn])
for (var En in Et)
if (An[En] !== Et[En]) try { z(An, En, Et[En]) } catch (e) { An[En] = Et[En] }
}
}
function On() { return Wn.Date.now() }
var Pn = "Expected a function",
Dn = NaN,
Vn = "[object Symbol]",
Rn = /^\s+|\s+$/g,
zn = /^[-+]0x[0-9a-f]+$/i,
Bn = /^0b[01]+$/i,
Hn = /^0o[0-7]+$/i,
Nn = parseInt,
In = "object" == typeof e && e && e.Object === Object && e,
Fn = "object" == typeof self && self && self.Object === Object && self,
Wn = In || Fn || Function("return this")(),
jn = Object.prototype.toString,
Yn = Math.max,
Gn = Math.min;
function Un(e) { var t = typeof e; return !!e && ("object" == t || "function" == t) }
function qn(e) {
if ("number" == typeof e) return e;
if ("symbol" == typeof(t = e) || t && "object" == typeof t && jn.call(t) == Vn) return Dn;
var t;
if (Un(e)) {
var n = "function" == typeof e.valueOf ? e.valueOf() : e;
e = Un(n) ? n + "" : n
}
if ("string" != typeof e) return 0 === e ? e : +e;
e = e.replace(Rn, "");
var i = Bn.test(e);
return i || Hn.test(e) ? Nn(e.slice(2), i ? 2 : 8) : zn.test(e) ? Dn : +e
}
function Xn(e, t, n) {
var i = !0,
r = !0;
if ("function" != typeof e) throw new TypeError(Pn);
return Un(n) && (i = "leading" in n ? !!n.leading : i, r = "trailing" in n ? !!n.trailing : r),
function(i, r, e) {
var a, o, n, s, l, c, d = 0,
u = !1,
h = !1,
t = !0;
if ("function" != typeof i) throw new TypeError(Pn);
function f(e) {
var t = a,
n = o;
return a = o = void 0, d = e, s = i.apply(n, t)
}
function g(e) { var t = e - c; return void 0 === c || r <= t || t < 0 || h && n <= e - d }
function p() {
var e, t = On();
if (g(t)) return v(t);
l = setTimeout(p, (e = r - (t - c), h ? Gn(e, n - (t - d)) : e))
}
function v(e) { return l = void 0, t && a ? f(e) : (a = o = void 0, s) }
function m() {
var e, t = On(),
n = g(t);
if (a = arguments, o = this, c = t, n) { if (void 0 === l) return d = e = c, l = setTimeout(p, r), u ? f(e) : s; if (h) return l = setTimeout(p, r), f(c) }
return void 0 === l && (l = setTimeout(p, r)), s
}
return r = qn(r) || 0, Un(e) && (u = !!e.leading, n = (h = "maxWait" in e) ? Yn(qn(e.maxWait) || 0, r) : n, t = "trailing" in e ? !!e.trailing : t), m.cancel = function() { void 0 !== l && clearTimeout(l), a = c = o = l = void(d = 0) }, m.flush = function() { return void 0 === l ? s : v(On()) }, m
}(e, t, { leading: i, maxWait: t, trailing: r })
}
function $n() { return ii.Date.now() }
var Zn = /^\s+|\s+$/g,
Kn = /^[-+]0x[0-9a-f]+$/i,
Jn = /^0b[01]+$/i,
Qn = /^0o[0-7]+$/i,
ei = parseInt,
ti = "object" == typeof e && e && e.Object === Object && e,
ni = "object" == typeof self && self && self.Object === Object && self,
ii = ti || ni || Function("return this")(),
ri = Object.prototype.toString,
ai = Math.max,
oi = Math.min;
function si(e) { var t = typeof e; return !!e && ("object" == t || "function" == t) }
function li(e) {
if ("number" == typeof e) return e;
if ("symbol" == typeof(t = e) || t && "object" == typeof t && "[object Symbol]" == ri.call(t)) return NaN;
var t;
if (si(e)) {
var n = "function" == typeof e.valueOf ? e.valueOf() : e;
e = si(n) ? n + "" : n
}
if ("string" != typeof e) return 0 === e ? e : +e;
e = e.replace(Zn, "");
var i = Jn.test(e);
return i || Qn.test(e) ? ei(e.slice(2), i ? 2 : 8) : Kn.test(e) ? NaN : +e
}
function ci(i, r, e) {
var a, o, n, s, l, c, d = 0,
u = !1,
h = !1,
t = !0;
if ("function" != typeof i) throw new TypeError("Expected a function");
function f(e) {
var t = a,
n = o;
return a = o = void 0, d = e, s = i.apply(n, t)
}
function g(e) { var t = e - c; return void 0 === c || r <= t || t < 0 || h && n <= e - d }
function p() {
var e, t = $n();
if (g(t)) return v(t);
l = setTimeout(p, (e = r - (t - c), h ? oi(e, n - (t - d)) : e))
}
function v(e) { return l = void 0, t && a ? f(e) : (a = o = void 0, s) }
function m() {
var e, t = $n(),
n = g(t);
if (a = arguments, o = this, c = t, n) { if (void 0 === l) return d = e = c, l = setTimeout(p, r), u ? f(e) : s; if (h) return l = setTimeout(p, r), f(c) }
return void 0 === l && (l = setTimeout(p, r)), s
}
return r = li(r) || 0, si(e) && (u = !!e.leading, n = (h = "maxWait" in e) ? ai(li(e.maxWait) || 0, r) : n, t = "trailing" in e ? !!e.trailing : t), m.cancel = function() { void 0 !== l && clearTimeout(l), a = c = o = l = void(d = 0) }, m.flush = function() { return void 0 === l ? s : v($n()) }, m
}
var di, ui = "Expected a function",
hi = "__lodash_hash_undefined__",
fi = "[object Function]",
gi = "[object GeneratorFunction]",
pi = /^\[object .+?Constructor\]$/,
vi = "object" == typeof e && e && e.Object === Object && e,
mi = "object" == typeof self && self && self.Object === Object && self,
yi = vi || mi || Function("return this")(),
bi = Array.prototype,
xi = Function.prototype,
Mi = Object.prototype,
wi = yi["__core-js_shared__"],
_i = (di = /[^.]+$/.exec(wi && wi.keys && wi.keys.IE_PROTO || "")) ? "Symbol(src)_1." + di : "",
Si = xi.toString,
Ci = Mi.hasOwnProperty,
ki = Mi.toString,
Ti = RegExp("^" + Si.call(Ci).replace(/[\\^$.*+?()[\]{}|]/g, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$"),
Li = bi.splice,
Ai = zi(yi, "Map"),
Ei = zi(Object, "create");
function Oi(e) {
var t = -1,
n = e ? e.length : 0;
for (this.clear(); ++t < n;) {
var i = e[t];
this.set(i[0], i[1])
}
}
function Pi(e) {
var t = -1,
n = e ? e.length : 0;
for (this.clear(); ++t < n;) {
var i = e[t];
this.set(i[0], i[1])
}
}
function Di(e) {
var t = -1,
n = e ? e.length : 0;
for (this.clear(); ++t < n;) {
var i = e[t];
this.set(i[0], i[1])
}
}
function Vi(e, t) {
for (var n, i, r = e.length; r--;)
if ((n = e[r][0]) === (i = t) || n != n && i != i) return r;
return -1
}
function Ri(e, t) { var n, i, r = e.__data__; return ("string" == (i = typeof(n = t)) || "number" == i || "symbol" == i || "boolean" == i ? "__proto__" !== n : null === n) ? r["string" == typeof t ? "string" : "hash"] : r.map }
function zi(e, t) {
var n = null == e ? void 0 : e[t];
return function(e) {
return !(!Hi(e) || _i && _i in e) && ((n = Hi(t = e) ? ki.call(t) : "") == fi || n == gi || function(e) {
var t = !1;
if (null != e && "function" != typeof e.toString) try { t = !!(e + "") } catch (e) {}
return t
}(e) ? Ti : pi).test(function(e) { if (null != e) { try { return Si.call(e) } catch (e) {} try { return e + "" } catch (e) {} } return "" }(e));
var t, n
}(n) ? n : void 0
}
function Bi(r, a) {
if ("function" != typeof r || a && "function" != typeof a) throw new TypeError(ui);
var o = function() {
var e = arguments,
t = a ? a.apply(this, e) : e[0],
n = o.cache;
if (n.has(t)) return n.get(t);
var i = r.apply(this, e);
return o.cache = n.set(t, i), i
};
return o.cache = new(Bi.Cache || Di), o
}
function Hi(e) { var t = typeof e; return !!e && ("object" == t || "function" == t) }
Oi.prototype.clear = function() { this.__data__ = Ei ? Ei(null) : {} }, Oi.prototype.delete = function(e) { return this.has(e) && delete this.__data__[e] }, Oi.prototype.get = function(e) { var t = this.__data__; if (Ei) { var n = t[e]; return n === hi ? void 0 : n } return Ci.call(t, e) ? t[e] : void 0 }, Oi.prototype.has = function(e) { var t = this.__data__; return Ei ? void 0 !== t[e] : Ci.call(t, e) }, Oi.prototype.set = function(e, t) { return this.__data__[e] = Ei && void 0 === t ? hi : t, this }, Pi.prototype.clear = function() { this.__data__ = [] }, Pi.prototype.delete = function(e) {
var t = this.__data__,
n = Vi(t, e);
return !(n < 0 || (n == t.length - 1 ? t.pop() : Li.call(t, n, 1), 0))
}, Pi.prototype.get = function(e) {
var t = this.__data__,
n = Vi(t, e);
return n < 0 ? void 0 : t[n][1]
}, Pi.prototype.has = function(e) { return -1 < Vi(this.__data__, e) }, Pi.prototype.set = function(e, t) {
var n = this.__data__,
i = Vi(n, e);
return i < 0 ? n.push([e, t]) : n[i][1] = t, this
}, Di.prototype.clear = function() { this.__data__ = { hash: new Oi, map: new(Ai || Pi), string: new Oi } }, Di.prototype.delete = function(e) { return Ri(this, e).delete(e) }, Di.prototype.get = function(e) { return Ri(this, e).get(e) }, Di.prototype.has = function(e) { return Ri(this, e).has(e) }, Di.prototype.set = function(e, t) { return Ri(this, e).set(e, t), this }, Bi.Cache = Di;
function Ni(e, t) {
for (var n = 0, i = Object.keys(t); n < i.length; n++) {
var r = i[n];
Object.defineProperty(e, r, { value: t[r], enumerable: !1, writable: !1, configurable: !0 })
}
return e
}
var Ii = Bi,
Fi = function() {
if ("undefined" != typeof Map) return Map;
function i(e, n) { var i = -1; return e.some(function(e, t) { return e[0] === n && (i = t, !0) }), i }
return Object.defineProperty(e.prototype, "size", { get: function() { return this.__entries__.length }, enumerable: !0, configurable: !0 }), e.prototype.get = function(e) {
var t = i(this.__entries__, e),
n = this.__entries__[t];
return n && n[1]
}, e.prototype.set = function(e, t) { var n = i(this.__entries__, e);~n ? this.__entries__[n][1] = t : this.__entries__.push([e, t]) }, e.prototype.delete = function(e) {
var t = this.__entries__,
n = i(t, e);
~n && t.splice(n, 1)
}, e.prototype.has = function(e) { return !!~i(this.__entries__, e) }, e.prototype.clear = function() { this.__entries__.splice(0) }, e.prototype.forEach = function(e, t) {
void 0 === t && (t = null);
for (var n = 0, i = this.__entries__; n < i.length; n++) {
var r = i[n];
e.call(t, r[1], r[0])
}
}, e;
function e() { this.__entries__ = [] }
}(),
Wi = "undefined" != typeof window && "undefined" != typeof document && window.document === document,
ji = void 0 !== Fr && Fr.Math === Math ? Fr : "undefined" != typeof self && self.Math === Math ? self : "undefined" != typeof window && window.Math === Math ? window : Function("return this")(),
Yi = "function" == typeof requestAnimationFrame ? requestAnimationFrame.bind(ji) : function(e) { return setTimeout(function() { return e(Date.now()) }, 1e3 / 60) },
Gi = ["top", "right", "bottom", "left", "width", "height", "size", "weight"],
Ui = "undefined" != typeof MutationObserver,
qi = (Zi.prototype.addObserver = function(e) {~this.observers_.indexOf(e) || this.observers_.push(e), this.connected_ || this.connect_() }, Zi.prototype.removeObserver = function(e) {
var t = this.observers_,
n = t.indexOf(e);
~n && t.splice(n, 1), !t.length && this.connected_ && this.disconnect_()
}, Zi.prototype.refresh = function() { this.updateObservers_() && this.refresh() }, Zi.prototype.updateObservers_ = function() { var e = this.observers_.filter(function(e) { return e.gatherActive(), e.hasActive() }); return e.forEach(function(e) { return e.broadcastActive() }), 0 < e.length }, Zi.prototype.connect_ = function() { Wi && !this.connected_ && (document.addEventListener("transitionend", this.onTransitionEnd_), window.addEventListener("resize", this.refresh), Ui ? (this.mutationsObserver_ = new MutationObserver(this.refresh), this.mutationsObserver_.observe(document, { attributes: !0, childList: !0, characterData: !0, subtree: !0 })) : (document.addEventListener("DOMSubtreeModified", this.refresh), this.mutationEventsAdded_ = !0), this.connected_ = !0) }, Zi.prototype.disconnect_ = function() { Wi && this.connected_ && (document.removeEventListener("transitionend", this.onTransitionEnd_), window.removeEventListener("resize", this.refresh), this.mutationsObserver_ && this.mutationsObserver_.disconnect(), this.mutationEventsAdded_ && document.removeEventListener("DOMSubtreeModified", this.refresh), this.mutationsObserver_ = null, this.mutationEventsAdded_ = !1, this.connected_ = !1) }, Zi.prototype.onTransitionEnd_ = function(e) {
var t = e.propertyName,
n = void 0 === t ? "" : t;
Gi.some(function(e) { return !!~n.indexOf(e) }) && this.refresh()
}, Zi.getInstance = function() { return this.instance_ || (this.instance_ = new Zi), this.instance_ }, Zi.instance_ = null, Zi),
Xi = function(e) { return e && e.ownerDocument && e.ownerDocument.defaultView || ji },
$i = tr(0, 0, 0, 0);
function Zi() {
function e() { a && (a = !1, i()), o && n() }
function t() { Yi(e) }
function n() {
var e = Date.now();
if (a) {
if (e - s < 2) return;
o = !0
} else o = !(a = !0), setTimeout(t, r);
s = e
}
var i, r, a, o, s;
this.connected_ = !1, this.mutationEventsAdded_ = !1, this.mutationsObserver_ = null, this.observers_ = [], this.onTransitionEnd_ = this.onTransitionEnd_.bind(this), this.refresh = (i = this.refresh.bind(this), o = a = !(r = 20), s = 0, n)
}
function Ki(e) { return parseFloat(e) || 0 }
function Ji(n) { for (var e = [], t = 1; t < arguments.length; t++) e[t - 1] = arguments[t]; return e.reduce(function(e, t) { return e + Ki(n["border-" + t + "-width"]) }, 0) }
var Qi = "undefined" != typeof SVGGraphicsElement ? function(e) { return e instanceof Xi(e).SVGGraphicsElement } : function(e) { return e instanceof Xi(e).SVGElement && "function" == typeof e.getBBox };
function er(e) {
return Wi ? Qi(e) ? tr(0, 0, (t = e.getBBox()).width, t.height) : function(e) {
var t = e.clientWidth,
n = e.clientHeight;
if (!t && !n) return $i;
var i = Xi(e).getComputedStyle(e),
r = function(e) {
for (var t = {}, n = 0, i = ["top", "right", "bottom", "left"]; n < i.length; n++) {
var r = i[n],
a = e["padding-" + r];
t[r] = Ki(a)
}
return t
}(i),
a = r.left + r.right,
o = r.top + r.bottom,
s = Ki(i.width),
l = Ki(i.height);
if ("border-box" === i.boxSizing && (Math.round(s + a) !== t && (s -= Ji(i, "left", "right") + a), Math.round(l + o) !== n && (l -= Ji(i, "top", "bottom") + o)), e !== Xi(e).document.documentElement) {
var c = Math.round(s + a) - t,
d = Math.round(l + o) - n;
1 !== Math.abs(c) && (s -= c), 1 !== Math.abs(d) && (l -= d)
}
return tr(r.left, r.top, s, l)
}(e) : $i;
var t
}
function tr(e, t, n, i) { return { x: e, y: t, width: n, height: i } }
function nr(e, t) {
var n, i, r, a, o, s, l, c = (i = (n = t).x, r = n.y, a = n.width, o = n.height, s = "undefined" != typeof DOMRectReadOnly ? DOMRectReadOnly : Object, l = Object.create(s.prototype), Ni(l, { x: i, y: r, width: a, height: o, top: r, right: i + a, bottom: o + r, left: i }), l);
Ni(this, { target: e, contentRect: c })
}
function ir(e) {
if (!(this instanceof ir)) throw new TypeError("Cannot call a class as a function.");
if (!arguments.length) throw new TypeError("1 argument required, but only 0 present.");
var t = qi.getInstance(),
n = new ar(e, t, this);
or.set(this, n)
}
var rr = (lr.prototype.isActive = function() { var e = er(this.target); return (this.contentRect_ = e).width !== this.broadcastWidth || e.height !== this.broadcastHeight }, lr.prototype.broadcastRect = function() { var e = this.contentRect_; return this.broadcastWidth = e.width, this.broadcastHeight = e.height, e }, lr),
ar = (sr.prototype.observe = function(e) {
if (!arguments.length) throw new TypeError("1 argument required, but only 0 present.");
if ("undefined" != typeof Element && Element instanceof Object) {
if (!(e instanceof Xi(e).Element)) throw new TypeError('parameter 1 is not of type "Element".');
var t = this.observations_;
t.has(e) || (t.set(e, new rr(e)), this.controller_.addObserver(this), this.controller_.refresh())
}
}, sr.prototype.unobserve = function(e) {
if (!arguments.length) throw new TypeError("1 argument required, but only 0 present.");
if ("undefined" != typeof Element && Element instanceof Object) {
if (!(e instanceof Xi(e).Element)) throw new TypeError('parameter 1 is not of type "Element".');
var t = this.observations_;
t.has(e) && (t.delete(e), t.size || this.controller_.removeObserver(this))
}
}, sr.prototype.disconnect = function() { this.clearActive(), this.observations_.clear(), this.controller_.removeObserver(this) }, sr.prototype.gatherActive = function() {
var t = this;
this.clearActive(), this.observations_.forEach(function(e) { e.isActive() && t.activeObservations_.push(e) })
}, sr.prototype.broadcastActive = function() {
if (this.hasActive()) {
var e = this.callbackCtx_,
t = this.activeObservations_.map(function(e) { return new nr(e.target, e.broadcastRect()) });
this.callback_.call(e, t, e), this.clearActive()
}
}, sr.prototype.clearActive = function() { this.activeObservations_.splice(0) }, sr.prototype.hasActive = function() { return 0 < this.activeObservations_.length }, sr),
or = "undefined" != typeof WeakMap ? new WeakMap : new Fi;
function sr(e, t, n) {
if (this.activeObservations_ = [], this.observations_ = new Fi, "function" != typeof e) throw new TypeError("The callback provided as parameter 1 is not a function.");
this.callback_ = e, this.controller_ = t, this.callbackCtx_ = n
}
function lr(e) { this.broadcastWidth = 0, this.broadcastHeight = 0, this.contentRect_ = tr(0, 0, 0, 0), this.target = e }["observe", "unobserve", "disconnect"].forEach(function(t) { ir.prototype[t] = function() { var e; return (e = or.get(this))[t].apply(e, arguments) } });
var cr = void 0 !== ji.ResizeObserver ? ji.ResizeObserver : ir,
dr = null,
ur = null;
function hr() {
if (null === dr) {
if ("undefined" == typeof document) return dr = 0;
var e = document.body,
t = document.createElement("div");
t.classList.add("simplebar-hide-scrollbar"), e.appendChild(t);
var n = t.getBoundingClientRect().right;
e.removeChild(t), dr = n
}
return dr
}
qe && window.addEventListener("resize", function() { ur !== window.devicePixelRatio && (ur = window.devicePixelRatio, dr = null) });
var fr = function() {
function l(e, t) {
var s = this;
this.onScroll = function() { s.scrollXTicking || (window.requestAnimationFrame(s.scrollX), s.scrollXTicking = !0), s.scrollYTicking || (window.requestAnimationFrame(s.scrollY), s.scrollYTicking = !0) }, this.scrollX = function() { s.axis.x.isOverflowing && (s.showScrollbar("x"), s.positionScrollbar("x")), s.scrollXTicking = !1 }, this.scrollY = function() { s.axis.y.isOverflowing && (s.showScrollbar("y"), s.positionScrollbar("y")), s.scrollYTicking = !1 }, this.onMouseEnter = function() { s.showScrollbar("x"), s.showScrollbar("y") }, this.onMouseMove = function(e) { s.mouseX = e.clientX, s.mouseY = e.clientY, (s.axis.x.isOverflowing || s.axis.x.forceVisible) && s.onMouseMoveForAxis("x"), (s.axis.y.isOverflowing || s.axis.y.forceVisible) && s.onMouseMoveForAxis("y") }, this.onMouseLeave = function() { s.onMouseMove.cancel(), (s.axis.x.isOverflowing || s.axis.x.forceVisible) && s.onMouseLeaveForAxis("x"), (s.axis.y.isOverflowing || s.axis.y.forceVisible) && s.onMouseLeaveForAxis("y"), s.mouseX = -1, s.mouseY = -1 }, this.onWindowResize = function() { s.scrollbarWidth = s.getScrollbarWidth(), s.hideNativeScrollbar() }, this.hideScrollbars = function() { s.axis.x.track.rect = s.axis.x.track.el.getBoundingClientRect(), s.axis.y.track.rect = s.axis.y.track.el.getBoundingClientRect(), s.isWithinBounds(s.axis.y.track.rect) || (s.axis.y.scrollbar.el.classList.remove(s.classNames.visible), s.axis.y.isVisible = !1), s.isWithinBounds(s.axis.x.track.rect) || (s.axis.x.scrollbar.el.classList.remove(s.classNames.visible), s.axis.x.isVisible = !1) }, this.onPointerEvent = function(e) {
var t, n;
s.axis.x.track.rect = s.axis.x.track.el.getBoundingClientRect(), s.axis.y.track.rect = s.axis.y.track.el.getBoundingClientRect(), (s.axis.x.isOverflowing || s.axis.x.forceVisible) && (t = s.isWithinBounds(s.axis.x.track.rect)), (s.axis.y.isOverflowing || s.axis.y.forceVisible) && (n = s.isWithinBounds(s.axis.y.track.rect)), (t || n) && (e.preventDefault(), e.stopPropagation(), "mousedown" === e.type && (t && (s.axis.x.scrollbar.rect = s.axis.x.scrollbar.el.getBoundingClientRect(), s.isWithinBounds(s.axis.x.scrollbar.rect) ? s.onDragStart(e, "x") : s.onTrackClick(e, "x")), n && (s.axis.y.scrollbar.rect = s.axis.y.scrollbar.el.getBoundingClientRect(), s.isWithinBounds(s.axis.y.scrollbar.rect) ? s.onDragStart(e, "y") : s.onTrackClick(e, "y"))))
}, this.drag = function(e) {
var t = s.axis[s.draggedAxis].track,
n = t.rect[s.axis[s.draggedAxis].sizeAttr],
i = s.axis[s.draggedAxis].scrollbar,
r = s.contentWrapperEl[s.axis[s.draggedAxis].scrollSizeAttr],
a = parseInt(s.elStyles[s.axis[s.draggedAxis].sizeAttr], 10);
e.preventDefault(), e.stopPropagation();
var o = (("y" === s.draggedAxis ? e.pageY : e.pageX) - t.rect[s.axis[s.draggedAxis].offsetAttr] - s.axis[s.draggedAxis].dragOffset) / (n - i.size) * (r - a);
"x" === s.draggedAxis && (o = s.isRtl && l.getRtlHelpers().isRtlScrollbarInverted ? o - (n + i.size) : o, o = s.isRtl && l.getRtlHelpers().isRtlScrollingInverted ? -o : o), s.contentWrapperEl[s.axis[s.draggedAxis].scrollOffsetAttr] = o
}, this.onEndDrag = function(e) { e.preventDefault(), e.stopPropagation(), s.el.classList.remove(s.classNames.dragging), document.removeEventListener("mousemove", s.drag, !0), document.removeEventListener("mouseup", s.onEndDrag, !0), s.removePreventClickId = window.setTimeout(function() { document.removeEventListener("click", s.preventClick, !0), document.removeEventListener("dblclick", s.preventClick, !0), s.removePreventClickId = null }) }, this.preventClick = function(e) { e.preventDefault(), e.stopPropagation() }, this.el = e, this.minScrollbarWidth = 20, this.options = Object.assign({}, l.defaultOptions, {}, t), this.classNames = Object.assign({}, l.defaultOptions.classNames, {}, this.options.classNames), this.axis = { x: { scrollOffsetAttr: "scrollLeft", sizeAttr: "width", scrollSizeAttr: "scrollWidth", offsetSizeAttr: "offsetWidth", offsetAttr: "left", overflowAttr: "overflowX", dragOffset: 0, isOverflowing: !0, isVisible: !1, forceVisible: !1, track: {}, scrollbar: {} }, y: { scrollOffsetAttr: "scrollTop", sizeAttr: "height", scrollSizeAttr: "scrollHeight", offsetSizeAttr: "offsetHeight", offsetAttr: "top", overflowAttr: "overflowY", dragOffset: 0, isOverflowing: !0, isVisible: !1, forceVisible: !1, track: {}, scrollbar: {} } }, this.removePreventClickId = null, l.instances.has(this.el) || (this.recalculate = Xn(this.recalculate.bind(this), 64), this.onMouseMove = Xn(this.onMouseMove.bind(this), 64), this.hideScrollbars = ci(this.hideScrollbars.bind(this), this.options.timeout), this.onWindowResize = ci(this.onWindowResize.bind(this), 64, { leading: !0 }), l.getRtlHelpers = Ii(l.getRtlHelpers), this.init())
}
l.getRtlHelpers = function() {
var e = document.createElement("div");
e.innerHTML = '<div class="hs-dummy-scrollbar-size"><div style="height: 200%; width: 200%; margin: 10px 0;"></div></div>';
var t = e.firstElementChild;
document.body.appendChild(t);
var n = t.firstElementChild;
t.scrollLeft = 0;
var i = l.getOffset(t),
r = l.getOffset(n);
t.scrollLeft = 999;
var a = l.getOffset(n);
return { isRtlScrollingInverted: i.left !== r.left && r.left - a.left != 0, isRtlScrollbarInverted: i.left !== r.left }
}, l.getOffset = function(e) { var t = e.getBoundingClientRect(); return { top: t.top + (window.pageYOffset || document.documentElement.scrollTop), left: t.left + (window.pageXOffset || document.documentElement.scrollLeft) } };
var e = l.prototype;
return e.init = function() { l.instances.set(this.el, this), qe && (this.initDOM(), this.scrollbarWidth = this.getScrollbarWidth(), this.recalculate(), this.initListeners()) }, e.initDOM = function() {
var t = this;
if (Array.prototype.filter.call(this.el.children, function(e) { return e.classList.contains(t.classNames.wrapper) }).length) this.wrapperEl = this.el.querySelector("." + this.classNames.wrapper), this.contentWrapperEl = this.options.scrollableNode || this.el.querySelector("." + this.classNames.contentWrapper), this.contentEl = this.options.contentNode || this.el.querySelector("." + this.classNames.contentEl), this.offsetEl = this.el.querySelector("." + this.classNames.offset), this.maskEl = this.el.querySelector("." + this.classNames.mask), this.placeholderEl = this.findChild(this.wrapperEl, "." + this.classNames.placeholder), this.heightAutoObserverWrapperEl = this.el.querySelector("." + this.classNames.heightAutoObserverWrapperEl), this.heightAutoObserverEl = this.el.querySelector("." + this.classNames.heightAutoObserverEl), this.axis.x.track.el = this.findChild(this.el, "." + this.classNames.track + "." + this.classNames.horizontal), this.axis.y.track.el = this.findChild(this.el, "." + this.classNames.track + "." + this.classNames.vertical);
else {
for (this.wrapperEl = document.createElement("div"), this.contentWrapperEl = document.createElement("div"), this.offsetEl = document.createElement("div"), this.maskEl = document.createElement("div"), this.contentEl = document.createElement("div"), this.placeholderEl = document.createElement("div"), this.heightAutoObserverWrapperEl = document.createElement("div"), this.heightAutoObserverEl = document.createElement("div"), this.wrapperEl.classList.add(this.classNames.wrapper), this.contentWrapperEl.classList.add(this.classNames.contentWrapper), this.offsetEl.classList.add(this.classNames.offset), this.maskEl.classList.add(this.classNames.mask), this.contentEl.classList.add(this.classNames.contentEl), this.placeholderEl.classList.add(this.classNames.placeholder), this.heightAutoObserverWrapperEl.classList.add(this.classNames.heightAutoObserverWrapperEl), this.heightAutoObserverEl.classList.add(this.classNames.heightAutoObserverEl); this.el.firstChild;) this.contentEl.appendChild(this.el.firstChild);
this.contentWrapperEl.appendChild(this.contentEl), this.offsetEl.appendChild(this.contentWrapperEl), this.maskEl.appendChild(this.offsetEl), this.heightAutoObserverWrapperEl.appendChild(this.heightAutoObserverEl), this.wrapperEl.appendChild(this.heightAutoObserverWrapperEl), this.wrapperEl.appendChild(this.maskEl), this.wrapperEl.appendChild(this.placeholderEl), this.el.appendChild(this.wrapperEl)
}
if (!this.axis.x.track.el || !this.axis.y.track.el) {
var e = document.createElement("div"),
n = document.createElement("div");
e.classList.add(this.classNames.track), n.classList.add(this.classNames.scrollbar), e.appendChild(n), this.axis.x.track.el = e.cloneNode(!0), this.axis.x.track.el.classList.add(this.classNames.horizontal), this.axis.y.track.el = e.cloneNode(!0), this.axis.y.track.el.classList.add(this.classNames.vertical), this.el.appendChild(this.axis.x.track.el), this.el.appendChild(this.axis.y.track.el)
}
this.axis.x.scrollbar.el = this.axis.x.track.el.querySelector("." + this.classNames.scrollbar), this.axis.y.scrollbar.el = this.axis.y.track.el.querySelector("." + this.classNames.scrollbar), this.options.autoHide || (this.axis.x.scrollbar.el.classList.add(this.classNames.visible), this.axis.y.scrollbar.el.classList.add(this.classNames.visible)), this.el.setAttribute("data-simplebar", "init")
}, e.initListeners = function() {
var t = this;
this.options.autoHide && this.el.addEventListener("mouseenter", this.onMouseEnter), ["mousedown", "click", "dblclick"].forEach(function(e) { t.el.addEventListener(e, t.onPointerEvent, !0) }), ["touchstart", "touchend", "touchmove"].forEach(function(e) { t.el.addEventListener(e, t.onPointerEvent, { capture: !0, passive: !0 }) }), this.el.addEventListener("mousemove", this.onMouseMove), this.el.addEventListener("mouseleave", this.onMouseLeave), this.contentWrapperEl.addEventListener("scroll", this.onScroll), window.addEventListener("resize", this.onWindowResize);
var e = !1;
this.resizeObserver = new cr(function() { e && t.recalculate() }), this.resizeObserver.observe(this.el), this.resizeObserver.observe(this.contentEl), window.requestAnimationFrame(function() { e = !0 }), this.mutationObserver = new MutationObserver(this.recalculate), this.mutationObserver.observe(this.contentEl, { childList: !0, subtree: !0, characterData: !0 })
}, e.recalculate = function() {
this.elStyles = window.getComputedStyle(this.el), this.isRtl = "rtl" === this.elStyles.direction;
var e = this.heightAutoObserverEl.offsetHeight <= 1,
t = this.heightAutoObserverEl.offsetWidth <= 1,
n = this.contentEl.offsetWidth,
i = this.contentWrapperEl.offsetWidth,
r = this.elStyles.overflowX,
a = this.elStyles.overflowY;
this.contentEl.style.padding = this.elStyles.paddingTop + " " + this.elStyles.paddingRight + " " + this.elStyles.paddingBottom + " " + this.elStyles.paddingLeft, this.wrapperEl.style.margin = "-" + this.elStyles.paddingTop + " -" + this.elStyles.paddingRight + " -" + this.elStyles.paddingBottom + " -" + this.elStyles.paddingLeft;
var o = this.contentEl.scrollHeight,
s = this.contentEl.scrollWidth;
this.contentWrapperEl.style.height = e ? "auto" : "100%", this.placeholderEl.style.width = t ? n + "px" : "auto", this.placeholderEl.style.height = o + "px";
var l = this.contentWrapperEl.offsetHeight;
this.axis.x.isOverflowing = n < s, this.axis.y.isOverflowing = l < o, this.axis.x.isOverflowing = "hidden" !== r && this.axis.x.isOverflowing, this.axis.y.isOverflowing = "hidden" !== a && this.axis.y.isOverflowing, this.axis.x.forceVisible = "x" === this.options.forceVisible || !0 === this.options.forceVisible, this.axis.y.forceVisible = "y" === this.options.forceVisible || !0 === this.options.forceVisible, this.hideNativeScrollbar();
var c = this.axis.x.isOverflowing ? this.scrollbarWidth : 0,
d = this.axis.y.isOverflowing ? this.scrollbarWidth : 0;
this.axis.x.isOverflowing = this.axis.x.isOverflowing && i - d < s, this.axis.y.isOverflowing = this.axis.y.isOverflowing && l - c < o, this.axis.x.scrollbar.size = this.getScrollbarSize("x"), this.axis.y.scrollbar.size = this.getScrollbarSize("y"), this.axis.x.scrollbar.el.style.width = this.axis.x.scrollbar.size + "px", this.axis.y.scrollbar.el.style.height = this.axis.y.scrollbar.size + "px", this.positionScrollbar("x"), this.positionScrollbar("y"), this.toggleTrackVisibility("x"), this.toggleTrackVisibility("y")
}, e.getScrollbarSize = function(e) {
if (void 0 === e && (e = "y"), !this.axis[e].isOverflowing) return 0;
var t, n = this.contentEl[this.axis[e].scrollSizeAttr],
i = this.axis[e].track.el[this.axis[e].offsetSizeAttr],
r = i / n;
return t = Math.max(~~(r * i), this.options.scrollbarMinSize), this.options.scrollbarMaxSize && (t = Math.min(t, this.options.scrollbarMaxSize)), t
}, e.positionScrollbar = function(e) {
if (void 0 === e && (e = "y"), this.axis[e].isOverflowing) {
var t = this.contentWrapperEl[this.axis[e].scrollSizeAttr],
n = this.axis[e].track.el[this.axis[e].offsetSizeAttr],
i = parseInt(this.elStyles[this.axis[e].sizeAttr], 10),
r = this.axis[e].scrollbar,
a = this.contentWrapperEl[this.axis[e].scrollOffsetAttr],
o = (a = "x" === e && this.isRtl && l.getRtlHelpers().isRtlScrollingInverted ? -a : a) / (t - i),
s = ~~((n - r.size) * o);
s = "x" === e && this.isRtl && l.getRtlHelpers().isRtlScrollbarInverted ? s + (n - r.size) : s, r.el.style.transform = "x" === e ? "translate3d(" + s + "px, 0, 0)" : "translate3d(0, " + s + "px, 0)"
}
}, e.toggleTrackVisibility = function(e) {
void 0 === e && (e = "y");
var t = this.axis[e].track.el,
n = this.axis[e].scrollbar.el;
this.axis[e].isOverflowing || this.axis[e].forceVisible ? (t.style.visibility = "visible", this.contentWrapperEl.style[this.axis[e].overflowAttr] = "scroll") : (t.style.visibility = "hidden", this.contentWrapperEl.style[this.axis[e].overflowAttr] = "hidden"), this.axis[e].isOverflowing ? n.style.display = "block" : n.style.display = "none"
}, e.hideNativeScrollbar = function() { this.offsetEl.style[this.isRtl ? "left" : "right"] = this.axis.y.isOverflowing || this.axis.y.forceVisible ? "-" + this.scrollbarWidth + "px" : 0, this.offsetEl.style.bottom = this.axis.x.isOverflowing || this.axis.x.forceVisible ? "-" + this.scrollbarWidth + "px" : 0 }, e.onMouseMoveForAxis = function(e) { void 0 === e && (e = "y"), this.axis[e].track.rect = this.axis[e].track.el.getBoundingClientRect(), this.axis[e].scrollbar.rect = this.axis[e].scrollbar.el.getBoundingClientRect(), this.isWithinBounds(this.axis[e].scrollbar.rect) ? this.axis[e].scrollbar.el.classList.add(this.classNames.hover) : this.axis[e].scrollbar.el.classList.remove(this.classNames.hover), this.isWithinBounds(this.axis[e].track.rect) ? (this.showScrollbar(e), this.axis[e].track.el.classList.add(this.classNames.hover)) : this.axis[e].track.el.classList.remove(this.classNames.hover) }, e.onMouseLeaveForAxis = function(e) { void 0 === e && (e = "y"), this.axis[e].track.el.classList.remove(this.classNames.hover), this.axis[e].scrollbar.el.classList.remove(this.classNames.hover) }, e.showScrollbar = function(e) {
void 0 === e && (e = "y");
var t = this.axis[e].scrollbar.el;
this.axis[e].isVisible || (t.classList.add(this.classNames.visible), this.axis[e].isVisible = !0), this.options.autoHide && this.hideScrollbars()
}, e.onDragStart = function(e, t) {
void 0 === t && (t = "y");
var n = this.axis[t].scrollbar,
i = "y" === t ? e.pageY : e.pageX;
this.axis[t].dragOffset = i - n.rect[this.axis[t].offsetAttr], this.draggedAxis = t, this.el.classList.add(this.classNames.dragging), document.addEventListener("mousemove", this.drag, !0), document.addEventListener("mouseup", this.onEndDrag, !0), null === this.removePreventClickId ? (document.addEventListener("click", this.preventClick, !0), document.addEventListener("dblclick", this.preventClick, !0)) : (window.clearTimeout(this.removePreventClickId), this.removePreventClickId = null)
}, e.onTrackClick = function(e, i) {
var r = this;
void 0 === i && (i = "y"), this.axis[i].scrollbar.rect = this.axis[i].scrollbar.el.getBoundingClientRect();
var t = this.axis[i].scrollbar.rect[this.axis[i].offsetAttr],
n = parseInt(this.elStyles[this.axis[i].sizeAttr], 10),
a = this.contentWrapperEl[this.axis[i].scrollOffsetAttr],
o = ("y" === i ? this.mouseY - t : this.mouseX - t) < 0 ? -1 : 1,
s = -1 == o ? a - n : a + n;
! function e() { var t, n; - 1 == o ? s < a && (a -= 40, r.contentWrapperEl.scrollTo(((t = {})[r.axis[i].offsetAttr] = a, t)), window.requestAnimationFrame(e)) : a < s && (a += 40, r.contentWrapperEl.scrollTo(((n = {})[r.axis[i].offsetAttr] = a, n)), window.requestAnimationFrame(e)) }()
}, e.getContentElement = function() { return this.contentEl }, e.getScrollElement = function() { return this.contentWrapperEl }, e.getScrollbarWidth = function() { try { return "none" === getComputedStyle(this.contentWrapperEl, "::-webkit-scrollbar").display || "scrollbarWidth" in document.documentElement.style ? 0 : hr() } catch (e) { return hr() } }, e.removeListeners = function() {
var t = this;
this.options.autoHide && this.el.removeEventListener("mouseenter", this.onMouseEnter), ["mousedown", "click", "dblclick"].forEach(function(e) { t.el.removeEventListener(e, t.onPointerEvent, !0) }), ["touchstart", "touchend", "touchmove"].forEach(function(e) { t.el.removeEventListener(e, t.onPointerEvent, { capture: !0, passive: !0 }) }), this.el.removeEventListener("mousemove", this.onMouseMove), this.el.removeEventListener("mouseleave", this.onMouseLeave), this.contentWrapperEl.removeEventListener("scroll", this.onScroll), window.removeEventListener("resize", this.onWindowResize), this.mutationObserver.disconnect(), this.resizeObserver.disconnect(), this.recalculate.cancel(), this.onMouseMove.cancel(), this.hideScrollbars.cancel(), this.onWindowResize.cancel()
}, e.unMount = function() { this.removeListeners(), l.instances.delete(this.el) }, e.isWithinBounds = function(e) { return this.mouseX >= e.left && this.mouseX <= e.left + e.width && this.mouseY >= e.top && this.mouseY <= e.top + e.height }, e.findChild = function(e, t) { var n = e.matches || e.webkitMatchesSelector || e.mozMatchesSelector || e.msMatchesSelector; return Array.prototype.filter.call(e.children, function(e) { return n.call(e, t) })[0] }, l
}();
fr.defaultOptions = { autoHide: !0, forceVisible: !1, classNames: { contentEl: "simplebar-content", contentWrapper: "simplebar-content-wrapper", offset: "simplebar-offset", mask: "simplebar-mask", wrapper: "simplebar-wrapper", placeholder: "simplebar-placeholder", scrollbar: "simplebar-scrollbar", track: "simplebar-track", heightAutoObserverWrapperEl: "simplebar-height-auto-observer-wrapper", heightAutoObserverEl: "simplebar-height-auto-observer", visible: "simplebar-visible", horizontal: "simplebar-horizontal", vertical: "simplebar-vertical", hover: "simplebar-hover", dragging: "simplebar-dragging" }, scrollbarMinSize: 25, scrollbarMaxSize: 0, timeout: 1e3 }, fr.instances = new WeakMap;
function gr(c) {
return function(e, t, n, i) {
oe(t);
var r = le(e),
a = T(r),
o = ee(r.length),
s = c ? o - 1 : 0,
l = c ? -1 : 1;
if (n < 2)
for (;;) { if (s in a) { i = a[s], s += l; break } if (s += l, c ? s < 0 : o <= s) throw TypeError("Reduce of empty array with no initial value") }
for (; c ? 0 <= s : s < o; s += l) s in a && (i = t(i, a[s], s, r));
return i
}
}
var pr = [gr(!1), gr(!0)][0];
ae({ target: "Array", proto: !0, forced: he("reduce") }, { reduce: function(e) { return pr(this, e, arguments.length, 1 < arguments.length ? arguments[1] : void 0) } });
var vr = R.f,
mr = Function.prototype,
yr = mr.toString,
br = /^\s*function ([^ (]*)/;
!b || "name" in mr || vr(mr, "name", { configurable: !0, get: function() { try { return yr.call(this).match(br)[1] } catch (e) { return "" } } });
var xr, Mr, wr = RegExp.prototype.exec,
_r = String.prototype.replace,
Sr = wr,
Cr = (xr = /a/, Mr = /b*/g, wr.call(xr, "a"), wr.call(Mr, "a"), 0 !== xr.lastIndex || 0 !== Mr.lastIndex),
kr = void 0 !== /()??/.exec("")[1];
(Cr || kr) && (Sr = function(e) {
var t, n, i, r;
return kr && (n = new RegExp("^" + this.source + "$(?!\\s)", function() {
var e = S(this),
t = "";
return e.global && (t += "g"), e.ignoreCase && (t += "i"), e.multiline && (t += "m"), e.dotAll && (t += "s"), e.unicode && (t += "u"), e.sticky && (t += "y"), t
}.call(this))), Cr && (t = this.lastIndex), i = wr.call(this, e), Cr && i && (this.lastIndex = this.global ? i.index + i[0].length : t), kr && i && 1 < i.length && _r.call(i[0], n, function() { for (r = 1; r < arguments.length - 2; r++) void 0 === arguments[r] && (i[r] = void 0) }), i
});
var Tr = Sr;
ae({ target: "RegExp", proto: !0, forced: /./.exec !== Tr }, { exec: Tr });
function Lr(n, e, t, i) {
var r = ce(n),
a = !v(function() { var e = {}; return e[r] = function() { return 7 }, 7 != "" [n](e) }),
o = a && !v(function() {
var e = !1,
t = /a/;
return t.exec = function() { return e = !0, null }, "split" === n && (t.constructor = {}, t.constructor[Or] = function() { return t }), t[r](""), !e
});
if (!a || !o || "replace" === n && !Pr || "split" === n && !Dr) {
var s = /./ [r],
l = t(r, "" [n], function(e, t, n, i, r) { return t.exec === Tr ? a && !r ? { done: !0, value: s.call(t, n, i) } : { done: !0, value: e.call(n, t, i) } : { done: !1 } }),
c = l[0],
d = l[1];
ge(String.prototype, n, c), ge(RegExp.prototype, r, 2 == e ? function(e, t) { return d.call(e, this, t) } : function(e) { return d.call(e, this) }), i && z(RegExp.prototype[r], "sham", !0)
}
}
function Ar(e, t, n) { return t + (n ? Vr(e, t).length : 1) }
function Er(e, t) { var n = e.exec; if ("function" == typeof n) { var i = n.call(e, t); if ("object" != typeof i) throw TypeError("RegExp exec method returned something other than an Object or null"); return i } if ("RegExp" !== r(e)) throw TypeError("RegExp#exec called on incompatible receiver"); return Tr.call(e, t) }
var Or = ce("species"),
Pr = !v(function() { var e = /./; return e.exec = function() { var e = []; return e.groups = { a: "7" }, e }, "7" !== "".replace(e, "$<a>") }),
Dr = !v(function() {
var e = /(?:)/,
t = e.exec;
e.exec = function() { return t.apply(this, arguments) };
var n = "ab".split(e);
return 2 !== n.length || "a" !== n[0] || "b" !== n[1]
}),
Vr = $t.charAt;
Lr("match", 1, function(i, c, d) {
return [function(e) {
var t = l(this),
n = null == e ? void 0 : e[i];
return void 0 !== n ? n.call(e, t) : new RegExp(e)[i](String(t))
}, function(e) {
var t = d(c, e, this);
if (t.done) return t.value;
var n = S(e),
i = String(this);
if (!n.global) return Er(n, i);
for (var r, a = n.unicode, o = [], s = n.lastIndex = 0; null !== (r = Er(n, i));) { var l = String(r[0]); "" === (o[s] = l) && (n.lastIndex = Ar(i, ee(n.lastIndex), a)), s++ }
return 0 === s ? null : o
}]
});
var Rr = Math.max,
zr = Math.min,
Br = Math.floor,
Hr = /\$([$&'`]|\d\d?|<[^>]*>)/g,
Nr = /\$([$&'`]|\d\d?)/g;
Lr("replace", 2, function(r, M, w) {
return [function(e, t) {
var n = l(this),
i = null == e ? void 0 : e[r];
return void 0 !== i ? i.call(e, n, t) : M.call(String(n), e, t)
}, function(e, t) {
var n = w(M, e, this, t);
if (n.done) return n.value;
var i = S(e),
r = String(this),
a = "function" == typeof t;
a || (t = String(t));
var o = i.global;
if (o) {
var s = i.unicode;
i.lastIndex = 0
}
for (var l = [];;) { var c = Er(i, r); if (null === c) break; if (l.push(c), !o) break; "" === String(c[0]) && (i.lastIndex = Ar(r, ee(i.lastIndex), s)) }
for (var d, u = "", h = 0, f = 0; f < l.length; f++) {
c = l[f];
for (var g = String(c[0]), p = Rr(zr(Q(c.index), r.length), 0), v = [], m = 1; m < c.length; m++) v.push(void 0 === (d = c[m]) ? d : String(d));
var y = c.groups;
if (a) {
var b = [g].concat(v, p, r);
void 0 !== y && b.push(y);
var x = String(t.apply(void 0, b))
} else x = _(g, r, p, v, y, t);
h <= p && (u += r.slice(h, p) + x, h = p + g.length)
}
return u + r.slice(h)
}];
function _(a, o, s, l, c, e) {
var d = s + a.length,
u = l.length,
t = Nr;
return void 0 !== c && (c = le(c), t = Hr), M.call(e, t, function(e, t) {
var n;
switch (t.charAt(0)) {
case "$":
return "$";
case "&":
return a;
case "`":
return o.slice(0, s);
case "'":
return o.slice(d);
case "<":
n = c[t.slice(1, -1)];
break;
default:
var i = +t;
if (0 == i) return e;
if (u < i) { var r = Br(i / 10); return 0 === r ? e : r <= u ? void 0 === l[r - 1] ? t.charAt(1) : l[r - 1] + t.charAt(1) : e }
n = l[i - 1]
}
return void 0 === n ? "" : n
})
}
});
function Ir(e) {
return Array.prototype.reduce.call(e, function(e, t) {
var n = t.name.match(/data-simplebar-(.+)/);
if (n) {
var i = n[1].replace(/\W+(.)/g, function(e, t) { return t.toUpperCase() });
switch (t.value) {
case "true":
e[i] = !0;
break;
case "false":
e[i] = !1;
break;
case void 0:
e[i] = !0;
break;
default:
e[i] = t.value
}
}
return e
}, {})
}
return fr.initDOMLoadedElements = function() { document.removeEventListener("DOMContentLoaded", this.initDOMLoadedElements), window.removeEventListener("load", this.initDOMLoadedElements), Array.prototype.forEach.call(document.querySelectorAll('[data-simplebar]:not([data-simplebar="init"])'), function(e) { fr.instances.has(e) || new fr(e, Ir(e.attributes)) }) }, fr.removeObserver = function() { this.globalObserver.disconnect() }, fr.initHtmlApi = function() { this.initDOMLoadedElements = this.initDOMLoadedElements.bind(this), "undefined" != typeof MutationObserver && (this.globalObserver = new MutationObserver(fr.handleMutations), this.globalObserver.observe(document, { childList: !0, subtree: !0 })), "complete" === document.readyState || "loading" !== document.readyState && !document.documentElement.doScroll ? window.setTimeout(this.initDOMLoadedElements) : (document.addEventListener("DOMContentLoaded", this.initDOMLoadedElements), window.addEventListener("load", this.initDOMLoadedElements)) }, fr.handleMutations = function(e) { e.forEach(function(e) { Array.prototype.forEach.call(e.addedNodes, function(e) { 1 === e.nodeType && (e.hasAttribute("data-simplebar") ? fr.instances.has(e) || new fr(e, Ir(e.attributes)) : Array.prototype.forEach.call(e.querySelectorAll('[data-simplebar]:not([data-simplebar="init"])'), function(e) { fr.instances.has(e) || new fr(e, Ir(e.attributes)) })) }), Array.prototype.forEach.call(e.removedNodes, function(e) { 1 === e.nodeType && (e.hasAttribute('[data-simplebar="init"]') ? fr.instances.has(e) && fr.instances.get(e).unMount() : Array.prototype.forEach.call(e.querySelectorAll('[data-simplebar="init"]'), function(e) { fr.instances.has(e) && fr.instances.get(e).unMount() })) }) }) }, fr.getOptions = Ir, qe && fr.initHtmlApi(), fr
}, "object" == typeof i && void 0 !== n ? n.exports = t() : "function" == typeof define && define.amd ? define(t) : (e = e || self).SimpleBar = t()
}).call(this, "undefined" != typeof global ? global : "undefined" != typeof self ? self : "undefined" != typeof window ? window : {})
}, {}],
4: [function(e, t, n) {
"use strict";
Object.keys || (Object.keys = function(e) { var t = []; for (var n in e) Object.prototype.hasOwnProperty.call(e, n) && t.push(n); return t })
}, {}],
5: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.addCSSRule = function(e, t, n, i) { "insertRule" in e ? e.insertRule(t + "{" + n + "}", i) : e.addRule(t, n, i) };
e("./raf.js")
}, { "./raf.js": 35 }],
6: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.addClass = void 0;
var i = e("./hasClass.js"),
r = i.classListSupport ? function(e, t) {
(0, i.hasClass)(e, t) || e.classList.add(t)
} : function(e, t) {
(0, i.hasClass)(e, t) || (e.className += " " + t)
};
n.addClass = r
}, { "./hasClass.js": 27 }],
7: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.addEvents = function(e, t, n) {
for (var i in t) {
var r = 0 <= ["touchstart", "touchmove"].indexOf(i) && !n && a.passiveOption;
e.addEventListener(i, t[i], r)
}
};
var a = e("./passiveOption.js")
}, { "./passiveOption.js": 33 }],
8: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.arrayFromNodeList = function(e) { for (var t = [], n = 0, i = e.length; n < i; n++) t.push(e[n]); return t }
}, {}],
9: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.caf = void 0;
var i = window,
r = i.cancelAnimationFrame || i.mozCancelAnimationFrame || function(e) { clearTimeout(e) };
n.caf = r
}, {}],
10: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.calc = function() {
var e = document,
t = (0, c.getBody)(),
n = (0, d.setFakeBody)(t),
i = e.createElement("div"),
r = !1;
t.appendChild(i);
try {
for (var a, o = "(10px * 10)", s = ["calc" + o, "-moz-calc" + o, "-webkit-calc" + o], l = 0; l < 3; l++)
if (a = s[l], i.style.width = a, 100 === i.offsetWidth) { r = a.replace(o, ""); break }
} catch (e) {}
return t.fake ? (0, u.resetFakeBody)(t, n) : i.remove(), r
};
var c = e("./getBody.js"),
d = e("./setFakeBody.js"),
u = e("./resetFakeBody.js")
}, { "./getBody.js": 20, "./resetFakeBody.js": 40, "./setFakeBody.js": 42 }],
11: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.checkStorageValue = function(e) { return 0 <= ["true", "false"].indexOf(e) ? JSON.parse(e) : e }
}, {}],
12: [function(e, t, n) { "use strict"; "remove" in Element.prototype || (Element.prototype.remove = function() { this.parentNode && this.parentNode.removeChild(this) }) }, {}],
13: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.classListSupport = void 0;
var i = "classList" in document.createElement("_");
n.classListSupport = i
}, {}],
14: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.createStyleSheet = function(e) {
var t = document.createElement("style");
e && t.setAttribute("media", e);
return document.querySelector("head").appendChild(t), t.sheet ? t.sheet : t.styleSheet
}
}, {}],
15: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.docElement = void 0;
var i = document.documentElement;
n.docElement = i
}, {}],
16: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.Events = function() {
return {
topics: {},
on: function(e, t) { this.topics[e] = this.topics[e] || [], this.topics[e].push(t) },
off: function(e, t) {
if (this.topics[e])
for (var n = 0; n < this.topics[e].length; n++)
if (this.topics[e][n] === t) { this.topics[e].splice(n, 1); break }
},
emit: function(t, n) { n.type = t, this.topics[t] && this.topics[t].forEach(function(e) { e(n, t) }) }
}
}
}, {}],
17: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.extend = function() {
for (var e, t, n, i = arguments[0] || {}, r = 1, a = arguments.length; r < a; r++)
if (null !== (e = arguments[r]))
for (t in e) n = e[t], i !== n && void 0 !== n && (i[t] = n);
return i
}
}, {}],
18: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.forEach = function(e, t, n) { for (var i = 0, r = e.length; i < r; i++) t.call(n, e[i], i) }
}, {}],
19: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.getAttr = function(e, t) { return e.getAttribute(t) }
}, {}],
20: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.getBody = function() {
var e = document,
t = e.body;
t || ((t = e.createElement("body")).fake = !0);
return t
}
}, {}],
21: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.getCssRulesLength = function(e) { return ("insertRule" in e ? e.cssRules : e.rules).length }
}, {}],
22: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.getEndProperty = function(e, t) { var n = !1; /^Webkit/.test(e) ? n = "webkit" + t + "End" : /^O/.test(e) ? n = "o" + t + "End" : e && (n = t.toLowerCase() + "end"); return n }
}, {}],
23: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.getSlideId = function() { var e = window.tnsId; return window.tnsId = e ? e + 1 : 1, "tns" + window.tnsId }
}, {}],
24: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.getTouchDirection = function(e, t) {
var n = !1,
i = Math.abs(90 - Math.abs(e));
90 - t <= i ? n = "horizontal" : i <= t && (n = "vertical");
return n
}
}, {}],
25: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.has3DTransforms = function(e) {
if (!e) return !1;
if (!window.getComputedStyle) return !1;
var t, n = document,
i = (0, s.getBody)(),
r = (0, l.setFakeBody)(i),
a = n.createElement("p"),
o = 9 < e.length ? "-" + e.slice(0, -9).toLowerCase() + "-" : "";
return o += "transform", i.insertBefore(a, null), a.style[e] = "translate3d(1px,1px,1px)", t = window.getComputedStyle(a).getPropertyValue(o), i.fake ? (0, c.resetFakeBody)(i, r) : a.remove(), void 0 !== t && 0 < t.length && "none" !== t
};
var s = e("./getBody.js"),
l = e("./setFakeBody.js"),
c = e("./resetFakeBody.js")
}, { "./getBody.js": 20, "./resetFakeBody.js": 40, "./setFakeBody.js": 42 }],
26: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.hasAttr = function(e, t) { return e.hasAttribute(t) }
}, {}],
27: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), Object.defineProperty(n, "classListSupport", { enumerable: !0, get: function() { return i.classListSupport } }), n.hasClass = void 0;
var i = e("./classListSupport.js"),
r = i.classListSupport ? function(e, t) { return e.classList.contains(t) } : function(e, t) { return 0 <= e.className.indexOf(t) };
n.hasClass = r
}, { "./classListSupport.js": 13 }],
28: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.hideElement = function(e, t) { "none" !== e.style.display && (e.style.display = "none") }
}, {}],
29: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.isNodeList = function(e) { return void 0 !== e.item }
}, {}],
30: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.isVisible = function(e) { return "none" !== window.getComputedStyle(e).display }
}, {}],
31: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.jsTransform = function(t, n, i, r, e, a, o) {
var s = Math.min(a, 10),
l = 0 <= e.indexOf("%") ? "%" : "px",
c = (e = e.replace(l, ""), Number(t.style[n].replace(i, "").replace(r, "").replace(l, ""))),
d = (e - c) / a * s;
setTimeout(function e() { a -= s, c += d, t.style[n] = i + c + l + r, 0 < a ? setTimeout(e, s) : o() }, s)
}
}, {}],
32: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.mediaquerySupport = function() {
var e, t = document,
n = (0, s.getBody)(),
i = (0, l.setFakeBody)(n),
r = t.createElement("div"),
a = t.createElement("style"),
o = "@media all and (min-width:1px){.tns-mq-test{position:absolute}}";
a.type = "text/css", r.className = "tns-mq-test", n.appendChild(a), n.appendChild(r), a.styleSheet ? a.styleSheet.cssText = o : a.appendChild(t.createTextNode(o));
return e = window.getComputedStyle ? window.getComputedStyle(r).position : r.currentStyle.position, n.fake ? (0, c.resetFakeBody)(n, i) : r.remove(), "absolute" === e
};
var s = e("./getBody.js"),
l = e("./setFakeBody.js"),
c = e("./resetFakeBody.js")
}, { "./getBody.js": 20, "./resetFakeBody.js": 40, "./setFakeBody.js": 42 }],
33: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.passiveOption = void 0;
var i = !1;
try {
var r = Object.defineProperty({}, "passive", { get: function() { i = !0 } });
window.addEventListener("test", null, r)
} catch (e) {}
var a = !!i && { passive: !0 };
n.passiveOption = a
}, {}],
34: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.percentageLayout = function() {
var e, t = document,
n = (0, l.getBody)(),
i = (0, c.setFakeBody)(n),
r = t.createElement("div"),
a = t.createElement("div"),
o = "";
r.className = "tns-t-subp2", a.className = "tns-t-ct";
for (var s = 0; s < 70; s++) o += "<div></div>";
return a.innerHTML = o, r.appendChild(a), n.appendChild(r), e = Math.abs(r.getBoundingClientRect().left - a.children[67].getBoundingClientRect().left) < 2, n.fake ? (0, d.resetFakeBody)(n, i) : r.remove(), e
};
var l = e("./getBody.js"),
c = e("./setFakeBody.js"),
d = e("./resetFakeBody.js")
}, { "./getBody.js": 20, "./resetFakeBody.js": 40, "./setFakeBody.js": 42 }],
35: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.raf = void 0;
var i = window,
r = i.requestAnimationFrame || i.webkitRequestAnimationFrame || i.mozRequestAnimationFrame || i.msRequestAnimationFrame || function(e) { return setTimeout(e, 16) };
n.raf = r
}, {}],
36: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.removeAttrs = function(e, t) {
e = (0, a.isNodeList)(e) || e instanceof Array ? e : [e];
for (var n = (t = t instanceof Array ? t : [t]).length, i = e.length; i--;)
for (var r = n; r--;) e[i].removeAttribute(t[r])
};
var a = e("./isNodeList.js")
}, { "./isNodeList.js": 29 }],
37: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.removeCSSRule = function(e, t) { "deleteRule" in e ? e.deleteRule(t) : e.removeRule(t) };
e("./raf.js")
}, { "./raf.js": 35 }],
38: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.removeClass = void 0;
var i = e("./hasClass.js"),
r = i.classListSupport ? function(e, t) {
(0, i.hasClass)(e, t) && e.classList.remove(t)
} : function(e, t) {
(0, i.hasClass)(e, t) && (e.className = e.className.replace(t, ""))
};
n.removeClass = r
}, { "./hasClass.js": 27 }],
39: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.removeEvents = function(e, t) {
for (var n in t) {
var i = 0 <= ["touchstart", "touchmove"].indexOf(n) && r.passiveOption;
e.removeEventListener(n, t[n], i)
}
};
var r = e("./passiveOption.js")
}, { "./passiveOption.js": 33 }],
40: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.resetFakeBody = function(e, t) { e.fake && (e.remove(), i.docElement.style.overflow = t, i.docElement.offsetHeight) };
var i = e("./docElement.js")
}, { "./docElement.js": 15 }],
41: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.setAttrs = function(e, t) {
if (e = (0, r.isNodeList)(e) || e instanceof Array ? e : [e], "[object Object]" !== Object.prototype.toString.call(t)) return;
for (var n = e.length; n--;)
for (var i in t) e[n].setAttribute(i, t[i])
};
var r = e("./isNodeList.js")
}, { "./isNodeList.js": 29 }],
42: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.setFakeBody = function(e) {
var t = "";
e.fake && (t = i.docElement.style.overflow, e.style.background = "", e.style.overflow = i.docElement.style.overflow = "hidden", i.docElement.appendChild(e));
return t
};
var i = e("./docElement.js")
}, { "./docElement.js": 15 }],
43: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.setLocalStorage = function(e, t, n, i) {
if (i) try { e.setItem(t, n) } catch (e) {}
return n
}
}, {}],
44: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.showElement = function(e, t) { "none" === e.style.display && (e.style.display = "") }
}, {}],
45: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.toDegree = function(e, t) { return Math.atan2(e, t) * (180 / Math.PI) }
}, {}],
46: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.whichProperty = function(t) {
if ("string" == typeof t) {
var n = [t],
i = t.charAt(0).toUpperCase() + t.substr(1);
["Webkit", "Moz", "ms", "O"].forEach(function(e) { "ms" === e && "transform" !== t || n.push(e + i) }), t = n
}
for (var e = document.createElement("fakeelement"), r = (t.length, 0); r < t.length; r++) { var a = t[r]; if (void 0 !== e.style[a]) return a }
return !1
}
}, {}],
47: [function(e, t, n) {
"use strict";
Object.defineProperty(n, "__esModule", { value: !0 }), n.tns = void 0, e("./helpers/Object.keys"), e("./helpers/childNode.remove");
var wi = e("./helpers/raf.js"),
_i = e("./helpers/caf.js"),
Si = e("./helpers/extend.js"),
Ci = e("./helpers/checkStorageValue.js"),
ki = e("./helpers/setLocalStorage.js"),
Ti = e("./helpers/getSlideId.js"),
Li = e("./helpers/calc.js"),
Ai = e("./helpers/percentageLayout.js"),
Ei = e("./helpers/mediaquerySupport.js"),
Oi = e("./helpers/createStyleSheet.js"),
Pi = e("./helpers/addCSSRule.js"),
Di = e("./helpers/removeCSSRule.js"),
Vi = e("./helpers/getCssRulesLength.js"),
Ri = e("./helpers/toDegree.js"),
zi = e("./helpers/getTouchDirection.js"),
Bi = e("./helpers/forEach.js"),
Hi = e("./helpers/hasClass.js"),
Ni = e("./helpers/addClass.js"),
Ii = e("./helpers/removeClass.js"),
Fi = e("./helpers/hasAttr.js"),
Wi = e("./helpers/getAttr.js"),
ji = e("./helpers/setAttrs.js"),
Yi = e("./helpers/removeAttrs.js"),
Gi = e("./helpers/arrayFromNodeList.js"),
Ui = e("./helpers/hideElement.js"),
qi = e("./helpers/showElement.js"),
Xi = e("./helpers/isVisible.js"),
$i = e("./helpers/whichProperty.js"),
Zi = e("./helpers/has3DTransforms.js"),
Ki = e("./helpers/getEndProperty.js"),
Ji = e("./helpers/addEvents.js"),
Qi = e("./helpers/removeEvents.js"),
er = e("./helpers/events.js"),
tr = e("./helpers/jsTransform.js");
function nr(e) { return (nr = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(e) { return typeof e } : function(e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e })(e) }
n.tns = function e(A) {
A = (0, Si.extend)({ container: ".slider", mode: "carousel", axis: "horizontal", items: 1, gutter: 0, edgePadding: 0, fixedWidth: !1, autoWidth: !1, viewportMax: !1, slideBy: 1, center: !1, controls: !0, controlsPosition: "top", controlsText: ["prev", "next"], controlsContainer: !1, prevButton: !1, nextButton: !1, nav: !0, navPosition: "top", navContainer: !1, navAsThumbnails: !1, arrowKeys: !1, speed: 300, autoplay: !1, autoplayPosition: "top", autoplayTimeout: 5e3, autoplayDirection: "forward", autoplayText: ["start", "stop"], autoplayHoverPause: !1, autoplayButton: !1, autoplayButtonOutput: !0, autoplayResetOnVisibility: !0, animateIn: "tns-fadeIn", animateOut: "tns-fadeOut", animateNormal: "tns-normal", animateDelay: !1, loop: !0, rewind: !1, autoHeight: !1, responsive: !1, lazyload: !1, lazyloadSelector: ".tns-lazy-img", touch: !0, mouseDrag: !1, swipeAngle: 15, nested: !1, preventActionWhenRunning: !1, preventScrollOnTouch: !1, freezable: !0, onInit: !1, useLocalStorage: !0 }, A || {});
var E = document,
v = window,
r = { ENTER: 13, SPACE: 32, LEFT: 37, RIGHT: 39 },
t = {},
n = A.useLocalStorage;
if (n) {
var i = navigator.userAgent,
a = new Date;
try {
(t = v.localStorage) ? (t.setItem(a, a), n = t.getItem(a) == a, t.removeItem(a)) : n = !1, n || (t = {})
} catch (e) { n = !1 }
n && (t.tnsApp && t.tnsApp !== i && ["tC", "tPL", "tMQ", "tTf", "t3D", "tTDu", "tTDe", "tADu", "tADe", "tTE", "tAE"].forEach(function(e) { t.removeItem(e) }), localStorage.tnsApp = i)
}
var m = t.tC ? (0, Ci.checkStorageValue)(t.tC) : (0, ki.setLocalStorage)(t, "tC", (0, Li.calc)(), n),
y = t.tPL ? (0, Ci.checkStorageValue)(t.tPL) : (0, ki.setLocalStorage)(t, "tPL", (0, Ai.percentageLayout)(), n),
O = t.tMQ ? (0, Ci.checkStorageValue)(t.tMQ) : (0, ki.setLocalStorage)(t, "tMQ", (0, Ei.mediaquerySupport)(), n),
o = t.tTf ? (0, Ci.checkStorageValue)(t.tTf) : (0, ki.setLocalStorage)(t, "tTf", (0, $i.whichProperty)("transform"), n),
s = t.t3D ? (0, Ci.checkStorageValue)(t.t3D) : (0, ki.setLocalStorage)(t, "t3D", (0, Zi.has3DTransforms)(o), n),
b = t.tTDu ? (0, Ci.checkStorageValue)(t.tTDu) : (0, ki.setLocalStorage)(t, "tTDu", (0, $i.whichProperty)("transitionDuration"), n),
l = t.tTDe ? (0, Ci.checkStorageValue)(t.tTDe) : (0, ki.setLocalStorage)(t, "tTDe", (0, $i.whichProperty)("transitionDelay"), n),
x = t.tADu ? (0, Ci.checkStorageValue)(t.tADu) : (0, ki.setLocalStorage)(t, "tADu", (0, $i.whichProperty)("animationDuration"), n),
c = t.tADe ? (0, Ci.checkStorageValue)(t.tADe) : (0, ki.setLocalStorage)(t, "tADe", (0, $i.whichProperty)("animationDelay"), n),
d = t.tTE ? (0, Ci.checkStorageValue)(t.tTE) : (0, ki.setLocalStorage)(t, "tTE", (0, Ki.getEndProperty)(b, "Transition"), n),
u = t.tAE ? (0, Ci.checkStorageValue)(t.tAE) : (0, ki.setLocalStorage)(t, "tAE", (0, Ki.getEndProperty)(x, "Animation"), n),
h = v.console && "function" == typeof v.console.warn,
f = ["container", "controlsContainer", "prevButton", "nextButton", "navContainer", "autoplayButton"],
g = {};
if (f.forEach(function(e) {
if ("string" == typeof A[e]) {
var t = A[e],
n = E.querySelector(t);
if (g[e] = t, !n || !n.nodeName) return void(h && console.warn("Can't find", A[e]));
A[e] = n
}
}), !(A.container.children.length < 1)) {
var P = A.responsive,
D = A.nested,
V = "carousel" === A.mode;
if (P) {
0 in P && (A = (0, Si.extend)(A, P[0]), delete P[0]);
var p = {};
for (var M in P) {
var w = P[M];
w = "number" == typeof w ? { items: w } : w, p[M] = w
}
P = p, p = null
}
if (V || function e(t) { for (var n in t) V || ("slideBy" === n && (t[n] = "page"), "edgePadding" === n && (t[n] = !1), "autoHeight" === n && (t[n] = !1)), "responsive" === n && e(t[n]) }(A), !V) {
A.axis = "horizontal", A.slideBy = "page", A.edgePadding = !1;
var R = A.animateIn,
z = A.animateOut,
_ = A.animateDelay,
B = A.animateNormal
}
var S, H, N = "horizontal" === A.axis,
C = E.createElement("div"),
I = E.createElement("div"),
F = A.container,
k = F.parentNode,
T = F.outerHTML,
W = F.children,
j = W.length,
Y = Qt(),
G = !1;
P && xn(), V && (F.className += " tns-vpfix");
var L, U, q, X, $, Z = A.autoWidth,
K = rn("fixedWidth"),
J = rn("edgePadding"),
Q = rn("gutter"),
ee = tn(),
te = rn("center"),
ne = Z ? 1 : Math.floor(rn("items")),
ie = rn("slideBy"),
re = A.viewportMax || A.fixedWidthViewportWidth,
ae = rn("arrowKeys"),
oe = rn("speed"),
se = A.rewind,
le = !se && A.loop,
ce = rn("autoHeight"),
de = rn("controls"),
ue = rn("controlsText"),
he = rn("nav"),
fe = rn("touch"),
ge = rn("mouseDrag"),
pe = rn("autoplay"),
ve = rn("autoplayTimeout"),
me = rn("autoplayText"),
ye = rn("autoplayHoverPause"),
be = rn("autoplayResetOnVisibility"),
xe = (0, Oi.createStyleSheet)(),
Me = A.lazyload,
we = (A.lazyloadSelector, []),
_e = le ? (X = function() {
{
if (Z || K && !re) return j - 1;
var e = K ? "fixedWidth" : "items",
t = [];
if ((K || A[e] < j) && t.push(A[e]), P)
for (var n in P) {
var i = P[n][e];
i && (K || i < j) && t.push(i)
}
return t.length || t.push(0), Math.ceil(K ? re / Math.min.apply(null, t) : Math.max.apply(null, t))
}
}(), $ = V ? Math.ceil((5 * X - j) / 2) : 4 * X - j, $ = Math.max(X, $), nn("edgePadding") ? $ + 1 : $) : 0,
Se = V ? j + 2 * _e : j + _e,
Ce = !(!K && !Z || le),
ke = K ? qn() : null,
Te = !V || !le,
Le = N ? "left" : "top",
Ae = "",
Ee = "",
Oe = K ? function() { return te && !le ? j - 1 : Math.ceil(-ke / (K + Q)) } : Z ? function() {
for (var e = Se; e--;)
if (L[e] >= -ke) return e
} : function() { return te && V && !le ? j - 1 : le || V ? Math.max(0, Se - Math.ceil(ne)) : Se - 1 },
Pe = Zt(rn("startIndex")),
De = Pe,
Ve = ($t(), 0),
Re = Z ? null : Oe(),
ze = A.preventActionWhenRunning,
Be = A.swipeAngle,
He = !Be || "?",
Ne = !1,
Ie = A.onInit,
Fe = new er.Events,
We = " tns-slider tns-" + A.mode,
je = F.id || (0, Ti.getSlideId)(),
Ye = rn("disable"),
Ge = !1,
Ue = A.freezable,
qe = !(!Ue || Z) && bn(),
Xe = !1,
$e = {
click: ni,
keydown: function(e) {
e = di(e);
var t = [r.LEFT, r.RIGHT].indexOf(e.keyCode);
0 <= t && (0 === t ? vt.disabled || ni(e, -1) : mt.disabled || ni(e, 1))
}
},
Ze = {
click: function(e) {
if (Ne) {
if (ze) return;
ei()
}
var t = ui(e = di(e));
for (; t !== Mt && !(0, Fi.hasAttr)(t, "data-nav");) t = t.parentNode;
if ((0, Fi.hasAttr)(t, "data-nav")) {
var n = Ct = Number((0, Wi.getAttr)(t, "data-nav")),
i = K || Z ? n * j / _t : n * ne;
ti(rt ? n : Math.min(Math.ceil(i), j - 1), e), kt === n && (Pt && si(), Ct = -1)
}
},
keydown: function(e) {
e = di(e);
var t = E.activeElement;
if (!(0, Fi.hasAttr)(t, "data-nav")) return;
var n = [r.LEFT, r.RIGHT, r.ENTER, r.SPACE].indexOf(e.keyCode),
i = Number((0, Wi.getAttr)(t, "data-nav"));
0 <= n && (0 === n ? 0 < i && ci(xt[i - 1]) : 1 === n ? i < _t - 1 && ci(xt[i + 1]) : ti(Ct = i, e))
}
},
Ke = { mouseover: function() { Pt && (ri(), Dt = !0) }, mouseout: function() { Dt && (ii(), Dt = !1) } },
Je = { visibilitychange: function() { E.hidden ? Pt && (ri(), Rt = !0) : Rt && (ii(), Rt = !1) } },
Qe = {
keydown: function(e) {
e = di(e);
var t = [r.LEFT, r.RIGHT].indexOf(e.keyCode);
0 <= t && ni(e, 0 === t ? -1 : 1)
}
},
et = { touchstart: pi, touchmove: vi, touchend: mi, touchcancel: mi },
tt = { mousedown: pi, mousemove: vi, mouseup: mi, mouseleave: mi },
nt = nn("controls"),
it = nn("nav"),
rt = !!Z || A.navAsThumbnails,
at = nn("autoplay"),
ot = nn("touch"),
st = nn("mouseDrag"),
lt = "tns-slide-active",
ct = "tns-complete",
dt = {
load: function(e) { An(ui(e)) },
error: function(e) {
! function(e) {
(0, Ni.addClass)(e, "failed"), En(e)
}(ui(e))
}
},
ut = "force" === A.preventScrollOnTouch;
if (nt) var ht, ft, gt = A.controlsContainer,
pt = A.controlsContainer ? A.controlsContainer.outerHTML : "",
vt = A.prevButton,
mt = A.nextButton,
yt = A.prevButton ? A.prevButton.outerHTML : "",
bt = A.nextButton ? A.nextButton.outerHTML : "";
if (it) var xt, Mt = A.navContainer,
wt = A.navContainer ? A.navContainer.outerHTML : "",
_t = Z ? j : bi(),
St = 0,
Ct = -1,
kt = Jt(),
Tt = kt,
Lt = "tns-nav-active",
At = "Carousel Page ",
Et = " (Current Slide)";
if (at) var Ot, Pt, Dt, Vt, Rt, zt = "forward" === A.autoplayDirection ? 1 : -1,
Bt = A.autoplayButton,
Ht = A.autoplayButton ? A.autoplayButton.outerHTML : "",
Nt = ["<span class='tns-visually-hidden'>", " animation</span>"];
if (ot || st) var It, Ft, Wt = {},
jt = {},
Yt = !1,
Gt = N ? function(e, t) { return e.x - t.x } : function(e, t) { return e.y - t.y };
Z || Xt(Ye || qe), o && (Le = o, Ae = "translate", Ee = s ? (Ae += N ? "3d(" : "3d(0px, ", N ? ", 0px, 0px)" : ", 0px)") : (Ae += N ? "X(" : "Y(", ")")), V && (F.className = F.className.replace("tns-vpfix", "")),
function() {
nn("gutter");
C.className = "tns-outer", I.className = "tns-inner", C.id = je + "-ow", I.id = je + "-iw", "" === F.id && (F.id = je);
We += y || Z ? " tns-subpixel" : " tns-no-subpixel", We += m ? " tns-calc" : " tns-no-calc", Z && (We += " tns-autowidth");
We += " tns-" + A.axis, F.className += We, V ? ((S = E.createElement("div")).id = je + "-mw", S.className = "tns-ovh", C.appendChild(S), S.appendChild(I)) : C.appendChild(I);
if (ce) {
(S || I).className += " tns-ah"
}
if (k.insertBefore(C, F), I.appendChild(F), (0, Bi.forEach)(W, function(e, t) {
(0, Ni.addClass)(e, "tns-item"), e.id || (e.id = je + "-item" + t), !V && B && (0, Ni.addClass)(e, B), (0, ji.setAttrs)(e, { "aria-hidden": "true", tabindex: "-1" })
}), _e) {
for (var e = E.createDocumentFragment(), t = E.createDocumentFragment(), n = _e; n--;) {
var i = n % j,
r = W[i].cloneNode(!0);
if ((0, Yi.removeAttrs)(r, "id"), t.insertBefore(r, t.firstChild), V) {
var a = W[j - 1 - i].cloneNode(!0);
(0, Yi.removeAttrs)(a, "id"), e.appendChild(a)
}
}
F.insertBefore(e, F.firstChild), F.appendChild(t), W = F.children
}
}(),
function() {
if (!V)
for (var e = Pe, t = Pe + Math.min(j, ne); e < t; e++) {
var n = W[e];
n.style.left = 100 * (e - Pe) / ne + "%", (0, Ni.addClass)(n, R), (0, Ii.removeClass)(n, B)
}
N && (y || Z ? ((0, Pi.addCSSRule)(xe, "#" + je + " > .tns-item", "font-size:" + v.getComputedStyle(W[0]).fontSize + ";", (0, Vi.getCssRulesLength)(xe)), (0, Pi.addCSSRule)(xe, "#" + je, "font-size:0;", (0, Vi.getCssRulesLength)(xe))) : V && (0, Bi.forEach)(W, function(e, t) { e.style.marginLeft = function(e) { return m ? m + "(" + 100 * e + "% / " + Se + ")" : 100 * e / Se + "%" }(t) }));
if (O) {
if (b) {
var i = S && A.autoHeight ? dn(A.speed) : "";
(0, Pi.addCSSRule)(xe, "#" + je + "-mw", i, (0, Vi.getCssRulesLength)(xe))
}
i = an(A.edgePadding, A.gutter, A.fixedWidth, A.speed, A.autoHeight), (0, Pi.addCSSRule)(xe, "#" + je + "-iw", i, (0, Vi.getCssRulesLength)(xe)), V && (i = N && !Z ? "width:" + on(A.fixedWidth, A.gutter, A.items) + ";" : "", b && (i += dn(oe)), (0, Pi.addCSSRule)(xe, "#" + je, i, (0, Vi.getCssRulesLength)(xe))), i = N && !Z ? sn(A.fixedWidth, A.gutter, A.items) : "", A.gutter && (i += ln(A.gutter)), V || (b && (i += dn(oe)), x && (i += un(oe))), i && (0, Pi.addCSSRule)(xe, "#" + je + " > .tns-item", i, (0, Vi.getCssRulesLength)(xe))
} else {
Rn(), I.style.cssText = an(J, Q, K, ce), V && N && !Z && (F.style.width = on(K, Q, ne));
i = N && !Z ? sn(K, Q, ne) : "";
Q && (i += ln(Q)), i && (0, Pi.addCSSRule)(xe, "#" + je + " > .tns-item", i, (0, Vi.getCssRulesLength)(xe))
}
if (P && O)
for (var r in P) {
r = parseInt(r);
var a = P[r],
o = (i = "", ""),
s = "",
l = "",
c = "",
d = Z ? null : rn("items", r),
u = rn("fixedWidth", r),
h = rn("speed", r),
f = rn("edgePadding", r),
g = rn("autoHeight", r),
p = rn("gutter", r);
b && S && rn("autoHeight", r) && "speed" in a && (o = "#" + je + "-mw{" + dn(h) + "}"), ("edgePadding" in a || "gutter" in a) && (s = "#" + je + "-iw{" + an(f, p, u, h, g) + "}"), V && N && !Z && ("fixedWidth" in a || "items" in a || K && "gutter" in a) && (l = "width:" + on(u, p, d) + ";"), b && "speed" in a && (l += dn(h)), l = l && "#" + je + "{" + l + "}", ("fixedWidth" in a || K && "gutter" in a || !V && "items" in a) && (c += sn(u, p, d)), "gutter" in a && (c += ln(p)), !V && "speed" in a && (b && (c += dn(h)), x && (c += un(h))), (i = o + s + l + (c = c && "#" + je + " > .tns-item{" + c + "}")) && xe.insertRule("@media (min-width: " + r / 16 + "em) {" + i + "}", xe.cssRules.length)
}
}(), hn();
var Ut = le ? V ? function() {
var e = Ve,
t = Re;
e += ie, t -= ie, J ? (e += 1, t -= 1) : K && (ee + Q) % (K + Q) && (t -= 1), _e && (t < Pe ? Pe -= j : Pe < e && (Pe += j))
} : function() {
if (Re < Pe)
for (; Ve + j <= Pe;) Pe -= j;
else if (Pe < Ve)
for (; Pe <= Re - j;) Pe += j
} : function() { Pe = Math.max(Ve, Math.min(Re, Pe)) },
qt = V ? function() { Gn(F, ""), b || !oe ? (Zn(), oe && (0, Xi.isVisible)(F) || ei()) : (0, tr.jsTransform)(F, Le, Ae, Ee, Xn(), oe, ei), N || yi() } : function() {
we = [];
var e = {};
e[d] = e[u] = ei, (0, Qi.removeEvents)(W[De], e), (0, Ji.addEvents)(W[Pe], e), Kn(De, R, z, !0), Kn(Pe, B, R), d && u && oe && (0, Xi.isVisible)(F) || ei()
};
return {
version: "2.9.2",
getInfo: Mi,
events: Fe,
goTo: ti,
play: function() { pe && !Pt && (oi(), Vt = !1) },
pause: function() { Pt && (si(), Vt = !0) },
isOn: G,
updateSliderHeight: Bn,
refresh: hn,
destroy: function() {
if (xe.disabled = !0, xe.ownerNode && xe.ownerNode.remove(), (0, Qi.removeEvents)(v, { resize: mn }), ae && (0, Qi.removeEvents)(E, Qe), gt && (0, Qi.removeEvents)(gt, $e), Mt && (0, Qi.removeEvents)(Mt, Ze), (0, Qi.removeEvents)(F, Ke), (0, Qi.removeEvents)(F, Je), Bt && (0, Qi.removeEvents)(Bt, { click: li }), pe && clearInterval(Ot), V && d) {
var e = {};
e[d] = ei, (0, Qi.removeEvents)(F, e)
}
fe && (0, Qi.removeEvents)(F, et), ge && (0, Qi.removeEvents)(F, tt);
var a = [T, pt, yt, bt, wt, Ht];
for (var t in f.forEach(function(e, t) {
var n = "container" === e ? C : A[e];
if ("object" === nr(n)) {
var i = !!n.previousElementSibling && n.previousElementSibling,
r = n.parentNode;
n.outerHTML = a[t], A[e] = i ? i.nextElementSibling : r.firstElementChild
}
}), f = R = z = _ = B = N = C = I = F = k = T = W = j = H = Y = Z = K = J = Q = ee = ne = ie = re = ae = oe = se = le = ce = xe = Me = L = we = _e = Se = Ce = ke = Te = Le = Ae = Ee = Oe = Pe = De = Ve = Re = Be = He = Ne = Ie = Fe = We = je = Ye = Ge = Ue = qe = Xe = $e = Ze = Ke = Je = Qe = et = tt = nt = it = rt = at = ot = st = lt = ct = dt = U = de = ue = gt = pt = vt = mt = ht = ft = he = Mt = wt = xt = _t = St = Ct = kt = Tt = Lt = At = Et = pe = ve = zt = me = ye = Bt = Ht = be = Nt = Ot = Pt = Dt = Vt = Rt = Wt = jt = It = Yt = Ft = Gt = fe = ge = null, this) "rebuild" !== t && (this[t] = null);
G = !1
},
rebuild: function() { return e((0, Si.extend)(A, g)) }
}
}
function Xt(e) { e && (de = he = fe = ge = ae = pe = ye = be = !1) }
function $t() { for (var e = V ? Pe - _e : Pe; e < 0;) e += j; return e % j + 1 }
function Zt(e) { return e = e ? Math.max(0, Math.min(le ? j - 1 : j - ne, e)) : 0, V ? e + _e : e }
function Kt(e) { for (null == e && (e = Pe), V && (e -= _e); e < 0;) e += j; return Math.floor(e % j) }
function Jt() { var e, t = Kt(); return e = rt ? t : K || Z ? Math.ceil((t + 1) * _t / j - 1) : Math.floor(t / ne), !le && V && Pe === Re && (e = _t - 1), e }
function Qt() { return v.innerWidth || E.documentElement.clientWidth || E.body.clientWidth }
function en(e) { return "top" === e ? "afterbegin" : "beforeend" }
function tn() { var e = J ? 2 * J - Q : 0; return function e(t) { var n, i, r = E.createElement("div"); return t.appendChild(r), i = (n = r.getBoundingClientRect()).right - n.left, r.remove(), i || e(t.parentNode) }(k) - e }
function nn(e) {
if (A[e]) return !0;
if (P)
for (var t in P)
if (P[t][e]) return !0;
return !1
}
function rn(e, t) {
if (null == t && (t = Y), "items" === e && K) return Math.floor((ee + Q) / (K + Q)) || 1;
var n = A[e];
if (P)
for (var i in P) t >= parseInt(i) && e in P[i] && (n = P[i][e]);
return "slideBy" === e && "page" === n && (n = rn("items")), V || "slideBy" !== e && "items" !== e || (n = Math.floor(n)), n
}
function an(e, t, n, i, r) {
var a = "";
if (void 0 !== e) {
var o = e;
t && (o -= t), a = N ? "margin: 0 " + o + "px 0 " + e + "px;" : "margin: " + e + "px 0 " + o + "px 0;"
} else if (t && !n) {
var s = "-" + t + "px";
a = "margin: 0 " + (N ? s + " 0 0" : "0 " + s + " 0") + ";"
}
return !V && r && b && i && (a += dn(i)), a
}
function on(e, t, n) { return e ? (e + t) * Se + "px" : m ? m + "(" + 100 * Se + "% / " + n + ")" : 100 * Se / n + "%" }
function sn(e, t, n) {
var i;
if (e) i = e + t + "px";
else {
V || (n = Math.floor(n));
var r = V ? Se : n;
i = m ? m + "(100% / " + r + ")" : 100 / r + "%"
}
return i = "width:" + i, "inner" !== D ? i + ";" : i + " !important;"
}
function ln(e) { var t = "";!1 !== e && (t = (N ? "padding-" : "margin-") + (N ? "right" : "bottom") + ": " + e + "px;"); return t }
function cn(e, t) { var n = e.substring(0, e.length - t).toLowerCase(); return n = n && "-" + n + "-" }
function dn(e) { return cn(b, 18) + "transition-duration:" + e / 1e3 + "s;" }
function un(e) { return cn(x, 17) + "animation-duration:" + e / 1e3 + "s;" }
function hn() {
if (nn("autoHeight") || Z || !N) {
var e = F.querySelectorAll("img");
(0, Bi.forEach)(e, function(e) {
var t = e.src;
t && t.indexOf("data:image") < 0 ? ((0, Ji.addEvents)(e, dt), e.src = "", e.src = t, (0, Ni.addClass)(e, "loading")) : Me || An(e)
}), (0, wi.raf)(function() { Dn((0, Gi.arrayFromNodeList)(e), function() { U = !0 }) }), !Z && N && (e = On(Pe, Math.min(Pe + ne - 1, Se - 1))), Me ? fn() : (0, wi.raf)(function() { Dn((0, Gi.arrayFromNodeList)(e), fn) })
} else V && $n(), pn(), vn()
}
function fn() { if (Z) { var t = le ? Pe : j - 1;! function e() { W[t - 1].getBoundingClientRect().right.toFixed(2) === W[t].getBoundingClientRect().left.toFixed(2) ? gn() : setTimeout(function() { e() }, 16) }() } else gn() }
function gn() { N && !Z || (Hn(), Z ? (ke = qn(), Ue && (qe = bn()), Re = Oe(), Xt(Ye || qe)) : yi()), V && $n(), pn(), vn() }
function pn() {
if (Nn(), C.insertAdjacentHTML("afterbegin", '<div class="tns-liveregion tns-visually-hidden" aria-live="polite" aria-atomic="true">slide <span class="current">' + kn() + "</span> of " + j + "</div>"), q = C.querySelector(".tns-liveregion .current"), at) {
var e = pe ? "stop" : "start";
Bt ? (0, ji.setAttrs)(Bt, { "data-action": e }) : A.autoplayButtonOutput && (C.insertAdjacentHTML(en(A.autoplayPosition), '<button data-action="' + e + '">' + Nt[0] + e + Nt[1] + me[0] + "</button>"), Bt = C.querySelector("[data-action]")), Bt && (0, Ji.addEvents)(Bt, { click: li }), pe && (oi(), ye && (0, Ji.addEvents)(F, Ke), be && (0, Ji.addEvents)(F, Je))
}
if (it) {
if (Mt)(0, ji.setAttrs)(Mt, { "aria-label": "Carousel Pagination" }), xt = Mt.children, (0, Bi.forEach)(xt, function(e, t) {
(0, ji.setAttrs)(e, { "data-nav": t, tabindex: "-1", "aria-label": At + (t + 1), "aria-controls": je })
});
else {
for (var t = "", n = rt ? "" : 'style="display:none"', i = 0; i < j; i++) t += '<button data-nav="' + i + '" tabindex="-1" aria-controls="' + je + '" ' + n + ' aria-label="' + At + (i + 1) + '"></button>';
t = '<div class="tns-nav" aria-label="Carousel Pagination">' + t + "</div>", C.insertAdjacentHTML(en(A.navPosition), t), Mt = C.querySelector(".tns-nav"), xt = Mt.children
}
if (xi(), b) {
var r = b.substring(0, b.length - 18).toLowerCase(),
a = "transition: all " + oe / 1e3 + "s";
r && (a = "-" + r + "-" + a), (0, Pi.addCSSRule)(xe, "[aria-controls^=" + je + "-item]", a, (0, Vi.getCssRulesLength)(xe))
}(0, ji.setAttrs)(xt[kt], { "aria-label": At + (kt + 1) + Et }), (0, Yi.removeAttrs)(xt[kt], "tabindex"), (0, Ni.addClass)(xt[kt], Lt), (0, Ji.addEvents)(Mt, Ze)
}
nt && (gt || vt && mt || (C.insertAdjacentHTML(en(A.controlsPosition), '<div class="tns-controls" aria-label="Carousel Navigation" tabindex="0"><button data-controls="prev" tabindex="-1" aria-controls="' + je + '">' + ue[0] + '</button><button data-controls="next" tabindex="-1" aria-controls="' + je + '">' + ue[1] + "</button></div>"), gt = C.querySelector(".tns-controls")), vt && mt || (vt = gt.children[0], mt = gt.children[1]), A.controlsContainer && (0, ji.setAttrs)(gt, { "aria-label": "Carousel Navigation", tabindex: "0" }), (A.controlsContainer || A.prevButton && A.nextButton) && (0, ji.setAttrs)([vt, mt], { "aria-controls": je, tabindex: "-1" }), (A.controlsContainer || A.prevButton && A.nextButton) && ((0, ji.setAttrs)(vt, { "data-controls": "prev" }), (0, ji.setAttrs)(mt, { "data-controls": "next" })), ht = Fn(vt), ft = Fn(mt), Yn(), gt ? (0, Ji.addEvents)(gt, $e) : ((0, Ji.addEvents)(vt, $e), (0, Ji.addEvents)(mt, $e))), Mn()
}
function vn() {
if (V && d) {
var e = {};
e[d] = ei, (0, Ji.addEvents)(F, e)
}
fe && (0, Ji.addEvents)(F, et, A.preventScrollOnTouch), ge && (0, Ji.addEvents)(F, tt), ae && (0, Ji.addEvents)(E, Qe), "inner" === D ? Fe.on("outerResized", function() { yn(), Fe.emit("innerLoaded", Mi()) }) : (P || K || Z || ce || !N) && (0, Ji.addEvents)(v, { resize: mn }), ce && ("outer" === D ? Fe.on("innerLoaded", Pn) : Ye || Pn()), Ln(), Ye ? Sn() : qe && _n(), Fe.on("indexChanged", Vn), "inner" === D && Fe.emit("innerLoaded", Mi()), "function" == typeof Ie && Ie(Mi()), G = !0
}
function mn(e) {
(0, wi.raf)(function() { yn(di(e)) })
}
function yn(e) {
if (G) {
"outer" === D && Fe.emit("outerResized", Mi(e)), Y = Qt();
var t, n = H,
i = !1;
P && (xn(), (t = n !== H) && Fe.emit("newBreakpointStart", Mi(e)));
var r, a, o = ne,
s = Ye,
l = qe,
c = ae,
d = de,
u = he,
h = fe,
f = ge,
g = pe,
p = ye,
v = be,
m = Pe;
if (t) {
var y = K,
b = ce,
x = ue,
M = te,
w = me;
if (!O) var _ = Q,
S = J
}
if (ae = rn("arrowKeys"), de = rn("controls"), he = rn("nav"), fe = rn("touch"), te = rn("center"), ge = rn("mouseDrag"), pe = rn("autoplay"), ye = rn("autoplayHoverPause"), be = rn("autoplayResetOnVisibility"), t && (Ye = rn("disable"), K = rn("fixedWidth"), oe = rn("speed"), ce = rn("autoHeight"), ue = rn("controlsText"), me = rn("autoplayText"), ve = rn("autoplayTimeout"), O || (J = rn("edgePadding"), Q = rn("gutter"))), Xt(Ye), ee = tn(), N && !Z || Ye || (Hn(), N || (yi(), i = !0)), (K || Z) && (ke = qn(), Re = Oe()), (t || K) && (ne = rn("items"), ie = rn("slideBy"), (a = ne !== o) && (K || Z || (Re = Oe()), Ut())), t && Ye !== s && (Ye ? Sn() : function() {
if (!Ge) return;
if (xe.disabled = !1, F.className += We, $n(), le)
for (var e = _e; e--;) V && (0, qi.showElement)(W[e]), (0, qi.showElement)(W[Se - e - 1]);
if (!V)
for (var t = Pe, n = Pe + j; t < n; t++) {
var i = W[t],
r = t < Pe + ne ? R : B;
i.style.left = 100 * (t - Pe) / ne + "%", (0, Ni.addClass)(i, r)
}
wn(), Ge = !1
}()), Ue && (t || K || Z) && (qe = bn()) !== l && (qe ? (Zn(Xn(Zt(0))), _n()) : (function() {
if (!Xe) return;
J && O && (I.style.margin = "");
if (_e)
for (var e = "tns-transparent", t = _e; t--;) V && (0, Ii.removeClass)(W[t], e), (0, Ii.removeClass)(W[Se - t - 1], e);
wn(), Xe = !1
}(), i = !0)), Xt(Ye || qe), pe || (ye = be = !1), ae !== c && (ae ? (0, Ji.addEvents)(E, Qe) : (0, Qi.removeEvents)(E, Qe)), de !== d && (de ? gt ? (0, qi.showElement)(gt) : (vt && (0, qi.showElement)(vt), mt && (0, qi.showElement)(mt)) : gt ? (0, Ui.hideElement)(gt) : (vt && (0, Ui.hideElement)(vt), mt && (0, Ui.hideElement)(mt))), he !== u && (he ? (0, qi.showElement)(Mt) : (0, Ui.hideElement)(Mt)), fe !== h && (fe ? (0, Ji.addEvents)(F, et, A.preventScrollOnTouch) : (0, Qi.removeEvents)(F, et)), ge !== f && (ge ? (0, Ji.addEvents)(F, tt) : (0, Qi.removeEvents)(F, tt)), pe !== g && (pe ? (Bt && (0, qi.showElement)(Bt), Pt || Vt || oi()) : (Bt && (0, Ui.hideElement)(Bt), Pt && si())), ye !== p && (ye ? (0, Ji.addEvents)(F, Ke) : (0, Qi.removeEvents)(F, Ke)), be !== v && (be ? (0, Ji.addEvents)(E, Je) : (0, Qi.removeEvents)(E, Je)), t) {
if (K === y && te === M || (i = !0), ce !== b && (ce || (I.style.height = "")), de && ue !== x && (vt.innerHTML = ue[0], mt.innerHTML = ue[1]), Bt && me !== w) {
var C = pe ? 1 : 0,
k = Bt.innerHTML,
T = k.length - w[C].length;
k.substring(T) === w[C] && (Bt.innerHTML = k.substring(0, T) + me[C])
}
} else te && (K || Z) && (i = !0);
if ((a || K && !Z) && (_t = bi(), xi()), (r = Pe !== m) ? (Fe.emit("indexChanged", Mi()), i = !0) : a ? r || Vn() : (K || Z) && (Ln(), Nn(), Cn()), a && !V && function() {
for (var e = Pe + Math.min(j, ne), t = Se; t--;) {
var n = W[t];
Pe <= t && t < e ? ((0, Ni.addClass)(n, "tns-moving"), n.style.left = 100 * (t - Pe) / ne + "%", (0, Ni.addClass)(n, R), (0, Ii.removeClass)(n, B)) : n.style.left && (n.style.left = "", (0, Ni.addClass)(n, B), (0, Ii.removeClass)(n, R)), (0, Ii.removeClass)(n, z)
}
setTimeout(function() {
(0, Bi.forEach)(W, function(e) {
(0, Ii.removeClass)(e, "tns-moving")
})
}, 300)
}(), !Ye && !qe) {
if (t && !O && (ce === autoheightTem && oe === speedTem || Rn(), J === S && Q === _ || (I.style.cssText = an(J, Q, K, oe, ce)), N)) {
V && (F.style.width = on(K, Q, ne));
var L = sn(K, Q, ne) + ln(Q);
(0, Di.removeCSSRule)(xe, (0, Vi.getCssRulesLength)(xe) - 1), (0, Pi.addCSSRule)(xe, "#" + je + " > .tns-item", L, (0, Vi.getCssRulesLength)(xe))
}
ce && Pn(), i && ($n(), De = Pe)
}
t && Fe.emit("newBreakpointEnd", Mi(e))
}
}
function bn() {
if (!K && !Z) return j <= (te ? ne - (ne - 1) / 2 : ne);
var e = K ? (K + Q) * j : L[j],
t = J ? ee + 2 * J : ee + Q;
return te && (t -= K ? (ee - K) / 2 : (ee - (L[Pe + 1] - L[Pe] - Q)) / 2), e <= t
}
function xn() { for (var e in H = 0, P)(e = parseInt(e)) <= Y && (H = e) }
function Mn() {!pe && Bt && (0, Ui.hideElement)(Bt), !he && Mt && (0, Ui.hideElement)(Mt), de || (gt ? (0, Ui.hideElement)(gt) : (vt && (0, Ui.hideElement)(vt), mt && (0, Ui.hideElement)(mt))) }
function wn() { pe && Bt && (0, qi.showElement)(Bt), he && Mt && (0, qi.showElement)(Mt), de && (gt ? (0, qi.showElement)(gt) : (vt && (0, qi.showElement)(vt), mt && (0, qi.showElement)(mt))) }
function _n() {
if (!Xe) {
if (J && (I.style.margin = "0px"), _e)
for (var e = "tns-transparent", t = _e; t--;) V && (0, Ni.addClass)(W[t], e), (0, Ni.addClass)(W[Se - t - 1], e);
Mn(), Xe = !0
}
}
function Sn() {
if (!Ge) {
if (xe.disabled = !0, F.className = F.className.replace(We.substring(1), ""), (0, Yi.removeAttrs)(F, ["style"]), le)
for (var e = _e; e--;) V && (0, Ui.hideElement)(W[e]), (0, Ui.hideElement)(W[Se - e - 1]);
if (N && V || (0, Yi.removeAttrs)(I, ["style"]), !V)
for (var t = Pe, n = Pe + j; t < n; t++) {
var i = W[t];
(0, Yi.removeAttrs)(i, ["style"]), (0, Ii.removeClass)(i, R), (0, Ii.removeClass)(i, B)
}
Mn(), Ge = !0
}
}
function Cn() {
var e = kn();
q.innerHTML !== e && (q.innerHTML = e)
}
function kn() {
var e = Tn(),
t = e[0] + 1,
n = e[1] + 1;
return t === n ? t + "" : t + " to " + n
}
function Tn(e) {
null == e && (e = Xn());
var n, i, r, a = Pe;
if (te || J ? (Z || K) && (i = -(parseFloat(e) + J), r = i + ee + 2 * J) : Z && (i = L[Pe], r = i + ee), Z) L.forEach(function(e, t) { t < Se && ((te || J) && e <= i + .5 && (a = t), .5 <= r - e && (n = t)) });
else {
if (K) {
var t = K + Q;
n = te || J ? (a = Math.floor(i / t), Math.ceil(r / t - 1)) : a + Math.ceil(ee / t) - 1
} else if (te || J) {
var o = ne - 1;
if (n = te ? (a -= o / 2, Pe + o / 2) : Pe + o, J) {
var s = J * ne / ee;
a -= s, n += s
}
a = Math.floor(a), n = Math.ceil(n)
} else n = a + ne - 1;
a = Math.max(a, 0), n = Math.min(n, Se - 1)
}
return [a, n]
}
function Ln() {
Me && !Ye && On.apply(null, Tn()).forEach(function(e) {
if (!(0, Hi.hasClass)(e, ct)) {
var t = {};
t[d] = function(e) { e.stopPropagation() }, (0, Ji.addEvents)(e, t), (0, Ji.addEvents)(e, dt), e.src = (0, Wi.getAttr)(e, "data-src");
var n = (0, Wi.getAttr)(e, "data-srcset");
n && (e.srcset = n), (0, Ni.addClass)(e, "loading")
}
})
}
function An(e) {
(0, Ni.addClass)(e, "loaded"), En(e)
}
function En(e) {
(0, Ni.addClass)(e, "tns-complete"), (0, Ii.removeClass)(e, "loading"), (0, Qi.removeEvents)(e, dt)
}
function On(e, t) { for (var n = []; e <= t;)(0, Bi.forEach)(W[e].querySelectorAll("img"), function(e) { n.push(e) }), e++; return n }
function Pn() {
var e = On.apply(null, Tn());
(0, wi.raf)(function() { Dn(e, Bn) })
}
function Dn(n, e) {
return U ? e() : (n.forEach(function(e, t) {
(0, Hi.hasClass)(e, ct) && n.splice(t, 1)
}), n.length ? void(0, wi.raf)(function() { Dn(n, e) }) : e())
}
function Vn() {
Ln(), Nn(), Cn(), Yn(),
function() {
if (he && (kt = 0 <= Ct ? Ct : Jt(), Ct = -1, kt !== Tt)) {
var e = xt[Tt],
t = xt[kt];
(0, ji.setAttrs)(e, { tabindex: "-1", "aria-label": At + (Tt + 1) }), (0, Ii.removeClass)(e, Lt), (0, ji.setAttrs)(t, { "aria-label": At + (kt + 1) + Et }), (0, Yi.removeAttrs)(t, "tabindex"), (0, Ni.addClass)(t, Lt), Tt = kt
}
}()
}
function Rn() { V && ce && (S.style[b] = oe / 1e3 + "s") }
function zn(e, t) { for (var n = [], i = e, r = Math.min(e + t, Se); i < r; i++) n.push(W[i].offsetHeight); return Math.max.apply(null, n) }
function Bn() {
var e = ce ? zn(Pe, ne) : zn(_e, j),
t = S || I;
t.style.height !== e && (t.style.height = e + "px")
}
function Hn() {
L = [0];
var n = N ? "left" : "top",
i = N ? "right" : "bottom",
r = W[0].getBoundingClientRect()[n];
(0, Bi.forEach)(W, function(e, t) { t && L.push(e.getBoundingClientRect()[n] - r), t === Se - 1 && L.push(e.getBoundingClientRect()[i] - r) })
}
function Nn() {
var e = Tn(),
n = e[0],
i = e[1];
(0, Bi.forEach)(W, function(e, t) { n <= t && t <= i ? (0, Fi.hasAttr)(e, "aria-hidden") && ((0, Yi.removeAttrs)(e, ["aria-hidden", "tabindex"]), (0, Ni.addClass)(e, lt)) : (0, Fi.hasAttr)(e, "aria-hidden") || ((0, ji.setAttrs)(e, { "aria-hidden": "true", tabindex: "-1" }), (0, Ii.removeClass)(e, lt)) })
}
function In(e) { return e.nodeName.toLowerCase() }
function Fn(e) { return "button" === In(e) }
function Wn(e) { return "true" === e.getAttribute("aria-disabled") }
function jn(e, t, n) { e ? t.disabled = n : t.setAttribute("aria-disabled", n.toString()) }
function Yn() {
if (de && !se && !le) {
var e = ht ? vt.disabled : Wn(vt),
t = ft ? mt.disabled : Wn(mt),
n = Pe <= Ve,
i = !se && Re <= Pe;
n && !e && jn(ht, vt, !0), !n && e && jn(ht, vt, !1), i && !t && jn(ft, mt, !0), !i && t && jn(ft, mt, !1)
}
}
function Gn(e, t) { b && (e.style[b] = t) }
function Un(e) { return null == e && (e = Pe), Z ? (ee - (J ? Q : 0) - (L[e + 1] - L[e] - Q)) / 2 : K ? (ee - K) / 2 : (ne - 1) / 2 }
function qn() { var e = ee + (J ? Q : 0) - (K ? (K + Q) * Se : L[Se]); return te && !le && (e = K ? -(K + Q) * (Se - 1) - Un() : Un(Se - 1) - L[Se - 1]), 0 < e && (e = 0), e }
function Xn(e) {
var t;
if (null == e && (e = Pe), N && !Z)
if (K) t = -(K + Q) * e, te && (t += Un());
else {
var n = o ? Se : ne;
te && (e -= Un()), t = 100 * -e / n
}
else t = -L[e], te && Z && (t += Un());
return Ce && (t = Math.max(t, ke)), t += !N || Z || K ? "px" : "%"
}
function $n(e) { Gn(F, "0s"), Zn(e) }
function Zn(e) { null == e && (e = Xn()), F.style[Le] = Ae + e + Ee }
function Kn(e, t, n, i) {
var r = e + ne;
le || (r = Math.min(r, Se));
for (var a = e; a < r; a++) {
var o = W[a];
i || (o.style.left = 100 * (a - Pe) / ne + "%"), _ && l && (o.style[l] = o.style[c] = _ * (a - e) / 1e3 + "s"), (0, Ii.removeClass)(o, t), (0, Ni.addClass)(o, n), i && we.push(o)
}
}
function Jn(e, t) { Te && Ut(), Pe === De && !t || (Fe.emit("indexChanged", Mi()), Fe.emit("transitionStart", Mi()), ce && Pn(), Pt && e && 0 <= ["click", "keydown"].indexOf(e.type) && si(), Ne = !0, qt()) }
function Qn(e) { return e.toLowerCase().replace(/-/g, "") }
function ei(e) {
if (V || Ne) {
if (Fe.emit("transitionEnd", Mi(e)), !V && 0 < we.length)
for (var t = 0; t < we.length; t++) {
var n = we[t];
n.style.left = "", c && l && (n.style[c] = "", n.style[l] = ""), (0, Ii.removeClass)(n, z), (0, Ni.addClass)(n, B)
}
if (!e || !V && e.target.parentNode === F || e.target === F && Qn(e.propertyName) === Qn(Le)) {
if (!Te) {
var i = Pe;
Ut(), Pe !== i && (Fe.emit("indexChanged", Mi()), $n())
}
"inner" === D && Fe.emit("innerLoaded", Mi()), Ne = !1, De = Pe
}
}
}
function ti(e, t) {
if (!qe)
if ("prev" === e) ni(t, -1);
else if ("next" === e) ni(t, 1);
else {
if (Ne) {
if (ze) return;
ei()
}
var n = Kt(),
i = 0;
if ("first" === e ? i = -n : "last" === e ? i = V ? j - ne - n : j - 1 - n : ("number" != typeof e && (e = parseInt(e)), isNaN(e) || (t || (e = Math.max(0, Math.min(j - 1, e))), i = e - n)), !V && i && Math.abs(i) < ne) {
var r = 0 < i ? 1 : -1;
i += Ve <= Pe + i - j ? j * r : 2 * j * r * -1
}
Pe += i, V && le && (Pe < Ve && (Pe += j), Re < Pe && (Pe -= j)), Kt(Pe) !== Kt(De) && Jn(t)
}
}
function ni(e, t) {
if (Ne) {
if (ze) return;
ei()
}
var n;
if (!t) {
for (var i = ui(e = di(e)); i !== gt && [vt, mt].indexOf(i) < 0;) i = i.parentNode;
var r = [vt, mt].indexOf(i);
0 <= r && (n = !0, t = 0 === r ? -1 : 1)
}
if (se) { if (Pe === Ve && -1 === t) return void ti("last", e); if (Pe === Re && 1 === t) return void ti("first", e) }
t && (Pe += ie * t, Z && (Pe = Math.floor(Pe)), Jn(n || e && "keydown" === e.type ? e : null))
}
function ii() { Ot = setInterval(function() { ni(null, zt) }, ve), Pt = !0 }
function ri() { clearInterval(Ot), Pt = !1 }
function ai(e, t) {
(0, ji.setAttrs)(Bt, { "data-action": e }), Bt.innerHTML = Nt[0] + e + Nt[1] + t
}
function oi() { ii(), Bt && ai("stop", me[1]) }
function si() { ri(), Bt && ai("start", me[0]) }
function li() { Vt = Pt ? (si(), !0) : (oi(), !1) }
function ci(e) { e.focus() }
function di(e) { return hi(e = e || v.event) ? e.changedTouches[0] : e }
function ui(e) { return e.target || v.event.srcElement }
function hi(e) { return 0 <= e.type.indexOf("touch") }
function fi(e) { e.preventDefault ? e.preventDefault() : e.returnValue = !1 }
function gi() { return (0, zi.getTouchDirection)((0, Ri.toDegree)(jt.y - Wt.y, jt.x - Wt.x), Be) === A.axis }
function pi(e) {
if (Ne) {
if (ze) return;
ei()
}
pe && Pt && ri(), Yt = !0, Ft && ((0, _i.caf)(Ft), Ft = null);
var t = di(e);
Fe.emit(hi(e) ? "touchStart" : "dragStart", Mi(e)), !hi(e) && 0 <= ["img", "a"].indexOf(In(ui(e))) && fi(e), jt.x = Wt.x = t.clientX, jt.y = Wt.y = t.clientY, V && (It = parseFloat(F.style[Le].replace(Ae, "")), Gn(F, "0s"))
}
function vi(e) {
if (Yt) {
var t = di(e);
jt.x = t.clientX, jt.y = t.clientY, V ? Ft = Ft || (0, wi.raf)(function() {
! function e(t) {
if (!He) return void(Yt = !1);
(0, _i.caf)(Ft);
Yt && (Ft = (0, wi.raf)(function() { e(t) }));
"?" === He && (He = gi());
if (He) {
!ut && hi(t) && (ut = !0);
try { t.type && Fe.emit(hi(t) ? "touchMove" : "dragMove", Mi(t)) } catch (e) {}
var n = It,
i = Gt(jt, Wt);
if (!N || K || Z) n += i, n += "px";
else {
var r = o ? i * ne * 100 / ((ee + Q) * Se) : 100 * i / (ee + Q);
n += r, n += "%"
}
F.style[Le] = Ae + n + Ee
}
}(e)
}) : ("?" === He && (He = gi()), He && (ut = !0)), ut && e.preventDefault()
}
}
function mi(i) {
if (Yt) {
Ft && ((0, _i.caf)(Ft), Ft = null), V && Gn(F, ""), Yt = !1;
var e = di(i);
jt.x = e.clientX, jt.y = e.clientY;
var r = Gt(jt, Wt);
if (Math.abs(r)) {
if (!hi(i)) {
var n = ui(i);
(0, Ji.addEvents)(n, { click: function e(t) { fi(t), (0, Qi.removeEvents)(n, { click: e }) } })
}
V ? Ft = (0, wi.raf)(function() {
if (N && !Z) {
var e = -r * ne / (ee + Q);
e = 0 < r ? Math.floor(e) : Math.ceil(e), Pe += e
} else {
var t = -(It + r);
if (t <= 0) Pe = Ve;
else if (t >= L[Se - 1]) Pe = Re;
else
for (var n = 0; n < Se && t >= L[n];) t > L[Pe = n] && r < 0 && (Pe += 1), n++
}
Jn(i, r), Fe.emit(hi(i) ? "touchEnd" : "dragEnd", Mi(i))
}) : He && ni(i, 0 < r ? -1 : 1)
}
}
"auto" === A.preventScrollOnTouch && (ut = !1), Be && (He = "?"), pe && !Pt && ii()
}
function yi() {
(S || I).style.height = L[Pe + ne] - L[Pe] + "px"
}
function bi() { var e = K ? (K + Q) * j / ee : j / ne; return Math.min(Math.ceil(e), j) }
function xi() {
if (he && !rt && _t !== St) {
var e = St,
t = _t,
n = qi.showElement;
for (_t < St && (e = _t, t = St, n = Ui.hideElement); e < t;) n(xt[e]), e++;
St = _t
}
}
function Mi(e) { return { container: F, slideItems: W, navContainer: Mt, navItems: xt, controlsContainer: gt, hasControls: nt, prevButton: vt, nextButton: mt, items: ne, slideBy: ie, cloneCount: _e, slideCount: j, slideCountNew: Se, index: Pe, indexCached: De, displayIndex: $t(), navCurrentIndex: kt, navCurrentIndexCached: Tt, pages: _t, pagesCached: St, sheet: xe, isOn: G, event: e || {} } }
h && console.warn("No slides found in", A.container)
}
}, { "./helpers/Object.keys": 4, "./helpers/addCSSRule.js": 5, "./helpers/addClass.js": 6, "./helpers/addEvents.js": 7, "./helpers/arrayFromNodeList.js": 8, "./helpers/caf.js": 9, "./helpers/calc.js": 10, "./helpers/checkStorageValue.js": 11, "./helpers/childNode.remove": 12, "./helpers/createStyleSheet.js": 14, "./helpers/events.js": 16, "./helpers/extend.js": 17, "./helpers/forEach.js": 18, "./helpers/getAttr.js": 19, "./helpers/getCssRulesLength.js": 21, "./helpers/getEndProperty.js": 22, "./helpers/getSlideId.js": 23, "./helpers/getTouchDirection.js": 24, "./helpers/has3DTransforms.js": 25, "./helpers/hasAttr.js": 26, "./helpers/hasClass.js": 27, "./helpers/hideElement.js": 28, "./helpers/isVisible.js": 30, "./helpers/jsTransform.js": 31, "./helpers/mediaquerySupport.js": 32, "./helpers/percentageLayout.js": 34, "./helpers/raf.js": 35, "./helpers/removeAttrs.js": 36, "./helpers/removeCSSRule.js": 37, "./helpers/removeClass.js": 38, "./helpers/removeEvents.js": 39, "./helpers/setAttrs.js": 41, "./helpers/setLocalStorage.js": 43, "./helpers/showElement.js": 44, "./helpers/toDegree.js": 45, "./helpers/whichProperty.js": 46 }],
48: [function(e, t, n) {
"use strict";
e("./global/page-loader"), e("simplebar"), e("./global/tooltips"), e("./global/popups"), e("./global/accordions"), e("./utils/svg-loader"), e("./utils/liquidify"), e("./utils/demo-icons"), e("./form/form-rating"), e("./form/form-counter"), e("./form/form-switch"), e("./form/form-input"), e("./form/interactive-input"), e("./landing/landing.tabs"), e("./header/header.progressBar"), e("./header/header.dropdown"), e("./sidebar/sidebar"), e("./global/user-avatar.hexagons"), e("./global/maps"), e("./content/content.progressBar"), e("./content/content.slider"), e("./content/content.dropdown"), e("./content/content.tab"), e("./global/charts"), e("./widget/twitter")
}, { "./content/content.dropdown": 49, "./content/content.progressBar": 50, "./content/content.slider": 51, "./content/content.tab": 52, "./form/form-counter": 53, "./form/form-input": 54, "./form/form-rating": 55, "./form/form-switch": 56, "./form/interactive-input": 57, "./global/accordions": 58, "./global/charts": 59, "./global/maps": 60, "./global/page-loader": 61, "./global/popups": 62, "./global/tooltips": 63, "./global/user-avatar.hexagons": 64, "./header/header.dropdown": 65, "./header/header.progressBar": 66, "./landing/landing.tabs": 67, "./sidebar/sidebar": 68, "./utils/demo-icons": 70, "./utils/liquidify": 71, "./utils/svg-loader": 73, "./widget/twitter": 74, simplebar: 3 }],
49: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins");
i.createDropdown({ trigger: ".widget-box-post-settings-dropdown-trigger", container: ".widget-box-post-settings-dropdown", offset: { top: 30, right: 9 }, animation: { type: "translate-top", speed: .3, translateOffset: { vertical: 20 } } }), i.createDropdown({ trigger: ".reaction-item-dropdown-trigger", container: ".reaction-item-dropdown", triggerEvent: "hover", offset: { bottom: 38, left: -16 }, animation: { type: "translate-bottom", speed: .3, translateOffset: { vertical: 20 } } }), i.createDropdown({ trigger: ".reaction-options-dropdown-trigger", container: ".reaction-options-dropdown", triggerEvent: "click", offset: { bottom: 54, left: -16 }, animation: { type: "translate-bottom", speed: .3, translateOffset: { vertical: 20 } }, closeOnDropdownClick: !0 }), i.createDropdown({ trigger: ".reaction-options-small-dropdown-trigger", container: ".reaction-options-small-dropdown", triggerEvent: "click", offset: { bottom: 30, left: -80 }, animation: { type: "translate-bottom", speed: .3, translateOffset: { vertical: 16 } }, closeOnDropdownClick: !0 }), i.createDropdown({ trigger: ".post-settings-dropdown-trigger", container: ".post-settings-dropdown", offset: { bottom: 30, right: 0 }, animation: { type: "translate-bottom", speed: .3, translateOffset: { vertical: 16 } } })
}, { "../utils/plugins": 72 }],
50: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins");
i.createProgressBar({ container: "#exp-to-next-level", height: 6, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#exp-to-next-level", height: 6, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 200, stop: 162 }, linkText: !0, linkUnits: "exp", invertedProgress: !0, animateOnScroll: !0 }), i.createProgressBar({ container: "#badge-bronze", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-bronze", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-silver", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-silver", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 100 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-gold", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-gold", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 500, stop: 461 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-platinum", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-platinum", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1e3, stop: 461 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-traveller", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-traveller", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 5, stop: 4 }, invertedProgress: !0, linkText: !0, linkUnits: "topics", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-caffeinated", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-caffeinated", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 0 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-upowered", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-upowered", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 50, stop: 42 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-scientist", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-scientist", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-ncreature", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-ncreature", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 100 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-warrior", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-warrior", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-liked", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-liked", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 500, stop: 462 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-sloved", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-sloved", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1e3, stop: 462 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-qconq", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-qconq", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 10, stop: 4 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-villain", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-villain", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 89 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-age", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-age", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 730, stop: 605 }, invertedProgress: !0, linkText: !0, linkUnits: "days", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-tstruck", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-tstruck", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 50, stop: 41 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-uexp", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-uexp", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 20, stop: 17 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-globet", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-globet", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 10, stop: 8 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-verifieds", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-verifieds", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-gempost", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-gempost", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 0 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-peoplesp", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-peoplesp", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 200, stop: 181 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-rulerm", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-rulerm", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 5, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-marketeer", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-marketeer", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 10, stop: 7 }, invertedProgress: !0, linkText: !0, linkUnits: "items", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-tycoon", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-tycoon", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 32 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-mightiers", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-mightiers", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 50, stop: 26 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-phantom", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-phantom", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-forumsf", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-forumsf", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 20, stop: 13 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-fcultivator", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-fcultivator", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 33 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-splanner", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-splanner", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 25, stop: 9 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-collector", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-collector", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 5, stop: 2 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-prophoto", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-prophoto", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 500, stop: 24 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-rmachine", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-rmachine", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 50, stop: 41 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-bronzec", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-bronzec", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-silverc", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-silverc", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-goldc", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-goldc", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 1 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#badge-platinumc", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#badge-platinumc", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 1, stop: 0 }, linkText: !0, linkUnits: "/", emptyText: "locked", completeText: "unlocked!" }), i.createProgressBar({ container: "#quest-preview-nth", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-preview-nth", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 65 }, animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-preview-sk", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-preview-sk", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 85 }, animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-preview-bp", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-preview-bp", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 32 }, animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-preview-htp", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-preview-htp", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 0 }, animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-preview-sm", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-preview-sm", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 49 }, animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-sk", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-sk", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 8, stop: 7 }, linkText: !0, linkUnits: "/" }), i.createProgressBar({ container: "#quest-fu", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-fu", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 50, stop: 50 }, linkText: !0, linkUnits: "/" }), i.createProgressBar({ container: "#quest-nth", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-nth", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 67 }, linkText: !0, linkUnits: "%" }), i.createProgressBar({ container: "#quest-sm", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-sm", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 10, stop: 5 }, linkText: !0, linkUnits: "/" }), i.createProgressBar({ container: "#quest-line-ps", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-ps", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 100 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-nth", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-nth", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 67 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-fu", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-fu", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 50, stop: 50 }, linkText: !0, linkUnits: "/", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-ph", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-ph", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 20, stop: 20 }, linkText: !0, linkUnits: "/", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-tr", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-tr", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 10, stop: 2 }, linkText: !0, linkUnits: "/", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-sk", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-sk", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 8, stop: 7 }, linkText: !0, linkUnits: "/", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-bp", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-bp", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 30, stop: 12 }, linkText: !0, linkUnits: "/", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-htp", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-htp", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 0 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#quest-line-sm", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#quest-line-sm", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 10, stop: 5 }, linkText: !0, linkUnits: "/", animateOnScroll: !0 }), i.createProgressBar({ container: "#poll-result-1", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#poll-result-1", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 62 }, linkText: !0, linkUnits: "%" }), i.createProgressBar({ container: "#poll-result-2", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#poll-result-2", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 27 }, linkText: !0, linkUnits: "%" }), i.createProgressBar({ container: "#poll-result-3", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#poll-result-3", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 11 }, linkText: !0, linkUnits: "%" }), i.createProgressBar({ container: "#post-engagement-1", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#post-engagement-1", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 89 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#post-engagement-2", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#post-engagement-2", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 74 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#post-engagement-3", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#post-engagement-3", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 53 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#post-engagement-4", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#post-engagement-4", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 48 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#post-engagement-5", height: 4, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#post-engagement-5", height: 4, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 100, stop: 21 }, linkText: !0, linkUnits: "%", animateOnScroll: !0 }), i.createProgressBar({ container: "#top-country-1", width: 178, height: 6, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#top-country-1", width: 178, height: 6, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 25362, stop: 25362 }, split: { parts: 30, gap: 2, color: "#fff" }, linkText: !0, linkUnits: !1, animateOnScroll: !0 }), i.createProgressBar({ container: "#top-country-2", width: 178, height: 6, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#top-country-2", width: 178, height: 6, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 25362, stop: 18201 }, split: { parts: 30, gap: 2, color: "#fff" }, linkText: !0, linkUnits: !1, animateOnScroll: !0 }), i.createProgressBar({ container: "#top-country-3", width: 178, height: 6, lineColor: "#e7e8ee" }), i.createProgressBar({ container: "#top-country-3", width: 178, height: 6, gradient: { colors: ["#615dfa", "#41efff"] }, scale: { start: 0, end: 25362, stop: 9567 }, split: { parts: 30, gap: 2, color: "#fff" }, linkText: !0, linkUnits: !1, animateOnScroll: !0 })
}, { "../utils/plugins": 72 }],
51: [function(e, t, n) {
"use strict";
var o = e("../utils/plugins");
o.createSlider({ container: "#profile-header-social-links-slider", items: 4, fixedWidth: 32, gutter: 8, loop: !1, nav: !1, controlsContainer: "#profile-header-social-links-slider-controls", responsive: { 481: { fixedWidth: 40, gutter: 12 } } }), o.createSlider({ container: "#section-navigation-slider", fixedWidth: 122, nav: !1, loop: !1, controlsContainer: "#section-navigation-slider-controls" }), o.createSlider({ container: "#section-navigation-medium-slider", fixedWidth: 160, nav: !1, loop: !1, controlsContainer: "#section-navigation-medium-slider-controls" }), o.createSlider({ container: "#user-stats-slider", fixedWidth: 113, nav: !1, loop: !1, controlsContainer: "#user-stats-slider-controls" }), o.createSlider({ container: "#reaction-stats-slider", fixedWidth: 146, nav: !1, loop: !1, controlsContainer: "#reaction-stats-slider-controls" }), o.createSlider({ container: "#stat-block-slider", fixedWidth: 272, nav: !1, loop: !1, controlsContainer: "#stat-block-slider-controls" }), o.createSlider({ container: "#stream-slider", fixedWidth: 184, gutter: 16, nav: !1, controlsContainer: "#stream-slider-controls" }), o.createSlider({ container: "#stats-box-slider-items", mode: "gallery", nav: !1, speed: 1e3, autoplay: !0, autoplayButtonOutput: !1, controlsContainer: "#stats-box-slider-controls" }), o.createSlider({ container: "#reaction-stat-slider-items", nav: !1, speed: 600, controlsContainer: "#reaction-stat-slider-controls" }), o.createSlider({ container: "#badge-stat-slider-items", nav: !1, loop: !1, speed: 600, controlsContainer: "#badge-stat-slider-controls" }), o.createSlider({ container: "#product-box-slider-items", mode: "gallery", speed: 1e3, autoplay: !0, autoplayButtonOutput: !1, controlsContainer: "#product-box-slider-controls", navContainer: "#product-box-slider-roster" });
! function() {
for (var e = 1;;) {
var t = e < 10 ? "0".concat(e) : e;
if (!o.createSlider({ container: "#user-preview-stats-slides-".concat(t), loop: !1, controls: !1, navContainer: "#user-preview-stats-roster-".concat(t) })) break;
e++
}
}();
! function() {
for (var e, t, n, i = 1;;) {
var r = i < 10 ? "0".concat(i) : i,
a = o.createSlider({ container: "#user-preview-social-links-slider-".concat(r), items: 4, fixedWidth: 32, gutter: 8, loop: !1, nav: !1, controlsContainer: "#user-preview-social-links-slider-controls-".concat(r) });
if (!a) break;
e = a.getInfo(), t = 32, n = 8, e.container.style.width = "".concat(e.slideCount * t + (e.slideCount - 1) * n, "px"), i++
}
}()
}, { "../utils/plugins": 72 }],
52: [function(e, t, n) {
"use strict";
e("../utils/plugins").createTab({ triggers: ".tab-box-option", elements: ".tab-box-item" })
}, { "../utils/plugins": 72 }],
53: [function(e, t, n) {
"use strict";
e("../utils/core").querySelector(".form-counter", function(e) {
var t = !0,
n = !1,
i = void 0;
try {
for (var o, r = function() {
var e = o.value,
t = e.querySelector(".form-counter-value"),
n = e.querySelector(".form-counter-control-increase"),
i = e.querySelector(".form-counter-control-decrease"),
r = e.getAttribute("data-increase-by") ? Number.parseInt(e.getAttribute("data-increase-by"), 10) : 1,
a = e.getAttribute("data-min") ? Number.parseInt(e.getAttribute("data-min"), 10) : 1;
n.addEventListener("click", function() { t.innerHTML = Number.parseInt(t.innerHTML, 10) + r }), i.addEventListener("click", function() { Number.parseInt(t.innerHTML) !== a && (t.innerHTML = Number.parseInt(t.innerHTML, 10) - r) })
}, a = e[Symbol.iterator](); !(t = (o = a.next()).done); t = !0) r()
} catch (e) { n = !0, i = e } finally { try { t || null == a.return || a.return() } finally { if (n) throw i } }
})
}, { "../utils/core": 69 }],
54: [function(e, t, n) {
"use strict";
e("../utils/core").querySelector(".form-input", function(e) {
var t = !0,
n = !1,
i = void 0;
try {
for (var r, a = function() {
var e = r.value;
if (e.classList.contains("always-active")) return "continue";
var t = e.querySelector("input"),
n = e.querySelector("textarea"),
i = void 0;
t && (i = t), n && (i = n), i && (i.addEventListener("focus", function() { e.classList.add("active") }), i.addEventListener("blur", function() { "" === i.value && e.classList.remove("active") }))
}, o = e[Symbol.iterator](); !(t = (r = o.next()).done); t = !0) a()
} catch (e) { n = !0, i = e } finally { try { t || null == o.return || o.return() } finally { if (n) throw i } }
})
}, { "../utils/core": 69 }],
55: [function(e, t, n) {
"use strict";
e("../utils/core").querySelector(".form-rating", function(e) {
var t = !0,
n = !1,
i = void 0;
try {
for (var a, r = function() {
for (var e = a.value, o = "filled", s = Array.from(e.children), i = function() {
e.setAttribute("data-rating", function() {
var e = 0,
t = !0,
n = !1,
i = void 0;
try { for (var r, a = s[Symbol.iterator](); !(t = (r = a.next()).done); t = !0) { r.value.classList.contains(o) && e++ } } catch (e) { n = !0, i = e } finally { try { t || null == a.return || a.return() } finally { if (n) throw i } }
return e
}())
}, t = function() {
for (var e = s.indexOf(this), t = 0; t <= e; t++) s[t].classList.add(o);
for (var n = e + 1; n < s.length; n++) s[n].classList.remove(o);
i()
}, n = 0, r = s; n < r.length; n++) { r[n].addEventListener("click", t) }
i()
}, o = e[Symbol.iterator](); !(t = (a = o.next()).done); t = !0) r()
} catch (e) { n = !0, i = e } finally { try { t || null == o.return || o.return() } finally { if (n) throw i } }
})
}, { "../utils/core": 69 }],
56: [function(e, t, n) {
"use strict";
e("../utils/core").querySelector(".form-switch", function(e) {
var t = !0,
n = !1,
i = void 0;
try {
for (var r, a = function() {
var e = r.value;
e.addEventListener("click", function() { e.classList.toggle("active") })
}, o = e[Symbol.iterator](); !(t = (r = o.next()).done); t = !0) a()
} catch (e) { n = !0, i = e } finally { try { t || null == o.return || o.return() } finally { if (n) throw i } }
})
}, { "../utils/core": 69 }],
57: [function(e, t, n) {
"use strict";
e("../utils/core").querySelector(".interactive-input", function(e) {
var t = !0,
n = !1,
i = void 0;
try {
for (var a, r = function() {
var e = a.value,
n = e.querySelector("input"),
t = e.querySelector(".interactive-input-action");
if (n) {
var i = function e(t) { 27 === t.keyCode && (n.value = "", r(), window.removeEventListener("keydown", e)) },
r = function() { "" !== n.value ? (e.classList.add("active"), window.addEventListener("keydown", i)) : "" === n.value && (e.classList.remove("active"), window.removeEventListener("keydown", i)) };
n.addEventListener("input", r), t && t.addEventListener("click", function() { n.value = "", n.focus(), r() })
}
}, o = e[Symbol.iterator](); !(t = (a = o.next()).done); t = !0) r()
} catch (e) { n = !0, i = e } finally { try { t || null == o.return || o.return() } finally { if (n) throw i } }
})
}, { "../utils/core": 69 }],
58: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins");
i.createAccordion({ triggerSelector: ".accordion-trigger", contentSelector: ".accordion-content", startOpenClass: "accordion-open", selectedClass: "selected", linkTriggers: !1 }), i.createAccordion({ triggerSelector: ".accordion-trigger-linked", contentSelector: ".accordion-content-linked", startOpenClass: "accordion-open", selectedClass: "selected", linkTriggers: !0 })
}, { "../utils/plugins": 72 }],
59: [function(e, t, n) {
"use strict";
function a(e) {
for (var t = [], n = 1; n <= e; n++) {
var i = n < 10 ? "0".concat(n) : n.toString();
t.push(i)
}
return t
}
var o = e("../utils/plugins"),
i = e("../utils/core");
i.querySelector("#engagements-chart", function(e) {
var t = e[0].getContext("2d");
o.createChart(t, { type: "doughnut", data: { datasets: [{ data: [18.3, 5.2, 1.4, 3.9], backgroundColor: ["#615dfa", "#23d2e2", "#4f91ff", "#3ad2fe"], hoverBackgroundColor: ["#615dfa", "#23d2e2", "#4f91ff", "#3ad2fe"], borderWidth: 0 }], labels: ["Reactions", "Comments", "Shares", "Replies"] }, options: { cutoutPercentage: 88, responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", callbacks: { label: function(e, t) { return t.datasets[0].data[e.index] + "K" } } } } })
}), i.querySelector("#ve-monthly-report-ratio-chart", function(e) {
var t = e[0].getContext("2d");
o.createChart(t, { type: "doughnut", data: { datasets: [{ data: [12.5, 87.5], backgroundColor: ["#615dfa", "#23d2e2"], hoverBackgroundColor: ["#615dfa", "#23d2e2"], borderWidth: 0 }], labels: ["Engagements", "Visits"] }, options: { cutoutPercentage: 74, responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", callbacks: { label: function(e, t) { return t.datasets[0].data[e.index] + "%" } } } } })
}), i.querySelector("#profile-completion-chart", function(e) {
var t = e[0].getContext("2d"),
n = t.createLinearGradient(0, 70, 140, 70);
n.addColorStop(0, "#41efff"), n.addColorStop(1, "#615dfa");
var i = { datasets: [{ data: [59, 41], backgroundColor: [n, "#e8e8ef"], hoverBackgroundColor: [n, "#e8e8ef"], borderWidth: 0 }] };
o.createChart(t, { type: "doughnut", data: i, options: { cutoutPercentage: 88, responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { enabled: !1 }, animation: { animateRotate: !1 } } })
}), i.querySelector("#posts-engagement-chart", function(e) {
var t = e[0].getContext("2d"),
n = t.createLinearGradient(0, 40, 80, 40);
n.addColorStop(0, "#41efff"), n.addColorStop(1, "#615dfa");
var i = { datasets: [{ data: [87, 13], backgroundColor: [n, "#e8e8ef"], hoverBackgroundColor: [n, "#e8e8ef"], borderWidth: 0 }] };
o.createChart(t, { type: "doughnut", data: i, options: { cutoutPercentage: 85, responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { enabled: !1 }, animation: { animateRotate: !1 } } })
}), i.querySelector("#posts-shared-chart", function(e) {
var t = e[0].getContext("2d"),
n = t.createLinearGradient(0, 40, 80, 40);
n.addColorStop(0, "#41efff"), n.addColorStop(1, "#615dfa");
var i = { datasets: [{ data: [42, 58], backgroundColor: [n, "#e8e8ef"], hoverBackgroundColor: [n, "#e8e8ef"], borderWidth: 0 }] };
o.createChart(t, { type: "doughnut", data: i, options: { cutoutPercentage: 85, responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { enabled: !1 }, animation: { animateRotate: !1 } } })
}), i.querySelector("#ve-monthly-report-chart", function(e) {
var t = [20, 15, 22, 26, 12, 16, 24, 13, 17, 9, 26, 21, 14, 21, 17, 23, 30, 18, 24, 15, 28, 17, 13, 23, 16, 12, 23, 16, 24, 13, 22],
n = [9, 28, 6, 9, 17, 7, 16, 12, 10, 11, 12, 3, 13, 11, 8, 17, 13, 16, 5, 19, 14, 11, 26, 8, 4, 15, 16, 25, 5, 13, 12],
i = e[0].getContext("2d"),
r = {
labels: a(31),
datasets: [{ label: "Engagements", data: t, maxBarThickness: 16, backgroundColor: "#615dfa" }, { label: "Visits", data: n, maxBarThickness: 16, backgroundColor: "#3ad2fe" }, {
data: function(e, t) {
for (var n = new Array(e[0].length).fill(t), i = 0; i < e.length; i++)
for (var r = 0; r < e[i].length; r++) n[r] -= e[i][r];
return n
}([t, n], 55),
maxBarThickness: 16,
backgroundColor: "#e8e8ef"
}]
};
o.createChart(i, { type: "bar", data: r, options: { responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", displayColors: !1, callbacks: { title: function() {} } }, scales: { xAxes: [{ stacked: !0, gridLines: { display: !1 }, ticks: { fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500 } }], yAxes: [{ stacked: !0, gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1, drawTicks: !1 }, ticks: { padding: 20, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500, max: 55, stepSize: 5 } }] } } })
}), i.querySelector("#rc-yearly-report-chart", function(e) {
var t = e[0].getContext("2d"),
n = { labels: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], datasets: [{ label: "Reactions", data: [119, 142, 110, 122, 163, 139, 143, 110, 141, 121, 139, 190], fill: !1, lineTension: 0, borderWidth: 4, borderColor: "#23d2e2", borderCapStyle: "butt", borderDash: [], borderDashOffset: 0, borderJoinStyle: "bevel", pointBorderColor: "#23d2e2", pointBackgroundColor: "#fff", pointBorderWidth: 4, pointHoverRadius: 5, pointHoverBackgroundColor: "#fff", pointHoverBorderColor: "#23d2e2", pointHoverBorderWidth: 4, pointRadius: 5, pointHitRadius: 10 }, { label: "Comments", data: [98, 65, 132, 78, 112, 82, 100, 80, 100, 58, 48, 139], fill: !1, lineTension: 0, borderWidth: 4, borderColor: "#4f91ff", borderCapStyle: "bevel", borderDash: [], borderDashOffset: 0, borderJoinStyle: "bevel", pointBorderColor: "#4f91ff", pointBackgroundColor: "#fff", pointBorderWidth: 4, pointHoverRadius: 5, pointHoverBackgroundColor: "#fff", pointHoverBorderColor: "#4f91ff", pointHoverBorderWidth: 4, pointRadius: 5, pointHitRadius: 10 }] };
o.createChart(t, { type: "line", data: n, options: { responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", displayColors: !1, callbacks: { title: function() {} } }, scales: { xAxes: [{ gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1, drawTicks: !1 }, ticks: { padding: 14, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500 } }], yAxes: [{ gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1 }, ticks: { padding: 20, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500, min: 20, max: 220, stepSize: 40 } }] } } })
}), i.querySelector("#vs-performance-chart", function(e) {
var t = e[0].getContext("2d"),
n = { labels: ["Aug", "Sep", "Oct", "Nov"], datasets: [{ label: "Views", data: [140, 90, 155, 180], maxBarThickness: 16, backgroundColor: "#615dfa" }, { label: "Sales", data: [120, 25, 130, 110], maxBarThickness: 16, backgroundColor: "#3ad2fe" }] };
o.createChart(t, { type: "bar", data: n, options: { responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", displayColors: !1, callbacks: { title: function() {} } }, scales: { xAxes: [{ gridLines: { display: !1 }, ticks: { fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500 } }], yAxes: [{ gridLines: { display: !1 }, ticks: { display: !1 } }] } } })
}), i.querySelector("#earnings-report-chart", function(e) {
var t = e[0].getContext("2d"),
n = { labels: a(31), datasets: [{ label: "Earnings", data: [0, 15, 0, 0, 0, 20, 10, 15, 40, 20, 25, 25, 15, 10, 20, 23, 23, 15, 30, 40, 30, 20, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0], lineTension: .5, borderWidth: 2, backgroundColor: "rgba(35, 210, 226, .2)", borderColor: "#23d2e2", borderCapStyle: "butt", borderDash: [], borderDashOffset: 0, borderJoinStyle: "bevel", pointBorderColor: "#fff", pointBackgroundColor: "#23d2e2", pointBorderWidth: 2, pointHoverRadius: 4, pointHoverBorderColor: "#fff", pointHoverBackgroundColor: "#23d2e2", pointHoverBorderWidth: 2, pointRadius: 4, pointHitRadius: 5 }] };
o.createChart(t, { type: "line", data: n, options: { responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", displayColors: !1, callbacks: { title: function() {} } }, scales: { xAxes: [{ gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1, drawTicks: !1 }, ticks: { padding: 14, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500 } }], yAxes: [{ gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1 }, ticks: { padding: 20, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500, max: 55, stepSize: 5, callback: function(e, t, n) { return "$" + e } } }] } } })
}), i.querySelector("#members-report-chart", function(e) {
var t = e[0].getContext("2d"),
n = { labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], datasets: [{ label: "Members", data: [8, 4, 8, 5, 10, 13, 11, 11, 13, 17, 5, 12], lineTension: 0, borderWidth: 2, backgroundColor: "rgba(97, 93, 250, .1)", borderColor: "#615dfa", borderCapStyle: "butt", borderDash: [], borderDashOffset: 0, borderJoinStyle: "bevel", pointBorderColor: "#615dfa", pointBackgroundColor: "#fff", pointBorderWidth: 2, pointHoverRadius: 4, pointHoverBorderColor: "#615dfa", pointHoverBackgroundColor: "#fff", pointHoverBorderWidth: 2, pointRadius: 4, pointHitRadius: 5 }] };
o.createChart(t, { type: "line", data: n, options: { responsive: !0, maintainAspectRatio: !1, legend: { display: !1 }, tooltips: { bodyFontFamily: "'Titillium Web', sans-serif", displayColors: !1, callbacks: { title: function() {} } }, scales: { xAxes: [{ gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1, drawTicks: !1 }, ticks: { padding: 14, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500 } }], yAxes: [{ gridLines: { color: "rgba(234, 234, 245, 1)", zeroLineColor: "rgba(234, 234, 245, 1)", drawBorder: !1 }, ticks: { padding: 20, fontFamily: "'Rajdhani', sans-serif", fontColor: "#8f91ac", fontSize: 12, fontStyle: 500, max: 20, stepSize: 2, beginAtZero: !0 } }] } } })
})
}, { "../utils/core": 69, "../utils/plugins": 72 }],
60: [function(e, t, n) {
"use strict";
window.initMap = function() { new google.maps.Map(document.getElementById("g-map"), { center: { lat: 44.934084, lng: -93.252358 }, zoom: 15, disableDefaultUI: !1 }) }
}, {}],
61: [function(e, t, n) {
"use strict";
e("../utils/core").querySelector(".page-loader", function(e) {
var t = e[0];
window.addEventListener("load", function() { t.classList.add("hidden") })
})
}, { "../utils/core": 69 }],
62: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins"),
r = e("../utils/core");
i.createPopup({ container: ".popup-picture", trigger: ".popup-picture-trigger", sticky: !0, overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-album-creation", trigger: ".popup-album-creation-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-event-creation", trigger: ".popup-event-creation-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-event-information", trigger: ".popup-event-information-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-change-profile", trigger: ".popup-change-profile-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-manage-group", trigger: ".popup-manage-group-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-create-discussion", trigger: ".popup-create-discussion-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-manage-item", trigger: ".popup-manage-item-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-call-guta", trigger: ".popup-call-guta-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-call-kirikuu", trigger: ".popup-call-kirikuu-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-call-kenta", trigger: ".popup-call-kenta-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-call-fuso", trigger: ".popup-call-fuso-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-first-headline", trigger: ".popup-first-headline-trigger", sticky: !0, overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }),
i.createPopup({ container: ".popup-review", trigger: ".popup-review-trigger", overlay: { color: "21, 21, 31", opacity: .96 }, animation: { type: "translate-in-fade", speed: .3, translateOffset: 40 } }), r.querySelector(".popup-picture", function(e) {
function t() { i.style.height = "".concat(n.offsetHeight - r.offsetHeight, "px") }
var n = e[0],
i = n.querySelector(".widget-box-scrollable"),
r = n.querySelector(".post-comment-form");
t(), window.addEventListener("resize", t)
})
}, { "../utils/core": 69, "../utils/plugins": 72 }],
63: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins");
i.createTooltip({ container: ".text-tooltip-tfr", offset: 4, direction: "right", animation: { type: "translate-in-fade" } }), i.createTooltip({ container: ".text-tooltip-tft", offset: 4, direction: "top", animation: { type: "translate-out-fade" } }), i.createTooltip({ container: ".text-tooltip-tft-medium", offset: 8, direction: "top", animation: { type: "translate-out-fade" } })
}, { "../utils/plugins": 72 }],
64: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins");
i.createHexagon({ container: ".hexagon-148-164", width: 148, height: 164, roundedCorners: !0, fill: !0 }), i.createHexagon({ container: ".hexagon-progress-124-136", width: 124, height: 136, lineWidth: 8, roundedCorners: !0, gradient: { colors: ["#41efff", "#615dfa"] }, scale: { start: 0, end: 1, stop: .74 } }), i.createHexagon({ container: ".hexagon-border-124-136", width: 124, height: 136, lineWidth: 8, roundedCorners: !0, lineColor: "#e7e8ee" }), i.createHexagon({ container: ".hexagon-image-100-110", width: 100, height: 110, roundedCorners: !0, clip: !0 }), i.createHexagon({ container: ".hexagon-120-132", width: 120, height: 132, roundedCorners: !0, fill: !0 }), i.createHexagon({ container: ".hexagon-progress-100-110", width: 100, height: 110, lineWidth: 6, roundedCorners: !0, gradient: { colors: ["#41efff", "#615dfa"] }, scale: { start: 0, end: 1, stop: .8 } }), i.createHexagon({ container: ".hexagon-border-100-110", width: 100, height: 110, lineWidth: 6, roundedCorners: !0, lineColor: "#e7e8ee" }), i.createHexagon({ container: ".hexagon-image-82-90", width: 82, height: 90, roundedCorners: !0, roundedCornerRadius: 3, clip: !0 }), i.createHexagon({ container: ".hexagon-100-110", width: 100, height: 110, roundedCorners: !0, fill: !0 }), i.createHexagon({ container: ".hexagon-progress-84-92", width: 84, height: 92, lineWidth: 5, roundedCorners: !0, roundedCornerRadius: 3, gradient: { colors: ["#41efff", "#615dfa"] }, scale: { start: 0, end: 1, stop: .8 } }), i.createHexagon({ container: ".hexagon-border-84-92", width: 84, height: 92, lineWidth: 5, roundedCorners: !0, roundedCornerRadius: 3, lineColor: "#e7e8ee" }), i.createHexagon({ container: ".hexagon-image-68-74", width: 68, height: 74, roundedCorners: !0, roundedCornerRadius: 3, clip: !0 }), i.createHexagon({ container: ".hexagon-50-56", width: 50, height: 56, roundedCorners: !0, roundedCornerRadius: 2, fill: !0 }), i.createHexagon({ container: ".hexagon-progress-40-44", width: 40, height: 44, lineWidth: 3, roundedCorners: !0, roundedCornerRadius: 1, gradient: { colors: ["#41efff", "#615dfa"] }, scale: { start: 0, end: 1, stop: .8 } }), i.createHexagon({ container: ".hexagon-border-40-44", width: 40, height: 44, lineWidth: 3, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#e7e8ee" }), i.createHexagon({ container: ".hexagon-image-30-32", width: 30, height: 32, roundedCorners: !0, roundedCornerRadius: 1, clip: !0 }), i.createHexagon({ container: ".hexagon-40-44", width: 40, height: 44, roundedCorners: !0, roundedCornerRadius: 1, fill: !0 }), i.createHexagon({ container: ".hexagon-dark-32-34", width: 32, height: 34, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#45437f", fill: !0 }), i.createHexagon({ container: ".hexagon-32-36", width: 32, height: 36, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#fff", fill: !0 }), i.createHexagon({ container: ".hexagon-dark-26-28", width: 26, height: 28, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#45437f", fill: !0 }), i.createHexagon({ container: ".hexagon-28-32", width: 28, height: 32, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#fff", fill: !0 }), i.createHexagon({ container: ".hexagon-dark-22-24", width: 22, height: 24, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#45437f", fill: !0 }), i.createHexagon({ container: ".hexagon-22-24", width: 22, height: 24, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#fff", fill: !0 }), i.createHexagon({ container: ".hexagon-dark-16-18", width: 16, height: 18, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "#45437f", fill: !0 }), i.createHexagon({ container: ".hexagon-120-130", width: 120, height: 130, roundedCorners: !0, fill: !0 }), i.createHexagon({ container: ".hexagon-100-108", width: 100, height: 108, roundedCorners: !0, fill: !0 }), i.createHexagon({ container: ".hexagon-image-124-136", width: 124, height: 136, roundedCorners: !0, clip: !0 }), i.createHexagon({ container: ".hexagon-image-84-92", width: 84, height: 92, roundedCorners: !0, clip: !0 }), i.createHexagon({ container: ".hexagon-34-36", width: 34, height: 36, roundedCorners: !0, roundedCornerRadius: 1, fill: !0 }), i.createHexagon({ container: ".hexagon-image-40-44", width: 40, height: 44, roundedCorners: !0, roundedCornerRadius: 1, clip: !0 }), i.createHexagon({ container: ".hexagon-image-24-26", width: 24, height: 26, roundedCorners: !0, roundedCornerRadius: 1, clip: !0 }), i.createHexagon({ container: ".hexagon-image-18-20", width: 18, height: 20, roundedCorners: !0, roundedCornerRadius: 1, clip: !0 }), i.createHexagon({ container: ".hexagon-overlay-30-32", width: 30, height: 32, roundedCorners: !0, roundedCornerRadius: 1, lineColor: "rgba(97, 93, 250, .9)", fill: !0 })
}, { "../utils/plugins": 72 }],
65: [function(e, t, n) {
"use strict";
var o = e("../utils/plugins");
e("../utils/core").querySelector("#search-main", function(e) {
function t(e) { 27 === e.keyCode && (n.hideDropdowns(), r = "", window.removeEventListener("keydown", t)) }
var n = o.createDropdown({ container: ".header-search-dropdown", offset: { top: 57, left: 0 }, animation: { type: "translate-top" }, controlToggle: !0, closeOnWindowClick: !1 }),
i = e[0],
r = "",
a = i.parentElement.querySelector(".interactive-input-action");
960 < window.innerWidth && (i.addEventListener("input", function(e) { "" === r && "" !== e.target.value ? (n.showDropdowns(), window.addEventListener("keydown", t)) : "" === e.target.value && (n.hideDropdowns(), window.removeEventListener("keydown", t)), r = e.target.value }), a.addEventListener("click", function() { n.hideDropdowns(), window.removeEventListener("keydown", t), r = "" }))
}), o.createDropdown({ trigger: ".header-dropdown-trigger", container: ".header-dropdown", offset: { top: 64, right: 6 }, animation: { type: "translate-top" } }), o.createDropdown({ trigger: ".header-settings-dropdown-trigger", container: ".header-settings-dropdown", offset: { top: 64, right: 22 }, animation: { type: "translate-top" } })
}, { "../utils/core": 69, "../utils/plugins": 72 }],
66: [function(e, t, n) {
"use strict";
var i = e("../utils/plugins");
i.createProgressBar({ container: "#logged-user-level", height: 4, lineColor: "#4a46c8" }), i.createProgressBar({ container: "#logged-user-level", height: 4, lineColor: "#41efff", scale: { start: 0, end: 100, stop: 62 }, linkText: !0, linkUnits: "exp", invertedProgress: !0 }), i.createProgressBar({ container: "#logged-user-level-cp", height: 4, lineColor: "#4a46c8" }), i.createProgressBar({ container: "#logged-user-level-cp", height: 4, lineColor: "#41efff", scale: { start: 0, end: 100, stop: 62 }, linkText: !0, linkUnits: "exp", invertedProgress: !0 })
}, { "../utils/plugins": 72 }],
67: [function(e, t, n) {
"use strict";
e("../utils/plugins").createTab({ triggers: ".login-register-form-trigger", elements: ".login-register-form-element", animation: { type: "slide-in-right" }, onTabChange: function(e) { e.querySelector("input").focus() } })
}, { "../utils/plugins": 72 }],
68: [function(e, t, n) {
"use strict";
var r = e("../utils/core");
r.querySelector(".content-grid", function(o) {
function s(e) {
if (1366 < window.innerWidth) {
var t = c.chat.active ? c.chat.maxWidth : c.chat.minWidth,
n = c.navigation.active ? c.navigation.maxWidth : c.navigation.minWidth,
i = (document.body.clientWidth - e.offsetWidth - t - n) / 2 + n;
e.style.transform = "translate(".concat(i, "px, 0)")
} else e.style.transform = "translate(0, 0)"
}
function l() {
var e = !0,
t = !1,
n = void 0;
try {
for (var i, r = o[Symbol.iterator](); !(e = (i = r.next()).done); e = !0) {
var a = i.value;
s(a)
}
} catch (e) { t = !0, n = e } finally { try { e || null == r.return || r.return() } finally { if (t) throw n } }
}
var c = { chat: { active: !1, minWidth: 80, maxWidth: 300 }, navigation: { active: !1, minWidth: 80, maxWidth: 300 } };
l(), window.addEventListener("resize", l), window.setTimeout(function() {
var e = !0,
t = !1,
n = void 0;
try {
for (var i, r = o[Symbol.iterator](); !(e = (i = r.next()).done); e = !0) {
var a = i.value;
a.style.transition = "transform .4s ease-in-out"
}
} catch (e) { t = !0, n = e } finally { try { e || null == r.return || r.return() } finally { if (t) throw n } }
}, 300), r.querySelector("#chat-widget-messages", function(e) {
function t() { n.classList.contains(i) ? p.style.height = "".concat(window.innerHeight - m.offsetHeight - 80, "px") : p.style.height = "".concat(window.innerHeight - v.offsetHeight - m.offsetHeight - 80, "px") }
function g() { n.classList.remove(i), t(), c.chat.active = !0, l() }
var n = e[0],
p = n.querySelector(".chat-widget-messages"),
v = n.querySelector(".chat-widget-form"),
m = n.querySelector(".chat-widget-button"),
i = "closed";
m.addEventListener("click", function() { n.classList.toggle(i), t(), c.chat.active = !n.classList.contains(i), l() }), t(), window.addEventListener("resize", t), r.querySelector("#chat-widget-message", function(e) {
function t() { o.style.height = "".concat(window.innerHeight - a.offsetHeight - v.offsetHeight - m.offsetHeight - 80, "px") }
function n() { i.classList.toggle("hidden") }
var i = e[0],
r = p.querySelectorAll(".chat-widget-message"),
a = i.querySelector(".chat-widget-header"),
o = i.querySelector(".chat-widget-conversation"),
s = i.querySelector(".chat-widget-close-button"),
l = !0,
c = !1,
d = void 0;
try {
for (var u, h = r[Symbol.iterator](); !(l = (u = h.next()).done); l = !0) {
var f = u.value;
f.addEventListener("click", n), f.addEventListener("click", g)
}
} catch (e) { c = !0, d = e } finally { try { l || null == h.return || h.return() } finally { if (c) throw d } }
m.addEventListener("click", function() { i.classList.add("hidden") }), s.addEventListener("click", n), t(), window.addEventListener("resize", t)
})
}), r.querySelector(".navigation-widget-trigger", function(e) {
function t() { i.style.height = "".concat(window.innerHeight - 80, "px") }
var n = e[0],
i = document.querySelector("#navigation-widget"),
r = document.querySelector("#navigation-widget-small"),
a = "hidden";
n.addEventListener("click", function() { n.classList.toggle("active"), i.classList.toggle("delayed"), i.classList.toggle(a), r.classList.toggle("delayed"), r.classList.toggle(a), c.navigation.active = !i.classList.contains(a), l() }), t(), window.addEventListener("resize", t)
}), r.querySelector(".navigation-widget-mobile-trigger", function(e) {
var t = e[0],
n = document.querySelector("#navigation-widget-mobile"),
i = n.querySelector(".navigation-widget-close-button"),
r = document.createElement("div");
r.style.width = "100%", r.style.height = "100%", r.style.position = "fixed", r.style.top = "0", r.style.left = "0", r.style.zIndex = 99998, r.style.backgroundColor = "rgba(21, 21, 31, .96)", r.style.opacity = 0, r.style.visibility = "hidden", r.style.transition = "opacity .3s ease-in-out, visibility .3s ease-in-out", document.body.appendChild(r);
function a() { r.style.opacity = 1, r.style.visibility = "visible" }
function o() { r.style.opacity = 0, r.style.visibility = "hidden" }
function s() { n.style.height = "".concat(window.innerHeight, "px") }
function l() { n.classList.toggle("hidden"), (n.classList.contains("hidden") ? o : a)() }
t.addEventListener("click", l), i.addEventListener("click", l), r.addEventListener("click", l), s(), window.addEventListener("resize", s)
})
})
}, { "../utils/core": 69 }],
69: [function(e, t, n) {
"use strict";
function i(e) { return (i = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(e) { return typeof e } : function(e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e })(e) }
var r = {
deepExtend: function(e, t) { for (var n in t) "object" === i(t[n]) ? (e[n] = t[n] instanceof Array ? [] : {}, this.deepExtend(e[n], t[n])) : e[n] = t[n] },
query: function(e) {
var i = { method: "GET", async: !0, header: { type: "Content-type", value: "application/json" }, data: "" };
return this.deepExtend(i, e), new Promise(function(e, t) {
var n = new XMLHttpRequest;
n.onreadystatechange = function() { 4 === n.readyState && (200 === n.status ? e(n.responseText) : t({ status: n.status, statusText: n.statusText })) }, n.open(i.method, i.url, i.async), n.setRequestHeader(i.header.type, i.header.value), "GET" === i.method ? n.send() : "POST" === i.method && n.send(i.data)
})
},
querySelector: function(e, t) {
var n = document.querySelectorAll(e);
n.length && t(n)
},
liquidify: function(e) {
var t = e.querySelector("img"),
n = t.getAttribute("src");
t.style.display = "none", e.style.background = 'url("'.concat(n, '") no-repeat center'), e.style.backgroundSize = "cover"
},
liquidifyStatic: function(e, t) { t.style.display = "none", e.style.background = 'url("'.concat(t.getAttribute("src"), '") no-repeat center'), e.style.backgroundSize = "cover" },
dateDiff: function(e, t) {
var n = 1 < arguments.length && void 0 !== t ? t : new Date,
i = Math.abs(e.getTime() - n.getTime()),
r = Math.ceil(i / 1e3),
a = Math.floor(i / 6e4),
o = Math.floor(i / 36e5),
s = Math.floor(i / 864e5),
l = Math.floor(i / 6048e5),
c = Math.floor(i / 24192e5),
d = Math.floor(i / 290304e5);
return r < 60 ? { unit: 1 === r ? "second" : "seconds", value: r } : a < 60 ? { unit: 1 === a ? "minute" : "minutes", value: a } : o < 24 ? { unit: 1 === o ? "hour" : "hours", value: o } : s < 7 ? { unit: 1 === s ? "day" : "days", value: s } : l < 4 ? { unit: 1 === l ? "week" : "weeks", value: l } : c < 12 ? { unit: 1 === c ? "month" : "months", value: c } : { unit: 1 === d ? "year" : "years", value: d }
}
};
t.exports = r
}, {}],
70: [function(e, t, n) {
"use strict";
e("./core").querySelector(".icon-demo-list", function(e) {
function t(e) {
var t = document.createElement("div"),
n = document.createElement("div"),
i = function(e) {
var t = document.createElementNS("http://www.w3.org/2000/svg", "svg"),
n = document.createElementNS("http://www.w3.org/2000/svg", "use");
return t.classList.add("icon-".concat(e)), n.setAttributeNS("http://www.w3.org/1999/xlink", "xlink:href", "#svg-".concat(e)), t.appendChild(n), t
}(e.className),
r = document.createElement("p"),
a = document.createElement("p"),
o = document.createElement("p"),
s = document.createElement("span"),
l = document.createElement("span");
return t.classList.add("demo-box"), n.classList.add("demo-box-icon-wrap"), i.classList.add("demo-box-icon"), r.classList.add("demo-box-title"), a.classList.add("demo-box-text"), o.classList.add("button", "full"), s.classList.add("inactive-text"), l.classList.add("active-text"), r.innerHTML = e.name, a.innerHTML = ".icon-".concat(e.className), s.innerHTML = "Copy SVG", l.innerHTML = "Copied!", n.appendChild(i), t.appendChild(n), t.appendChild(r), t.appendChild(a), o.appendChild(s), o.appendChild(l), { container: t, trigger: o }
}
var n = [{ name: "Facebook", className: "facebook" }, { name: "Twitter", className: "twitter" }, { name: "Twitch", className: "twitch" }, { name: "Youtube", className: "youtube" }, { name: "Instagram", className: "instagram" }, { name: "Discord", className: "discord" }, { name: "Patreon", className: "patreon" }, { name: "Google", className: "google" }, { name: "Behance", className: "behance" }, { name: "DeviantArt", className: "deviantart" }, { name: "Artstation", className: "artstation" }, { name: "Cross", className: "cross" }, { name: "Logo Vikinger", className: "logo-vikinger" }, { name: "Grid", className: "grid" }, { name: "Dots", className: "dots" }, { name: "Magnifying Glass", className: "magnifying-glass" }, { name: "Comment", className: "comment" }, { name: "Thumbs Up", className: "thumbs-up" }, { name: "Friend", className: "friend" }, { name: "Group", className: "group" }, { name: "Marketplace", className: "marketplace" }, { name: "Add Friend", className: "add-friend" }, { name: "Remove Friend", className: "remove-friend" }, { name: "Delete", className: "delete" }, { name: "Messages", className: "messages" }, { name: "Send Message", className: "send-message" }, { name: "Back Arrow", className: "back-arrow" }, { name: "Shopping Bag", className: "shopping-bag" }, { name: "Notification", className: "notification" }, { name: "Settings", className: "settings" }, { name: "Cross Thin", className: "cross-thin" }, { name: "Newsfeed", className: "newsfeed" }, { name: "Overview", className: "overview" }, { name: "Members", className: "members" }, { name: "Badges", className: "badges" }, { name: "Quests", className: "quests" }, { name: "Streams", className: "streams" }, { name: "Events", className: "events" }, { name: "Forums", className: "forums" }, { name: "Small Arrow", className: "small-arrow" }, { name: "Big Arrow", className: "big-arrow" }, { name: "Public", className: "public" }, { name: "Private", className: "private" }, { name: "Join Group", className: "join-group" }, { name: "Leave Group", className: "leave-group" }, { name: "More Dots", className: "more-dots" }, { name: "Profile", className: "profile" }, { name: "Timeline", className: "timeline" }, { name: "Photos", className: "photos" }, { name: "Videos", className: "videos" }, { name: "Blog Posts", className: "blog-posts" }, { name: "Forum", className: "forum" }, { name: "Store", className: "store" }, { name: "Star", className: "star" }, { name: "Play", className: "play" }, { name: "Share", className: "share" }, { name: "Pinned", className: "pinned" }, { name: "Status", className: "status" }, { name: "Big Grid View", className: "big-grid-view" }, { name: "Small Grid View", className: "small-grid-view" }, { name: "List Grid View", className: "list-grid-view" }, { name: "Plus", className: "plus" }, { name: "Plus Small", className: "plus-small" }, { name: "Minus Small", className: "minus-small" }, { name: "Poll", className: "poll" }, { name: "Camera", className: "camera" }, { name: "Gif", className: "gif" }, { name: "Tags", className: "tags" }, { name: "Quote", className: "quote" }, { name: "Pin", className: "pin" }, { name: "Ticket", className: "ticket" }, { name: "Events Monthly", className: "events-monthly" }, { name: "Events Weekly", className: "events-weekly" }, { name: "Events Daily", className: "events-daily" }, { name: "Info", className: "info" }, { name: "Check", className: "check" }, { name: "Trophy", className: "trophy" }, { name: "Clock", className: "clock" }, { name: "Return", className: "return" }, { name: "Dribbble", className: "dribbble" }, { name: "Item", className: "item" }, { name: "Wallet", className: "wallet" }, { name: "Earnings", className: "earnings" }, { name: "Revenue", className: "revenue" }, { name: "Login", className: "login" }],
i = !0,
r = !1,
a = void 0;
try {
for (var o, s = e[Symbol.iterator](); !(i = (o = s.next()).done); i = !0) {
var l = o.value,
c = n.sort(function(e, t) { return e.name < t.name ? -1 : e.name > t.name ? 1 : 0 }),
d = !0,
u = !1,
h = void 0;
try {
for (var f, g = c[Symbol.iterator](); !(d = (f = g.next()).done); d = !0) {
var p = t(f.value);
l.appendChild(p.container)
}
} catch (e) { u = !0, h = e } finally { try { d || null == g.return || g.return() } finally { if (u) throw h } }
}
} catch (e) { r = !0, a = e } finally { try { i || null == s.return || s.return() } finally { if (r) throw a } }
})
}, { "./core": 69 }],
71: [function(e, t, n) {
"use strict";
var s = e("../utils/core");
s.querySelector(".liquid", function(e) {
var t = !0,
n = !1,
i = void 0;
try {
for (var r, a = e[Symbol.iterator](); !(t = (r = a.next()).done); t = !0) {
var o = r.value;
s.liquidify(o)
}
} catch (e) { n = !0, i = e } finally { try { t || null == a.return || a.return() } finally { if (n) throw i } }
})
}, { "../utils/core": 69 }],
72: [function(e, t, n) {
"use strict";
function i(e) { return document.querySelectorAll(e).length }
var r = e("tiny-slider/src/tiny-slider"),
a = e("chart.js"),
o = { createTab: function(e) { if (i(e.triggers) && i(e.elements)) return new XM_Tab(e) }, createHexagon: function(e) { if (i(e.container)) return new XM_Hexagon(e) }, createProgressBar: function(e) { if (i(e.container)) return new XM_ProgressBar(e) }, createDropdown: function(e) { if (i(e.container) && e.controlToggle || i(e.trigger) && i(e.container)) return new XM_Dropdown(e) }, createTooltip: function(e) { if (i(e.container)) return new XM_Tooltip(e) }, createSlider: function(e) { if (i(e.container)) return (0, r.tns)(e) }, createPopup: function(e) { if (i(e.container) && i(e.trigger)) return new XM_Popup(e) }, createAccordion: function(e) { if (i(e.triggerSelector) && i(e.contentSelector)) return new XM_Accordion(e) }, createChart: function(e, t) { return new a(e, t) } };
t.exports = o
}, { "chart.js": 1, "tiny-slider/src/tiny-slider": 47 }],
73: [function(e, t, n) {
"use strict";
var i = document.createElement("div");
i.innerHTML = '\n \x3c!-- SVG FACEBOOK --\x3e\n <svg style="display: none;">\n <symbol id="svg-facebook" viewBox="0 0 18 18" preserveAspectRatio="xMinYMin meet">\n <path d="M16.313,18h-4.504v-6.192h3.087V8.671h-3.087V7.135V6.831V6.814l0,0c0.01-0.328,0.277-0.591,0.607-0.591h0.067h1.113h1.62V3.086h-2.733l0,0l-0.009,0.018h-0.092c-2.051,0-3.712,1.661-3.712,3.711v0.911v0.945H6.191v3.137h2.479V18H1.687C0.755,18,0,17.242,0,16.313V1.686C0,0.754,0.755,0,1.687,0h14.626C17.244,0,18,0.754,18,1.686v14.627C18,17.242,17.244,18,16.313,18z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG FACEBOOK --\x3e\n\n \x3c!-- SVG TWITTER --\x3e\n <svg style="display: none;">\n <symbol id="svg-twitter" viewBox="0 0 18 18" preserveAspectRatio="xMinYMin meet">\n <path d="M18,3.617c-0.675,0.322-1.351,0.43-2.139,0.537c0.788-0.43,1.351-1.076,1.576-1.937c-0.675,0.43-1.463,0.646-2.362,0.861C14.399,2.431,13.388,2,12.375,2c-1.912,0-3.601,1.617-3.601,3.554c0,0.323,0,0.538,0.113,0.754C5.851,6.2,3.038,4.8,1.238,2.646C0.9,3.185,0.788,3.724,0.788,4.478c0,1.184,0.675,2.261,1.688,2.907c-0.563,0-1.125-0.216-1.688-0.431l0,0c0,1.723,1.237,3.122,2.925,3.446c-0.338,0.107-0.675,0.107-1.013,0.107c-0.225,0-0.45,0-0.675-0.107c0.45,1.399,1.8,2.476,3.487,2.476C4.274,13.846,2.7,14.384,0.9,14.384c-0.338,0-0.563,0-0.9,0C1.688,15.354,3.601,16,5.625,16c6.75,0,10.462-5.385,10.462-10.015c0-0.108,0-0.323,0-0.431C16.875,5.016,17.549,4.371,18,3.617z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG TWITTER --\x3e\n\n \x3c!-- SVG TWITCH --\x3e\n <svg style="display: none;">\n <symbol id="svg-twitch" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M6.179,0L0,17.964V87.81h24.714V100h15.789L52.86,87.81h18.993L100,60.527V0H6.179z M90.39,57.645L74.828,72.504H49.885L37.299,84.703V72.504H15.561V9.094H90.39V57.645z M49.885,27.051h-9.382v27.27h9.382V27.051z M74.828,27.051h-9.382v27.27h9.382V27.051z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG TWITCH --\x3e\n\n \x3c!-- SVG YOUTUBE --\x3e\n <svg style="display: none;">\n <symbol id="svg-youtube" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M97.911,24.557c-1.149-4.549-4.538-8.13-8.842-9.347C81.271,13,49.999,13,49.999,13s-31.271,0-39.07,2.21c-4.302,1.216-7.69,4.798-8.84,9.347C0,32.8,0,50.001,0,50.001s0,17.2,2.089,25.443c1.15,4.549,4.538,8.132,8.84,9.348C18.729,87,49.999,87,49.999,87s31.271,0,39.07-2.208c4.304-1.216,7.692-4.799,8.842-9.348C100,67.201,100,50.001,100,50.001S100,32.8,97.911,24.557z M39.999,65.858V34.144L65.98,50.001L39.999,65.858z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG YOUTUBE --\x3e\n\n \x3c!-- SVG INSTAGRAM --\x3e\n <svg style="display: none;">\n <symbol id="svg-instagram" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M72.402,0H27.595C12.379,0,0,12.381,0,27.597v44.809C0,87.619,12.379,100,27.595,100h44.807C87.621,100,100,87.619,100,72.406V27.597C100,12.381,87.621,0,72.402,0z M88.691,71.078c0,9.711-7.902,17.613-17.615,17.613H28.923c-9.712,0-17.613-7.902-17.613-17.613V28.926c0-9.715,7.901-17.618,17.613-17.618h42.153c9.713,0,17.615,7.903,17.615,17.618V71.078z M50.001,26.779c-12.804,0-23.22,10.426-23.22,23.22c0,12.804,10.416,23.22,23.22,23.22c12.801,0,23.217-10.416,23.217-23.22C73.219,37.205,62.803,26.779,50.001,26.779z M50.001,63.689c-7.548,0-13.688-6.139-13.688-13.691c0-7.545,6.14-13.684,13.688-13.684c7.545,0,13.686,6.139,13.686,13.684C63.688,57.551,57.547,63.689,50.001,63.689z M75.658,17.864c-1.711,0-4.383,0.724-5.711,2.056c-1.332,1.328-2.098,3.178-2.098,5.065c0,1.882,0.766,3.727,2.098,5.063c1.326,1.325,3.172,2.098,5.051,2.098c1.885,0,3.723-0.772,5.055-2.098c1.332-1.336,2.094-3.184,2.094-5.063c0-1.888-0.762-3.737-2.094-5.065C78.729,18.587,77.373,17.864,75.658,17.864z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG INSTAGRAM --\x3e\n\n \x3c!-- SVG DISCORD --\x3e\n <svg style="display: none;">\n <symbol id="svg-discord" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M87.671,23.75C75.993,15.223,64.855,15,63.707,15c-0.061,0-0.093,0-0.093,0l-1.2,1.332c14.556,4.332,21.32,10.582,21.32,10.582c-8.906-4.749-17.639-7.083-25.771-8c-2.7-0.291-5.353-0.422-7.926-0.422c-3.287,0-6.437,0.216-9.371,0.591c-0.512,0-0.941,0.084-1.456,0.165c-2.994,0.252-10.273,1.334-19.434,5.249c-3.167,1.417-5.052,2.417-5.052,2.417s7.107-6.583,22.518-10.915L36.387,15c0,0-0.032,0-0.098,0c-1.144,0-12.283,0.223-23.96,8.75C12.329,23.75,0,45.498,0,72.333c0,0,7.19,12.081,26.114,12.667c0,0,3.166-3.752,5.734-6.919c-10.873-3.168-14.981-9.831-14.981-9.831s0.854,0.582,2.397,1.414l0.343,0.25l0.769,0.419c2.14,1.163,4.282,2.084,6.251,2.833c3.511,1.334,7.706,2.663,12.584,3.585c3.51,0.633,7.349,1.047,11.451,1.047c3.408,0,6.999-0.284,10.728-0.964c4.021-0.67,8.129-1.836,12.415-3.585c2.991-1.083,6.333-2.665,9.845-4.916c0,0-4.287,6.831-15.5,9.915C70.717,81.414,73.805,85,73.805,85C92.722,84.414,100,72.333,100,72.333C100,45.498,87.671,23.75,87.671,23.75z M34.869,66.745c-5.046,0-9.136-4.056-9.136-9.059c0-5.002,4.09-9.059,9.136-9.059c5.045,0,9.137,4.057,9.137,9.059C44.006,62.689,39.914,66.745,34.869,66.745z M67.758,66.745c-5.045,0-9.135-4.056-9.135-9.059c0-5.002,4.09-9.059,9.135-9.059c5.046,0,9.137,4.057,9.137,9.059C76.895,62.689,72.804,66.745,67.758,66.745z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG DISCORD --\x3e\n\n \x3c!-- SVG PATREON --\x3e\n <svg style="display: none;">\n <symbol id="svg-patreon" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M0,100h16.667V0H0V100z M62.5,0C41.79,0,25,16.788,25,37.5c0,20.71,16.789,37.503,37.5,37.503c20.711,0,37.5-16.793,37.5-37.503C100,16.788,83.211,0,62.5,0z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PATREON --\x3e\n\n \x3c!-- SVG GOOGLE --\x3e\n <svg style="display: none;">\n <symbol id="svg-google" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M100,47.82H89.963v9.785H79.927V47.82H69.89v-9.784h10.037v-9.784h10.036v9.784H100V47.82z M32.358,83C14.487,83,0,68.226,0,50c0-18.226,14.487-33,32.358-33c8.594,0,16.384,3.437,22.173,9.013l-0.6,0.612L45,35.734c-3.349-3.087-7.773-4.984-12.642-4.984c-10.426,0-18.877,8.619-18.877,19.25c0,10.632,8.451,19.25,18.877,19.25c8.046,0,14.898-5.143,17.614-12.375l-15.21,0.729V42.927l28.606,0.199v1.375v12.375v2.516C59.4,73.038,47.028,83,32.358,83z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG GOOGLE --\x3e\n\n \x3c!-- SVG BEHANCE --\x3e\n <svg style="display: none;">\n <symbol id="svg-behance" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M99.827,61.223H68.064c0,3.648,0.755,10.949,10.776,10.949s9.643-6.916,9.643-6.916H99.26c0,18.249-20.986,16.713-20.986,16.713c-24.012,0-23.822-20.746-23.822-20.746\n c0-5.668-0.095-27.087,24.39-27.087S99.827,61.223,99.827,61.223z M78.273,43.356c-9.714,0-10.209,9.221-10.209,9.221h19.852C87.916,52.577,87.987,43.356,78.273,43.356z M64.661,21.458h26.091v8.067H64.661V21.458z M35.166,80.799v0.016H0V18h34.032c0,0,0.024,0,0.062,0h1.072v0.054c3.628,0.299,14.748,2.292,14.748,15.506c0,0,1.144,10.259-7.661,12.951\n c4.671,0.871,9.93,4.394,9.93,15.863C52.183,62.373,53.762,80.43,35.166,80.799z M33.465,29.525H14.748V42.78h18.15c0,0,3.97-1.057,3.97-6.915C36.868,30.006,33.465,29.525,33.465,29.525z M34.032,53.154H14.748V69.29h18.717c0,0,5.672-1.249,5.672-8.067C39.137,54.402,34.032,53.154,34.032,53.154z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG BEHANCE --\x3e\n\n \x3c!-- SVG DEVIANTART --\x3e\n <svg style="display: none;">\n <symbol id="svg-deviantart" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M83,80.77H48.107L37.204,100H17V82.052l21.362-37.18H17V20.513h35.356L64.143,0H83v19.231L61.918,56.41H83V80.77z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG DEVIANTART --\x3e\n\n \x3c!-- SVG ARTSTATION --\x3e\n <svg style="display: none;">\n <symbol id="svg-artstation" viewBox="0 0 100 100" preserveAspectRatio="xMinYMin meet">\n <path d="M0,77.114l8.412,16.545c1.7,3.754,5.102,6.341,8.981,6.341h56.038l-11.62-22.886H0z M98.391,71.002L65.502,6.122C63.797,2.47,60.491,0,56.617,0H39.224l50.755,99.889l8.035-15.79c1.515-3.001,1.986-4.29,1.986-6.877C100,74.967,99.432,72.819,98.391,71.002z M31,16.217L8.315,60.799h45.276L31,16.217z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG ARTSTATION --\x3e\n\n \x3c!-- SVG CROSS --\x3e\n <svg style="display: none;">\n <symbol id="svg-cross" viewBox="0 0 12 12" preserveAspectRatio="xMinYMin meet">\n <path d="M12,9.6L9.6,12L6,8.399L2.4,12L0,9.6L3.6,6L0,2.4L2.4,0L6,3.6L9.6,0L12,2.4L8.399,6L12,9.6z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG CROSS --\x3e\n\n \x3c!-- SVG LOGO VIKINGER --\x3e\n <svg style="display: none;">\n <symbol id="svg-logo-vikinger" viewBox="0 0 28 40" preserveAspectRatio="xMinYMin meet">\n <path d="M27.18,24.038c-0.141-0.095-0.244-0.146-0.244-0.146l-0.005-0.049C25.489,22.783,23.103,22,23.103,22c1.542,0,2.582-0.563,3.501-1.334c-0.049-0.055,0.7-0.666,0.7-0.666c0.146-8.251-4.477-12.745-7.001-14.667C18.15,9.564,16.802,14,16.802,14c-0.219-4.426,0.243-8.072,0.7-10.667c-0.85-0.452-1.956-0.698-2.296-1.537C14.865,0.957,14.015,0,14.015,0L14,0.014L13.985,0c0,0-0.85,0.957-1.19,1.796c-0.34,0.839-1.445,1.085-2.295,1.537C10.957,5.928,11.418,9.574,11.2,14c0,0-1.349-4.436-3.501-8.667C5.174,7.255,0.551,11.749,0.697,20c0,0,0.75,0.611,0.701,0.666C2.316,21.437,3.357,22,4.898,22c0,0-2.387,0.783-3.829,1.844l-0.005,0.049c0,0-0.104,0.051-0.244,0.146c-0.48,0.397-0.806,0.828-0.819,1.269c-0.023,0.521,0.263,1.181,1.233,1.973c0,0,0.136,9.259,9.69,11.29c0,0,0.212,0.815,0.975,1.431L14,38l2.102,2c0.763-0.615,0.975-1.431,0.975-1.431c9.555-2.031,9.689-11.29,9.689-11.29\n c0.971-0.792,1.256-1.451,1.233-1.973C27.986,24.866,27.659,24.436,27.18,24.038z M4.198,26c2.362,0.121,3.517,1.473,5.602,4c0.799,0.969,2.059,0.83,2.059,0.83L11.899,34C5.249,34,4.198,26,4.198,26z M14,28.162l-2.97-2.828l2.101-2.001l-2.101-2l2.101-2l-2.101-2L14,14.505l2.972,2.828l-2.102,2l2.102,2l-2.102,2l2.102,2.001L14,28.162z M16.102,34l0.041-3.17\n c0,0,1.26,0.139,2.059-0.83c2.085-2.527,3.239-3.879,5.602-4C23.803,26,22.752,34,16.102,34z M13.3,26h1.4v-1.333h-1.4V26z M13.3,22h1.4v-1.334h-1.4V22z M13.3,18h1.4v-1.333h-1.4V18z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG LOGO VIKINGER --\x3e\n\n \x3c!-- SVG GRID --\x3e\n <svg style="display: none;">\n <symbol id="svg-grid" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M7,0H2C0.896,0,0,0.895,0,2v5c0,1.104,0.896,2,2,2h5c1.104,0,2-0.896,2-2V2C9,0.895,8.104,0,7,0z M7,7H2V2h5V7z M7,11H2c-1.104,0-2,0.896-2,1.999v5C0,19.104,0.896,20,2,20h5c1.104,0,2-0.896,2-2.001v-5C9,11.896,8.104,11,7,11z M7,17.999H2v-5h5V17.999z M18,0h-5c-1.104,0-2,0.895-2,2v5c0,1.104,0.896,2,2,2h5c1.104,0,2-0.896,2-2V2C20,0.895,19.104,0,18,0z M18,7h-5V2h5V7z M18,11h-5c-1.104,0-2,0.896-2,1.999v5C11,19.104,11.896,20,13,20h5c1.104,0,2-0.896,2-2.001v-5C20,11.896,19.104,11,18,11z M18,17.999h-5v-5h5V17.999z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG GRID --\x3e\n\n \x3c!-- SVG DOTS --\x3e\n <svg style="display: none;">\n <symbol id="svg-dots" viewBox="0 0 10 2" preserveAspectRatio="xMinYMin meet">\n <path d="M0,2h2V0H0V2z M4,2h2V0H4V2z M8,0v2h2V0H8z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG DOTS --\x3e\n\n \x3c!-- SVG MAGNIFYING GLASS --\x3e\n <svg style="display: none;">\n <symbol id="svg-magnifying-glass" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M8,2c3.309,0,6,2.691,6,6s-2.691,6-6,6s-6-2.691-6-6S4.691,2,8,2 M8,0C3.582,0,0,3.582,0,8c0,4.418,3.582,8,8,8c4.418,0,8-3.582,8-8C16,3.582,12.418,0,8,0L8,0z"/>\n <path d="M19.171,15.168l-3.134-3.134c-0.309,0.613-0.679,1.19-1.113,1.714l2.833,2.834c0.323,0.324,0.323,0.851,0,1.175C17.545,17.969,17.298,18,17.17,18c-0.129,0-0.376-0.031-0.588-0.243l-2.834-2.833c-0.523,0.435-1.101,0.805-1.714,1.113l3.134,3.134C15.721,19.724,16.445,20,17.169,20c0.725,0,1.449-0.276,2.002-0.829C20.276,18.065,20.276,16.273,19.171,15.168z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG MAGNIFYING GLASS --\x3e\n\n \x3c!-- SVG COMMENT --\x3e\n <svg style="display: none;">\n <symbol id="svg-comment" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M15,2c1.654,0,3,1.257,3,2.803v6.404c0,1.546-1.346,2.803-3,2.803H7.98H7.508l-0.422,0.211L2,16.764v-5.557V10V4.803C2,3.257,3.346,2,5,2H15 M15,0H5C2.238,0,0,2.15,0,4.803V10v1.207V20l7.98-3.99H15c2.762,0,5-2.15,5-4.803V4.803C20,2.15,17.762,0,15,0L15,0z"/>\n <g>\n <path d="M14,5H6C5.447,5,5,5.448,5,6c0,0.553,0.447,1,1,1h8c0.553,0,1-0.447,1-1C15,5.448,14.553,5,14,5z M10,9H6c-0.553,0-1,0.447-1,1s0.447,1,1,1h4c0.553,0,1-0.447,1-1S10.553,9,10,9z"/>\n </g>\n </symbol>\n </svg>\n \x3c!-- /SVG COMMENT --\x3e\n\n \x3c!-- SVG THUMBS UP --\x3e\n <svg style="display: none;">\n <symbol id="svg-thumbs-up" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M15.896,19.999c-0.01,0-0.021,0-0.03,0H2.826C1.268,19.999,0,18.743,0,17.201v-6.302c0-1.543,1.269-2.797,2.826-2.797h2.096l3.391-7.515C8.473,0.229,8.83,0,9.223,0c2.063,0,3.742,1.659,3.742,3.698l0.026,2.3h4.996c0.152-0.003-0.149-0.023,0,0c0.753,0.111,1.962,0.245,1.999,1c0.037,0.757-0.011,2.143,0,3.003l-1.295,7.624C18.483,18.982,17.284,19.999,15.896,19.999z M6.995,18.005h8.881c0.003,0,0.007,0,0.01,0c0.418,0,0.77-0.292,0.83-0.684l1.262-8.106c0.031-0.205-0.02-0.412-0.145-0.583c-0.132-0.178-0.621-0.601-0.845-0.634c-0.045-0.008,0.045-0.006,0,0h-4.996c-0.553,0-1-1.451-1-2.001l-0.026-2.3c0-0.733-0.477-1.36-1.144-1.6l-2.828,6.9V18.005z M2.997,10c-0.456,0-0.999,0.457-0.999,0.899v6.302c0,0.442,0.371,0.804,0.827,0.804h2.17V10H2.997z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG THUMBS UP --\x3e\n\n \x3c!-- SVG FRIEND --\x3e\n <svg style="display: none;">\n <symbol id="svg-friend" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,0C4.477,0,0,4.478,0,10c0,5.523,4.477,10,10,10c5.522,0,10-4.477,10-10C20,4.478,15.522,0,10,0z M10,18c-4.418,0-8-3.582-8-8c0-4.418,3.582-8,8-8s8,3.582,8,8\n C18,14.418,14.418,18,10,18z M10,13c-1.305,0-2.403-0.838-2.816-2H5.101c0.464,2.282,2.48,4,4.899,4s4.436-1.718,4.899-4h-2.083C12.403,12.162,11.305,13,10,13z M7,7H5v2h2V7z M13,9h2V7h-2V9z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG FRIEND --\x3e\n\n \x3c!-- SVG GROUP --\x3e\n <svg style="display: none;">\n <symbol id="svg-group" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,2c1.654,0,3,1.346,3,3s-1.346,3-3,3S7,6.654,7,5S8.346,2,10,2 M10,0C7.238,0,5,2.238,5,5s2.238,5,5,5s5-2.238,5-5S12.762,0,10,0L10,0z"/>\n <path d="M3,20v-2c0-2.205,1.794-4,4-4h6c2.206,0,4,1.795,4,4v2h2v-2c0-3.313-2.687-6-6-6H7c-3.313,0-6,2.687-6,6v2H3z"/>\n <path d="M20,8.05c-1.13,0-2.05-0.919-2.05-2.05S18.87,3.95,20,3.95v-2c-2.236,0-4.05,1.813-4.05,4.05s1.813,4.05,4.05,4.05V8.05z"/>\n <path d="M0,8.05C1,8.05,2.05,7.13,2.05,6S1,3.95,0,3.95v-2c2,0,4.05,1.813,4.05,4.05S2,10.05,0,10.05V8.05z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG GROUP --\x3e\n\n \x3c!-- SVG MARKETPLACE --\x3e\n <svg style="display: none;">\n <symbol id="svg-marketplace" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M18,6h-0.5L16,0h-4v2h2.438l1,4H4.562l1-4H8V0H4L2.5,6H2C0.896,6,0,6.896,0,8v2c0,0.738,0.405,1.376,1,1.723v0.276C1,12,1,12,1,12l1,6c0,1.104,0.896,2,2,2h12c1.104,0,2-0.896,2-2l1-6v-0.277c0.596-0.347,1-0.984,1-1.723V8C20,6.896,19.104,6,18,6z M2,8h16v2h-0.999H17H3H2.999H2V8z M16.027,17.671L16,17.834V18H4v-0.165l-0.027-0.164L3.028,12h13.945L16.027,17.671z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG MARKETPLACE --\x3e\n\n \x3c!-- SVG ADD FRIEND --\x3e\n <svg style="display: none;">\n <symbol id="svg-add-friend" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,13c-1.305,0-2.403-0.838-2.816-2H5.101c0.464,2.282,2.48,4,4.899,4s4.436-1.718,4.899-4h-2.083C12.403,12.162,11.305,13,10,13z M7,7H5v2h2V7z M13,7v2h2V7H13z"/>\n <polygon points="20,2 18,2 18,0 16,0 16,2 14,2 14,4 16,4 16,6 18,6 18,4 20,4"/>\n <path d="M17.738,8C17.903,8.64,18,9.308,18,10c0,4.418-3.582,8-8,8s-8-3.582-8-8c0-4.418,3.582-8,8-8c0.692,0,1.359,0.097,2,0.262V0.201C11.354,0.07,10.685,0,10,0C4.477,0,0,4.478,0,10\n c0,5.523,4.477,10,10,10c5.522,0,10-4.477,10-10c0-0.685-0.069-1.354-0.201-2H17.738z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG ADD FRIEND --\x3e\n\n \x3c!-- SVG REMOVE FRIEND --\x3e\n <svg style="display: none;">\n <symbol id="svg-remove-friend" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,13c-1.305,0-2.403-0.838-2.816-2H5.101c0.464,2.282,2.48,4,4.899,4s4.436-1.718,4.899-4h-2.083C12.403,12.162,11.305,13,10,13z M7,7H5v2h2V7z M13,7v2h2V7H13z"/>\n <path d="M17.738,8C17.903,8.64,18,9.308,18,10c0,4.418-3.582,8-8,8s-8-3.582-8-8c0-4.418,3.582-8,8-8c0.692,0,1.359,0.097,2,0.262V0.201C11.354,0.07,10.685,0,10,0C4.477,0,0,4.478,0,10\n c0,5.523,4.477,10,10,10c5.522,0,10-4.477,10-10c0-0.685-0.069-1.354-0.201-2H17.738z"/>\n <rect x="14" y="2" width="6" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG REMOVE FRIEND --\x3e\n\n \x3c!-- SVG DELETE --\x3e\n <svg style="display: none;">\n <symbol id="svg-delete" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,20C4.477,20,0,15.523,0,10C0,4.478,4.477,0,10,0C15.522,0,20,4.478,20,10C20,15.523,15.522,20,10,20z M10,2c-4.418,0-8,3.582-8,8c0,4.418,3.582,8,8,8s8-3.582,8-8\n C18,5.582,14.418,2,10,2z M12.662,13.994L10,11.332l-2.662,2.662l-1.331-1.33l2.662-2.663L6.007,7.339l1.331-1.331L10,8.67l2.662-2.662l1.331,1.331l-2.662,2.662l2.662,2.663L12.662,13.994z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG DELETE --\x3e\n\n \x3c!-- SVG MESSAGES --\x3e\n <svg style="display: none;">\n <symbol id="svg-messages" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M12,2c1.103,0,2,0.897,2,2v5c0,1.103-0.897,2-2,2H8H7.754l-0.239,0.06L2,12.438V9V4c0-1.103,0.897-2,2-2H12M12,0H4C1.791,0,0,1.791,0,4v5v6l8-2h4c2.209,0,4-1.791,4-4V4C16,1.791,14.209,0,12,0L12,0z"/>\n <path d="M12,5.012C12,5.558,11.558,6,11.013,6H4.987C4.442,6,4,5.558,4,5.012V4.988C4,4.442,4.442,4,4.987,4h6.025C11.558,4,12,4.442,12,4.988V5.012z"/>\n <path d="M10,8.047C10,8.574,9.573,9,9.047,9H4.953C4.427,9,4,8.574,4,8.047V7.953C4,7.426,4.427,7,4.953,7h4.094C9.573,7,10,7.426,10,7.953V8.047z"/>\n <path d="M17,5.142v2.136C17.595,7.625,18,8.263,18,9v5v3.438l-5.516-1.379L12.246,16H12H8c-0.737,0-1.375-0.405-1.722-1H4.142C4.588,16.722,6.139,18,8,18h4l8,2v-6V9C20,7.139,18.722,5.588,17,5.142z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG MESSAGES --\x3e\n\n \x3c!-- SVG SEND MESSAGE --\x3e\n <svg style="display: none;">\n <symbol id="svg-send-message" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M19.993,0.94c-0.005-0.091-0.022-0.179-0.052-0.265c-0.011-0.031-0.021-0.062-0.035-0.093 c-0.049-0.107-0.109-0.208-0.195-0.294s-0.188-0.147-0.294-0.195c-0.031-0.014-0.062-0.024-0.093-0.035c-0.086-0.03-0.173-0.046-0.263-0.052C19.034,0.005,19.009,0,18.981,0c-0.104,0.002-0.207,0.017-0.308,0.052L0.67,6.353C0.283,6.488,0.018,6.846,0.001,7.256C-0.016,7.666,0.22,8.044,0.594,8.21l7.75,3.446l3.444,7.75C11.948,19.769,12.308,20,12.702,20\n c0.014,0,0.027,0,0.041-0.002c0.409-0.016,0.768-0.28,0.903-0.668l6.302-18.003c0.035-0.101,0.05-0.206,0.052-0.309C20,0.991,19.994,0.967,19.993,0.94z M15.197,3.388L8.88,9.706L3.711,7.408L15.197,3.388z M12.592,16.288l-2.298-5.169l6.317-6.316L12.592,16.288z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG SEND MESSAGE --\x3e\n\n \x3c!-- SVG BACK ARROW --\x3e\n <svg style="display: none;">\n <symbol id="svg-back-arrow" viewBox="0 0 14 10" preserveAspectRatio="xMinYMin meet">\n <path d="M14,6H3.364l2.644,2.75L4.806,10L1.202,6.25l0,0L0,5L4.806,0l1.201,1.25L3.364,4H14V6z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG BACK ARROW --\x3e\n\n \x3c!-- SVG SHOPPING BAG --\x3e\n <svg style="display: none;">\n <symbol id="svg-shopping-bag" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M15.904,6c0.148,0.117,0.347,0.386,0.406,0.557l0.001,0.017l0.676,11.421c-0.005,0.003-0.01,0.005-0.013,0.006H3.029c-0.004-0.001-0.01-0.003-0.016-0.006L3.689,6.573L3.69,6.556C3.749,6.386,3.947,6.117,4.095,6H15.904 M16.075,4H3.924C2.806,4,1.692,5.563,1.692,6.455L1,18.154C1,19.048,1.906,20,3.024,20h13.95C18.093,20,19,19.048,19,18.154L18.308,6.455C18.308,5.563,17.193,4,16.075,4L16.075,4z"/>\n <path d="M8,8V3.893C8,2.849,8.849,2,9.893,2H10h0.054C11.098,2,12,2.849,12,3.893V8h2V3.893C14,1.743,12.257,0,10.107,0H9.893C7.743,0,6,1.743,6,3.893V8H8z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG SHOPPING BAG --\x3e\n\n \x3c!-- SVG NOTIFICATION --\x3e\n <svg style="display: none;">\n <symbol id="svg-notification" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M18.583,14.127c-0.023-0.018-2.241-1.758-2.241-7.52C16.342,2.964,13.497,0,10.004,0C6.511,0,3.668,2.964,3.668,6.607c0,5.762-2.22,7.502-2.228,7.508c-0.365,0.254-0.525,0.725-0.397,1.158c0.129,0.434,0.517,0.73,0.957,0.73h16.007c0.433,0,0.81-0.293,0.943-0.719C19.086,14.861,18.932,14.389,18.583,14.127zM4.086,13.939C4.873,12.527,5.67,10.21,5.67,6.607c0-2.505,1.945-4.542,4.334-4.542c2.391,0,4.335,2.038,4.335,4.542c0,3.603,0.796,5.92,1.583,7.333H4.086z M12.418,17.146c-0.57-0.283-1.293-0.115-1.619,0.381c-0.126,0.191-0.327,0.326-0.567,0.383c-0.234,0.051-0.478,0.023-0.688-0.084c-0.138-0.07-0.255-0.174-0.336-0.297c-0.325-0.496-1.05-0.668-1.618-0.385c-0.568,0.283-0.766,0.914-0.44,1.408c0.286,0.438,0.7,0.803,1.194,1.055C8.854,19.867,9.421,20,9.997,20c0.281,0,0.564-0.031,0.843-0.096c0.856-0.197,1.573-0.676,2.016-1.348C13.182,18.061,12.984,17.432,12.418,17.146z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG NOTIFICATION --\x3e\n\n \x3c!-- SVG SETTINGS --\x3e\n <svg style="display: none;">\n <symbol id="svg-settings" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,7c-1.657,0-3,1.343-3,3c0,1.655,1.343,2.999,3,2.999c1.656,0,3-1.344,3-2.999C13,8.343,11.656,7,10,7zM10,11c-0.552,0-1-0.449-1-1c0-0.552,0.448-1,1-1s1,0.448,1,1C11,10.551,10.552,11,10,11z M17.363,12.638C18.817,12.638,20,11.453,20,10s-1.183-2.637-2.637-2.637h-0.135c-0.106,0-0.205-0.049-0.27-0.129 c-0.014-0.054-0.032-0.106-0.055-0.158c-0.059-0.132-0.031-0.283,0.111-0.429c0.498-0.499,0.772-1.161,0.772-1.865c0-0.704-0.274-1.367-0.773-1.865c-0.997-0.997-2.693-1.035-3.769,0.042c-0.102,0.1-0.24,0.135-0.397,0.066c-0.129-0.055-0.212-0.18-0.212-0.391C12.637,1.182,11.454,0,10,0S7.363,1.182,7.363,2.636v0.135c0,0.106-0.049,0.206-0.129,0.271C7.181,3.056,7.128,3.073,7.077,3.096c-0.128,0.058-0.264,0.052-0.43-0.113c-0.996-0.994-2.731-0.995-3.73,0.003c-1.026,1.028-1.025,2.701,0.044,3.77C3.062,6.858,3.089,7.01,3.007,7.2c-0.05,0.136-0.176,0.227-0.371,0.229C1.183,7.429,0,8.612,0,10.065c0,1.454,1.183,2.637,2.636,2.637h0.138c0.138,0,0.263,0.083,0.322,0.222c0.058,0.132,0.03,0.284-0.113,0.429c-0.497,0.498-0.771,1.161-0.771,1.865c0.001,0.705,0.276,1.367,0.773,1.863c0.996,0.996,2.689,1.038,3.771-0.042c0.101-0.099,0.142-0.173,0.443-0.046c0.136,0.049,0.226,0.176,0.229,0.37\n c0,1.454,1.183,2.637,2.637,2.637s2.637-1.183,2.637-2.637v-0.137c0-0.139,0.083-0.263,0.222-0.322c0.129-0.058,0.263-0.051,0.428,0.112c0.999,0.995,2.735,0.996,3.73-0.002c0.498-0.499,0.771-1.162,0.771-1.866c-0.001-0.704-0.275-1.366-0.813-1.903c-0.101-0.104-0.129-0.256-0.064-0.398C17.029,12.72,17.154,12.638,17.363,12.638zM15.666,14.7c0.121,0.12,0.188,0.279,0.188,0.449s-0.067,0.33-0.188,0.453c-0.239,0.241-0.605,0.295-0.956-0.058c-0.677-0.662-1.742-0.845-2.582-0.475c-0.864,0.369-1.423,1.214-1.425,2.153v0.14c0,0.352-0.286,0.636-0.637,0.636s-0.637-0.284-0.637-0.733c-0.023-0.97-0.627-1.815-1.479-2.125C7.649,15.007,7.329,14.939,7,14.939c-0.618,0-1.202,0.238-1.7,0.728c-0.24,0.24-0.66,0.241-0.901-0.002c-0.248-0.246-0.248-0.65,0.058-0.957c0.675-0.69,0.859-1.709,0.474-2.58c-0.368-0.864-1.214-1.424-2.154-1.426h-0.14C2.285,10.702,2,10.416,2,10.065\n s0.285-0.637,0.733-0.637c0.971-0.023,1.815-0.626,2.127-1.48c0.39-0.884,0.205-1.9-0.527-2.648C4.085,5.052,4.085,4.647,4.334,4.398c0.24-0.24,0.603-0.298,0.957,0.058C5.92,5.07,6.871,5.282,7.694,5c0.084-0.013,0.167-0.036,0.245-0.07c0.861-0.37,1.42-1.214,1.424-2.155v-0.14C9.363,2.285,9.649,2,10,2s0.637,0.285,0.637,0.712c0.002,0.937,0.561,1.782,1.414,2.148c0.865,0.38,1.884,0.222,2.649-0.527c0.241-0.24,0.656-0.243,0.901,0.001c0.12,0.12,0.187,0.279,0.187,0.449c0,0.169-0.066,0.331-0.242,0.507c-0.629,0.642-0.834,1.566-0.545,2.405\n c0.013,0.083,0.035,0.165,0.069,0.244c0.369,0.862,1.213,1.421,2.154,1.425h0.139C17.715,9.364,18,9.649,18,10c0,0.351-0.285,0.637-0.712,0.637c-0.938,0.002-1.783,0.561-2.146,1.411C14.749,12.933,14.933,13.951,15.666,14.7z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG SETTINGS --\x3e\n\n \x3c!-- SVG CROSS THIN --\x3e\n <svg style="display: none;">\n <symbol id="svg-cross-thin" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M18,16.547L16.545,18L10,11.455L3.455,18L2,16.547L8.545,10L2,3.455L3.455,2L10,8.546L16.545,2L18,3.455L11.455,10L18,16.547z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG CROSS THIN --\x3e\n\n \x3c!-- SVG NEWSFEED --\x3e\n <svg style="display: none;">\n <symbol id="svg-newsfeed" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,0H4C1.791,0,0,1.791,0,4v8c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V4C20,1.791,18.209,0,16,0zM18,12c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2V4c0-1.103,0.897-2,2-2h12c1.103,0,2,0.897,2,2V12z"/>\n <path d="M0,10v2h20v-2H0z M5,20h10v-2H5V20z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG NEWSFEED --\x3e\n\n \x3c!-- SVG OVERVIEW --\x3e\n <svg style="display: none;">\n <symbol id="svg-overview" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M18,8v10h-2V8H18 M18,6h-2c-1.104,0-2,0.896-2,2v10c0,1.104,0.896,2,2,2h2c1.104,0,2-0.896,2-2V8C20,6.896,19.104,6,18,6L18,6z"/>\n <path d="M11,2v16H9V2H11 M11,0H9C7.896,0,7,0.896,7,2v16c0,1.104,0.896,2,2,2h2c1.104,0,2-0.896,2-2V2C13,0.896,12.104,0,11,0L11,0z"/>\n <path d="M4,14v4H2v-4H4 M4,12H2c-1.104,0-2,0.896-2,2v4c0,1.104,0.896,2,2,2h2c1.104,0,2-0.896,2-2v-4C6,12.896,5.104,12,4,12L4,12z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG OVERVIEW --\x3e\n\n \x3c!-- SVG MEMBERS --\x3e\n <svg style="display: none;">\n <symbol id="svg-members" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,10c2.762,0,5-2.238,5-5c0-2.762-2.238-5-5-5S5,2.238,5,5C5,7.761,7.238,10,10,10z M10,2c1.654,0,3,1.346,3,3s-1.346,3-3,3S7,6.654,7,5S8.346,2,10,2z M13,12H7c-3.313,0-6,2.686-6,6v2h2v-2c0-2.205,1.794-4,4-4h6c2.206,0,4,1.795,4,4v2h2v-2C19,14.686,16.313,12,13,12z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG MEMBERS --\x3e\n\n \x3c!-- SVG BADGES --\x3e\n <svg style="display: none;">\n <symbol id="svg-badges" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,8c2.757,0,5,2.243,5,5s-2.243,5-5,5s-5-2.243-5-5S7.243,8,10,8 M10,6c-3.866,0-7,3.134-7,7s3.134,7,7,7c3.865,0,7-3.134,7-7S13.865,6,10,6L10,6z"/>\n <path d="M3.906,6.391L2.651,2h3.84l0.701,2.453c0.627-0.206,1.283-0.347,1.963-0.41L8,0H0l2.36,8.26C2.79,7.568,3.31,6.941,3.906,6.391z"/>\n <path d="M12.808,4.453L13.509,2h3.84l-1.255,4.391C16.689,6.94,17.21,7.568,17.64,8.26L20,0h-8l-1.155,4.043C11.524,4.106,12.181,4.247,12.808,4.453z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG BADGES --\x3e\n\n \x3c!-- SVG QUESTS --\x3e\n <svg style="display: none;">\n <symbol id="svg-quests" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,2.708l1.774,3.813l0.452,0.97l1.058,0.163l4.138,0.637l-3.07,3.175l-0.697,0.721l0.16,0.989l0.7,4.326l-3.494-1.947l-0.965-0.538L10,15.048l-0.055-0.03L8.98,15.556l-3.494,1.947l0.7-4.326l0.16-0.989l-0.697-0.721L2.578,8.292l4.138-0.637l1.058-0.163l0.451-0.97L10,2.708 M10.029-0.004C10.019-0.004,10.01-0.002,10,0C9.99-0.002,9.981-0.004,9.971-0.004\n c-0.558,0-1.066,0.326-1.303,0.834L6.412,5.678L1.223,6.477c-0.534,0.082-0.977,0.46-1.148,0.976c-0.172,0.517-0.042,1.086,0.334,1.474l3.802,3.932l-0.882,5.453c-0.089,0.548,0.141,1.1,0.591,1.42c0.248,0.176,0.539,0.266,0.83,0.266c0.24,0,0.479-0.061,0.697-0.182l4.507-2.512L10,17.328l0.046-0.025l4.506,2.512c0.219,0.121,0.457,0.182,0.697,0.182c0.291,0,0.582-0.09,0.83-0.266c0.45-0.32,0.68-0.872,0.591-1.42l-0.882-5.453l3.802-3.932c0.376-0.387,0.507-0.957,0.335-1.474c-0.172-0.515-0.614-0.894-1.148-0.976l-5.189-0.798l-2.256-4.848C11.095,0.322,10.586-0.004,10.029-0.004L10.029-0.004z"/>\n <rect x="7" y="9" width="2" height="2"/>\n <rect x="11" y="9" width="2" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG QUESTS --\x3e\n\n \x3c!-- SVG STREAMS --\x3e\n <svg style="display: none;">\n <symbol id="svg-streams" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,3c1.103,0,2,0.897,2,2v10c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2V5c0-1.103,0.897-2,2-2H16 M16,1H4C1.791,1,0,2.791,0,5v10c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V5C20,2.791,18.209,1,16,1L16,1z"/>\n <path d="M8.405,7c0.102,0,0.219,0.037,0.347,0.115l3.908,2.4c0.439,0.267,0.462,0.704,0.021,0.971l-3.928,2.4C8.624,12.964,8.507,13,8.405,13C8.157,13,8,12.782,8,12.408V7.593C8,7.217,8.157,7,8.405,7 M8.405,5C7.034,5,6,6.115,6,7.593v4.815C6,13.886,7.034,15,8.405,15c0.477,0,0.943-0.137,1.386-0.405l3.932-2.402c0.796-0.481,1.276-1.297,1.277-2.177c0.001-0.888-0.486-1.715-1.304-2.21L9.798,5.411C9.348,5.137,8.881,5,8.405,5L8.405,5z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG STREAMS --\x3e\n\n \x3c!-- SVG EVENTS --\x3e\n <svg style="display: none;">\n <symbol id="svg-events" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,2H4C1.791,2,0,3.791,0,6v10c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V6C20,3.791,18.209,2,16,2zM18,16c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2V6c0-1.103,0.897-2,2-2h12c1.103,0,2,0.897,2,2V16z"/>\n <path d="M0,8v2h20V8H0z M7,0H5v6h2V0z M15,0h-2v6h2V0z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG EVENTS --\x3e\n\n \x3c!-- SVG FORUMS --\x3e\n <svg style="display: none;">\n <symbol id="svg-forums" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,0H4C1.791,0,0,1.592,0,3.556V6v2v4.444C0,14.408,1.791,16,4,16h2l4,4l4-4h2c2.209,0,4-1.592,4-3.556V8V6V3.556C20,1.592,18.209,0,16,0z M18,12.444C18,13.287,17.084,14,16,14h-2h-0.828l-0.586,0.586L10,17.172l-2.586-2.586L6.829,14H6H4c-1.084,0-2-0.713-2-1.556V8h16V12.444z M2,6V3.556C2,2.712,2.916,2,4,2h12c1.084,0,2,0.712,2,1.556V6H2z"/>\n <rect x="4" y="3" width="2" height="2"/>\n <rect x="10" y="3" width="2" height="2"/>\n <rect x="7" y="3" width="2" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG FORUMS --\x3e\n\n \x3c!-- SVG SMALL ARROW --\x3e\n <svg style="display: none;">\n <symbol id="svg-small-arrow" viewBox="0 0 6 8" preserveAspectRatio="xMinYMin meet">\n <path d="M6,4L1.5,8L0,6.665L3,4L0,1.333L1.5,0l3,2.666l0,0L6,4z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG SMALL ARROW --\x3e\n\n \x3c!-- SVG BIG ARROW --\x3e\n <svg style="display: none;">\n <symbol id="svg-big-arrow" viewBox="0 0 8 12" preserveAspectRatio="xMinYMin meet">\n <path d="M6.399,7.5L6.399,7.5L1.6,12L0,10.5L4.8,6L0,1.5L1.6,0L8,6L6.399,7.5z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG BIG ARROW --\x3e\n\n \x3c!-- SVG PUBLIC --\x3e\n <svg style="display: none;">\n <symbol id="svg-public" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M20,10c0-5.522-4.478-10-10-10C4.477,0,0,4.478,0,10c0,5.523,4.477,10,10,10\n c1.566,0,3.043-0.37,4.362-1.013l0.01,0.018c0.051-0.028,0.086-0.059,0.135-0.087C17.763,17.27,20,13.9,20,10z M16.155,15.108c-0.648-1.745-2.802-3.14-4.653-3.408c-0.751-0.109-0.829-0.433-0.858-0.555C10.497,10.532,11,9.499,11.679,9.021c1.482-1.044,4.529-0.504,6.252-0.025C17.972,9.325,18,9.659,18,10C18,11.942,17.307,13.723,16.155,15.108z M14.715,3.547c-0.012,0-0.022,0.003-0.034,0.003c-1.374,0-2.609-0.561-3.518-1.456C12.479,2.286,13.688,2.796,14.715,3.547z M2,10\n c0-2.277,0.956-4.328,2.483-5.785c1.26,0.272,2.644,0.845,2.87,1.36C7.373,5.62,7.425,5.74,7.222,6.051c-0.295,0.451-0.603,0.88-0.896,1.29c-1.389,1.937-2.963,4.131-0.647,6.169c0.537,0.472,0.805,1.243,0.624,1.793c-0.184,0.557-0.815,0.773-1.402,0.86C3.128,14.695,2,12.479,2,10z M7.065,17.437c0.671-0.479,0.993-1.077,1.135-1.507c0.432-1.308-0.063-2.92-1.201-3.922c-0.814-0.716-0.672-1.24,0.951-3.502c0.31-0.432,0.633-0.883,0.944-1.359c0.66-1.009,0.521-1.85,0.289-2.377c-0.428-0.972-1.522-1.606-2.57-2.01C7.251,2.46,7.934,2.244,8.65,2.122c1.236,2.047,3.469,3.428,6.03,3.428c0.618,0,1.206-0.106,1.776-0.259c0.339,0.463,0.631,0.961,0.865,1.492c-1.979-0.428-4.906-0.729-6.795,0.603c-1.195,0.84-2.204,2.651-1.828,4.224c0.268,1.122,1.185,1.876,2.516,2.068c1.409,0.205,2.963,1.352,3.137,2.314c0.028,0.156,0.1,0.618-0.781,1.158C12.495,17.689,11.285,18,10,18C8.963,18,7.975,17.796,7.065,17.437z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PUBLIC --\x3e\n\n \x3c!-- SVG PRIVATE --\x3e\n <svg style="display: none;">\n <symbol id="svg-private" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M11,11H9c-0.553,0-1,0.447-1,1s0.447,1,1,1v1c0,0.553,0.447,1,1,1s1-0.447,1-1v-1c0.553,0,1-0.447,1-1S11.553,11,11,11z"/>\n <path d="M16,6.142V6c0-3.313-2.687-6-6-6S4,2.687,4,6v0.142C2.278,6.588,1,8.139,1,10v6c0,2.209,1.791,4,4,4h10c2.209,0,4-1.791,4-4v-6C19,8.139,17.722,6.588,16,6.142z M10,2c2.206,0,4,1.794,4,4H6C6,3.794,7.794,2,10,2z M17,16c0,1.103-0.897,2-2,2H5c-1.103,0-2-0.897-2-2v-6c0-1.103,0.897-2,2-2h10c1.103,0,2,0.897,2,2V16z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PRIVATE --\x3e\n\n \x3c!-- SVG JOIN GROUP --\x3e\n <svg style="display: none;">\n <symbol id="svg-join-group" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,9.999c2.762,0,5-2.238,5-5s-2.238-5-5-5s-5,2.238-5,5S7.238,9.999,10,9.999z M10,1.999c1.654,0,3,1.346,3,3s-1.346,3-3,3s-3-1.346-3-3S8.346,1.999,10,1.999z M20,3.949v-2c-2.236,0-4.05,1.813-4.05,4.05c0,2.236,1.813,4.05,4.05,4.05v-2c-1.13,0-2.05-0.92-2.05-2.05C17.95,4.869,18.87,3.949,20,3.949z M4.05,5.999C4.05,3.762,2,1.949,0,1.949v2c1,0,2.05,0.919,2.05,2.05c0,1.13-1.05,2.05-2.05,2.05v2C2,10.049,4.05,8.235,4.05,5.999zM11,13.999H9v2H7v2h2v2h2v-2h2v-2h-2V13.999z M7,11.999c-3.313,0-6,2.687-6,6v2h2v-2c0-2.205,1.794-4,4-4V11.999z M13,11.999v2c2.206,0,4,1.795,4,4v2h2v-2C19,14.686,16.313,11.999,13,11.999z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG JOIN GROUP --\x3e\n\n \x3c!-- SVG LEAVE GROUP --\x3e\n <svg style="display: none;">\n <symbol id="svg-leave-group" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,9.999c2.762,0,5-2.238,5-5s-2.238-5-5-5s-5,2.238-5,5S7.238,9.999,10,9.999z M10,1.999c1.654,0,3,1.346,3,3s-1.346,3-3,3s-3-1.346-3-3S8.346,1.999,10,1.999z M20,3.949v-2c-2.236,0-4.05,1.813-4.05,4.05c0,2.236,1.813,4.05,4.05,4.05v-2c-1.13,0-2.05-0.92-2.05-2.05C17.95,4.869,18.87,3.949,20,3.949z M4.05,5.999C4.05,3.762,2,1.949,0,1.949v2c1,0,2.05,0.919,2.05,2.05c0,1.13-1.05,2.05-2.05,2.05v2C2,10.049,4.05,8.235,4.05,5.999z M7,17.999h6v-2H7V17.999z M7,11.999c-3.313,0-6,2.687-6,6v2h2v-2c0-2.205,1.794-4,4-4V11.999z M13,11.999v2c2.206,0,4,1.795,4,4v2h2v-2C19,14.686,16.313,11.999,13,11.999z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG LEAVE GROUP --\x3e\n\n \x3c!-- SVG MORE DOTS --\x3e\n <svg style="display: none;">\n <symbol id="svg-more-dots" viewBox="0 0 22 6" preserveAspectRatio="xMinYMin meet">\n <path d="M19,6c-1.657,0-3-1.344-3-3c0-1.656,1.343-3,3-3s3,1.344,3,3C22,4.656,20.657,6,19,6z M19,2c-0.553,0-1,0.447-1,1c0,0.552,0.447,1,1,1c0.552,0,1-0.449,1-1C20,2.447,19.552,2,19,2z M11,6C9.343,6,8,4.656,8,3c0-1.656,1.343-3,3-3s3,1.344,3,3C14,4.656,12.657,6,11,6z M11,2c-0.553,0-1,0.447-1,1c0,0.552,0.447,1,1,1c0.552,0,1-0.449,1-1C12,2.447,11.552,2,11,2z M3,6C1.343,6,0,4.656,0,3c0-1.656,1.343-3,3-3c1.656,0,3,1.344,3,3C6,4.656,4.656,6,3,6z M3,2C2.447,2,2,2.447,2,3c0,0.552,0.447,1,1,1c0.552,0,1-0.449,1-1C4,2.447,3.552,2,3,2z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG MORE DOTS --\x3e\n\n \x3c!-- SVG PROFILE --\x3e\n <svg style="display: none;">\n <symbol id="svg-profile" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,2c4.418,0,8,3.582,8,8c0,4.418-3.582,8-8,8c-4.418,0-8-3.582-8-8C2,5.582,5.582,2,10,2 M10,0C4.486,0,0,4.486,0,10c0,5.514,4.486,10,10,10c5.514,0,10-4.486,10-10C20,4.486,15.514,0,10,0L10,0z"/>\n <path d="M10,7c0.551,0,1,0.449,1,1s-0.449,1-1,1S9,8.551,9,8S9.449,7,10,7 M10,5C8.343,5,7,6.343,7,8c0,1.656,1.343,3,3,3c1.656,0,3-1.344,3-3C13,6.343,11.656,5,10,5L10,5z"/>\n <path d="M14.866,15.025C14.43,13.29,12.871,12,11,12H9c-1.871,0-3.43,1.29-3.866,3.025C5.678,15.553,6.308,15.988,7,16.317V16c0-1.104,0.897-2,2-2h2c1.103,0,2,0.896,2,2v0.317C13.692,15.988,14.322,15.553,14.866,15.025z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PROFILE --\x3e\n\n \x3c!-- SVG TIMELINE --\x3e\n <svg style="display: none;">\n <symbol id="svg-timeline" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,0H4C1.791,0,0,1.791,0,4v12c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V4C20,1.791,18.209,0,16,0zM18,16c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2V4c0-1.103,0.897-2,2-2h12c1.103,0,2,0.897,2,2V16z"/>\n <polygon points="18,5 2,5 2,7 5,7 5,20 7,20 7,7 13,7 13,20 15,20 15,7 18,7"/>\n </symbol>\n </svg>\n \x3c!-- /SVG TIMELINE --\x3e\n\n \x3c!-- SVG PHOTOS --\x3e\n <svg style="display: none;">\n <symbol id="svg-photos" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,0H4C1.791,0,0,1.791,0,4v12c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V4C20,1.791,18.209,0,16,0zM4,2h12c1.103,0,2,0.897,2,2v6.407L16.703,9.11c-0.75-0.751-1.734-1.126-2.718-1.126c-0.984,0-1.968,0.375-2.719,1.126l-2.98,2.98l-0.259-0.259c-0.563-0.563-1.301-0.844-2.039-0.844s-1.476,0.282-2.04,0.844L2,13.782V4C2,2.897,2.897,2,4,2z M16,18H4c-0.918,0-1.686-0.625-1.919-1.47l3.282-3.283c0.226-0.226,0.489-0.259,0.626-0.259c0.137,0,0.399,0.033,0.625,0.258l0.259,0.259l1.414,1.414L9.7,13.505l2.981-2.981c0.348-0.348,0.811-0.54,1.304-0.54c0.492,0,0.955,0.192,1.304,0.541L18,13.234V16C18,17.103,17.103,18,16,18z"/>\n <path d="M6,9c1.657,0,3-1.344,3-3c0-1.657-1.343-3-3-3S3,4.343,3,6C3,7.656,4.343,9,6,9z M6,5c0.551,0,1,0.449,1,1c0,0.552-0.449,1-1,1S5,6.552,5,6C5,5.449,5.449,5,6,5z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PHOTOS --\x3e\n\n \x3c!-- SVG VIDEOS --\x3e\n <svg style="display: none;">\n <symbol id="svg-videos" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,0H4C1.791,0,0,1.791,0,4v12c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V4C20,1.791,18.209,0,16,0zM18,4v1h-2V2C17.103,2,18,2.897,18,4z M4,13H2V7h2V13z M16,7h2v6h-2V7z M14,2v16H6V2H14z M4,2v3H2V4C2,2.897,2.897,2,4,2z M2,16v-1h2v3C2.897,18,2,17.103,2,16z M16,18v-3h2v1C18,17.103,17.103,18,16,18z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG VIDEOS --\x3e\n\n \x3c!-- SVG BLOG POSTS --\x3e\n <svg style="display: none;">\n <symbol id="svg-blog-posts" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M15,0H5C2.791,0,1,1.791,1,4v3v2v7c0,2.209,1.791,4,4,4h10c2.209,0,4-1.791,4-4V9V7V4C19,1.791,17.209,0,15,0z M17,16c0,1.103-0.897,2-2,2H5c-1.103,0-2-0.897-2-2V9h14V16z M3,7V4c0-1.103,0.897-2,2-2h10c1.103,0,2,0.897,2,2v3H3z"/>\n <rect x="5" y="11" width="10" height="2"/>\n <rect x="13" y="14" width="2" height="2"/>\n <rect x="5" y="14" width="6" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG BLOG POSTS --\x3e\n\n \x3c!-- SVG FORUM --\x3e\n <svg style="display: none;">\n <symbol id="svg-forum" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10.969,0H5C2.791,0,1,1.791,1,4v12c0,2.209,1.791,4,4,4h10c2.209,0,4-1.791,4-4V8.125L10.969,0z M11,2.877L16.064,8H13c-1.104,0-2-0.897-2-2V2.877z M15,18H5c-1.103,0-2-0.897-2-2V4c0-1.103,0.897-2,2-2h4v4c0,2.209,1.791,4,4,4h4v6C17,17.103,16.103,18,15,18z"/>\n <path d="M13,14H7c-0.553,0-1,0.447-1,1s0.447,1,1,1h6c0.552,0,1-0.447,1-1S13.552,14,13,14z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG FORUM --\x3e\n\n \x3c!-- SVG STORE --\x3e\n <svg style="display: none;">\n <symbol id="svg-store" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M19.411,4.288l-1.894-3.301C17.174,0.378,16.537,0,15.855,0H4.047C3.37,0,2.734,0.376,2.39,0.981L0.492,4.288C-0.18,5.459-0.227,6.949,0.37,8.177C0.737,8.933,1.314,9.494,2,9.826V16c0,2.209,1.791,4,4,4h8c2.209,0,4-1.791,4-4V9.766c0.642-0.338,1.184-0.871,1.532-1.586C20.13,6.953,20.084,5.462,19.411,4.288z M2.227,5.289L4.047,2h11.732l1.896,3.289c0.343,0.598,0.365,1.388,0.059,2.018c-0.136,0.277-0.452,0.755-1.073,0.845c-0.567,0.088-1.203-0.159-1.624-0.674l-0.772-0.943L13.49,7.477c-0.725,0.883-2.046,0.883-2.767,0.001L9.95,6.532L9.176,7.477C8.452,8.361,7.13,8.359,6.41,7.478L5.636,6.531L4.862,7.478c-0.421,0.515-0.973,0.773-1.639,0.67C2.62,8.06,2.303,7.583,2.168,7.306C1.862,6.675,1.885,5.885,2.227,5.289zM4,10.11c0.582-0.086,1.148-0.295,1.636-0.641c1.263,0.9,3.046,0.9,4.313,0c1.265,0.9,3.046,0.901,4.315,0c0.518,0.368,1.113,0.592,1.736,0.665V14H4V10.11z M14,18H6c-1.103,0-2-0.897-2-2h12C16,17.103,15.103,18,14,18z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG STORE --\x3e\n\n \x3c!-- SVG STAR --\x3e\n <svg style="display: none;">\n <symbol id="svg-star" viewBox="0 0 9 8" preserveAspectRatio="xMinYMin meet">\n <path d="M4.5,0l1.482,2.515L9,3.056L6.899,5.151L7.28,8L4.5,6.78L1.719,8L2.1,5.151L0,3.056l3.017-0.541L4.5,0"/>\n </symbol>\n </svg>\n \x3c!-- /SVG STAR --\x3e\n\n \x3c!-- SVG PLAY --\x3e\n <svg style="display: none;">\n <symbol id="svg-play" viewBox="0 0 12 14" preserveAspectRatio="xMinYMin meet">\n <path d="M11.182,5.868l-9.378-5.6C0.751-0.355,0,0.147,0,1.383v11.236c0,1.234,0.751,1.737,1.803,1.112l9.431-5.599C12.291,7.51,12.236,6.491,11.182,5.868z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PLAY --\x3e\n\n \x3c!-- SVG SHARE --\x3e\n <svg style="display: none;">\n <symbol id="svg-share" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M15.336,12.6c-0.984,0-1.876,0.399-2.536,1.04l-4.602-2.714c0.077-0.297,0.13-0.604,0.13-0.925s-0.054-0.628-0.13-0.925l4.598-2.717C13.457,7,14.35,7.4,15.336,7.4C17.356,7.4,19,5.741,19,3.7S17.356,0,15.336,0s-3.665,1.66-3.665,3.7c0,0.321,0.054,0.628,0.13,0.925L7.203,7.342C6.543,6.7,5.651,6.3,4.665,6.3C2.644,6.3,1,7.959,1,10c0,2.04,1.645,3.699,3.665,3.699c0.986,0,1.878-0.399,2.538-1.041l4.601,2.713c-0.078,0.299-0.132,0.606-0.132,0.93c0,2.04,1.645,3.699,3.665,3.699S19,18.341,19,16.301C19,14.26,17.356,12.6,15.336,12.6z M15.336,2c0.921,0,1.67,0.763,1.67,1.7s-0.749,1.7-1.67,1.7c-0.922,0-1.672-0.763-1.672-1.7S14.414,2,15.336,2z M4.665,11.699c-0.921,0-1.671-0.763-1.671-1.699c0-0.938,0.75-1.7,1.671-1.7s1.67,0.763,1.67,1.7C6.335,10.937,5.586,11.699,4.665,11.699z M15.336,18c-0.922,0-1.672-0.763-1.672-1.699c0-0.308,0.087-0.592,0.228-0.841c0.003-0.005,0.006-0.008,0.009-0.012c0.003-0.005,0.002-0.01,0.005-0.015c0.292-0.497,0.821-0.834,1.431-0.834c0.921,0,1.67,0.763,1.67,1.701C17.006,17.237,16.257,18,15.336,18z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG SHARE --\x3e\n\n \x3c!-- SVG PINNED --\x3e\n <svg style="display: none;">\n <symbol id="svg-pinned" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M17,20c-0.205,0-0.408-0.063-0.581-0.188L10,15.229l-6.419,4.584c-0.305,0.218-0.706,0.249-1.039,0.077C2.209,19.717,2,19.375,2,19V3c0-1.654,1.346-3,3-3h10c1.654,0,3,1.346,3,3v16c0,0.375-0.209,0.717-0.542,0.89C17.313,19.963,17.156,20,17,20z M10,13c0.203,0,0.407,0.063,0.581,0.186L16,17.057V3c0-0.551-0.448-1-1-1H5C4.448,2,4,2.448,4,3v14.057l5.419-3.871C9.593,13.063,9.796,13,10,13z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PINNED --\x3e\n\n \x3c!-- SVG STATUS --\x3e\n <svg style="display: none;">\n <symbol id="svg-status" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,1H4C1.791,1,0,2.791,0,5v4v2v4c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4v-4V9V5C20,2.791,18.209,1,16,1z M18,15c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2v-4h16V15z M18,9H2V5c0-1.103,0.897-2,2-2h12c1.103,0,2,0.897,2,2V9z"/>\n <rect x="13" y="13" width="2" height="2"/>\n <rect x="9" y="13" width="2" height="2"/>\n <rect x="5" y="5" width="10" height="2"/>\n <rect x="5" y="13" width="2" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG STATUS --\x3e\n\n \x3c!-- SVG BIG GRID VIEW --\x3e\n <svg style="display: none;">\n <symbol id="svg-big-grid-view" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h12c2.209,0,4,1.791,4,4v12C20,18.209,18.209,20,16,20z M2,16c0,1.102,0.896,2,2,2h5v-7H2V16z M4,2C2.896,2,2,2.896,2,4v5h7V2H4z M18,4c0-1.104-0.897-2-2-2h-5v7h7V4z M18,11h-7v7h5c1.103,0,2-0.898,2-2V11z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG BIG GRID VIEW --\x3e\n\n \x3c!-- SVG SMALL GRID VIEW --\x3e\n <svg style="display: none;">\n <symbol id="svg-small-grid-view" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h12c2.209,0,4,1.791,4,4v12C20,18.209,18.209,20,16,20z M12,18v-4H8v4H12z M2,16c0,1.102,0.896,2,2,2h2v-4H2V16z M6,2H4C2.896,2,2,2.896,2,4v2h4V2z M2,8v4h4V8H2z M12,2H8v4h4V2z M8,8v4h4V8H8z M18,4c0-1.103-0.897-2-2-2h-2v4h4V4z M18,8h-4v4h4V8zM18,14h-4v4h2c1.103,0,2-0.898,2-2V14z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG SMALL GRID VIEW --\x3e\n\n \x3c!-- SVG LIST GRID VIEW --\x3e\n <svg style="display: none;">\n <symbol id="svg-list-grid-view" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h12c2.209,0,4,1.791,4,4v12C20,18.209,18.209,20,16,20z M2,16c0,1.102,0.896,2,2,2h2v-4H2V16z M6,2H4C2.896,2,2,2.896,2,4v2h4V2z M2,8v4h4V8H2z M18,4c0-1.103-0.897-2-2-2H8v4h10V4z M18,8H8v4h10V8z M18,14H8v4h8c1.103,0,2-0.898,2-2V14z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG LIST GRID VIEW --\x3e\n\n \x3c!-- SVG PLUS --\x3e\n <svg style="display: none;">\n <symbol id="svg-plus" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M20,11h-9v9H9v-9H0V9h9V0h2v9h9V11z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PLUS --\x3e\n\n \x3c!-- SVG PLUS SMALL --\x3e\n <svg style="display: none;">\n <symbol id="svg-plus-small" viewBox="0 0 8 8" preserveAspectRatio="xMinYMin meet">\n <path d="M8,5H5v3H3V5H0V3h3V0h2v3h3V5z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PLUS SMALL --\x3e\n\n \x3c!-- SVG MINUS SMALL --\x3e\n <svg style="display: none;">\n <symbol id="svg-minus-small" viewBox="0 0 8 8" preserveAspectRatio="xMinYMin meet">\n <rect y="3" width="8" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG MINUS SMALL --\x3e\n\n \x3c!-- SVG POLL --\x3e\n <svg style="display: none;">\n <symbol id="svg-poll" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M12,14H2C0.896,14,0,14.896,0,16v2C0,19.104,0.896,20,2,20h10c1.105,0,2-0.896,2-2v-2C14,14.896,13.105,14,12,14z M12,18H2v-2h10V18z M18,7H2C0.896,7,0,7.896,0,9v2C0,12.104,0.896,13,2,13h16c1.104,0,2-0.896,2-2V9C20,7.896,19.104,7,18,7z M18,11H2V9h16V11z M2,6h4C7.105,6,8,5.104,8,4V2C8,0.896,7.105,0,6,0H2C0.896,0,0,0.896,0,2v2C0,5.104,0.896,6,2,6z M2,2h4v2H2V2z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG POLL --\x3e\n\n \x3c!-- SVG CAMERA --\x3e\n <svg style="display: none;">\n <symbol id="svg-camera" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M13.018,2C13.505,2,13.81,2.018,14,2.041v1.964h2c1.103,0,2,0.896,2,1.999v9.998C18,17.104,17.103,18,16,18H4c-1.103,0-2-0.896-2-1.999V6.003c0-1.102,0.897-1.999,2-1.999h2V2.041C6.19,2.018,6.496,2,6.983,2l0.473,0.002L8,2.005h4l0.544-0.003L13.018,2 M13.018,0C12.692,0,12.352,0.005,12,0.005H8C7.648,0.005,7.308,0,6.983,0C5.267,0,4,0.148,4,2.005c-2.209,0-4,1.791-4,3.999v9.998C0,18.21,1.791,20,4,20h12c2.209,0,4-1.79,4-3.999V6.003c0-2.208-1.791-3.999-4-3.999C16,0.148,14.733,0,13.018,0L13.018,0z"/>\n <path d="M10,10c1.103,0,2,0.896,2,2c0,1.103-0.897,2-2,2c-1.103,0-2-0.897-2-2C8,10.896,8.897,10,10,10 M10,8c-2.209,0-4,1.791-4,4s1.791,4,4,4s4-1.791,4-4S12.209,8,10,8L10,8z"/>\n <path d="M15,6c0.553,0,1,0.448,1,1c0,0.553-0.447,1-1,1s-1-0.447-1-1C14,6.448,14.447,6,15,6z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG CAMERA --\x3e\n\n \x3c!-- SVG GIF --\x3e\n <svg style="display: none;">\n <symbol id="svg-gif" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M3.676,5.098L2.243,3.665C1.025,5.153,0.201,6.975,0,8.995h2.053C2.237,7.534,2.822,6.206,3.676,5.098z M8.995,2.028V0C6.974,0.201,5.152,1.025,3.664,2.243l1.429,1.428\n C6.199,2.807,7.527,2.212,8.995,2.028z M16.336,2.243C14.847,1.025,13.025,0.201,11.006,0v2.028c1.468,0.184,2.795,0.778,3.902,1.643L16.336,2.243z M17.947,8.995H20c-0.201-2.021-1.025-3.842-2.242-5.33l-1.435,1.433C17.179,6.206,17.764,7.534,17.947,8.995z M2.053,11.005H0c0.201,2.021,1.025,3.842,2.243,5.33l1.433-1.434\n C2.822,13.793,2.237,12.466,2.053,11.005z M11.006,17.971V20c2.02-0.2,3.841-1.025,5.33-2.243l-1.428-1.428C13.801,17.193,12.474,17.787,11.006,17.971z M3.664,17.757C5.152,18.975,6.974,19.8,8.995,20v-2.029c-1.468-0.184-2.796-0.777-3.902-1.642L3.664,17.757z M16.323,14.901l1.435,1.434c1.217-1.488,2.041-3.31,2.242-5.33h-2.053C17.764,12.466,17.179,13.793,16.323,14.901z M15.025,11.005v-2.01H10v2.01h2.831c-0.416,1.168-1.521,2.01-2.831,2.01c-1.666,0-3.016-1.35-3.016-3.016c0-1.665,1.35-3.015,3.016-3.015h3.998C13.08,5.771,11.64,4.974,10,4.974c-2.776,0-5.026,2.25-5.026,5.025c0,2.774,2.25,5.025,5.026,5.025C12.432,15.024,14.56,13.298,15.025,11.005z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG GIF --\x3e\n\n \x3c!-- SVG TAGS --\x3e\n <svg style="display: none;">\n <symbol id="svg-tags" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M20,13.001v2h-6L13,20h-2l1-4.999H6L5,20H3l1-4.999H0v-2h4.4L5.6,7H0V5h6l1-5h2L8,5h6l1-5h2l-1,5h4v2h-4.4L14.4,13.001H20z M13.6,7h-6l-1.2,6.001h6L13.6,7z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG TAGS --\x3e\n\n \x3c!-- SVG QUOTE --\x3e\n <svg style="display: none;">\n <symbol id="svg-quote" viewBox="0 0 32 22" preserveAspectRatio="xMinYMin meet">\n <path d="M12.998,5l-1-5C3.897,0.622,0,4.275,0,12.904V22h10.998V11H6.997C6.597,7.035,8.106,5.854,12.998,5z M32,5l-1.001-5c-8.1,0.622-11.998,4.275-11.998,12.904V22h10.998V11h-4C25.599,7.035,27.107,5.854,32,5z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG QUOTE --\x3e\n\n \x3c!-- SVG PIN --\x3e\n <svg style="display: none;">\n <symbol id="svg-pin" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,2c3.309,0,6,2.773,6,6.182c0,4.78-4.517,9.104-5.994,9.768C8.557,17.272,4,12.836,4,8.182C4,4.773,6.691,2,10,2 M10,0C5.581,0,2,3.663,2,8.182C2,14.291,8.192,20,10,20c1.807,0,8-5.596,8-11.818C18,3.663,14.418,0,10,0L10,0z"/>\n <path d="M10,6c1.103,0,2,0.897,2,2c0,1.103-0.897,2-2,2c-1.103,0-2-0.897-2-2C8,6.897,8.897,6,10,6 M10,4C7.791,4,6,5.791,6,8s1.791,4,4,4s4-1.791,4-4S12.209,4,10,4L10,4z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG PIN --\x3e\n\n \x3c!-- SVG TICKET --\x3e\n <svg style="display: none;">\n <symbol id="svg-ticket" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M15,2v16h-1.537c-0.692-1.194-1.985-2-3.463-2s-2.771,0.806-3.463,2H5V2h1.537C7.229,3.195,8.522,4,10,4s2.771-0.805,3.463-2H15 M17,0h-5c0,1.104-0.896,2-2,2S8,1.104,8,0H3v20h5c0-1.104,0.896-2,2-2s2,0.896,2,2h5V0L17,0z"/>\n <rect x="7" y="7" width="6" height="2"/>\n <rect x="7" y="11" width="4" height="2"/>\n </symbol>\n </svg>\n \x3c!-- /SVG TICKET --\x3e\n\n \x3c!-- SVG EVENTS MONTHLY --\x3e\n <svg style="display: none;">\n <symbol id="svg-events-monthly" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20H4c-2.209,0-4-1.791-4-4.001V6c0-2.209,1.791-4,4-4h1V0h2v2h6V0h2v2h1c2.209,0,4,1.791,4,4v9.999C20,18.209,18.209,20,16,20z M18,6c0-1.103-0.897-2-2-2h-1v2h-2V4H7v2H5V4H4C2.896,4,2,4.897,2,6v9.999C2,17.103,2.896,18,4,18h12c1.103,0,2-0.897,2-2.001V6z M13,13.001h2v2h-2V13.001z M13,9.001h2v2h-2V9.001z M9,13.001h2v2H9V13.001z M9,9.001h2v2H9V9.001z M5,13.001h2v2H5V13.001z M5,9.001h2v2H5V9.001z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG EVENTS MONTHLY --\x3e\n\n \x3c!-- SVG EVENTS WEEKLY --\x3e\n <svg style="display: none;">\n <symbol id="svg-events-weekly" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20H4c-2.209,0-4-1.791-4-4.001V6c0-2.209,1.791-4,4-4h1V0h2v2h6V0h2v2h1c2.209,0,4,1.791,4,4v9.999C20,18.209,18.209,20,16,20z M18,6c0-1.103-0.897-2-2-2h-1v2h-2V4H7v2H5V4H4C2.896,4,2,4.897,2,6v9.999C2,17.103,2.896,18,4,18h12c1.103,0,2-0.897,2-2.001V6z M5,13.001h10v2H5V13.001z M5,9.001h10v2H5V9.001z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG EVENTS WEEKLY --\x3e\n\n \x3c!-- SVG EVENTS DAILY --\x3e\n <svg style="display: none;">\n <symbol id="svg-events-daily" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20H4c-2.209,0-4-1.791-4-4.001V6c0-2.209,1.791-4,4-4h1V0h2v2h6V0h2v2h1c2.209,0,4,1.791,4,4v9.999C20,18.209,18.209,20,16,20z M18,6c0-1.103-0.897-2-2-2h-1v2h-2V4H7v2H5V4H4C2.896,4,2,4.897,2,6v9.999C2,17.103,2.896,18,4,18h12c1.103,0,2-0.897,2-2.001V6z M7,15.001H5v-2v-2v-2h2h6h2v2v2v2h-2H7zM13,11.001H7v2h6V11.001z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG EVENTS DAILY --\x3e\n\n \x3c!-- SVG INFO --\x3e\n <svg style="display: none;">\n <symbol id="svg-info" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M9,15h2V9H9V15z M9,7h2V5H9V7z M16-0.001H4c-2.209,0-4,1.791-4,4v12c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4v-12C20,1.79,18.209-0.001,16-0.001z M18,15.999C18,17.102,17.103,18,16,18H4c-1.103,0-2-0.898-2-2.001v-12c0-1.103,0.897-2,2-2h12c1.103,0,2,0.897,2,2V15.999z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG INFO --\x3e\n\n \x3c!-- SVG CHECK --\x3e\n <svg style="display: none;">\n <symbol id="svg-check" viewBox="0 0 12 9" preserveAspectRatio="xMinYMin meet">\n <path d="M12,1.5L4.5,9L3,7.499l0,0L0,4.5L1.5,3l3,3l6-6L12,1.5z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG CHECK --\x3e\n\n \x3c!-- SVG TROPHY --\x3e\n <svg style="display: none;">\n <symbol id="svg-trophy" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M19.968,4.031C19.941,5.666,19.579,11,15.99,11h-0.125c-0.426,2.357-2.111,2.999-5.858,2.999c-3.748,0-5.434-0.642-5.859-2.999H4.009c-3.588,0-3.951-5.333-3.977-6.969L0,2h2.028h1.98h0.015V0H15.99v2l0,0h1.981H20L19.968,4.031z M4.009,3.999L1.994,4c0,0,0.112,4.999,2.015,4.999V3.999z M13.993,2H6.02v7.6c0,2.385,0.741,2.399,3.987,2.399c3.245,0,3.986-0.014,3.986-2.399V2z M17.972,3.999H15.99v5C17.893,8.999,18.006,4,18.006,4L17.972,3.999z M11.005,15.999H13c2.206,0,3.993,1.789,3.993,4h-1.989h-0.006c0-1.104-0.896-2.001-1.998-2.001h-1.995H9.009H7.013c-1.102,0-1.996,0.896-1.996,2.001H4.996H3.02c0-2.211,1.788-4,3.993-4h1.996v-2.001h0.998h0.998V15.999z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG TROPHY --\x3e\n\n \x3c!-- SVG CLOCK --\x3e\n <svg style="display: none;">\n <symbol id="svg-clock" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M10,0C4.486,0,0,4.485,0,9.999c0,5.515,4.486,10,10,10c5.514,0,10-4.485,10-10C20,4.485,15.514,0,10,0zM10,17.999c-4.414,0-8.005-3.589-8.005-8S5.586,2,10,2c4.414,0,8.005,3.588,8.005,7.999S14.414,17.999,10,17.999z M14.437,12.105l-3.44-1.724V4.999C10.997,4.447,10.551,4,10,4S9.002,4.447,9.002,4.999V11c0,0.379,0.213,0.725,0.551,0.894l3.99,2C13.687,13.966,13.838,14,13.988,14c0.367,0,0.719-0.203,0.894-0.554C15.128,12.953,14.929,12.352,14.437,12.105z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG CLOCK --\x3e\n\n \x3c!-- SVG RETURN --\x3e\n <svg style="display: none;">\n <symbol id="svg-return" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M19.12,13.852c-1.047,2.187-2.896,3.834-5.203,4.638C12.922,18.835,11.905,19,10.906,19c-3.751,0-7.273-2.313-8.59-6.006c-0.186-0.52,0.086-1.092,0.606-1.277c0.52-0.189,1.092,0.085,1.277,0.605c1.301,3.646,5.367,5.563,9.06,4.278c1.801-0.627,3.241-1.909,4.057-3.614c0.802-1.675,0.9-3.56,0.277-5.308c-1.3-3.644-5.363-5.562-9.06-4.278C7.541,3.746,6.623,4.316,5.877,5.052l-2.33,2.163h2.852c0.553,0,1,0.448,1,1c0,0.552-0.447,1-1,1H1c-0.007,0-0.013-0.004-0.019-0.004C0.901,9.21,0.826,9.185,0.749,9.164C0.699,9.151,0.646,9.149,0.601,9.13C0.555,9.109,0.518,9.071,0.474,9.044c-0.066-0.043-0.137-0.08-0.191-0.138C0.277,8.901,0.271,8.9,0.267,8.896C0.231,8.857,0.218,8.811,0.189,8.769C0.147,8.707,0.101,8.649,0.073,8.579C0.045,8.507,0.039,8.432,0.028,8.355C0.021,8.307,0,8.264,0,8.214V2.882c0-0.552,0.447-1,1-1c0.552,0,1,0.448,1,1v3.041l2.495-2.315c0.935-0.922,2.111-1.653,3.382-2.096c4.728-1.646,9.933,0.819,11.6,5.495C20.281,9.261,20.154,11.69,19.12,13.852z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG RETURN --\x3e\n\n \x3c!-- SVG DRIBBBLE --\x3e\n <svg style="display: none;">\n <symbol id="svg-dribbble" viewBox="0 0 12 12" preserveAspectRatio="xMinYMin meet">\n <path d="M6,11.999c-3.313,0-6-2.687-6-6c0-3.313,2.687-6,6-6s6,2.686,6,6C12,9.313,9.313,11.999,6,11.999z M7.434,4.992C7.585,5.295,7.728,5.599,7.86,5.896c0.814-0.135,1.696-0.139,2.634,0.046c-0.01-0.874-0.272-1.686-0.713-2.373C9.062,4.167,8.257,4.632,7.434,4.992z M9.104,9.244c0.599-0.573,1.036-1.31,1.247-2.138c-0.484-0.085-1.184-0.15-2.008-0.054C8.681,7.915,8.935,8.684,9.104,9.244z M5.994,10.495c0.708,0,1.375-0.167,1.972-0.459C7.812,9.095,7.532,8.167,7.188,7.285C6.014,7.624,4.701,8.333,3.44,9.7C4.166,10.2,5.045,10.495,5.994,10.495z M2.556,8.897c0.8-0.837,2.245-2.097,4.159-2.722C6.593,5.913,6.466,5.659,6.337,5.409C4.395,6.05,2.505,6.189,1.501,6.212C1.551,7.233,1.938,8.165,2.556,8.897z M1.593,5.048c1.733-0.13,3.096-0.387,4.16-0.7c-0.613-1.05-1.216-1.906-1.624-2.45C2.851,2.481,1.894,3.642,1.593,5.048z M5.994,1.49c-0.258,0-0.509,0.027-0.754,0.068C5.864,2.29,6.409,3.113,6.885,3.955c1.091-0.447,1.737-0.937,2.108-1.311C8.197,1.929,7.148,1.49,5.994,1.49z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG DRIBBBLE --\x3e\n\n \x3c!-- SVG ITEM --\x3e\n <svg style="display: none;">\n <symbol id="svg-item" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M19,5h-1.952C17.209,4,17.3,3.943,17.3,3.5c0-1.792-1.458-3.375-3.25-3.375c-2.035,0-3.296,1.306-4.049,2.653C9.248,1.431,7.985,0.031,5.95,0.031c-1.792,0-3.25,1.692-3.25,3.484C2.7,3.958,2.791,4,2.952,5H1C0.448,5,0,4.948,0,5.5V10c0,0.552,0.448,1,1,1h1v5c0,2.209,1.791,4,4,4h3h2h3c2.209,0,4-1.791,4-4v-5h1c0.553,0,1-0.448,1-1V5.5C20,4.948,19.553,5,19,5z M14.05,2.25c0.689,0,1.25,0.686,1.25,1.375S14.739,5,14.05,5h-2.693C11.788,3,12.626,2.25,14.05,2.25zM5.95,2.375C7.375,2.375,8.212,3,8.644,5H5.95C5.261,5,4.7,4.189,4.7,3.5S5.261,2.375,5.95,2.375z M9,18H6c-1.103,0-2-0.897-2-2v-5h5V18z M16,16c0,1.103-0.897,2-2,2h-3v-7h5V16z M18,9h-4h-3H9H5H2V7h3h0.95H9h2h3h0.05H18V9z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG ITEM --\x3e\n\n \x3c!-- SVG WALLET --\x3e\n <svg style="display: none;">\n <symbol id="svg-wallet" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M20,9h-2V8c0-1.999-1.471-3.641-3.387-3.938l-0.395-1.548C13.832,0.999,12.527,0,11.104,0c-0.276,0-0.557,0.038-0.836,0.116l-7.79,2.194C1.155,2.684,0.2,3.72,0.033,5H0v3v1v7c0,2.209,1.791,4,4,4h10c2.209,0,4-1.791,4-4v-1h2V9z M10.81,2.042C10.908,2.014,11.006,2,11.104,2c0.543,0,1.025,0.415,1.178,1.008L12.534,4H4C3.924,4,3.853,4.018,3.778,4.022L10.81,2.042z M16,16c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2V9V8c0-1.103,0.897-2,2-2h10c1.103,0,2,0.897,2,2v1h-1c-1.657,0-3,1.344-3,3s1.343,3,3,3h1V16z M18,13h-3c-0.552,0-1-0.448-1-1s0.448-1,1-1h3V13z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG WALLET --\x3e\n\n \x3c!-- SVG EARNINGS --\x3e\n <svg style="display: none;">\n <symbol id="svg-earnings" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,20h-1v-2h1c1.103,0,2-0.897,2-2v-1h2v1C20,18.209,18.209,20,16,20z M18,11h2v2h-2V11z M18,7h2v2h-2V7z M18,4c0-1.103-0.897-2-2-2h-1V0h1c2.209,0,4,1.791,4,4v1h-2V4zM8.75,9h2.5C12.767,9,14,10.346,14,12s-1.233,3-2.75,3H11v1H9v-1H7c-0.553,0-1-0.447-1-1s0.447-1,1-1h2h2h0.25c0.406,0,0.75-0.458,0.75-1s-0.344-1-0.75-1h-2.5C7.233,11,6,9.654,6,8s1.233-3,2.75-3H9V4h2v1h1.5c0.553,0,1,0.448,1,1s-0.447,1-1,1H11H9H8.75C8.344,7,8,7.458,8,8S8.344,9,8.75,9z M11,0h2v2h-2V0z M7,0h2v2H7V0z M0,16v-1h2v1c0,1.103,0.896,2,2,2h1v2H4C1.791,20,0,18.209,0,16z M2,4v1H0V4c0-2.209,1.791-4,4-4h1v2H4C2.896,2,2,2.897,2,4z M2,7v2H0V7H2z M2,13H0v-2h2V13z M9,20H7v-2h2V20z M13,20h-2v-2h2V20z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG EARNINGS --\x3e\n\n \x3c!-- SVG REVENUE --\x3e\n <svg style="display: none;">\n <symbol id="svg-revenue" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M16,0H4C1.791,0,0,1.791,0,4v12c0,2.209,1.791,4,4,4h12c2.209,0,4-1.791,4-4V4C20,1.791,18.209,0,16,0zM18,16c0,1.103-0.897,2-2,2H4c-1.103,0-2-0.897-2-2V4c0-1.103,0.897-2,2-2h12c1.103,0,2,0.897,2,2V16z"/>\n <path d="M11.25,9h-2.5C8.344,9,8,8.542,8,8s0.344-1,0.75-1h3.75c0.553,0,1-0.448,1-1s-0.447-1-1-1H11V4H9v1H8.75C7.233,5,6,6.346,6,8s1.233,3,2.75,3h2.5c0.406,0,0.75,0.458,0.75,1s-0.344,1-0.75,1H7c-0.553,0-1,0.447-1,1s0.447,1,1,1h2v1h2v-1h0.25c1.517,0,2.75-1.346,2.75-3S12.767,9,11.25,9z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG REVENUE --\x3e\n\n \x3c!-- SVG LOGIN --\x3e\n <svg style="display: none;">\n <symbol id="svg-login" viewBox="0 0 20 20" preserveAspectRatio="xMinYMin meet">\n <path d="M13,2.523v2.176c2.358,1.126,4,3.513,4,6.301c0,3.866-3.134,7-7,7s-7-3.134-7-7c0-2.788,1.642-5.175,4-6.301V2.523C3.507,3.76,1,7.083,1,11c0,4.971,4.029,9,9,9s9-4.029,9-9\n C19,7.083,16.493,3.76,13,2.523z M11,0H9v10h2V0z"/>\n </symbol>\n </svg>\n \x3c!-- /SVG LOGIN --\x3e\n', document.body.appendChild(i)
}, {}],
74: [function(e, t, n) {
"use strict";
var h = e("../utils/core");
h.querySelector(".tweet-feed", function(s) {
function l(e) {
var t = document.createElement("div"),
n = document.createElement("a"),
i = document.createElement("figure"),
r = document.createElement("img"),
a = document.createElement("p"),
o = document.createElement("p"),
s = document.createElement("a"),
l = document.createElement("p");
t.classList.add("tweet"), n.classList.add("tweet-author"), i.classList.add("tweet-author-image", "picture", "tiny", "circle", "liquid"), a.classList.add("tweet-author-title"), o.classList.add("tweet-author-text"), s.classList.add("tweet-text"), l.classList.add("tweet-timestamp"), i.appendChild(r), n.appendChild(i), n.appendChild(a), n.appendChild(o), t.appendChild(n), t.appendChild(s), t.appendChild(l);
var c = "https://twitter.com/".concat(e.user.screen_name),
d = e.entities.urls.length ? e.entities.urls[0].url : c,
u = h.dateDiff(new Date(e.created_at));
return n.setAttribute("href", c), n.setAttribute("target", "_blank"), r.setAttribute("src", e.user.profile_image_url_https), a.innerHTML = e.user.name, o.innerHTML = "@".concat(e.user.screen_name), s.setAttribute("href", d), s.setAttribute("target", "_blank"), s.innerHTML = function(e) { return e.replace(/(@\w+)\s/gim, '<span class="highlighted">$1</span> ') }(function(e) { return e.replace(/(#\w+)\s/gim, '<span class="highlighted">$1</span> ') }(e.text)), l.innerHTML = "".concat(u.value, " ").concat(u.unit, " ago"), h.liquidifyStatic(i, r), t
}
function c(e) {
var t = document.createElement("div");
t.classList.add("tweets");
var n = !0,
i = !1,
r = void 0;
try {
for (var a, o = e[Symbol.iterator](); !(n = (a = o.next()).done); n = !0) {
var s = a.value;
t.appendChild(l(s))
}
} catch (e) { i = !0, r = e } finally { try { n || null == o.return || o.return() } finally { if (i) throw r } }
return t
}
h.query({ url: "includes/getTweets.php?screen_name=odindesign_tw&count=3" }).then(function(e) {
var t = JSON.parse(e),
n = !0,
i = !1,
r = void 0;
try { for (var a, o = s[Symbol.iterator](); !(n = (a = o.next()).done); n = !0) { a.value.appendChild(c(t)) } } catch (e) { i = !0, r = e } finally { try { n || null == o.return || o.return() } finally { if (i) throw r } }
}).catch(function(e) { console.log(e) })
})
}, { "../utils/core": 69 }]
}, {}, [48]);
| 85.9371 | 61,445 | 0.464959 |
b73cc3807953ee92e3d039acdcc27501bb869267 | 692 | js | JavaScript | src/version/git.js | janro1/conventional-changelog-action | 336f2b059e8f36f2928ff9b4da157c27475ea7c8 | [
"MIT"
] | null | null | null | src/version/git.js | janro1/conventional-changelog-action | 336f2b059e8f36f2928ff9b4da157c27475ea7c8 | [
"MIT"
] | null | null | null | src/version/git.js | janro1/conventional-changelog-action | 336f2b059e8f36f2928ff9b4da157c27475ea7c8 | [
"MIT"
] | null | null | null | const core = require('@actions/core')
const gitSemverTags = require('git-semver-tags')
const BaseVersioning = require('./base')
const bumpVersion = require('../helpers/bumpVersion')
module.exports = new (class Git extends BaseVersioning {
bump = (releaseType) => {
return new Promise((resolve) => {
const tagPrefix = core.getInput('tag-prefix')
gitSemverTags({
tagPrefix,
}, (err, tags) => {
const currentVersion = tags.shift().replace(tagPrefix, '')
// Get the new version
this.newVersion = bumpVersion(
releaseType,
currentVersion,
)
// We are done
resolve()
})
})
}
})
| 21.625 | 66 | 0.59104 |
b73d175dbe7626e4c55a736bfe9b79190f93bda9 | 3,895 | js | JavaScript | unpackage/dist/build/mp-alipay/pages/daily/main.js | xuchunl/xiajia-uni-web | d9320d0321fdbb066c8142e718774f93aaf841db | [
"Apache-2.0"
] | null | null | null | unpackage/dist/build/mp-alipay/pages/daily/main.js | xuchunl/xiajia-uni-web | d9320d0321fdbb066c8142e718774f93aaf841db | [
"Apache-2.0"
] | null | null | null | unpackage/dist/build/mp-alipay/pages/daily/main.js | xuchunl/xiajia-uni-web | d9320d0321fdbb066c8142e718774f93aaf841db | [
"Apache-2.0"
] | null | null | null | (my["webpackJsonp"]=my["webpackJsonp"]||[]).push([["pages/daily/main"],{"4ea7":function(t,e,i){"use strict";var r=i("e7a0"),n=i.n(r);n.a},"7c53":function(t,e,i){"use strict";i("209c");var r=a(i("c8ed")),n=a(i("3a53"));function a(t){return t&&t.__esModule?t:{default:t}}r.default.mpType="page";var s=new n.default(r.default);s.$mount()},af32:function(t,e,i){"use strict";var r=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"container",attrs:{_hid:0}},[i("swiper",{attrs:{"indicator-dots":!0,autoplay:!0,circular:!0,_hid:1,_batrs:"indicator-dots,autoplay,circular"}},t._l(t.top_stories,function(e,r,n){var a=void 0!==n?n:r;return i("block",{key:e.id,attrs:{_hid:2,_fid:a,_fk:"id"}},[i("swiper-item",{attrs:{_hid:3,_fid:a},on:{tap:function(i){t.toDtl(e.id)}}},[i("image",{staticClass:"slide-image",attrs:{src:e.image,mode:"center",_hid:4,_fid:a,_batrs:"src"}}),i("div",{staticClass:"item-title",attrs:{_hid:5,_fid:a}},[t._v(t._s(e.title),6,a)]),i("div",{staticClass:"layer",attrs:{_hid:7,_fid:a}})])],1)},2,t._self)),i("ul",{staticClass:"list",attrs:{_hid:8}},t._l(t.all_stories,function(e,r,n){var a=void 0!==n?n:r;return i("li",{key:e.id,attrs:{_hid:9,_fid:a,_fk:"id"},on:{tap:function(i){t.toDtl(e.id)}}},[i("img",{attrs:{src:e.image,alt:"cover",_hid:10,_fid:a,_batrs:"src"}}),i("div",{staticClass:"desc",attrs:{_hid:11,_fid:a}},[i("div",{staticClass:"title",attrs:{_hid:12,_fid:a}},[t._v(t._s(e.title),13,a)])]),i("div",{staticClass:"play",attrs:{_hid:14,_fid:a}},[i("img",{attrs:{src:"/static/assert/arrow-right.png",alt:"play",_hid:15,_fid:a}})])])},9,t._self))],1)},n=[];i.d(e,"a",function(){return r}),i.d(e,"b",function(){return n})},c8ed:function(t,e,i){"use strict";i.r(e);var r=i("af32"),n=i("ea10");for(var a in n)"default"!==a&&function(t){i.d(e,t,function(){return n[t]})}(a);i("4ea7");var s=i("2877"),o=Object(s["a"])(n["default"],r["a"],r["b"],!1,null,"409e2872",null);o.options.__file="main.vue",e["default"]=o.exports},e7a0:function(t,e,i){},ea10:function(t,e,i){"use strict";i.r(e);var r=i("f202"),n=i.n(r);for(var a in r)"default"!==a&&function(t){i.d(e,t,function(){return r[t]})}(a);e["default"]=n.a},f202:function(t,e,i){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var r=a(i("a34a")),n=a(i("7f5d"));function a(t){return t&&t.__esModule?t:{default:t}}function s(t,e,i,r,n,a,s){try{var o=t[a](s),u=o.value}catch(c){return void i(c)}o.done?e(u):Promise.resolve(u).then(r,n)}function o(t){return function(){var e=this,i=arguments;return new Promise(function(r,n){var a=t.apply(e,i);function o(t){s(a,r,n,o,u,"next",t)}function u(t){s(a,r,n,o,u,"throw",t)}o(void 0)})}}function u(t){for(var e=1;e<arguments.length;e++){var i=null!=arguments[e]?arguments[e]:{},r=Object.keys(i);"function"===typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(i).filter(function(t){return Object.getOwnPropertyDescriptor(i,t).enumerable}))),r.forEach(function(e){c(t,e,i[e])})}return t}function c(t,e,i){return e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}var l={data:function(){return{top_stories:[],stories:[],innerAudioContext:""}},mounted:function(){this.getDailyList()},computed:{all_stories:function(){return this.stories.map(function(t){return u({},t,{image:t.images[0]})})}},methods:{getDailyList:function(){var t=o(r.default.mark(function t(){var e;return r.default.wrap(function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,n.default.getZhList();case 2:e=t.sent,console.log(e.top_stories),this.top_stories=e.top_stories,this.stories=e.stories;case 6:case"end":return t.stop()}},t,this)}));function e(){return t.apply(this,arguments)}return e}(),toDtl:function(e){t.navigateTo({url:"/pages/daily/detail/main?id="+e})}}};e.default=l}).call(this,i("c11b")["default"])}},[["7c53","common/runtime","common/vendor"]]]); | 3,895 | 3,895 | 0.673171 |
b73d521d1671bce7f41049ac3ad289ca67879250 | 5,782 | js | JavaScript | src/js/utils.js | hope55/shepherd | cf2e4b23c1646d0b8d848955eac3895f39a98f80 | [
"MIT"
] | null | null | null | src/js/utils.js | hope55/shepherd | cf2e4b23c1646d0b8d848955eac3895f39a98f80 | [
"MIT"
] | null | null | null | src/js/utils.js | hope55/shepherd | cf2e4b23c1646d0b8d848955eac3895f39a98f80 | [
"MIT"
] | null | null | null | import isObjectLike from 'lodash-es/isObjectLike';
import isString from 'lodash-es/isString';
import isUndefined from 'lodash-es/isUndefined';
import zipObject from 'lodash-es/zipObject';
import tippy from 'tippy.js';
import { missingTippy } from './utils/error-messages';
// popperOption modifier, to add shepherd-popper class to both default and centeredStyle poppers
const addShepherdClass = {
enabled: true,
fn: (data) => {
data.instance.popper.classList.add('shepherd-popper');
return data;
}
};
const centeredStylePopperModifier = {
computeStyle: {
enabled: true,
fn(data) {
data.styles = Object.assign({}, data.styles, {
left: '50%',
top: '50%',
transform: 'translate(-50%, -50%)'
});
return data;
}
},
addShepherdClass
};
// Used to compose settings for tippyOptions.popperOptions (https://atomiks.github.io/tippyjs/#popper-options-option)
const defaultPopperOptions = {
positionFixed: true,
modifiers: {
addShepherdClass
}
};
/**
* TODO rewrite the way items are being added to use more performant documentFragment code
* @param html
* @return {HTMLElement} The element created from the passed HTML string
*/
export function createFromHTML(html) {
const el = document.createElement('div');
el.innerHTML = html;
return el.children[0];
}
/**
* Parse the position object or string to return the attachment and element to attach to
* @param {Object|String} position Either a string or object denoting the selector and position for attachment
* @return {Object} The object with `element` and `on` for the step
* @private
*/
export function _parseAttachToOpts(opts) {
if (isObjectLike(opts)) {
if (opts.hasOwnProperty('element') && opts.hasOwnProperty('on')) {
return opts;
}
return null;
}
const positionRe = /^(.+) ((auto|top|left|right|bottom)(-start|-end)?)$/;
const matches = positionRe.exec(opts);
if (!matches) {
return null;
}
return {
element: matches[1],
on: matches[2]
};
}
/**
* @param obj
* @param {Array} props
* @return {*}
*/
export function parseShorthand(obj, props) {
if (obj === null || isUndefined(obj)) {
return obj;
} else if (isObjectLike(obj)) {
return obj;
}
const values = obj.split(' ');
return zipObject(props, values);
}
/**
* Determines options for the tooltip and initializes
* `this.tooltip` as a Tippy.js instance.
*/
export function setupTooltip() {
if (isUndefined(tippy)) {
throw new Error(missingTippy);
}
if (this.tooltip) {
this.tooltip.destroy();
}
const attachToOpts = this.parseAttachTo();
this.tooltip = _makeTippyInstance.call(this, attachToOpts);
this.target = attachToOpts.element || document.body;
this.el.classList.add('shepherd-element');
}
/**
* Passes `options.attachTo` to `_parseAttachToOpts` to get the correct `attachTo` format
* @returns {({} & {element, on}) | ({})}
* `element` is a qualified HTML Element
* `on` is a string position value
*/
export function parseAttachTo() {
const options = _parseAttachToOpts(this.options.attachTo) || {};
const returnOpts = Object.assign({}, options);
if (isString(options.element)) {
// Can't override the element in user opts reference because we can't
// guarantee that the element will exist in the future.
try {
returnOpts.element = document.querySelector(options.element);
} catch (e) {
// TODO
}
if (!returnOpts.element) {
console.error(`The element for this Shepherd step was not found ${options.element}`);
}
}
return returnOpts;
}
/**
* Generates a `Tippy` instance from a set of base `attachTo` options
*
* @return {tippy} The final tippy instance
* @private
*/
function _makeTippyInstance(attachToOptions) {
if (!attachToOptions.element) {
return _makeCenteredTippy.call(this);
}
const tippyOptions = _makeAttachedTippyOptions.call(this, attachToOptions);
return tippy(attachToOptions.element, tippyOptions);
}
/**
* Generates the hash of options that will be passed to `Tippy` instances
* target an element in the DOM.
*
* @param {Object} attachToOptions The local `attachTo` options
* @return {Object} The final tippy options object
* @private
*/
function _makeAttachedTippyOptions(attachToOptions) {
const resultingTippyOptions = {
content: this.el,
flipOnUpdate: true,
placement: attachToOptions.on || 'right'
};
Object.assign(resultingTippyOptions, this.options.tippyOptions);
if (this.options.title) {
const existingTheme = resultingTippyOptions.theme;
resultingTippyOptions.theme = existingTheme ? `${existingTheme} shepherd-has-title` : 'shepherd-has-title';
}
if (this.options.tippyOptions && this.options.tippyOptions.popperOptions) {
Object.assign(defaultPopperOptions, this.options.tippyOptions.popperOptions);
}
resultingTippyOptions.popperOptions = defaultPopperOptions;
return resultingTippyOptions;
}
/**
* Generates a `Tippy` instance for a tooltip that doesn't have a
* target element in the DOM -- and thus is positioned in the center
* of the view
*
* @return {tippy} The final tippy instance
* @private
*/
function _makeCenteredTippy() {
const tippyOptions = {
content: this.el,
placement: 'top',
...this.options.tippyOptions
};
tippyOptions.arrow = false;
tippyOptions.popperOptions = tippyOptions.popperOptions || {};
const finalPopperOptions = Object.assign(
{},
defaultPopperOptions,
tippyOptions.popperOptions,
{
modifiers: Object.assign(
centeredStylePopperModifier,
tippyOptions.popperOptions.modifiers
)
}
);
tippyOptions.popperOptions = finalPopperOptions;
return tippy(document.body, tippyOptions);
}
| 25.8125 | 117 | 0.692321 |
b73d9caec3aa94135d9c098aedad359269923f47 | 176 | js | JavaScript | packages/components/src/Flex/index.js | fabiankaegy/g2 | 0c270d09ce1a873efdd5b21719e730b3bb4bed51 | [
"MIT"
] | null | null | null | packages/components/src/Flex/index.js | fabiankaegy/g2 | 0c270d09ce1a873efdd5b21719e730b3bb4bed51 | [
"MIT"
] | null | null | null | packages/components/src/Flex/index.js | fabiankaegy/g2 | 0c270d09ce1a873efdd5b21719e730b3bb4bed51 | [
"MIT"
] | null | null | null | export { default as Flex } from './Flex';
export { default as FlexBlock } from './FlexBlock';
export { default as FlexItem } from './FlexItem';
export * from './Flex.Context';
| 35.2 | 51 | 0.681818 |
b73dfc0fcc20d12128b4d3e3d3869353120b78fd | 1,397 | js | JavaScript | js/resumeBuilder.js | chacha1337/test-web | 39418bc67b185b7280cc23323cd9ad75fe541264 | [
"Apache-2.0"
] | null | null | null | js/resumeBuilder.js | chacha1337/test-web | 39418bc67b185b7280cc23323cd9ad75fe541264 | [
"Apache-2.0"
] | null | null | null | js/resumeBuilder.js | chacha1337/test-web | 39418bc67b185b7280cc23323cd9ad75fe541264 | [
"Apache-2.0"
] | null | null | null | var myName = "Anton Thebestovich.";
var myRole = "Java and Javascript developer.";
var formattedName = HTMLheaderName.replace("%data%", myName);
var formattedRole = HTMLheaderRole.replace("%data%", myRole);
var s = "audacity";
var array = [1, 2, 3, 4, 5];
var tmpValue;
var diffFunc = function(s){
return s.replace("aud", "Ud");
};
var incrementFunction = function(array){
array[array.length - 1] = ++array[array.length - 1];
return array;
};
var getSomeObjectFromArray = function(array){
return array.slice(1, 2);
};
var experimentWithArrayCopying = function(array){
var newArray = array;
newArray[newArray.length - 1] = 2222222;
return array;
};
var freedomCopyOfArray = function(array){
var absoutelyIndependedArray = array.slice(0);
array[array.length - 1] = 2;
return absoutelyIndependedArray;
};
var modifyingArrayWithPopMethod = function(array){
tmpValue = array.pop();
return array;
};
var modifyingArrayWithPushMethod = function(array){
array.push(tmpValue);
return array;
};
console.log(incrementFunction(array));
console.log(getSomeObjectFromArray(array));
console.log(experimentWithArrayCopying(array));
console.log(freedomCopyOfArray(array));
console.log(array);
console.log(modifyingArrayWithPopMethod(array));
console.log(tmpValue);
console.log(modifyingArrayWithPushMethod(array));
$("#header").prepend(formattedRole);
$("#header").prepend(formattedName); | 24.508772 | 61 | 0.743021 |
b73e1a42cb4178e4e5384c41adbf53302c069543 | 95 | js | JavaScript | test/issues/issue-beta-356.js | LinusU/t1-runtime | dd434be5499ed04709d78a0eba497f908e2cc235 | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | null | null | null | test/issues/issue-beta-356.js | LinusU/t1-runtime | dd434be5499ed04709d78a0eba497f908e2cc235 | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | null | null | null | test/issues/issue-beta-356.js | LinusU/t1-runtime | dd434be5499ed04709d78a0eba497f908e2cc235 | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | null | null | null | var tap = require('../tap');
tap.count(1);
process.nextTick(function () {
tap.ok(true);
});
| 11.875 | 30 | 0.6 |
b73e4ac104847752eb83642d7688e3c032a6e4da | 471 | js | JavaScript | data/js/70/b3/d5/b2/00/00.36.js | p-g-krish/deepmac-tracker | 44d625a6b1ec30bf52f8d12a44b0afc594eb5f94 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | data/js/70/b3/d5/b2/00/00.36.js | p-g-krish/deepmac-tracker | 44d625a6b1ec30bf52f8d12a44b0afc594eb5f94 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | data/js/70/b3/d5/b2/00/00.36.js | p-g-krish/deepmac-tracker | 44d625a6b1ec30bf52f8d12a44b0afc594eb5f94 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | deepmacDetailCallback("70b3d5b20000/36",[{"d":"2019-02-21","t":"add","s":"ieee-oui36.csv","a":"#302 IS BIZTower, Seonyuro 49 gil 23, Yeongdeungpo-gu, Seoul, Korea Seoul Yeongdeungpo-gu KR 302","c":"KR","o":"ICT BUSINESS GROUP of Humanrights Center for disabled people"},{"d":"2019-02-23","t":"change","s":"ieee-oui36.csv","a":"#A1101-6,70 Gyeongin-ro 71-gil, Seoul Yeongdeungpo-gu KR 07286","c":"KR","o":"ICT BUSINESS GROUP of Humanrights Center for disabled people"}]);
| 235.5 | 470 | 0.698514 |
b73e80396985de99bb18d151ee942fb6441c21ea | 339 | js | JavaScript | node_modules/@restart/hooks/useMounted.js | atinchauhan/UVshare | 78d0ffb721d749ccec159d12dbe137c035cc0223 | [
"MIT"
] | null | null | null | node_modules/@restart/hooks/useMounted.js | atinchauhan/UVshare | 78d0ffb721d749ccec159d12dbe137c035cc0223 | [
"MIT"
] | null | null | null | node_modules/@restart/hooks/useMounted.js | atinchauhan/UVshare | 78d0ffb721d749ccec159d12dbe137c035cc0223 | [
"MIT"
] | null | null | null | "use strict";
exports.__esModule = true;
exports.default = useMounted;
var _react = require("react");
function useMounted() {
var mounted = (0, _react.useRef)(true);
(0, _react.useEffect)(function () {
return function () {
mounted.current = false;
};
}, []);
return function () {
return mounted.current;
};
} | 18.833333 | 41 | 0.622419 |
b73f4d6581b9dcb048789add9fb7437763fd7177 | 35,526 | js | JavaScript | build/static/js/6.39512dd7.chunk.js | alexidr9116/remote-car-controll | 508dea8e84721ec5b93195c342ce1ff190dc528b | [
"MIT"
] | null | null | null | build/static/js/6.39512dd7.chunk.js | alexidr9116/remote-car-controll | 508dea8e84721ec5b93195c342ce1ff190dc528b | [
"MIT"
] | null | null | null | build/static/js/6.39512dd7.chunk.js | alexidr9116/remote-car-controll | 508dea8e84721ec5b93195c342ce1ff190dc528b | [
"MIT"
] | null | null | null | (this.webpackJsonpclient=this.webpackJsonpclient||[]).push([[6],{938:function(c,t,e){"use strict";e.r(t),e.d(t,"default",(function(){return H}));var n=e(18),r=e(0),a=e(751),s=e(734),i=e(712),o=e(742),l=e(718),j=e(94),h=e(920),d=e(47),b=e(919),x=e(255),m=e(6),O=e(11),p=e.n(O),u=e(1);function z(c){var t=c.sx,e=c.device,a=c.status,s=c.action,i=c.color,o=Object(d.a)(),l=o.palette.primary.light,h=(o.palette.grey[50048],Object(r.useState)(l)),b=Object(n.a)(h,2);b[0],b[1],o.palette.primary.dark;return Object(r.useEffect)((function(){}),[]),Object(u.jsxs)(j.a,{sx:Object(m.a)({position:"relative",width:"inherit",height:"inherit"},t),children:[Object(u.jsxs)("svg",{version:"1.0",xmlns:"http://www.w3.org/2000/svg",width:"100%",height:"100%",viewBox:"0 0 50 100",style:{filter:"drop-shadow(0px 0px 5px ".concat(i,")")},children:[Object(u.jsxs)("g",{transform:"translate(0,100) scale(0.01,-0.01)",fill:i,stroke:"none",children:[Object(u.jsx)("path",{d:"M1660 9490 c-11 -11 -27 -20 -36 -20 -15 0 -32 -5 -184 -50 -182 -54\r\n-376 -185 -562 -379 -223 -232 -296 -381 -242 -494 13 -28 15 -50 10 -110 -7\r\n-72 -9 -76 -39 -88 -18 -8 -49 -29 -69 -47 l-38 -34 0 -751 c0 -799 1 -822 47\r\n-833 23 -6 23 -6 23 -179 l0 -173 -116 -64 c-179 -97 -247 -169 -228 -243 11\r\n-46 47 -60 144 -58 47 1 111 9 143 16 l57 14 0 -1428 0 -1427 -30 -7 c-16 -3\r\n-41 -15 -55 -26 l-25 -20 0 -875 0 -874 28 -11 c15 -6 44 -12 65 -13 l39 -1\r\n57 -145 c32 -80 67 -164 79 -186 12 -23 18 -44 15 -48 -4 -3 5 -19 19 -34 13\r\n-15 41 -50 62 -79 56 -79 126 -137 193 -160 32 -11 120 -34 196 -52 75 -18\r\n152 -40 170 -50 128 -73 434 -104 1047 -104 622 -1 952 33 1067 108 20 13 119\r\n40 248 67 28 6 79 21 115 34 71 26 135 83 219 194 23 30 57 74 75 97 19 23 49\r\n79 66 125 55 143 107 238 131 238 11 0 29 5 40 10 19 10 19 31 19 886 0 824\r\n-1 875 -17 881 -10 4 -21 12 -26 19 -4 7 -21 15 -37 19 l-30 7 0 1427 0 1428\r\n63 -14 c93 -22 216 -22 250 0 50 32 48 92 -5 152 -40 46 -89 80 -211 145 l-97\r\n52 0 174 c0 159 2 174 18 174 9 0 25 7 35 14 16 12 17 62 17 807 l-1 794 -68\r\n34 -68 34 -7 79 c-5 65 -4 82 11 105 11 16 17 45 17 78 0 66 -49 170 -129 270\r\n-85 107 -249 269 -344 341 -135 101 -318 188 -439 209 -23 4 -44 11 -48 16 -3\r\n5 -19 9 -36 9 -21 0 -31 6 -35 20 -5 20 -14 20 -774 20 -756 0 -769 0 -789\r\n-20z m180 -19 c0 -25 -21 -61 -36 -61 -11 0 -14 5 -9 18 4 9 10 25 12 35 5 18\r\n33 24 33 8z m65 -30 c-4 -17 -11 -31 -16 -31 -11 0 -11 0 2 39 14 39 23 34 14\r\n-8z m179 12 c-9 -39 -13 -43 -35 -43 -15 0 -19 7 -19 35 0 32 2 35 30 35 28 0\r\n30 -2 24 -27z m156 17 c0 -24 -25 -60 -42 -60 -14 0 -18 8 -18 35 0 32 2 35\r\n30 35 17 0 30 -4 30 -10z m165 1 c3 -5 0 -21 -6 -35 -16 -35 -64 -37 -73 -3\r\n-11 42 -7 47 33 47 22 0 42 -4 46 -9z m145 -26 c0 -32 -3 -35 -28 -35 -34 0\r\n-52 16 -52 47 0 20 5 23 40 23 39 0 40 -1 40 -35z m140 0 c0 -27 -4 -35 -18\r\n-35 -17 0 -42 36 -42 60 0 6 14 10 30 10 28 0 30 -3 30 -35z m150 0 c0 -28 -4\r\n-35 -19 -35 -20 0 -31 18 -31 51 0 14 7 19 25 19 22 0 25 -4 25 -35z m146 -10\r\nc4 -21 3 -27 -4 -20 -6 6 -14 24 -18 40 -4 21 -3 27 4 20 6 -5 14 -23 18 -40z\r\nm83 14 c14 -40 14 -39 -3 -39 -8 0 -19 14 -25 31 -14 40 -14 39 3 39 8 0 19\r\n-14 25 -31z m-1093 -36 c-14 -14 -23 4 -13 27 l10 25 5 -23 c2 -13 1 -26 -2\r\n-29z m943 5 c1 -5 -3 -8 -9 -8 -5 0 -10 12 -9 28 0 24 1 25 9 7 5 -11 9 -23 9\r\n-27z m-1484 -83 c-107 -52 -195 -86 -195 -75 0 23 214 120 260 119 17 0 -2\r\n-14 -65 -44z m2021 20 c78 -29 184 -84 184 -96 0 -4 3 -16 7 -25 5 -13 -8 -8\r\n-43 17 -61 45 -113 71 -187 94 -32 10 -60 22 -63 26 -10 16 35 9 102 -16z\r\nm-288 -32 l3 -33 -735 0 c-582 0 -736 3 -736 13 0 6 3 22 6 35 l6 22 727 -2\r\n726 -3 3 -32z m232 4 c47 -18 124 -58 171 -90 l86 -56 -4 -53 c-2 -29 -9 -77\r\n-14 -106 -9 -42 -14 -52 -27 -48 -9 3 -59 14 -111 26 -97 20 -123 35 -147 82\r\n-31 59 -14 62 39 5 29 -31 58 -57 65 -57 20 0 13 16 -12 28 -13 6 -37 29 -52\r\n51 -16 22 -36 43 -45 46 -16 6 -39 66 -39 104 0 12 -6 37 -14 56 -24 55 -13\r\n57 104 12z m-1828 -39 c-63 -263 -59 -257 -216 -292 l-108 -23 -10 26 c-5 14\r\n-12 69 -15 123 l-6 96 31 16 c18 9 44 18 59 20 16 2 55 16 88 31 95 44 148 64\r\n171 65 20 0 20 -1 6 -62z m1673 3 c-10 -9 -25 14 -24 37 l1 27 13 -30 c7 -16\r\n12 -32 10 -34z m-1599 1 c-12 -11 -18 7 -10 30 l8 23 4 -23 c2 -13 1 -26 -2\r\n-30z m64 -65 c0 -1 -28 -27 -62 -57 -60 -53 -61 -53 -55 -25 15 75 23 85 72\r\n85 25 0 45 -1 45 -3z m1540 -1 c0 -2 7 -21 16 -42 l16 -39 -43 40 c-24 22 -46\r\n41 -48 43 -2 1 10 2 27 2 18 0 32 -2 32 -4z m672 -188 c48 -48 108 -116 134\r\n-150 41 -53 33 -47 -51 40 -98 103 -186 174 -257 208 -33 15 -38 22 -38 51 l0\r\n34 63 -47 c34 -27 101 -88 149 -136z m-2762 157 c0 -8 -4 -15 -10 -15 -11 0\r\n-199 -161 -249 -214 -19 -20 -40 -36 -45 -36 -14 0 143 159 223 226 69 57 81\r\n63 81 39z m2003 -54 c76 -53 207 -205 207 -241 0 -7 9 -23 20 -37 30 -39 91\r\n-205 180 -493 103 -332 138 -470 190 -740 56 -294 120 -620 127 -650 6 -22 0\r\n-19 -45 24 -89 86 -168 131 -397 229 -187 80 -357 126 -590 159 -143 20 -729\r\n17 -876 -5 -237 -35 -395 -83 -645 -195 -143 -63 -220 -110 -296 -181 -34 -31\r\n-59 -48 -55 -37 4 10 32 150 62 310 70 368 119 605 151 726 32 121 165 551\r\n205 667 78 221 185 382 313 467 l39 26 684 0 684 0 42 -29z m-1999 -13 c3 -18\r\n7 -54 10 -80 3 -27 8 -58 11 -71 5 -19 0 -25 -27 -35 -18 -6 -69 -32 -113 -58\r\n-158 -91 -214 -130 -227 -160 -6 -13 -14 -23 -17 -21 -3 2 -21 10 -38 17 -18\r\n8 -33 18 -33 23 0 30 43 86 123 159 143 132 289 258 298 258 4 0 10 -15 13\r\n-32z m2595 -18 c96 -48 254 -198 342 -324 26 -38 31 -50 20 -54 -8 -3 -25 -15\r\n-37 -27 l-22 -22 -64 64 c-74 74 -181 151 -260 186 l-56 25 8 39 c5 21 12 59\r\n15 86 3 26 8 47 11 47 3 0 22 -9 43 -20z m-205 -174 c124 -24 265 -98 363\r\n-190 l80 -75 13 -78 c6 -42 14 -199 16 -347 2 -149 8 -350 15 -446 12 -180 9\r\n-294 -16 -645 -18 -238 -19 -339 -5 -330 6 3 10 43 10 88 0 45 5 143 10 217\r\n20 260 27 487 19 640 -5 85 -11 288 -14 450 -3 162 -9 320 -14 350 -5 30 -7\r\n57 -5 59 2 3 20 -11 39 -29 l35 -34 0 -952 c0 -879 1 -952 17 -958 9 -4 20 -3\r\n25 2 5 5 8 429 8 942 0 532 4 930 9 925 9 -11 29 -237 67 -790 27 -388 27\r\n-375 0 -961 -4 -92 -33 -153 -92 -196 -44 -31 -54 -51 -33 -63 20 -13 55 5\r\n102 51 l47 46 0 -127 0 -127 -29 5 c-16 3 -39 9 -52 12 -14 3 -32 0 -44 -9\r\n-29 -22 -9 -51 36 -51 96 -2 429 -207 429 -265 0 -23 -44 -35 -79 -21 -14 6\r\n-82 24 -151 41 -69 16 -146 40 -173 54 -26 13 -50 19 -53 14 -9 -14 93 -53\r\n214 -83 62 -15 111 -29 109 -31 -2 -3 -60 7 -128 22 -178 38 -248 81 -225 139\r\n4 12 14 14 41 9 27 -5 36 -3 41 11 10 24 -9 37 -63 45 -51 8 -73 -1 -73 -30 0\r\n-9 -30 -44 -67 -77 -120 -107 -243 -301 -302 -478 -42 -125 -65 -237 -100\r\n-475 -51 -352 -56 -415 -55 -655 0 -201 3 -243 23 -335 13 -58 25 -149 26\r\n-205 2 -55 4 -128 5 -162 2 -72 16 -75 26 -5 14 97 28 104 266 137 101 14 210\r\n32 243 40 33 8 66 14 73 15 9 0 12 -283 12 -1383 l0 -1383 -44 -111 c-25 -61\r\n-53 -128 -64 -150 l-20 -39 -109 -12 c-214 -24 -437 -81 -457 -117 -37 -68\r\n-62 -96 -109 -120 l-51 -25 -925 0 c-858 0 -930 1 -975 17 -53 19 -76 53 -76\r\n112 0 27 -5 31 -63 50 -101 33 -233 62 -372 80 l-130 17 -22 39 c-13 22 -52\r\n114 -88 205 l-65 165 0 1353 0 1352 30 0 c17 0 48 -9 70 -20 22 -11 47 -20 57\r\n-20 29 0 190 -54 293 -97 52 -23 106 -44 120 -48 32 -9 80 -61 80 -86 0 -10 5\r\n-19 10 -19 6 0 10 40 10 100 0 60 -4 100 -10 100 -5 0 -10 -16 -10 -35 0 -19\r\n-1 -35 -3 -35 -18 0 -125 38 -173 61 -34 16 -84 36 -110 43 -27 8 -92 30 -144\r\n49 -52 19 -117 42 -145 52 -27 10 -56 22 -63 28 -18 14 -18 1867 1 1867 6 0\r\n29 3 49 6 l38 7 0 -851 c0 -721 2 -851 14 -855 8 -3 17 -19 21 -36 21 -98 295\r\n-271 427 -271 75 0 90 15 114 110 32 124 44 244 44 430 0 179 -7 253 -46 550\r\n-73 556 -158 777 -394 1025 -47 50 -90 99 -96 110 -20 35 -139 14 -132 -23 3\r\n-13 13 -17 46 -15 40 2 42 0 42 -27 0 -47 -9 -60 -38 -54 -16 3 -54 -5 -94\r\n-20 -61 -23 -131 -36 -300 -53 -72 -7 -75 5 -15 59 101 94 317 211 391 212 34\r\n1 42 5 44 23 5 32 -29 47 -76 33 -20 -5 -40 -10 -44 -10 -5 0 -8 55 -8 123 l0\r\n123 50 -48 c33 -31 59 -48 75 -48 40 0 30 27 -29 83 -77 74 -83 100 -92 437\r\n-5 151 -7 313 -6 360 6 191 64 1003 79 1105 5 28 10 -375 13 -895 5 -937 5\r\n-945 25 -945 20 0 20 8 25 957 l5 957 44 37 44 38 -7 -36 c-18 -97 -48 -326\r\n-56 -433 -15 -190 -11 -961 6 -1170 8 -99 17 -196 20 -216 5 -29 0 -45 -21\r\n-78 -29 -43 -28 -75 2 -69 10 2 50 50 91 108 40 58 91 124 114 147 50 52 188\r\n151 300 216 219 126 749 237 1133 237 265 0 658 -66 928 -154 208 -69 460\r\n-242 558 -383 l54 -78 -60 60 c-94 95 -307 248 -430 310 -128 63 -262 103\r\n-483 142 -150 27 -172 28 -472 28 -250 0 -343 -4 -450 -18 -343 -47 -625 -124\r\n-835 -230 -113 -56 -180 -104 -256 -183 -78 -82 -215 -262 -205 -271 3 -3 8\r\n-4 9 -2 2 2 39 51 82 109 93 124 172 204 264 264 306 202 816 320 1386 320\r\n258 0 389 -13 603 -59 280 -61 426 -133 666 -329 145 -118 226 -229 226 -308\r\n0 -10 5 -18 10 -18 16 0 12 35 -10 92 l-20 53 23 -29 c16 -20 29 -27 40 -23\r\n24 9 21 33 -7 70 -13 18 -33 51 -44 73 -12 23 -33 55 -47 72 -15 18 -24 36\r\n-21 41 4 5 -7 70 -23 143 -16 73 -55 266 -86 428 -31 162 -74 369 -97 460 -65\r\n268 -233 812 -274 893 l-15 27 46 0 c25 0 82 -12 126 -26 81 -27 106 -25 93 9\r\n-11 29 -172 77 -261 77 -26 0 -36 6 -47 29 l-15 29 37 -9 c20 -4 73 -15 116\r\n-23z m-2099 0 c-13 -20 -27 -25 -86 -30 -126 -13 -219 -49 -219 -85 0 -29 20\r\n-30 76 -4 29 13 81 26 117 30 l65 6 -35 -94 c-47 -124 -184 -575 -234 -766\r\n-21 -84 -57 -246 -79 -360 -23 -115 -64 -320 -92 -458 -28 -137 -52 -259 -52\r\n-270 -2 -21 -56 -114 -67 -115 -26 -1 -41 378 -36 930 4 505 5 532 31 700 37\r\n250 44 268 116 332 72 63 163 120 239 149 57 22 208 57 249 58 21 1 22 0 7\r\n-23z m2705 -198 c0 -17 -10 -6 -25 25 l-16 32 20 -25 c11 -14 21 -28 21 -32z\r\nm-3411 -67 c16 -10 6 -51 -14 -51 -40 0 -57 24 -33 48 14 14 28 15 47 3z\r\nm3431 -23 c17 -28 18 -34 5 -41 -35 -19 -88 30 -64 59 18 22 38 16 59 -18z\r\nm-3550 -440 c0 -47 -30 -449 -45 -608 -16 -173 -18 -335 -7 -535 9 -161 4\r\n-245 -14 -245 -12 0 -14 105 -14 705 l0 705 40 0 c35 0 40 -3 40 -22z m3690\r\n-683 c0 -634 -2 -705 -16 -705 -14 0 -15 33 -9 318 6 278 5 345 -13 542 -12\r\n124 -24 275 -27 335 -3 61 -8 134 -11 163 l-5 52 40 0 41 0 0 -705z m-3349\r\n-1557 c103 -137 185 -336 228 -549 28 -137 78 -500 92 -664 19 -223 6 -433\r\n-37 -617 -14 -60 -19 -67 -45 -73 -43 -10 -125 18 -219 75 -104 62 -134 90\r\n-161 149 -11 25 -25 54 -30 64 -6 11 -9 344 -9 855 0 772 2 840 18 879 l17 42\r\n48 -47 c27 -26 71 -77 98 -114z m3119 -762 l0 -832 -30 -59 c-39 -75 -77 -115\r\n-162 -166 -127 -77 -214 -104 -251 -76 -42 30 -83 356 -72 567 12 246 73 684\r\n119 869 59 234 155 416 300 569 l49 53 24 -46 23 -46 0 -833z m-3350 885 c0\r\n-5 -21 -12 -46 -16 -26 -3 -54 -9 -63 -12 -9 -4 -13 -3 -9 1 9 11 79 35 101\r\n36 9 0 17 -4 17 -9z m-275 -62 c-22 -4 -56 -8 -75 -7 l-35 0 30 8 c17 4 50 8\r\n75 8 l45 0 -40 -9z m3730 -988 l0 -973 -125 -35 c-116 -31 -318 -69 -400 -74\r\n-44 -3 -56 4 -62 34 -4 22 -3 23 73 22 74 0 81 2 185 55 86 43 124 69 177 122\r\n37 37 67 76 67 87 0 11 7 26 15 35 13 13 15 122 15 861 l0 846 28 -3 27 -3 0\r\n-974z m55 -1 c0 -963 0 -970 -20 -970 -20 0 -20 7 -20 970 0 963 0 970 20 970\r\n20 0 20 -7 20 -970z m-3 -2317 c-2 -720 -6 -1327 -9 -1351 -3 -24 -10 -48 -17\r\n-55 -8 -8 -11 348 -11 1344 0 746 3 1359 7 1362 33 34 33 36 30 -1300z m-3720\r\n-941 c-1 -229 -2 -41 -2 418 0 459 1 647 2 417 2 -229 2 -605 0 -835z m3833\r\n418 c0 -547 -3 -830 -10 -830 -7 0 -10 283 -10 830 0 547 3 830 10 830 7 0 10\r\n-283 10 -830z m-3790 -11 c0 -539 -3 -819 -10 -819 -7 0 -10 282 -10 826 0\r\n547 3 823 10 819 7 -4 10 -290 10 -826z m3758 9 c-2 -646 -6 -822 -15 -826\r\n-10 -3 -13 165 -13 816 0 450 3 822 7 825 3 4 10 7 15 7 4 0 7 -370 6 -822z\r\nm-47 -905 c-12 -20 -14 -14 -5 12 4 9 9 14 11 11 3 -2 0 -13 -6 -23z m-111\r\n-283 c-12 -23 -24 -40 -26 -37 -3 3 4 24 16 47 12 23 24 40 26 37 3 -3 -4 -24\r\n-16 -47z m-186 -134 c-10 -26 -138 -116 -149 -104 -2 2 -6 24 -10 49 l-7 47\r\n64 10 c94 14 108 14 102 -2z m14 -32 c-33 -46 -93 -101 -135 -123 -28 -14 -33\r\n-14 -33 3 0 8 26 30 58 50 31 19 75 53 97 75 21 23 41 41 43 41 2 0 -12 -21\r\n-30 -46z m-3033 17 c42 -11 79 -22 82 -25 3 -3 3 -17 -1 -31 -5 -19 -13 -25\r\n-33 -25 -47 0 -104 23 -129 53 -45 53 -35 57 81 28z m90 -1 c-3 -5 -12 -7 -20\r\n-3 -21 7 -19 13 6 13 11 0 18 -4 14 -10z m2709 -27 c3 -10 7 -35 10 -55 6 -36\r\n4 -39 -30 -53 -19 -8 -75 -17 -123 -21 l-89 -7 17 54 18 53 79 22 c98 28 111\r\n28 118 7z m-2577 -14 c15 -7 50 -17 78 -24 44 -10 50 -15 58 -46 5 -19 13 -39\r\n19 -46 27 -33 -164 -30 -209 3 -28 21 -42 76 -29 110 6 17 45 18 83 3z m-155\r\n-71 c-5 -5 -19 -5 -35 1 -37 14 -34 18 9 13 22 -3 32 -8 26 -14z m8 -28 c0 -5\r\n-2 -10 -4 -10 -3 0 -8 5 -11 10 -3 6 -1 10 4 10 6 0 11 -4 11 -10z m2738 -12\r\nc-5 -13 -48 -25 -216 -62 l-103 -23 26 27 c24 25 35 28 121 34 53 3 110 13\r\n127 20 41 18 50 19 45 4z m-2408 -48 c11 -7 1 -10 -35 -10 -36 0 -46 3 -35 10\r\n8 5 24 10 35 10 11 0 27 -5 35 -10z m1890 -35 c9 -11 10 -19 3 -26 -7 -7\r\n-1138 -13 -1730 -9 -14 0 -18 32 -6 43 3 4 392 7 863 7 761 0 859 -2 870 -15z\r\nm-560 -97 c-72 -12 -461 -12 -525 0 -36 7 41 10 265 10 226 0 299 -3 260 -10z"}),Object(u.jsx)("path",{d:"M3095 9074 c11 -9 27 -21 36 -27 27 -20 87 -106 109 -155 29 -63 152\r\n-391 178 -472 12 -36 50 -182 86 -325 36 -143 88 -336 116 -428 47 -158 78\r\n-326 65 -347 -4 -6 -1 -10 4 -10 16 0 13 99 -5 187 -8 42 -31 126 -50 187 -19\r\n61 -66 236 -105 389 -38 153 -83 322 -100 375 -44 137 -153 412 -195 493 -38\r\n72 -111 149 -141 149 -16 -1 -16 -2 2 -16z"}),Object(u.jsx)("path",{d:"M1691 9014 c-16 -14 -44 -48 -60 -77 -34 -59 -130 -291 -173 -417\r\n-26 -78 -200 -765 -247 -975 -11 -49 -29 -119 -40 -155 -22 -70 -25 -90 -13\r\n-90 4 0 12 19 18 43 6 23 23 85 36 137 14 52 65 257 113 455 109 451 140 559\r\n221 765 78 196 126 286 165 309 16 9 29 19 29 24 0 14 -19 7 -49 -19z"}),Object(u.jsx)("path",{d:"M1955 7513 c-176 -22 -505 -108 -611 -158 -84 -40 -153 -108 -133\r\n-131 16 -20 20 -18 64 22 46 42 85 63 111 62 10 -1 60 11 110 25 95 28 319 70\r\n437 82 37 4 67 12 67 17 0 10 -33 7 -192 -18 -54 -9 -103 -14 -110 -12 -18 6\r\n191 46 312 59 104 12 123 20 113 46 -5 13 -91 16 -168 6z m-278 -119 c-3 -3\r\n-12 -4 -19 -1 -8 3 -5 6 6 6 11 1 17 -2 13 -5z"}),Object(u.jsx)("path",{d:"M2752 7498 c3 -20 11 -24 63 -30 177 -22 245 -34 405 -74 253 -62\r\n310 -85 388 -158 30 -28 33 -29 48 -14 14 14 15 19 2 37 -50 71 -164 122 -410\r\n185 -185 48 -351 76 -442 76 -54 0 -57 -1 -54 -22z"}),Object(u.jsx)("path",{d:"M2954 7399 c-3 -5 6 -9 20 -9 14 0 85 -15 158 -34 73 -19 160 -39\r\n193 -46 33 -6 79 -22 103 -35 45 -25 59 -16 16 11 -27 18 -366 107 -441 117\r\n-24 3 -46 1 -49 -4z"}),Object(u.jsx)("path",{d:"M2025 7149 c-132 -4 -283 -14 -335 -22 -349 -58 -646 -233 -750 -443\r\n-28 -57 -35 -83 -38 -150 -8 -145 30 -249 223 -614 30 -58 73 -161 96 -230 53\r\n-159 87 -227 139 -274 38 -34 43 -36 58 -23 30 27 259 126 350 152 l88 26 605\r\n-3 604 -3 85 -31 c111 -41 276 -118 300 -139 17 -16 20 -15 48 5 62 46 89 98\r\n153 289 36 105 74 192 143 320 150 279 182 376 174 527 -6 121 -41 189 -152\r\n299 -165 161 -409 268 -678 294 -316 32 -573 36 -1113 20z m940 -82 c-70 -51\r\n-269 -222 -390 -333 -129 -119 -877 -852 -883 -866 -16 -36 71 45 420 390 431\r\n425 574 559 745 698 59 48 118 98 130 111 22 23 24 23 115 12 116 -14 290 -58\r\n387 -99 255 -105 414 -273 428 -452 8 -101 -15 -169 -162 -468 -81 -164 -151\r\n-323 -175 -394 -22 -65 -51 -138 -66 -163 -32 -56 -35 -55 -205 22 -225 102\r\n-162 95 -883 95 l-631 0 -75 -29 c-41 -16 -126 -52 -189 -80 -62 -28 -121 -51\r\n-130 -51 -27 0 -58 58 -106 200 -29 86 -91 225 -170 385 -133 266 -160 332\r\n-170 417 -22 181 129 383 367 492 135 61 324 114 468 129 19 2 298 4 620 5\r\nl585 1 -30 -22z"}),Object(u.jsx)("path",{d:"M2468 6957 c-109 -67 -208 -150 -325 -270 -132 -136 -428 -486 -418\r\n-495 3 -4 14 3 23 14 43 54 236 280 324 380 142 161 295 293 420 364 32 17 61\r\n36 64 41 12 20 -24 6 -88 -34z"}),Object(u.jsx)("path",{d:"M2954 6764 c-108 -94 -686 -675 -679 -683 3 -3 148 137 323 310 174\r\n173 349 343 387 376 39 34 67 64 64 67 -3 4 -46 -28 -95 -70z"}),Object(u.jsx)("path",{d:"M1924 6743 c-30 -20 -127 -133 -121 -140 3 -3 39 29 80 71 71 73 87\r\n101 41 69z"}),Object(u.jsx)("path",{d:"M3050 6539 c-19 -12 -51 -34 -71 -50 -45 -35 -224 -239 -210 -239 5\r\n0 29 21 53 47 114 125 176 186 214 211 23 15 50 32 60 39 35 22 -9 14 -46 -8z"}),Object(u.jsx)("path",{d:"M1850 5510 c-10 -6 185 -10 568 -10 374 0 581 3 577 10 -8 13 -1125\r\n13 -1145 0z"}),Object(u.jsx)("path",{d:"M1370 3660 c0 -1087 3 -1640 10 -1640 7 0 10 553 10 1640 0 1087 -3\r\n1640 -10 1640 -7 0 -10 -553 -10 -1640z"}),Object(u.jsx)("path",{d:"M3475 3640 c0 -910 1 -1283 2 -827 2 455 2 1199 0 1655 -1 455 -2 82\r\n-2 -828z"}),Object(u.jsx)("path",{d:"M800 3860 c-9 -22 -11 -209 -6 -827 8 -1012 17 -1345 38 -1393 24\r\n-56 53 -75 110 -75 46 0 53 3 85 40 19 22 42 54 50 70 9 17 46 76 84 132 78\r\n117 99 155 99 179 0 10 8 26 18 37 16 18 17 75 20 849 3 931 7 873 -72 927\r\n-22 15 -60 35 -84 44 -56 22 -200 47 -272 47 -54 0 -58 -2 -70 -30z m269 -51\r\nc85 -22 126 -43 153 -80 19 -25 20 -50 18 -815 0 -644 -3 -800 -15 -843 -16\r\n-60 -109 -232 -195 -361 -54 -81 -58 -85 -97 -88 -28 -2 -44 2 -53 14 -17 20\r\n-16 -28 -25 1232 l-7 972 74 -6 c40 -4 106 -15 147 -25z"}),Object(u.jsx)("path",{d:"M1113 3207 c-67 -70 -177 -247 -153 -247 5 0 19 19 31 43 29 57 73\r\n121 127 185 54 65 51 77 -5 19z"}),Object(u.jsx)("path",{d:"M1104 2908 c-67 -70 -129 -156 -120 -165 3 -4 8 -4 9 -2 2 2 23 31\r\n47 64 24 33 68 84 98 113 31 29 49 52 40 52 -8 0 -42 -28 -74 -62z"}),Object(u.jsx)("path",{d:"M3845 3874 c-135 -25 -233 -81 -259 -149 -8 -22 -10 -256 -6 -855 l5\r\n-825 47 -95 c26 -52 65 -120 88 -150 23 -30 55 -80 71 -111 30 -61 77 -114\r\n110 -124 51 -17 106 13 140 75 19 36 28 366 35 1366 4 618 3 847 -5 863 -10\r\n18 -20 21 -79 20 -37 0 -103 -7 -147 -15z m182 -896 c-6 -913 -17 -1234 -43\r\n-1306 -17 -45 -52 -64 -83 -45 -44 28 -215 308 -249 410 l-27 78 5 804 5 803\r\n35 30 c53 44 192 80 334 87 l29 1 -6 -862z"}),Object(u.jsx)("path",{d:"M3845 3126 c-74 -73 -124 -129 -120 -136 4 -6 22 8 46 37 21 26 79\r\n84 129 127 84 74 103 96 81 96 -4 0 -66 -56 -136 -124z"}),Object(u.jsx)("path",{d:"M3892 2933 c-35 -17 -125 -111 -155 -162 -33 -57 0 -32 51 38 32 43\r\n68 79 96 96 25 15 46 31 46 36 0 11 1 12 -38 -8z"}),Object(u.jsx)("path",{d:"M1923 1963 c269 -2 705 -2 970 0 265 1 46 2 -488 2 -533 0 -750 -1\r\n-482 -2z"}),Object(u.jsx)("path",{d:"M1398 1929 c-62 -18 -120 -115 -181 -304 -63 -197 -80 -274 -81 -375\r\n-1 -78 3 -103 21 -142 45 -98 156 -174 317 -217 77 -21 94 -22 950 -22 751 -1\r\n881 1 942 15 141 30 245 84 310 159 92 109 84 268 -32 619 -45 134 -94 220\r\n-139 241 -47 23 -152 40 -194 32 -40 -8 -1733 -8 -1821 -1 -30 3 -72 0 -92 -5z\r\nm2016 -59 c38 -6 76 -16 84 -22 40 -34 100 -194 152 -408 32 -133 38 -226 18\r\n-292 -18 -61 -79 -123 -161 -162 -137 -67 -134 -67 -1076 -66 -680 0 -859 3\r\n-911 14 -150 32 -247 89 -297 174 -26 43 -28 55 -27 142 1 165 101 504 175\r\n593 l30 37 972 0 c594 0 999 -4 1041 -10z"}),Object(u.jsx)("path",{d:"M2373 1746 c-139 -117 -589 -566 -567 -566 6 0 103 93 215 206 174\r\n175 289 283 434 408 17 14 25 26 18 26 -7 0 -52 -33 -100 -74z"}),Object(u.jsx)("path",{d:"M2564 1695 c-113 -56 -202 -124 -333 -250 -154 -148 -412 -447 -399\r\n-461 3 -2 59 59 124 138 234 282 452 476 626 561 78 38 105 57 79 57 -5 0 -49\r\n-20 -97 -45z"}),Object(u.jsx)("path",{d:"M2813 1681 c-76 -51 -188 -146 -274 -231 -65 -64 -349 -369 -349\r\n-374 0 -20 35 14 199 189 201 216 324 328 449 412 45 30 82 57 82 59 0 12 -28\r\n-2 -107 -55z"}),Object(u.jsx)("path",{d:"M1814 1622 c-10 -20 -36 -54 -57 -75 -49 -49 -41 -60 10 -14 42 38\r\n88 113 75 121 -4 2 -17 -12 -28 -32z"}),Object(u.jsx)("path",{d:"M2817 1349 c-49 -32 -107 -92 -107 -111 0 -6 20 9 44 34 24 25 64 58\r\n90 73 25 15 46 29 46 31 0 12 -32 0 -73 -27z"}),Object(u.jsx)("path",{d:"M2122 823 c153 -2 403 -2 555 0 153 1 28 2 -277 2 -305 0 -430 -1\r\n-278 -2z"}),Object(u.jsx)("path",{d:"M1630 710 c0 -7 258 -10 755 -10 497 0 755 3 755 10 0 7 -258 10\r\n-755 10 -497 0 -755 -3 -755 -10z"}),Object(u.jsx)("path",{d:"M1089 5048 c-68 -81 -170 -238 -162 -251 3 -5 15 6 26 24 57 94 111\r\n170 156 221 28 31 51 59 51 62 0 18 -24 -1 -71 -56z"}),Object(u.jsx)("path",{d:"M1109 4853 c-84 -86 -162 -183 -154 -192 4 -3 21 12 38 34 17 22 69\r\n79 114 126 46 47 83 88 83 92 0 17 -20 2 -81 -60z"}),Object(u.jsx)("path",{d:"M3862 5332 c-16 -15 -55 -67 -85 -114 -31 -47 -61 -89 -66 -93 -6 -3\r\n-11 -13 -11 -21 0 -26 21 -4 77 85 30 47 71 103 91 123 42 45 38 61 -6 20z"}),Object(u.jsx)("path",{d:"M3936 5173 c-70 -58 -114 -115 -121 -163 -6 -34 -5 -33 19 14 27 54\r\n93 126 144 157 30 19 42 39 24 39 -4 0 -34 -21 -66 -47z"})]}),"lock"===s&&Object(u.jsx)("g",{transform:"translate(18,50) scale(0.7,0.7)",children:Object(u.jsx)("path",{fill:i,stroke:"none",d:"M4 8V6a6 6 0 1 1 12 0v2h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2h1zm5 6.73V17h2v-2.27a2 2 0 1 0-2 0zM7 6v2h6V6a3 3 0 0 0-6 0z"})}),"unlock"===s&&Object(u.jsx)("g",{transform:"translate(18,50) scale(0.7,0.7)",children:Object(u.jsx)("path",{fill:i,stroke:"none",d:"M4 8V6a6 6 0 1 1 12 0h-3v2h4a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2h1zm5 6.73V17h2v-2.27a2 2 0 1 0-2 0zM7 6v2h6V6a3 3 0 0 0-6 0z"})}),a&&1===a.sta&&Object(u.jsxs)("g",{transform:"translate(19,10) scale(0.77,0.77)",children:[Object(u.jsx)("path",{fill:i,stroke:"none",d:"M10 3c0 1.313-.304 2.508-.8 3.4a1.991 1.991 0 0 0-1.484-.38c-.28-.982-.91-2.04-1.838-2.969a8.368 8.368 0 0 0-.491-.454A5.976 5.976 0 0 1 8 2c.691 0 1.355.117 1.973.332c.018.219.027.442.027.668Zm0 5c0 .073-.004.146-.012.217c1.018-.019 2.2-.353 3.331-1.006a8.39 8.39 0 0 0 .57-.361a6.004 6.004 0 0 0-2.53-3.823a9.02 9.02 0 0 1-.145.64c-.34 1.269-.944 2.346-1.656 3.079c.277.343.442.78.442 1.254Zm-.137.728a2.007 2.007 0 0 1-1.07 1.109c.525.87 1.405 1.725 2.535 2.377c.2.116.402.222.605.317a5.986 5.986 0 0 0 2.053-4.111c-.208.073-.421.14-.641.199c-1.264.339-2.493.356-3.482.11ZM8 10c-.45 0-.866-.149-1.2-.4c-.494.89-.796 2.082-.796 3.391c0 .23.01.457.027.678A5.99 5.99 0 0 0 8 14c.94 0 1.83-.216 2.623-.602a8.359 8.359 0 0 1-.497-.458c-.925-.926-1.555-1.981-1.836-2.96c-.094.013-.191.02-.29.02ZM6 8c0-.08.005-.16.014-.239c-1.02.017-2.205.351-3.34 1.007a8.366 8.366 0 0 0-.568.359a6.003 6.003 0 0 0 2.525 3.839a8.37 8.37 0 0 1 .148-.653c.34-1.267.94-2.342 1.65-3.075A1.988 1.988 0 0 1 6 8Zm-3.347-.632c1.267-.34 2.498-.355 3.488-.107c.196-.494.583-.89 1.07-1.1c-.524-.874-1.406-1.733-2.541-2.388a8.363 8.363 0 0 0-.594-.312a5.987 5.987 0 0 0-2.06 4.106c.206-.074.418-.14.637-.199ZM8 9a1 1 0 1 0 0-2a1 1 0 0 0 0 2Z"}),Object(u.jsx)("animateTransform",{attributeType:"xml",attributeName:"transform",type:"rotate",from:"360 8 8",to:"0 8 8",dur:"1.5s",additive:"sum",repeatCount:"indefinite"})]}),"turnon"===s&&Object(u.jsxs)("g",{transform:"translate(18,50) scale(0.9,0.9)",children:[Object(u.jsx)("path",{fill:i,stroke:"none",d:"M10 3c0 1.313-.304 2.508-.8 3.4a1.991 1.991 0 0 0-1.484-.38c-.28-.982-.91-2.04-1.838-2.969a8.368 8.368 0 0 0-.491-.454A5.976 5.976 0 0 1 8 2c.691 0 1.355.117 1.973.332c.018.219.027.442.027.668Zm0 5c0 .073-.004.146-.012.217c1.018-.019 2.2-.353 3.331-1.006a8.39 8.39 0 0 0 .57-.361a6.004 6.004 0 0 0-2.53-3.823a9.02 9.02 0 0 1-.145.64c-.34 1.269-.944 2.346-1.656 3.079c.277.343.442.78.442 1.254Zm-.137.728a2.007 2.007 0 0 1-1.07 1.109c.525.87 1.405 1.725 2.535 2.377c.2.116.402.222.605.317a5.986 5.986 0 0 0 2.053-4.111c-.208.073-.421.14-.641.199c-1.264.339-2.493.356-3.482.11ZM8 10c-.45 0-.866-.149-1.2-.4c-.494.89-.796 2.082-.796 3.391c0 .23.01.457.027.678A5.99 5.99 0 0 0 8 14c.94 0 1.83-.216 2.623-.602a8.359 8.359 0 0 1-.497-.458c-.925-.926-1.555-1.981-1.836-2.96c-.094.013-.191.02-.29.02ZM6 8c0-.08.005-.16.014-.239c-1.02.017-2.205.351-3.34 1.007a8.366 8.366 0 0 0-.568.359a6.003 6.003 0 0 0 2.525 3.839a8.37 8.37 0 0 1 .148-.653c.34-1.267.94-2.342 1.65-3.075A1.988 1.988 0 0 1 6 8Zm-3.347-.632c1.267-.34 2.498-.355 3.488-.107c.196-.494.583-.89 1.07-1.1c-.524-.874-1.406-1.733-2.541-2.388a8.363 8.363 0 0 0-.594-.312a5.987 5.987 0 0 0-2.06 4.106c.206-.074.418-.14.637-.199ZM8 9a1 1 0 1 0 0-2a1 1 0 0 0 0 2Z"}),Object(u.jsx)("path",{fill:i,stroke:"none",d:"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14Zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z"})]}),"turnoff"===s&&Object(u.jsx)("g",{transform:"translate(18,50) scale(0.6,0.6)",children:Object(u.jsx)("path",{fill:i,stroke:"none",d:"M10 11c-.57 0-1 .45-1 1s.43 1 1 1c.54 0 1-.45 1-1s-.46-1-1-1m.5-9c4.5 0 4.59 3.57 2.23 4.75c-.99.49-1.43 1.54-1.62 2.47c.48.2.89.51 1.22.91c3.7-2 7.67-1.21 7.67 2.37c0 4.5-3.57 4.6-4.74 2.23c-.5-.99-1.56-1.43-2.49-1.62c-.2.48-.51.89-.91 1.23C13.85 18.03 13.06 22 9.5 22c-4.5 0-4.6-3.58-2.24-4.76c.98-.49 1.42-1.53 1.62-2.45c-.49-.2-.92-.52-1.24-.92C3.95 15.85 0 15.07 0 11.5C0 7 3.56 6.89 4.73 9.26c.5.99 1.55 1.42 2.48 1.61c.19-.48.51-.9.92-1.22C6.14 5.96 6.93 2 10.5 2M22 13V7h2v6h-2m0 4v-2h2v2h-2Z"})})]}),e&&e.deviceNumber.length>0&&"Device Type: ".concat(e.type)||"Device is not available"]})}z.propTypes={sx:p.a.object,device:p.a.object,action:p.a.string,status:p.a.object,color:p.a.string};var g=e(77);function f(c){var t=c.sx,e=c.handleTurnOn,n=c.handleTurnOff,r=c.handleLock,a=c.handleUnlock,s=c.handleLocation,i=Object(d.a)(),o=i.palette.grey[50024],l=i.palette.grey[50048],h=i.palette.grey[50056],b="white";return Object(u.jsx)(j.a,{sx:Object(m.a)({width:{xs:"150px",sm:"180px",md:"200px"},height:{sx:"150px",sm:"180px",height:"200px"}},t),children:Object(u.jsxs)("svg",{width:"100%",height:"100%",viewBox:"0 0 406 406",xmlns:"http://www.w3.org/2000/svg",version:"1.1",style:{filter:"drop-shadow(3px 3px 2px #000)"},children:[Object(u.jsxs)("g",{stroke:l,strokeWidth:"3",fill:o,style:{cursor:"pointer"},className:"control",onClick:r,children:[Object(u.jsx)("g",{transform:"translate(125,275) rotate(180 0 0) scale(3,-3)",children:Object(u.jsx)("path",{fill:b,stroke:"none",d:"M4 8V6a6 6 0 1 1 12 0v2h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2h1zm5 6.73V17h2v-2.27a2 2 0 1 0-2 0zM7 6v2h6V6a3 3 0 0 0-6 0z"})}),Object(u.jsx)("path",{d:"M0 200 h100 A100 100 0 0 0 200 300 v 100 A 200 200 0 0 1 0 200"})]}),Object(u.jsxs)("g",{stroke:l,strokeWidth:"3",fill:o,style:{cursor:"pointer"},onClick:a,children:[Object(u.jsx)("g",{transform:"translate(125,60) rotate(180 0 0) scale(3,-3)",children:Object(u.jsx)("path",{fill:b,stroke:"none",d:"M4 8V6a6 6 0 1 1 12 0h-3v2h4a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2h1zm5 6.73V17h2v-2.27a2 2 0 1 0-2 0zM7 6v2h6V6a3 3 0 0 0-6 0z"})}),Object(u.jsx)("path",{d:"M0 200 h100 A100 100 0 0 1 200 100 v -100 A 200 200 0 0 0 0 200"})]}),Object(u.jsxs)("g",{stroke:l,strokeWidth:"3",fill:o,style:{cursor:"pointer"},onClick:n,children:[Object(u.jsx)("g",{transform:"translate(275,125) rotate(0 180 0) scale(3,-3)",children:Object(u.jsx)("path",{fill:b,stroke:"none",d:"M10 11c-.57 0-1 .45-1 1s.43 1 1 1c.54 0 1-.45 1-1s-.46-1-1-1m.5-9c4.5 0 4.59 3.57 2.23 4.75c-.99.49-1.43 1.54-1.62 2.47c.48.2.89.51 1.22.91c3.7-2 7.67-1.21 7.67 2.37c0 4.5-3.57 4.6-4.74 2.23c-.5-.99-1.56-1.43-2.49-1.62c-.2.48-.51.89-.91 1.23C13.85 18.03 13.06 22 9.5 22c-4.5 0-4.6-3.58-2.24-4.76c.98-.49 1.42-1.53 1.62-2.45c-.49-.2-.92-.52-1.24-.92C3.95 15.85 0 15.07 0 11.5C0 7 3.56 6.89 4.73 9.26c.5.99 1.55 1.42 2.48 1.61c.19-.48.51-.9.92-1.22C6.14 5.96 6.93 2 10.5 2M22 13V7h2v6h-2m0 4v-2h2v2h-2Z"})}),Object(u.jsx)("path",{d:"M400 200 h-100 A100 100 0 0 0 200 100 v -100 A 200 200 0 0 1 400 200"})]}),Object(u.jsxs)("g",{stroke:l,strokeWidth:"3",fill:o,style:{cursor:"pointer"},onClick:e,children:[Object(u.jsxs)("g",{transform:"translate(340,270) rotate(180 0 0) scale(3.8,-3.8)",fill:b,stroke:"none",children:[Object(u.jsx)("path",{d:"M10 3c0 1.313-.304 2.508-.8 3.4a1.991 1.991 0 0 0-1.484-.38c-.28-.982-.91-2.04-1.838-2.969a8.368 8.368 0 0 0-.491-.454A5.976 5.976 0 0 1 8 2c.691 0 1.355.117 1.973.332c.018.219.027.442.027.668Zm0 5c0 .073-.004.146-.012.217c1.018-.019 2.2-.353 3.331-1.006a8.39 8.39 0 0 0 .57-.361a6.004 6.004 0 0 0-2.53-3.823a9.02 9.02 0 0 1-.145.64c-.34 1.269-.944 2.346-1.656 3.079c.277.343.442.78.442 1.254Zm-.137.728a2.007 2.007 0 0 1-1.07 1.109c.525.87 1.405 1.725 2.535 2.377c.2.116.402.222.605.317a5.986 5.986 0 0 0 2.053-4.111c-.208.073-.421.14-.641.199c-1.264.339-2.493.356-3.482.11ZM8 10c-.45 0-.866-.149-1.2-.4c-.494.89-.796 2.082-.796 3.391c0 .23.01.457.027.678A5.99 5.99 0 0 0 8 14c.94 0 1.83-.216 2.623-.602a8.359 8.359 0 0 1-.497-.458c-.925-.926-1.555-1.981-1.836-2.96c-.094.013-.191.02-.29.02ZM6 8c0-.08.005-.16.014-.239c-1.02.017-2.205.351-3.34 1.007a8.366 8.366 0 0 0-.568.359a6.003 6.003 0 0 0 2.525 3.839a8.37 8.37 0 0 1 .148-.653c.34-1.267.94-2.342 1.65-3.075A1.988 1.988 0 0 1 6 8Zm-3.347-.632c1.267-.34 2.498-.355 3.488-.107c.196-.494.583-.89 1.07-1.1c-.524-.874-1.406-1.733-2.541-2.388a8.363 8.363 0 0 0-.594-.312a5.987 5.987 0 0 0-2.06 4.106c.206-.074.418-.14.637-.199ZM8 9a1 1 0 1 0 0-2a1 1 0 0 0 0 2Z"}),Object(u.jsx)("path",{d:"M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14Zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z"})]}),Object(u.jsx)("path",{d:"M400 200 h-100 A100 100 0 0 1 200 300 v 100 A 200 200 0 0 0 400 200"})]}),Object(u.jsxs)("g",{stroke:l,strokeWidth:"3",fill:o,style:{cursor:"pointer"},onClick:s,children:[Object(u.jsx)("g",{transform:"translate(270,130) rotate(180 0 0) scale(6,-6)",children:Object(u.jsx)("path",{fill:h,stroke:"none",d:"M12 2C7.589 2 4 5.589 4 9.995C3.971 16.44 11.696 21.784 12 22c0 0 8.029-5.56 8-12c0-4.411-3.589-8-8-8zm0 12c-2.21 0-4-1.79-4-4s1.79-4 4-4s4 1.79 4 4s-1.79 4-4 4z"})}),Object(u.jsx)("circle",{cx:"200",cy:"200",r:"96"})]})]})})}f.propTypes={sx:p.a.object,handleLocation:p.a.func,handleTurnOn:p.a.func,handleTurnOff:p.a.func,handleLock:p.a.func,handleUnlock:p.a.func};var v=e(369),M=Object(v.a)("div")((function(){return{right:0,bottom:0,zIndex:99999,width:"100%",height:"100%",position:"fixed",display:"flex",alignItems:"center",justifyContent:"center",backgroundColor:"#061c2ad1"}}));function k(c){var t=c.message,e=c.description;return Object(u.jsx)(M,{children:Object(u.jsxs)(h.a,{sx:{width:300,minHeight:100,border:"1px solid",borderColor:"grey.50048",p:4,textAlign:"center",backgroundColor:"transparent"},children:[Object(u.jsx)(o.a,{variant:"subtitle1",children:t}),Object(u.jsx)(o.a,{variant:"subtitle2",children:e})]})})}var y=e(72),w=e(62),C=e(265),Z=e(84),A=e(921),L=e(257),T=function(){return Object(u.jsx)("div",{style:{width:30,height:30},children:Object(u.jsx)(L.a,{color:"red"})})};function V(c){var t=c.center,e=c.lat,n=c.lng,r={center:{lat:(null===t||void 0===t?void 0:t.lat)||10.99835602,lng:(null===t||void 0===t?void 0:t.lng)||77.01502627},zoom:2};return Object(u.jsx)("div",{style:{height:"100vh",width:"100%"},children:Object(u.jsx)(A.a,{bootstrapURLKeys:{key:""},defaultCenter:r.center,defaultZoom:r.zoom,children:Object(u.jsx)(T,{lat:void 0!==e?e:59.955413,lng:void 0!==n?n:30.337844})})})}var S=e(87);function H(){var c=Object(d.a)(),t=Object(r.useState)(!1),e=Object(n.a)(t,2),m=e[0],O=e[1],p=Object(r.useState)("initializing..."),v=Object(n.a)(p,2),M=v[0],A=v[1],L=Object(r.useState)(""),T=Object(n.a)(L,2),H=T[0],I=T[1],N=Object(w.a)().user,F=Object(r.useState)(""),U=Object(n.a)(F,2),W=U[0],D=U[1],J=Object(r.useState)(),B=Object(n.a)(J,2),E=B[0],G=B[1],R=Object(r.useState)(c.palette.grey[50048]),_=Object(n.a)(R,2),K=_[0],q=_[1],P=Object(r.useState)(!1),Q=Object(n.a)(P,2),X=Q[0],Y=Q[1],$=Object(r.useState)(),cc=Object(n.a)($,2),tc=cc[0],ec=cc[1],nc=function(c){O(!0),I(""),Z.a.post("/api/device/control/:".concat(c)).then((function(t){t.data.success?(D(c),I("".concat(t.data.action," was success"))):t.data.err&&(D(""),"object"===typeof t.data.err&&I("code = ".concat(t.data.err.code,", host= ").concat(t.data.err.address,", port = ").concat(t.data.err.port)),"string"===typeof t.data.err&&I(t.data.err)),setTimeout((function(){O(!1)}),3e3)})).catch((function(c){O(!1)}))},rc=Object(y.a)("down","sm");return Object(r.useEffect)((function(){if(N&&N.phoneNumber){var c=b.a.connect("".concat(S.b));c.emit("logined",N),c.on("data-received",(function(c){if(console.log(c," received data"),c.payload&&c.from_client_id===N.phoneNumber&&c.from===N.device.type){var t=JSON.parse(c.payload);console.log(t,"is payload data");var e=new Date(c.ts);1===t.motion&&ec("".concat(e.getHours(),":").concat(e.getMinutes(),":").concat(e.getSeconds())),1===t.motion&&0===t.sta&&q("red"),1===t.sta&&q("green"),G({temp:t.temp,hum:t.hum,Lat:t.Lat,Lon:t.Lon,motion:t.motion,light:t.light,sta:t.sta})}})),console.log("socket connected")}}),[]),Object(u.jsxs)(x.a,{title:"Remote Car Control",children:[Object(u.jsx)(C.a,{}),Object(u.jsxs)(a.a,{sx:{pt:{xs:8,md:11}},children:[m&&Object(u.jsx)(k,{message:M,description:H}),Object(u.jsxs)(s.a,{container:!0,spacing:3,sx:{backgroundImage:"url(images/back.svg)"},children:[Object(u.jsxs)(s.a,{item:!0,xs:12,md:6,textAlign:"center",children:[Object(u.jsx)(z,{sx:{width:"50%",m:"auto"},device:N.device,color:K,action:W,status:E}),rc&&Object(u.jsxs)(i.a,{gap:2,position:"absolute",top:"15%",left:"5%",children:[Object(u.jsxs)(i.a,{gap:2,direction:"row",justifyItems:"cneter",children:[Object(u.jsx)(g.a,{icon:"carbon:temperature-max",width:30,height:30}),Object(u.jsx)(o.a,{children:(null===E||void 0===E?void 0:E.temp)||"unreadable"})]}),Object(u.jsxs)(i.a,{gap:2,direction:"row",justifyItems:"cneter",children:[Object(u.jsx)(g.a,{icon:"carbon:humidity",width:30,height:30}),Object(u.jsx)(o.a,{children:(null===E||void 0===E?void 0:E.hum)||"unreadable"})]}),Object(u.jsxs)(i.a,{gap:2,direction:"row",justifyItems:"cneter",children:[E&&1===E.light&&Object(u.jsx)(g.a,{icon:"iconoir:light-bulb-on",width:30,height:30})||Object(u.jsx)(g.a,{icon:"iconoir:light-bulb-off",width:30,height:30}),Object(u.jsxs)(o.a,{children:["Light: ",E&&1===E.light?"ON":"OFF"]})]}),Object(u.jsxs)(i.a,{gap:2,direction:"row",justifyItems:"cneter",children:[Object(u.jsx)(g.a,{icon:"bx:water",width:30,height:30}),Object(u.jsx)(o.a,{children:tc})]})]})]}),Object(u.jsx)(s.a,{item:!0,xs:12,md:6,children:Object(u.jsxs)(i.a,{gap:3,justifyContent:"space-between",children:[!rc&&Object(u.jsxs)(u.Fragment,{children:[Object(u.jsx)(o.a,{variant:"h4",sx:{mt:3},children:"Informations"}),Object(u.jsx)(l.a,{}),Object(u.jsxs)(j.a,{sx:{display:"grid",columnGap:2,rowGap:3,gridTemplateColumns:{xs:"repeat(2, 1fr)",md:"repeat(3, 1fr)"}},children:[Object(u.jsxs)(h.a,{sx:{minHeight:100,border:"1px solid",borderColor:"grey.50048",p:2,textAlign:"center"},children:[Object(u.jsx)(g.a,{icon:"carbon:temperature-max",width:30,height:30}),Object(u.jsx)(o.a,{children:(null===E||void 0===E?void 0:E.temp)||"unreadable"})]}),Object(u.jsxs)(h.a,{sx:{minHeight:100,border:"1px solid",borderColor:"grey.50048",p:2,textAlign:"center"},children:[Object(u.jsx)(g.a,{icon:"carbon:humidity",width:30,height:30}),Object(u.jsx)(o.a,{children:(null===E||void 0===E?void 0:E.hum)||"unreadable"})]}),Object(u.jsxs)(h.a,{sx:{minHeight:100,border:"1px solid",borderColor:"grey.50048",p:2,textAlign:"center"},children:[E&&1===E.light&&Object(u.jsx)(g.a,{icon:"iconoir:light-bulb-on",width:30,height:30})||Object(u.jsx)(g.a,{icon:"iconoir:light-bulb-off",width:30,height:30}),Object(u.jsxs)(o.a,{children:["Light: ",E&&1===E.light?"ON":"OFF"]})]})]}),Object(u.jsx)(o.a,{variant:"h4",children:"Car Control"})]}),Object(u.jsx)(l.a,{}),Object(u.jsx)(f,{sx:{mx:"auto"},handleLock:function(){A("Lock the car's door...."),nc("lock")},handleTurnOff:function(){A("Turn off the car's engine...."),nc("turnoff")},handleTurnOn:function(){A("Turn on the car's engine...."),nc("turnon")},handleUnlock:function(){A("Unlock the car's door...."),nc("unlock")},handleLocation:function(){Y(!X)}})]})}),X&&Object(u.jsx)(s.a,{item:!0,xs:12,children:Object(u.jsx)(i.a,{gap:3,justifyContent:"space-between",children:Object(u.jsx)(V,{lat:null===E||void 0===E?void 0:E.Lat,lng:null===E||void 0===E?void 0:E.Lon})})})]})]})]})}}}]);
//# sourceMappingURL=6.39512dd7.chunk.js.map | 17,763 | 35,481 | 0.629145 |
b73f586b70b4e3b342caf780813cd241c162033f | 8,413 | js | JavaScript | assets/employer/app-assets/js/scripts/charts/echarts/line-area/line-multilevel-control.js | vishalrr/ci_login_register | 95263880f408bed4c05d42a48be5fd4e24c2bdba | [
"MIT"
] | null | null | null | assets/employer/app-assets/js/scripts/charts/echarts/line-area/line-multilevel-control.js | vishalrr/ci_login_register | 95263880f408bed4c05d42a48be5fd4e24c2bdba | [
"MIT"
] | null | null | null | assets/employer/app-assets/js/scripts/charts/echarts/line-area/line-multilevel-control.js | vishalrr/ci_login_register | 95263880f408bed4c05d42a48be5fd4e24c2bdba | [
"MIT"
] | null | null | null | /*=========================================================================================
File Name: line-multilevel-control.js
Description: echarts line multilevel control chart
==========================================================================================*/
// Line multilevel control chart
// ------------------------------
$(window).on("load", function(){
// Set paths
// ------------------------------
require.config({
paths: {
echarts: '../../../app-assets/vendors/js/charts/echarts'
}
});
// Configuration
// ------------------------------
require(
[
'echarts',
'echarts/chart/bar',
'echarts/chart/line'
],
// Charts setup
function (ec) {
// Initialize chart
// ------------------------------
var myChart = ec.init(document.getElementById('line-multi-level-control'));
// Chart Options
// ------------------------------
chartOptions = {
// Setup grid
grid: {
x: 40,
x2: 20,
y: 35,
y2: 25
},
// Add tooltip
tooltip: {
trigger: 'axis'
},
// Add legend
legend: {
data: ['Email marketing', 'Advertising alliance', 'Direct access', 'Search engine']
},
// Enable drag recalculate
calculable: true,
// Horizontal axis
xAxis: [{
type: 'category',
boundaryGap: false,
data: [
'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'
]
}],
// Vertical axis
yAxis: [{
type: 'value'
}],
// Add series
series : [
{
name:'Email marketing',
type:'line',
stack: 'Total',
symbol: 'none',
itemStyle: {
normal: {
areaStyle: {
// Regional map, longitudinal gradient fill
color : '#F6BB42'
}
}
},
data:[
120, 132, 301, 134,
{value:90, symbol:'droplet',symbolSize:5},
230, 210
]
},
{
name:'Advertising alliance',
type:'line',
stack: 'Total',
smooth: true,
symbolSize: 8,
data:[
120, 82,
{
value:201,
symbol: 'star', // Data class personalized inflection Graphics
symbolSize : 15,
itemStyle : { normal: {label : {
show: true,
textStyle : {
fontSize : '20',
fontFamily : '微软雅黑',
fontWeight : 'bold'
}
}}}
},
{
value:134,
symbol: 'none'
},
190,
{
value : 230,
symbol: 'emptypin',
symbolSize: 8
},
110
]
},
{
name:'Direct access',
type:'line',
stack: 'Total',
symbol: 'arrow',
symbolSize: 6,
symbolRotate: -45,
itemStyle: {
normal: {
color: 'red',
lineStyle: { // A line-level personalized style
width: 2,
type: 'dashed'
}
},
emphasis: {
color: 'blue'
}
},
data:[
320, 332, '-', 334,
{
value: 390,
symbol: 'star6',
symbolSize : 20,
symbolRotate : 10,
itemStyle: { // Data class personalized style polyline
normal: {
color: 'yellowgreen'
},
emphasis: {
color: 'orange',
label : {
show: true,
position: 'inside',
textStyle : {
fontSize : '20'
}
}
}
}
},
330, 320
]
},
{
name:'Search engine',
type:'line',
symbol:'emptyCircle',
itemStyle: {
normal: {
lineStyle: { // A line-level personalized style, horizontal gradient strokes
width: 2,
color: '#F6BB42',
shadowColor : 'rgba(0,0,0,0.5)',
shadowBlur: 10,
shadowOffsetX: 8,
shadowOffsetY: 8
}
},
emphasis : {
label : {show: true}
}
},
data:[
620, 732, 791,
{value:734, symbol:'emptyHeart',symbolSize:10},
890, 930, 820
]
}
]
};
// Apply options
// ------------------------------
myChart.setOption(chartOptions);
// Resize chart
// ------------------------------
$(function () {
// Resize chart on menu width change and window resize
$(window).on('resize', resize);
$(".menu-toggle").on('click', resize);
// Resize function
function resize() {
setTimeout(function() {
// Resize chart
myChart.resize();
}, 200);
}
});
}
);
}); | 35.49789 | 120 | 0.232735 |
b7400429169b56541dbb58f7eae10595214410e0 | 2,328 | js | JavaScript | src/components/user-form/user-form.component.js | thiagodesouza/github-users | f642683dc1cdbbad3d0f9d6356cde9c9d1ad0710 | [
"MIT"
] | 1 | 2019-06-21T11:26:55.000Z | 2019-06-21T11:26:55.000Z | src/components/user-form/user-form.component.js | thiagodesouza/github-users | f642683dc1cdbbad3d0f9d6356cde9c9d1ad0710 | [
"MIT"
] | 1 | 2020-06-18T15:03:39.000Z | 2020-06-18T15:03:39.000Z | src/components/user-form/user-form.component.js | thiagodesouza/github-users | f642683dc1cdbbad3d0f9d6356cde9c9d1ad0710 | [
"MIT"
] | null | null | null | import { app } from '../../app.module';
import template from './user-form.component.html';
import './user-form.component.scss';
class UserFormController {
static get $inject() {
return ['$scope', '$element', '$http', '$ngRedux'];
}
constructor($scope, $element, $http, $ngRedux) {
Object.assign(this, {
$: $element[0],
$scope,
$http,
$ngRedux,
});
this.__store = $ngRedux.connect(store =>
Object({
users: store.users.data,
}),
)(this);
this.open = false;
this.user = null;
this.userIsValid = false;
}
$onInit() {
Object.assign(this.$, {
toggle: this.toggle.bind(this),
});
}
$onDestroy() {
this.__store();
}
toggle() {
this.open = !this.open;
if (this.open) {
this.$.setAttribute('open', '');
} else {
this.$.removeAttribute('open');
}
}
clear() {
this.user = null;
this.userIsValid = false;
}
cancel() {
if (this.open) {
this.toggle();
}
this.clear();
}
save() {
this.callback({ data: this.user });
this.cancel();
}
_isValidUser() {
return !!this.user && !this.users.some(item => item.login === this.user.login);
}
handleSearchButton() {
const searchInput = this.$.querySelector('#user-form-content-search-input');
const searchButton = this.$.querySelector('#user-form-content-search-button');
if (searchInput.value) {
searchButton.setAttribute('loading', '');
this.$http({
method: 'GET',
url: `https://api.github.com/users/${searchInput.value}`,
}).then(
response => {
this.user = response.data;
this.userIsValid =
!!this.user && !this.users.some(item => item.login === this.user.login);
this.$.querySelector('#user-form-content-search-input').value = null;
searchButton.removeAttribute('loading', '');
},
err => {
// eslint-disable-next-line no-console
console.log(err);
searchButton.removeAttribute('loading', '');
},
);
}
}
}
class UserForm {
constructor() {
this.template = template;
this.bindings = {
callback: '&',
};
this.controller = UserFormController;
}
}
app.component('userForm', new UserForm());
| 20.60177 | 84 | 0.551976 |
b7400ddfcd3805b74b734490a9c7f20702c100ea | 1,380 | js | JavaScript | dist/skylark-videojs/utils/url.js | skylark-integration/skylark-videojs | 27a6303f832f54c09c986eab46139acd95d1879a | [
"MIT"
] | null | null | null | dist/skylark-videojs/utils/url.js | skylark-integration/skylark-videojs | 27a6303f832f54c09c986eab46139acd95d1879a | [
"MIT"
] | null | null | null | dist/skylark-videojs/utils/url.js | skylark-integration/skylark-videojs | 27a6303f832f54c09c986eab46139acd95d1879a | [
"MIT"
] | null | null | null | /**
* skylark-videojs - A version of video.js that ported to running on skylarkjs.
* @author Hudaokeji Co.,Ltd
* @version v0.9.0
* @link www.skylarkjs.org
* @license MIT
*/
define(["skylark-langx-globals/document"],function(o){"use strict";const t=function(t){const e=["protocol","hostname","port","pathname","search","hash","host"];let r=o.createElement("a");r.href=t;const n=""===r.host&&"file:"!==r.protocol;let s;n&&((s=o.createElement("div")).innerHTML=`<a href="${t}"></a>`,r=s.firstChild,s.setAttribute("style","display:none; position:absolute;"),o.body.appendChild(s));const l={};for(let o=0;o<e.length;o++)l[e[o]]=r[e[o]];return"http:"===l.protocol&&(l.host=l.host.replace(/:80$/,"")),"https:"===l.protocol&&(l.host=l.host.replace(/:443$/,"")),l.protocol||(l.protocol=window.location.protocol),n&&o.body.removeChild(s),l};return{parseUrl:t,getAbsoluteURL:function(t){if(!t.match(/^https?:\/\//)){const e=o.createElement("div");e.innerHTML=`<a href="${t}">x</a>`,t=e.firstChild.href}return t},getFileExtension:function(o){if("string"==typeof o){const t=/^(\/?)([\s\S]*?)((?:\.{1,2}|[^\/]+?)(\.([^\.\/\?]+)))(?:[\/]*|[\?].*)$/.exec(o);if(t)return t.pop().toLowerCase()}return""},isCrossOrigin:function(o,e=window.location){const r=t(o);return(":"===r.protocol?e.protocol:r.protocol)+r.host!==e.protocol+e.host}}});
//# sourceMappingURL=../sourcemaps/utils/url.js.map
| 138 | 1,148 | 0.647101 |
b740d2ab5f5bd5e95fb4a4af6545b492619cfb62 | 265 | js | JavaScript | src/constants/skills.js | aclinal/alexleung.ca-v2 | 00e52c8b5eceb892600832839e1371d2ae36332b | [
"MIT"
] | null | null | null | src/constants/skills.js | aclinal/alexleung.ca-v2 | 00e52c8b5eceb892600832839e1371d2ae36332b | [
"MIT"
] | null | null | null | src/constants/skills.js | aclinal/alexleung.ca-v2 | 00e52c8b5eceb892600832839e1371d2ae36332b | [
"MIT"
] | null | null | null | export const skills = [
{skill: 'C++ 14'},
{skill: 'Java 11'},
{skill: 'Javascript'},
{skill: 'HTML / CSS'},
{skill: 'SQL'},
{skill: 'Agile Scrum'},
{skill: 'Embedded Systems'},
{skill: 'Distributed Systems'},
{skill: 'Electric Power Systems'}
];
| 22.083333 | 35 | 0.581132 |
b740db43d22fb4da4670cfd1bc42a48dfdc003a7 | 655 | js | JavaScript | app/react/store/factory.js | sowbiba/db-manager | 55713ee43d1744517f9c41700731d9194b49afc4 | [
"MIT"
] | null | null | null | app/react/store/factory.js | sowbiba/db-manager | 55713ee43d1744517f9c41700731d9194b49afc4 | [
"MIT"
] | null | null | null | app/react/store/factory.js | sowbiba/db-manager | 55713ee43d1744517f9c41700731d9194b49afc4 | [
"MIT"
] | null | null | null | var Redux = require('redux');
module.exports = function () {
return Redux.applyMiddleware(
require('./middlewares/api')
)
(Redux.createStore)
(Redux.combineReducers({
workspace: require('./reducers/workspace')
}));
};
/**
* var Redux = require('redux');
module.exports = function () {
return Redux.applyMiddleware(
require('./middlewares/api'),
require('./middlewares/data')
)
(Redux.createStore)
(Redux.combineReducers({
workspace: require('./reducers/workspace'),
modals: require('./reducers/modals'),
status: require('./reducers/status')
}));
};
**/ | 22.586207 | 51 | 0.59542 |
b740ffcda3f8da6c31c3a0bb1f1945899b85b02b | 303 | js | JavaScript | tests/react_instance/intrinsic.js | mourner/flow | 8bb9d4ef01786d18b9033f16fb0c6eec21f4b0eb | [
"MIT"
] | 20,996 | 2015-01-01T13:51:47.000Z | 2022-03-31T17:44:01.000Z | tests/react_instance/intrinsic.js | mourner/flow | 8bb9d4ef01786d18b9033f16fb0c6eec21f4b0eb | [
"MIT"
] | 8,315 | 2015-01-01T19:56:43.000Z | 2022-03-31T15:58:10.000Z | tests/react_instance/intrinsic.js | mourner/flow | 8bb9d4ef01786d18b9033f16fb0c6eec21f4b0eb | [
"MIT"
] | 2,338 | 2015-01-05T03:28:26.000Z | 2022-03-26T20:40:56.000Z | // @flow
declare var any: any;
(any: React$ElementRef<'foo'>).yep1; // OK
(any: React$ElementRef<'foo'>).yep2; // Error
(any: React$ElementRef<'foo'>).nope; // Error
(any: React$ElementRef<'bar'>).yep1; // Error
(any: React$ElementRef<'bar'>).yep2; // OK
(any: React$ElementRef<'bar'>).nope; // Error
| 27.545455 | 45 | 0.640264 |
b7414c8bb097865f4894a1bc3899111fa0042806 | 10,876 | js | JavaScript | tests/integration/serializers/json-api-serializer/associations/collection-test.js | simonihmig/ember-cli-mirage | 448d6dbb25741a4d1f378d4cf801afa5ae5529f7 | [
"MIT"
] | null | null | null | tests/integration/serializers/json-api-serializer/associations/collection-test.js | simonihmig/ember-cli-mirage | 448d6dbb25741a4d1f378d4cf801afa5ae5529f7 | [
"MIT"
] | 3 | 2022-01-13T08:40:46.000Z | 2022-01-17T08:34:29.000Z | tests/integration/serializers/json-api-serializer/associations/collection-test.js | simonihmig/ember-cli-mirage | 448d6dbb25741a4d1f378d4cf801afa5ae5529f7 | [
"MIT"
] | null | null | null | import Schema from 'ember-cli-mirage/orm/schema';
import Db from 'ember-cli-mirage/db';
import SerializerRegistry from 'ember-cli-mirage/serializer-registry';
import { Model, hasMany, belongsTo, JSONAPISerializer } from 'ember-cli-mirage';
import { module, test } from 'qunit';
module('Integration | Serializers | JSON API Serializer | Associations | Collection', {
beforeEach() {
this.schema = new Schema(new Db(), {
wordSmith: Model.extend({
posts: hasMany('blogPost', { inverse: 'author' })
}),
blogPost: Model.extend({
author: belongsTo('wordSmith', { inverse: 'posts' }),
comments: hasMany('fineComment', { inverse: 'post' })
}),
fineComment: Model.extend({
post: belongsTo('blogPost')
})
});
}
});
test(`it includes all relationships for a collection, regardless of being included`, function(assert) {
let registry = new SerializerRegistry(this.schema, {
application: JSONAPISerializer
});
this.schema.wordSmiths.create({ firstName: 'Link', age: 123 });
this.schema.wordSmiths.create({ firstName: 'Zelda', age: 456 });
let collection = this.schema.wordSmiths.all();
let result = registry.serialize(collection);
assert.deepEqual(result, {
data: [{
type: 'word-smiths',
id: '1',
attributes: {
'first-name': 'Link',
age: 123
},
relationships: {
'posts': {
data: []
}
}
}, {
type: 'word-smiths',
id: '2',
attributes: {
'first-name': 'Zelda',
age: 456
},
relationships: {
'posts': {
data: []
}
}
}]
});
});
test(`it can serialize a collection with a has-many relationship`, function(assert) {
let registry = new SerializerRegistry(this.schema, {
application: JSONAPISerializer,
wordSmith: JSONAPISerializer.extend({
include: ['posts']
})
});
let link = this.schema.wordSmiths.create({ firstName: 'Link' });
link.createPost({ title: 'Lorem' });
link.createPost({ title: 'Ipsum' });
this.schema.wordSmiths.create({ firstName: 'Zelda' });
let collection = this.schema.wordSmiths.all();
let result = registry.serialize(collection);
assert.deepEqual(result, {
data: [
{
type: 'word-smiths',
id: '1',
attributes: {
'first-name': 'Link'
},
relationships: {
'posts': {
data: [
{ type: 'blog-posts', id: '1' },
{ type: 'blog-posts', id: '2' }
]
}
}
},
{
type: 'word-smiths',
id: '2',
attributes: {
'first-name': 'Zelda'
},
relationships: {
'posts': {
data: []
}
}
}
],
included: [
{
type: 'blog-posts',
id: '1',
attributes: {
title: 'Lorem'
},
relationships: {
'comments': {
data: []
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
},
{
type: 'blog-posts',
id: '2',
attributes: {
title: 'Ipsum'
},
relationships: {
'comments': {
data: []
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
}
]
});
});
test(`it can serialize a collection with a chain of has-many relationships`, function(assert) {
let registry = new SerializerRegistry(this.schema, {
application: JSONAPISerializer,
wordSmith: JSONAPISerializer.extend({
include: ['posts']
}),
blogPost: JSONAPISerializer.extend({
include: ['comments']
})
});
let link = this.schema.wordSmiths.create({ firstName: 'Link' });
let lorem = link.createPost({ title: 'Lorem' });
lorem.createComment({ text: 'pwned' });
link.createPost({ title: 'Ipsum' });
this.schema.wordSmiths.create({ firstName: 'Zelda' });
let collection = this.schema.wordSmiths.all();
let result = registry.serialize(collection);
assert.deepEqual(result, {
data: [
{
type: 'word-smiths',
id: '1',
attributes: {
'first-name': 'Link'
},
relationships: {
'posts': {
data: [
{ type: 'blog-posts', id: '1' },
{ type: 'blog-posts', id: '2' }
]
}
}
},
{
type: 'word-smiths',
id: '2',
attributes: {
'first-name': 'Zelda'
},
relationships: {
'posts': {
data: []
}
}
}
],
included: [
{
type: 'blog-posts',
id: '1',
attributes: {
title: 'Lorem'
},
relationships: {
'comments': {
data: [
{ type: 'fine-comments', id: '1' }
]
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
},
{
type: 'fine-comments',
id: '1',
attributes: {
text: 'pwned'
},
relationships: {
'post': {
data: { type: 'blog-posts', id: '1' }
}
}
},
{
type: 'blog-posts',
id: '2',
attributes: {
title: 'Ipsum'
},
relationships: {
'comments': {
data: []
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
}
]
});
});
test(`it can serialize a collection with a belongs-to relationship`, function(assert) {
let registry = new SerializerRegistry(this.schema, {
application: JSONAPISerializer,
blogPost: JSONAPISerializer.extend({
include: ['author']
})
});
let link = this.schema.wordSmiths.create({ firstName: 'Link' });
let post = link.createPost({ title: 'Lorem' });
post.createComment();
link.createPost({ title: 'Ipsum' });
this.schema.wordSmiths.create({ firstName: 'Zelda' });
let blogPosts = this.schema.blogPosts.all();
let result = registry.serialize(blogPosts);
assert.deepEqual(result, {
data: [
{
type: 'blog-posts',
id: '1',
attributes: {
title: 'Lorem'
},
relationships: {
'comments': {
data: [
{ type: 'fine-comments', id: '1' }
]
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
},
{
type: 'blog-posts',
id: '2',
attributes: {
title: 'Ipsum'
},
relationships: {
'comments': {
data: []
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
}
],
included: [
{
type: 'word-smiths',
id: '1',
attributes: {
'first-name': 'Link'
},
relationships: {
'posts': {
data: [
{ type: 'blog-posts', id: '1' },
{ type: 'blog-posts', id: '2' }
]
}
}
}
]
});
});
test(`it can serialize a collection with a chain of belongs-to relationships`, function(assert) {
let registry = new SerializerRegistry(this.schema, {
application: JSONAPISerializer,
fineComment: JSONAPISerializer.extend({
include: ['post']
}),
blogPost: JSONAPISerializer.extend({
include: ['author']
})
});
let link = this.schema.wordSmiths.create({ firstName: 'Link' });
let post = link.createPost({ title: 'Lorem' });
post.createComment({ text: 'pwned' });
link.createPost({ title: 'Ipsum' });
this.schema.wordSmiths.create({ firstName: 'Zelda' });
let fineComments = this.schema.fineComments.all();
let result = registry.serialize(fineComments);
assert.deepEqual(result, {
data: [
{
type: 'fine-comments',
id: '1',
attributes: {
text: 'pwned'
},
relationships: {
'post': {
data: { type: 'blog-posts', id: '1' }
}
}
}
],
included: [
{
type: 'blog-posts',
id: '1',
attributes: {
title: 'Lorem'
},
relationships: {
'comments': {
data: [
{
id: '1',
type: 'fine-comments'
}
]
},
'author': {
data: { type: 'word-smiths', id: '1' }
}
}
},
{
type: 'word-smiths',
id: '1',
attributes: {
'first-name': 'Link'
},
relationships: {
'posts': {
data: [
{
id: '1',
type: 'blog-posts'
},
{
id: '2',
type: 'blog-posts'
}
]
}
}
}
]
});
});
test(`it can serialize a collection of models that have both belongs-to and has-many relationships`, function(assert) {
let registry = new SerializerRegistry(this.schema, {
application: JSONAPISerializer,
blogPost: JSONAPISerializer.extend({
include: ['author', 'comments']
})
});
let link = this.schema.wordSmiths.create({ firstName: 'Link' });
let post = link.createPost({ title: 'Lorem' });
post.createComment({ text: 'pwned' });
link.createPost({ title: 'Ipsum' });
this.schema.wordSmiths.create({ firstName: 'Zelda' });
let blogPost = this.schema.blogPosts.find(1);
let result = registry.serialize(blogPost);
assert.deepEqual(result, {
data: {
type: 'blog-posts',
id: '1',
attributes: {
title: 'Lorem'
},
relationships: {
'author': {
data: { type: 'word-smiths', id: '1' }
},
'comments': {
data: [{ type: 'fine-comments', id: '1' }]
}
}
},
included: [
{
type: 'word-smiths',
id: '1',
attributes: {
'first-name': 'Link'
},
relationships: {
'posts': {
data: [
{
id: '1',
type: 'blog-posts'
},
{
id: '2',
type: 'blog-posts'
}
]
}
}
},
{
type: 'fine-comments',
id: '1',
attributes: {
'text': 'pwned'
},
relationships: {
'post': {
data: {
id: '1',
type: 'blog-posts'
}
}
}
}
]
});
});
| 23.189765 | 119 | 0.455498 |
b7418f08f68b377bb7b93d9e2dbb372602bab82d | 469 | js | JavaScript | script.js | Bilchuck/sicp | 1f7b1c69885907b5282b22b4af5d80aaa50a9682 | [
"MIT"
] | null | null | null | script.js | Bilchuck/sicp | 1f7b1c69885907b5282b22b4af5d80aaa50a9682 | [
"MIT"
] | 1 | 2017-05-22T21:37:57.000Z | 2017-05-22T21:38:28.000Z | script.js | Bilchuck/sicp | 1f7b1c69885907b5282b22b4af5d80aaa50a9682 | [
"MIT"
] | null | null | null | // 1) Замикання (closure)
for (var i = 0; i < 10; i++) {
(function(i) {
setTimeout(function() {
console.log(i);
}, 0);
})(i);
}
//2)
for (let i = 0; i < 10; i++) {
setTimeout(function() {
console.log(i);
}, 0);
}
//index.html-> 10 * <input class='button' >
var buttons = document.getElementsByClassName('button');
for (let i = 0; i < 10; i++) {
buttons[i].onclick = function(){
alert(i + 1);
}
}
| 18.038462 | 56 | 0.484009 |
b741bf604ca580714c4d9ac8448afa5356c0cef4 | 3,009 | js | JavaScript | src/methods/getContentItem.js | agility/agility-js | 2a4439d485a4009d6838f89a30bd4de31dd86f50 | [
"MIT"
] | 4 | 2020-01-27T22:38:16.000Z | 2021-04-11T16:39:32.000Z | src/methods/getContentItem.js | agility/agility-js | 2a4439d485a4009d6838f89a30bd4de31dd86f50 | [
"MIT"
] | 23 | 2019-03-14T16:13:16.000Z | 2022-02-12T07:13:03.000Z | src/methods/getContentItem.js | agility/agility-js | 2a4439d485a4009d6838f89a30bd4de31dd86f50 | [
"MIT"
] | 2 | 2019-11-29T22:44:27.000Z | 2020-02-23T21:38:54.000Z | import { buildRequestUrlPath, buildAuthHeader } from '../utils'
/**
* Gets the details of a content item by their Content ID.
* @memberof AgilityFetch.Client.Content
* @param {Object} requestParams - The paramters for the API request.
* @param {number} requestParams.contentID - The contentID of the requested item in this language.
* @param {string} requestParams.locale - The locale code of the content you want to retrieve.
* @param {string} requestParams.languageCode DEPRECATED: Use locale instead - The language code of the content you want to retrieve.
* @param {number} [requestParams.contentLinkDepth] - The depth, representing the levels in which you want linked content auto-resolved. Default is **1**.
* @param {boolean} [requestParams.expandAllContentLinks] - Whether or not to expand entire linked content references, includings lists and items that are rendered in the CMS as Grid or Link. Default is **false**
* @returns {Promise<AgilityFetch.Types.ContentItem>} - Returns a content item object.
* @example
*
* import agility from '@agility/content-fetch'
*
* const api = agility.getApi({
* guid: 'ade6cf3c',
* apiKey: 'defaultlive.201ffdd0841cacad5bb647e76547e918b0c9ecdb8b5ddb3cf92e9a79b03623cb',
* });
*
* api.getContentItem({
* contentID: 22,
* locale: 'en-us'
* })
* .then(function(contentItem) {
* console.log(contentItem);
* })
* .catch(function(error) {
* console.log(error);
* });
*
*/
function getContentItem(requestParams) {
validateRequestParams(requestParams);
//merge default params with request params
requestParams = {...defaultParams, ...requestParams};
const req = {
url: `/item/${requestParams.contentID}?contentLinkDepth=${requestParams.contentLinkDepth}&expandAllContentLinks=${requestParams.expandAllContentLinks}`,
method: 'get',
baseURL: buildRequestUrlPath(this.config, requestParams.locale ? requestParams.locale : requestParams.languageCode),
headers: buildAuthHeader(this.config),
params:{}
};
return this.makeRequest(req);
}
function validateRequestParams(requestParams) {
if(!requestParams.languageCode && !requestParams.locale) {
throw new TypeError('You must include a locale in your request params.')
}
else if(!requestParams.contentID) {
throw new TypeError('You must include a contentID number in your request params.');
} else if(requestParams.contentLinkDepth && (isNaN(requestParams.contentLinkDepth) || requestParams.contentLinkDepth < 0)) {
throw new TypeError('When specifying contentLinkDepth, it must be a number greater than 0.');
} else if(requestParams.expandAllContentLinks && typeof requestParams.expandAllContentLinks !== 'boolean') {
throw new TypeError('ExpandAllContentLinks parameter must be a value of true or false');
} else {
return;
}
}
const defaultParams = {
contentLinkDepth: 1,
expandAllContentLinks: false
}
export default getContentItem;
| 41.219178 | 212 | 0.723164 |
b741d6a5883da8557ed96645451219bfe4f561d6 | 324 | js | JavaScript | src/lib/reality/services/FlashMessageService.js | elyctech/reality-platform-react | 30b940b301a7ed8c4ee6bf51b0173495d484abdd | [
"MIT"
] | null | null | null | src/lib/reality/services/FlashMessageService.js | elyctech/reality-platform-react | 30b940b301a7ed8c4ee6bf51b0173495d484abdd | [
"MIT"
] | null | null | null | src/lib/reality/services/FlashMessageService.js | elyctech/reality-platform-react | 30b940b301a7ed8c4ee6bf51b0173495d484abdd | [
"MIT"
] | null | null | null | class FlashMessageService
{
constructor()
{
this.messages = [];
}
queueMessage(content, type)
{
this.messages.push({
content,
type
});
}
flushMessages()
{
const messages = this.messages;
this.messages = [];
return messages;
}
}
export default FlashMessageService;
| 12 | 36 | 0.595679 |
b74241b01b461ae942489bce1b356d3c4126e3f5 | 11,395 | js | JavaScript | src/api/view/PackResultView.js | SunilDhaker/freight-packer | 322e054da542bb381cc392717cf73605b271461c | [
"MIT"
] | 25 | 2019-02-21T12:16:56.000Z | 2022-01-12T07:08:59.000Z | src/api/view/PackResultView.js | SunilDhaker/freight-packer | 322e054da542bb381cc392717cf73605b271461c | [
"MIT"
] | 2 | 2019-10-24T11:28:19.000Z | 2021-12-02T12:10:53.000Z | src/api/view/PackResultView.js | SunilDhaker/freight-packer | 322e054da542bb381cc392717cf73605b271461c | [
"MIT"
] | 22 | 2019-02-21T12:16:58.000Z | 2022-03-24T12:52:22.000Z | import Utils from '../utils/cik/Utils';
import CargoListView from './CargoListView';
import CargoView from './CargoView';
import Pool from '../utils/cik/Pool';
import PackedCargoBoxView from './PackedCargoBoxView';
import PackingSpaceView from './PackingSpaceView';
import Tween from '../utils/cik/Tween';
import Packer from '../packer/Packer';
import BoxEntry from '../components/box/BoxEntry';
import Signaler from '../utils/cik/Signaler';
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
/**
* @typedef {Object} PackResultViewParams
* @property {import('../UX').default} ux
* @property {Number} animationDuration
*/
/** @type {PackResultViewParams} */
const defaultParams = {
animationDuration: 1
};
/**
* @param {CargoView} cargoView
* @returns {PackedCargoBoxView}
*/
function poolNewFN(cargoView){
//console.log('pool new', cargoView);
let packedCargoView = new PackedCargoBoxView(cargoView.entry);
packedCargoView.Extend(cargoView);
return packedCargoView;
}
/**
* @param {PackedCargoBoxView} object
* @param {CargoView} cargoView
* @returns {PackedCargoBoxView}
*/
function poolResetFN(object, cargoView){
//console.log('pool reset', cargoView);
object.Extend(cargoView);
return object;
}
function getOrientationAngles(orientation){
switch(orientation){
case 'xyz': return [0, 0, 0];
case 'xzy': return [90, 0, 0];
case 'yxz': return [0, 0, 90];
case 'yzx': return [90, 0, 90];
case 'zxy': return [90, -90, 0];
case 'zyx': return [0, -90, 0];
}
}
/**
* @param {string} orientation
*/
function getOrientationEuler(orientation){
const rad = Math.PI / 180.0;
let a = getOrientationAngles(orientation);
return new THREE.Euler(a[0] * rad, a[1] * rad, a[2] * rad);
}
var tempBox = new THREE.Box3();
var tempVec = new THREE.Vector3();
const signals = {
packVizStart: 'packVizStart',
packVizEnd: 'packVizEnd',
cargoVizCreate: 'cargoVizCreate',
cargoVizPack: 'cargoVizPack',
cargoVizUnpack: 'cargoVizUnpack'
};
class PackResultView extends Signaler{
/**
* @param {CargoListView} cargoListView
* @param {PackingSpaceView} packingSpaceView
* @param {PackResultViewParams} params
*/
constructor(cargoListView, packingSpaceView, params){
super();
this.cargoListView = cargoListView;
this.packingSpaceView = packingSpaceView;
this.params = Utils.AssignUndefined(params, defaultParams);
/** @type {Array<CargoView} */
this.cargoViews = [];
this.view = new THREE.Object3D();
this.pool = new Pool(poolNewFN, poolResetFN);
/** @type {Array<Tween>} */
this.animatingViews = [];
if(typeof window.Pizzicato !== 'undefined'){
let musipack = new (require('./components/Musipack').default)(this);
}
}
/**
* @param {Packer.PackingResult} packingResult
*/
async DisplayPackingResult(packingResult){
this.Dispatch(signals.packVizStart, packingResult);
if(packingResult.packed.length < 1) return;
let scope = this;
let units = this.params.ux.params.units;
let containingVolume = packingResult.packed[0].containingVolume;
let matrix = this.packingSpaceView.GetMatrix(containingVolume);
let offset = new THREE.Vector3();
let orientation = new THREE.Quaternion();
let scale = new THREE.Vector3();
matrix.decompose(offset, orientation, scale);
/** @type {Map<CargoView, Number>} */
let packedQuantities = new Map();
let animatingViews = this.animatingViews;
let view = this.view;
//let onTweenComplete = this.OnCargoFirstTweenComplete.bind(this);
let zEntry = containingVolume.dimensions.length;
let numPackedItems = packingResult.packed.length;
let delayPerItem = this.params.animationDuration * 1000 / numPackedItems;
for(let i = 0; i < numPackedItems; i++){
let item = packingResult.packed[i];
let cargoViewTemplate = this.cargoListView.GetTemplate(item.entry);
let packedQuantity = packedQuantities.get(cargoViewTemplate);
let totalQuantity = cargoViewTemplate.entry.quantity;
if(packedQuantity === undefined) packedQuantities.set(cargoViewTemplate, packedQuantity = 0);
packedQuantities.set(cargoViewTemplate, ++packedQuantity);
let textColor = packedQuantity === totalQuantity ? 'rgb(255, 255, 255)' : 'rgb(255, 0, 0)';
this.cargoListView.UpdateLabel(cargoViewTemplate, packedQuantity + '/' + totalQuantity, textColor);
let packedCargoView = this.pool.Request(cargoViewTemplate);
this.cargoViews.push(packedCargoView);
let rotation = getOrientationEuler(item.orientation);
packedCargoView.SetRotationAngles(rotation.x, rotation.y, rotation.z);
let x = item.position.x + offset.x,
y = item.position.y + offset.y,
z = item.position.z + offset.z;
let posTweenCombo = Tween.Combo.RequestN(Tween.functions.ease.easeOutQuad, .5,
x, 0,
y, 0,
zEntry, z - zEntry
);
function onTweenComplete(tween){
scope.Dispatch(signals.cargoVizPack, item);
scope.OnCargoFirstTweenComplete(tween);
}
posTweenCombo.extraData = packedCargoView;
posTweenCombo.Hook(packedCargoView.position, 'x', 'y', 'z');
posTweenCombo.onComplete = onTweenComplete;
posTweenCombo.Update(0);
animatingViews.push(posTweenCombo);
view.add(packedCargoView.view);
await sleep(delayPerItem);
}
await sleep(500);
let unpackedOffset = 6 * units;
for(let i = 0, numUnpackedItems = packingResult.unpacked.length; i < numUnpackedItems; i++){
let item = packingResult.unpacked[i];
let cargoViewTemplate = this.cargoListView.GetTemplate(item.entry);
let totalQuantity = cargoViewTemplate.entry.quantity;
if(packedQuantities.has(cargoViewTemplate) === false){
let textColor = false ? 'rgb(255, 255, 255)' : 'rgb(255, 0, 0)';
this.cargoListView.UpdateLabel(cargoViewTemplate, '0/' + totalQuantity, textColor);
}
if(i === 0) unpackedOffset += item.entry.dimensions.width / 2;
for(let j = 0; j < item.unpackedQuantity; j++){
let packedCargoView = this.pool.Request(cargoViewTemplate);
this.cargoViews.push(packedCargoView);
let x = containingVolume.dimensions.width * 1.5 + unpackedOffset + offset.x,
y = item.entry.dimensions.height / 2 + offset.y,
z = item.entry.dimensions.length * j + offset.z;
let posTweenCombo = Tween.Combo.RequestN(Tween.functions.ease.easeOutQuad, .5,
x, 0,
y, 0,
zEntry, z - zEntry
);
function onTweenComplete(tween){
scope.Dispatch(signals.cargoVizUnpack, item);
scope.OnCargoFirstTweenComplete(tween);
}
posTweenCombo.extraData = packedCargoView;
posTweenCombo.Hook(packedCargoView.position, 'x', 'y', 'z');
posTweenCombo.onComplete = onTweenComplete;
posTweenCombo.Update(0);
animatingViews.push(posTweenCombo);
view.add(packedCargoView.view);
await sleep(delayPerItem * .5);
}
unpackedOffset += item.entry.dimensions.width + 6 * units;
}
}
/** @param {Tween|Tween.Combo} tween */
OnCargoFirstTweenComplete(tween){
let packedCargoView = tween.extraData;
this.OnTweenComplete(tween);
let scaleTweenCombo = Tween.Combo.RequestN(Tween.functions.special.pingPong, .1,
1, .1,
1, .1,
1, .1
);
scaleTweenCombo.extraData = packedCargoView;
scaleTweenCombo.Hook(packedCargoView.view.scale, 'x', 'y', 'z');
scaleTweenCombo.onComplete = this.OnTweenComplete.bind(this);;
scaleTweenCombo.Update(0);
this.animatingViews.push(scaleTweenCombo);
}
/** @param {Tween|Tween.Combo} tween */
OnTweenComplete(tween){
let packedCargoView = tween.extraData;
packedCargoView.view.scale.set(1, 1, 1);
let index = this.animatingViews.indexOf(tween);
if(index != -1){
this.animatingViews.splice(index, 1);
}
tween.Unhook();
tween.Return();
}
/** @param {string} entryUID */
SelectEntry(entryUID){
if(!entryUID){
this.DisableHighlights();
}
else{
this.Highlight(entryUID);
}
}
DisableHighlights(){
for(let i = 0, numCargoViews = this.cargoViews.length; i < numCargoViews; i++){
this.cargoViews[i].focus = 1;
}
}
/** @param {string} entryUID */
Highlight(entryUID){
for(let i = 0, numCargoViews = this.cargoViews.length; i < numCargoViews; i++){
let cargoView = this.cargoViews[i];
let cvEntry = cargoView.entry;
if(cvEntry.uid === entryUID){
cargoView.focus = 1.75;
}
else{
cargoView.focus = .25;
}
}
}
/** @param {Number} value */
Slice(value){
if(value >= 1){
this.view.children.forEach(child => {
child.visible = true;
});
return;
}
let minY = Number.MAX_SAFE_INTEGER, maxY = Number.MIN_SAFE_INTEGER;
this.view.children.forEach(child => {
tempBox.setFromObject(child);
tempBox.getSize(tempVec);
let halfHeight = tempVec.y / 2;
tempBox.getCenter(tempVec);
let low = tempVec.y - halfHeight;
let high = tempVec.y + halfHeight;
if(low < minY) minY = low;
if(high > maxY) maxY = high;
});
let y = minY + value * (maxY - minY);
//console.log('slice ' + y.toFixed(2) + ' between ' + minY.toFixed(2) + ' and ' + maxY.toFixed(2));
this.view.children.forEach(child => {
tempBox.setFromObject(child);
tempBox.getSize(tempVec);
let halfHeight = tempVec.y / 2;
tempBox.getCenter(tempVec);
let low = tempVec.y - halfHeight;
if(low < y) child.visible = true;
else child.visible = false;
});
}
Clear(){
this.animatingViews.length = 0;
this.cargoViews.length = 0;
while(this.view.children.length > 0) this.view.remove(this.view.children[this.view.children.length - 1]);
}
Update(){
this.animatingViews.forEach(animatingView => {
animatingView.Update();
});
}
static get signals(){
return signals;
}
}
export default PackResultView; | 33.318713 | 113 | 0.587012 |
b742531054076932ef46edefc7bccc2a6af4a0c2 | 149 | js | JavaScript | src/pages/About/model.js | zhfhz/wsreact | 52243f075298cf1805caf61df7c0bfb0da45361e | [
"MIT"
] | 1 | 2020-05-28T08:51:48.000Z | 2020-05-28T08:51:48.000Z | src/pages/About/model.js | zhfhz/wsreact | 52243f075298cf1805caf61df7c0bfb0da45361e | [
"MIT"
] | null | null | null | src/pages/About/model.js | zhfhz/wsreact | 52243f075298cf1805caf61df7c0bfb0da45361e | [
"MIT"
] | null | null | null | export default {
namespace: 'about',
state: {
name: 'about',
description: '123',
},
effects: {},
reducers: {},
subscribe: {},
};
| 13.545455 | 23 | 0.530201 |
b742e9fdafee13da23036cfe558135ead08c7bd7 | 2,298 | js | JavaScript | generators/cmd/start.js | Allin127/allin-cli | c5e3faab336f71cb71da2b9db0c737d35549b170 | [
"MIT"
] | null | null | null | generators/cmd/start.js | Allin127/allin-cli | c5e3faab336f71cb71da2b9db0c737d35549b170 | [
"MIT"
] | 4 | 2020-07-17T01:42:57.000Z | 2022-02-12T10:19:39.000Z | generators/cmd/start.js | Allin127/allin-cli | c5e3faab336f71cb71da2b9db0c737d35549b170 | [
"MIT"
] | null | null | null | const webpack = require('webpack');
const path = require("path");
// const devMiddleware = require('webpack-dev-middleware');
// const hotMiddleware = require('webpack-hot-middleware');
const webpackDevServer = require('webpack-dev-server');
const express = require('express');
const spawn = require('cross-spawn');
module.exports = function (isProduction) {
let configd = require(path.resolve(process.cwd(), isProduction ? 'webpack.production.config.js' : 'webpack.development.config.js'));
// const app = express();
//app.use(express.static(path.join(__dirname, './node_modules/')))
// app.use(devMiddleware(compiler,{publicPath:"/static/"}));
//
// app.use(hotMiddleware(compiler));
// app.get('*', function(req, res) {
// res.sendFile(path.join(process.cwd(), 'template.html'));
// });
if(!isProduction) {
const compiler = webpack(configd);
const devPort = 3333;
const host = '0.0.0.0';
//https://webpack.js.org/configuration/dev-server/
const options = {
contentBase: './dist',
hot: true,
host: host,
after: function () {
},
before: function (app) {
console.log("before",path.resolve(process.cwd(), './assets'));
app.use(express.static(path.resolve(process.cwd(), './assets')));
}
};
webpackDevServer.addDevServerEntrypoints(configd, options);
const app = new webpackDevServer(compiler, options);
app.listen(devPort, host, function () {
console.log(`Listening on port ${devPort}!`);
spawn.sync('open', [`http://localhost:${devPort}`], {
stdio: 'inherit'
});
});
}else{
webpack(configd,(err, stats) => {
if (err) {
console.error(err.stack || err);
if (err.details) {
console.error(err.details);
}
return;
}
const info = stats.toJson();
if (stats.hasErrors()) {
console.error(info.errors);
}
if (stats.hasWarnings()) {
console.warn(info.warnings);
}
});
}
} | 32.828571 | 136 | 0.532637 |
b74332e62ffd0bc80abd6215baaca3834b50fc9d | 487 | js | JavaScript | .c9/metadata/workspace/client/js/chatapp.js | benhandanyan/474chatroomapp | 7f28d8c881fbef3e4c57f8d65de764c5574c1442 | [
"MIT"
] | null | null | null | .c9/metadata/workspace/client/js/chatapp.js | benhandanyan/474chatroomapp | 7f28d8c881fbef3e4c57f8d65de764c5574c1442 | [
"MIT"
] | null | null | null | .c9/metadata/workspace/client/js/chatapp.js | benhandanyan/474chatroomapp | 7f28d8c881fbef3e4c57f8d65de764c5574c1442 | [
"MIT"
] | null | null | null | {"filter":false,"title":"chatapp.js","tooltip":"/client/js/chatapp.js","undoManager":{"mark":-1,"position":-1,"stack":[]},"ace":{"folds":[],"scrolltop":461.5,"scrollleft":0,"selection":{"start":{"row":16,"column":13},"end":{"row":16,"column":15},"isBackwards":false},"options":{"guessTabSize":true,"useWrapMode":false,"wrapToView":true},"firstLineState":{"row":27,"state":"start","mode":"ace/mode/javascript"}},"timestamp":1478449414443,"hash":"a053da88eab93ff0571c80725e1a46ee18a80c40"} | 487 | 487 | 0.696099 |
b743be19fc33909a62b761af3aa23685ce1b0b1d | 1,724 | js | JavaScript | src/utils/pauseToggle.js | KonghaYao/jspider | 10f65334ba79e9f1de3240526b8149f24a0875f6 | [
"Apache-2.0"
] | 3 | 2021-04-08T02:01:55.000Z | 2021-07-15T02:05:34.000Z | src/utils/pauseToggle.js | KonghaYao/jspider | 10f65334ba79e9f1de3240526b8149f24a0875f6 | [
"Apache-2.0"
] | 2 | 2021-04-22T16:13:26.000Z | 2021-04-25T16:23:57.000Z | src/utils/pauseToggle.js | KonghaYao/jspider | 10f65334ba79e9f1de3240526b8149f24a0875f6 | [
"Apache-2.0"
] | null | null | null | /**
* @license
* Copyright 2021 KonghaYao 江夏尧 <dongzhongzhidong@qq.com>
* SPDX-License-Identifier: Apache-2.0
*/
import { noop, Observable } from 'rxjs';
/**
* pauseToggle
* @date 2021-07-20
* @author KonghaYao
* @description 用于暂停的 operator, 改编自 bufferToggle 但也不同
* @param {Observable} openings 发出时触发主流缓存
* @param {Observable} closings 发出时放出缓存到主流
* @return {function}
*/
export function pauseToggle(openings, closings) {
return (observable) =>
new Observable((subscriber) => {
const buffers = new Set();
let closingSubscription = false;
const subscription = observable.subscribe(
(value) => {
closingSubscription ? buffers.add(value) : subscriber.next(value);
},
noop,
() => {
buffers.forEach((item) => subscriber.next(item));
buffers.clear();
subscriber.complete();
},
);
const openingSubscription = openings.subscribe(() => {
// 输出所有的 buffer
const emitBuffer = () => {
buffers.forEach((item) => subscriber.next(item));
buffers.clear();
closingSubscription.unsubscribe();
closingSubscription = false;
};
closingSubscription = closings.subscribe(emitBuffer);
});
return () => {
buffers.clear();
subscription.unsubscribe();
openingSubscription.unsubscribe();
if (closingSubscription) closingSubscription.unsubscribe();
};
});
}
| 33.803922 | 86 | 0.519722 |
b743d28ff6a20e0ae77b57afe10d9927550e69f0 | 268 | js | JavaScript | src/reducers/reducer_invoices.js | abilgaiyan/my-react-app | 9cbfef91133735d605ce51a69d2637ca4d2aa6f8 | [
"MIT"
] | null | null | null | src/reducers/reducer_invoices.js | abilgaiyan/my-react-app | 9cbfef91133735d605ce51a69d2637ca4d2aa6f8 | [
"MIT"
] | null | null | null | src/reducers/reducer_invoices.js | abilgaiyan/my-react-app | 9cbfef91133735d605ce51a69d2637ca4d2aa6f8 | [
"MIT"
] | null | null | null | import _ from 'lodash';
import {FETCH_INVOICES} from '../actions/invoice_action';
export default function(state ={}, action){
switch (action.type) {
case FETCH_INVOICES:
return _.mapKeys(action.payload.data, 'id');
default:
return state;
}
}
| 17.866667 | 57 | 0.66791 |
b7448a74d97da12a229f747d65f2cba64868ef66 | 443 | js | JavaScript | packages/array-median/src/index.js | kjappelbaum/array | 23150bdaa4d7818b0347f5c662c8adc287fa9a21 | [
"MIT"
] | null | null | null | packages/array-median/src/index.js | kjappelbaum/array | 23150bdaa4d7818b0347f5c662c8adc287fa9a21 | [
"MIT"
] | null | null | null | packages/array-median/src/index.js | kjappelbaum/array | 23150bdaa4d7818b0347f5c662c8adc287fa9a21 | [
"MIT"
] | null | null | null | import isArray from 'is-any-array';
import quickSelectMedian from 'median-quickselect';
/**
* Computes the median of the given values
* @param {Array<number>} input
* @return {number}
*/
export default function median(input) {
if (!isArray(input)) {
throw new TypeError('input must be an array');
}
if (input.length === 0) {
throw new TypeError('input must not be empty');
}
return quickSelectMedian(input.slice());
}
| 22.15 | 51 | 0.679458 |
b745362cbab37eafca049ae47d6181e9a2142b1c | 22,041 | js | JavaScript | public/materialize/js/gauge.min.js | PLC-SUPORTE/portal | 2663d9e3959bd8e2fd61264fa8b1176300a25c43 | [
"MIT"
] | null | null | null | public/materialize/js/gauge.min.js | PLC-SUPORTE/portal | 2663d9e3959bd8e2fd61264fa8b1176300a25c43 | [
"MIT"
] | null | null | null | public/materialize/js/gauge.min.js | PLC-SUPORTE/portal | 2663d9e3959bd8e2fd61264fa8b1176300a25c43 | [
"MIT"
] | null | null | null | (function() {
function t(t, i) {
for(var e in i)m.call(i, e)&&(t[e]=i[e]); function s() {
this.constructor=t
}
return s.prototype=i.prototype, t.prototype=new s, t.__super__=i.prototype, t
}
var i, e, s, n, o, p, a, h, r, l, g, c, u, d=[].slice, m= {}
.hasOwnProperty, x=[].indexOf||function(t) {
for(var i=0, e=this.length; i<e; i++)if(i in this&&this[i]===t)return i; return-1
}
; function f(t, i) {
null==t&&(t= !0), this.clear=null==i||i, t&&AnimationUpdater.add(this)
}
function v() {
return v.__super__.constructor.apply(this, arguments)
}
function y(t, i) {
this.el=t, this.fractionDigits=i
}
function V(t, i) {
if(this.elem=t, this.text=null !=i&&i, V.__super__.constructor.call(this), void 0===this.elem)throw new Error("The element isn't defined."); this.value=1*this.elem.innerHTML, this.text&&(this.value=0)
}
function w(t) {
if(this.gauge=t, void 0===this.gauge)throw new Error("The element isn't defined."); this.ctx=this.gauge.ctx, this.canvas=this.gauge.canvas, w.__super__.constructor.call(this, !1, !1), this.setOptions()
}
function S(t) {
this.elem=t
}
function M(t) {
var i, e; this.canvas=t, M.__super__.constructor.call(this), this.percentColors=null, "undefined" !=typeof G_vmlCanvasManager&&(this.canvas=window.G_vmlCanvasManager.initElement(this.canvas)), this.ctx=this.canvas.getContext("2d"), i=this.canvas.clientHeight, e=this.canvas.clientWidth, this.canvas.height=i, this.canvas.width=e, this.gp=[new p(this)], this.setOptions()
}
function C(t) {
this.canvas=t, C.__super__.constructor.call(this), "undefined" !=typeof G_vmlCanvasManager&&(this.canvas=window.G_vmlCanvasManager.initElement(this.canvas)), this.ctx=this.canvas.getContext("2d"), this.setOptions(), this.render()
}
function _() {
return _.__super__.constructor.apply(this, arguments)
}
!function() {
var s, n, t, o, i, e, a; for(t=0, i=(a=["ms", "moz", "webkit", "o"]).length; t<i&&(e=a[t], !window.requestAnimationFrame); t++)window.requestAnimationFrame=window[e+"RequestAnimationFrame"], window.cancelAnimationFrame=window[e+"CancelAnimationFrame"]||window[e+"CancelRequestAnimationFrame"]; s=null, o=0, n= {}
, requestAnimationFrame?window.cancelAnimationFrame||(s=window.requestAnimationFrame, window.requestAnimationFrame=function(t, i) {
var e; return e=++o, s(function() {
if( !n[e])return t()
}
, i), e
}
, window.cancelAnimationFrame=function(t) {
return n[t]= !0
}
):(window.requestAnimationFrame=function(t, i) {
var e, s, n, o; return e=(new Date).getTime(), o=Math.max(0, 16-(e-n)), s=window.setTimeout(function() {
return t(e+o)
}
, o), n=e+o, s
}
, window.cancelAnimationFrame=function(t) {
return clearTimeout(t)
}
)
}
(), u=function(t) {
var i, e; for(t-=3600*(i=Math.floor(t/3600))+60*(e=Math.floor((t-3600*i)/60)), t+="", e+=""; e.length<2; )e="0"+e; for(; t.length<2; )t="0"+t; return(i=i?i+":":"")+e+":"+t
}
, g=function() {
var t, i, e; return e=(i=1<=arguments.length?d.call(arguments, 0):[])[0], t=i[1], r(e.toFixed(t))
}
, c=function(t, i) {
var e, s, n; for(e in s= {}
, t)m.call(t, e)&&(n=t[e], s[e]=n); for(e in i)m.call(i, e)&&(n=i[e], s[e]=n); return s
}
, r=function(t) {
var i, e, s, n; for(s=(e=(t+="").split("."))[0], n="", 1<e.length&&(n="."+e[1]), i=/(\d+)(\d {
3
}
)/; i.test(s); )s=s.replace(i, "$1,$2"); return s+n
}
, l=function(t) {
return"#"===t.charAt(0)?t.substring(1, 7):t
}
, f.prototype.animationSpeed=32, f.prototype.update=function(t) {
var i; return null==t&&(t= !1), !( !t&&this.displayedValue===this.value||(this.ctx&&this.clear&&this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height), i=this.value-this.displayedValue, Math.abs(i/this.animationSpeed)<=.001?this.displayedValue=this.value:this.displayedValue=this.displayedValue+i/this.animationSpeed, this.render(), 0))
}
, t(v, h=f), v.prototype.displayScale=1, v.prototype.forceUpdate= !0, v.prototype.setTextField=function(t, i) {
return this.textField=t instanceof a?t:new a(t, i)
}
, v.prototype.setMinValue=function(t, i) {
var e, s, n, o, a; if(this.minValue=t, null==i&&(i= !0), i) {
for(this.displayedValue=this.minValue, a=[], s=0, n=(o=this.gp||[]).length; s<n; s++)e=o[s], a.push(e.displayedValue=this.minValue); return a
}
}
, v.prototype.setOptions=function(t) {
return null==t&&(t=null), this.options=c(this.options, t), this.textField&&(this.textField.el.style.fontSize=t.fontSize+"px"), .5<this.options.angle&&(this.options.angle=.5), this.configDisplayScale(), this
}
, v.prototype.configDisplayScale=function() {
var t, i, e, s, n; return s=this.displayScale, !1===this.options.highDpiSupport?delete this.displayScale:(i=window.devicePixelRatio||1, t=this.ctx.webkitBackingStorePixelRatio||this.ctx.mozBackingStorePixelRatio||this.ctx.msBackingStorePixelRatio||this.ctx.oBackingStorePixelRatio||this.ctx.backingStorePixelRatio||1, this.displayScale=i/t), this.displayScale !==s&&(n=this.canvas.G__width||this.canvas.width, e=this.canvas.G__height||this.canvas.height, this.canvas.width=n*this.displayScale, this.canvas.height=e*this.displayScale, this.canvas.style.width=n+"px", this.canvas.style.height=e+"px", this.canvas.G__width=n, this.canvas.G__height=e), this
}
, v.prototype.parseValue=function(t) {
return t=parseFloat(t)||Number(t), isFinite(t)?t:0
}
, s=v, y.prototype.render=function(t) {
return this.el.innerHTML=g(t.displayedValue, this.fractionDigits)
}
, a=y, t(V, h), V.prototype.displayedValue=0, V.prototype.value=0, V.prototype.setVal=function(t) {
return this.value=1*t
}
, V.prototype.render=function() {
var t; return t=this.text?u(this.displayedValue.toFixed(0)):r(g(this.displayedValue)), this.elem.innerHTML=t
}
, i=V, t(w, h), w.prototype.displayedValue=0, w.prototype.value=0, w.prototype.options= {
strokeWidth:.035, length:.1, color:"#000000", iconPath:null, iconScale:1, iconAngle:0
}
, w.prototype.img=null, w.prototype.setOptions=function(t) {
if(null==t&&(t=null), this.options=c(this.options, t), this.length=2*this.gauge.radius*this.gauge.options.radiusScale*this.options.length, this.strokeWidth=this.canvas.height*this.options.strokeWidth, this.maxValue=this.gauge.maxValue, this.minValue=this.gauge.minValue, this.animationSpeed=this.gauge.animationSpeed, this.options.angle=this.gauge.options.angle, this.options.iconPath)return this.img=new Image, this.img.src=this.options.iconPath
}
, w.prototype.render=function() {
var t, i, e, s, n, o, a, h, r; if(t=this.gauge.getAngle.call(this, this.displayedValue), h=Math.round(this.length*Math.cos(t)), r=Math.round(this.length*Math.sin(t)), o=Math.round(this.strokeWidth*Math.cos(t-Math.PI/2)), a=Math.round(this.strokeWidth*Math.sin(t-Math.PI/2)), i=Math.round(this.strokeWidth*Math.cos(t+Math.PI/2)), e=Math.round(this.strokeWidth*Math.sin(t+Math.PI/2)), this.ctx.beginPath(), this.ctx.fillStyle=this.options.color, this.ctx.arc(0, 0, this.strokeWidth, 0, 2*Math.PI, !1), this.ctx.fill(), this.ctx.beginPath(), this.ctx.moveTo(o, a), this.ctx.lineTo(h, r), this.ctx.lineTo(i, e), this.ctx.fill(), this.img)return s=Math.round(this.img.width*this.options.iconScale), n=Math.round(this.img.height*this.options.iconScale), this.ctx.save(), this.ctx.translate(h, r), this.ctx.rotate(t+Math.PI/180*(90+this.options.iconAngle)), this.ctx.drawImage(this.img, -s/2, -n/2, s, n), this.ctx.restore()
}
, p=w, S.prototype.updateValues=function(t) {
return this.value=t[0], this.maxValue=t[1], this.avgValue=t[2], this.render()
}
, S.prototype.render=function() {
var t, i; return this.textField&&this.textField.text(g(this.value)), 0===this.maxValue&&(this.maxValue=2*this.avgValue), i=this.value/this.maxValue*100, t=this.avgValue/this.maxValue*100, $(".bar-value", this.elem).css( {
width:i+"%"
}
), $(".typical-value", this.elem).css( {
width:t+"%"
}
)
}
, t(M, s), M.prototype.elem=null, M.prototype.value=[20], M.prototype.maxValue=80, M.prototype.minValue=0, M.prototype.displayedAngle=0, M.prototype.displayedValue=0, M.prototype.lineWidth=40, M.prototype.paddingTop=.1, M.prototype.paddingBottom=.1, M.prototype.percentColors=null, M.prototype.options= {
colorStart:"#6fadcf", colorStop:void 0, gradientType:0, strokeColor:"#e0e0e0", pointer: {
length:.8, strokeWidth:.035, iconScale:1
}
, angle:.15, lineWidth:.44, radiusScale:1, fontSize:40, limitMax: !1, limitMin: !1
}
, M.prototype.setOptions=function(t) {
var i, e, s, n, o; for(null==t&&(t=null), M.__super__.setOptions.call(this, t), this.configPercentColors(), this.extraPadding=0, this.options.angle<0&&(n=Math.PI*(1+this.options.angle), this.extraPadding=Math.sin(n)), this.availableHeight=this.canvas.height*(1-this.paddingTop-this.paddingBottom), this.lineWidth=this.availableHeight*this.options.lineWidth, this.radius=(this.availableHeight-this.lineWidth/2)/(1+this.extraPadding), this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height), e=0, s=(o=this.gp).length; e<s; e++)(i=o[e]).setOptions(this.options.pointer), i.render(); return this.render(), this
}
, M.prototype.configPercentColors=function() {
var t, i, e, s, n, o, a; if(this.percentColors=null, void 0 !==this.options.percentColors) {
for(this.percentColors=new Array, o=[], e=s=0, n=this.options.percentColors.length-1; 0<=n?s<=n:n<=s; e=0<=n?++s:--s)a=parseInt(l(this.options.percentColors[e][1]).substring(0, 2), 16), i=parseInt(l(this.options.percentColors[e][1]).substring(2, 4), 16), t=parseInt(l(this.options.percentColors[e][1]).substring(4, 6), 16), o.push(this.percentColors[e]= {
pct:this.options.percentColors[e][0], color: {
r:a, g:i, b:t
}
}
); return o
}
}
, M.prototype.set=function(t) {
var i, e, s, n, o, a, h, r, l; for(t instanceof Array||(t=[t]), e=s=0, h=t.length-1; 0<=h?s<=h:h<=s; e=0<=h?++s:--s)t[e]=this.parseValue(t[e]); if(t.length>this.gp.length)for(e=n=0, r=t.length-this.gp.length; 0<=r?n<r:r<n; e=0<=r?++n:--n)(i=new p(this)).setOptions(this.options.pointer), this.gp.push(i); else t.length<this.gp.length&&(this.gp=this.gp.slice(this.gp.length-t.length)); for(a=e=0, o=t.length; a<o; a++)(l=t[a])>this.maxValue?this.options.limitMax?l=this.maxValue:this.maxValue=l+1:l<this.minValue&&(this.options.limitMin?l=this.minValue:this.minValue=l-1), this.gp[e].value=l, this.gp[e++].setOptions( {
minValue:this.minValue, maxValue:this.maxValue, angle:this.options.angle
}
); return this.value=Math.max(Math.min(t[t.length-1], this.maxValue), this.minValue), AnimationUpdater.add(this), AnimationUpdater.run(this.forceUpdate), this.forceUpdate= !1
}
, M.prototype.getAngle=function(t) {
return(1+this.options.angle)*Math.PI+(t-this.minValue)/(this.maxValue-this.minValue)*(1-2*this.options.angle)*Math.PI
}
, M.prototype.getColorForPercentage=function(t, i) {
var e, s, n, o, a, h, r; if(0===t)e=this.percentColors[0].color; else for(e=this.percentColors[this.percentColors.length-1].color, n=o=0, h=this.percentColors.length-1; 0<=h?o<=h:h<=o; n=0<=h?++o:--o)if(t<=this.percentColors[n].pct) {
e= !0===i?(r=this.percentColors[n-1]||this.percentColors[0], s=this.percentColors[n], a=(t-r.pct)/(s.pct-r.pct), {
r:Math.floor(r.color.r*(1-a)+s.color.r*a), g:Math.floor(r.color.g*(1-a)+s.color.g*a), b:Math.floor(r.color.b*(1-a)+s.color.b*a)
}
):this.percentColors[n].color; break
}
return"rgb("+[e.r, e.g, e.b].join(",")+")"
}
, M.prototype.getColorForValue=function(t, i) {
var e; return e=(t-this.minValue)/(this.maxValue-this.minValue), this.getColorForPercentage(e, i)
}
, M.prototype.renderStaticLabels=function(t, i, e, s) {
var n, o, a, h, r, l, p, c, u, d; for(this.ctx.save(), this.ctx.translate(i, e), l=/\d+\.?\d?/, r=(n=t.font||"10px Times").match(l)[0], c=n.slice(r.length), o=parseFloat(r)*this.displayScale, this.ctx.font=o+c, this.ctx.fillStyle=t.color||"#000000", this.ctx.textBaseline="bottom", this.ctx.textAlign="center", a=0, h=(p=t.labels).length; a<h; a++)void 0 !==(d=p[a]).label?( !this.options.limitMin||d>=this.minValue)&&( !this.options.limitMax||d<=this.maxValue)&&(r=(n=d.font||t.font).match(l)[0], c=n.slice(r.length), o=parseFloat(r)*this.displayScale, this.ctx.font=o+c, u=this.getAngle(d.label)-3*Math.PI/2, this.ctx.rotate(u), this.ctx.fillText(g(d.label, t.fractionDigits), 0, -s-this.lineWidth/2), this.ctx.rotate(-u)):( !this.options.limitMin||d>=this.minValue)&&( !this.options.limitMax||d<=this.maxValue)&&(u=this.getAngle(d)-3*Math.PI/2, this.ctx.rotate(u), this.ctx.fillText(g(d, t.fractionDigits), 0, -s-this.lineWidth/2), this.ctx.rotate(-u)); return this.ctx.restore()
}
, M.prototype.renderTicks=function(t, i, e, s) {
var n, o, a, h, r, l, p, c, u, d, g, m, x, f, v, y, V, w, S, M; if(t !== {}
) {
for(l=t.divisions||0, w=t.subDivisions||0, a=t.divColor||"#fff", f=t.subColor||"#fff", h=t.divLength||.7, y=t.subLength||.2, u=parseFloat(this.maxValue)-parseFloat(this.minValue), d=parseFloat(u)/parseFloat(t.divisions), v=parseFloat(d)/parseFloat(t.subDivisions), n=parseFloat(this.minValue), o=0+v, r=(c=u/400)*(t.divWidth||1), V=c*(t.subWidth||1), m=[], S=p=0, g=l+1; p<g; S=p+=1)this.ctx.lineWidth=this.lineWidth*h, x=this.lineWidth/2*(1-h), M=this.radius*this.options.radiusScale+x, this.ctx.strokeStyle=a, this.ctx.beginPath(), this.ctx.arc(0, 0, M, this.getAngle(n-r), this.getAngle(n+r), !1), this.ctx.stroke(), o=n+v, n+=d, S !==t.divisions&&0<w?m.push(function() {
var t, i, e; for(e=[], t=0, i=w-1; t<i; t+=1)this.ctx.lineWidth=this.lineWidth*y, x=this.lineWidth/2*(1-y), M=this.radius*this.options.radiusScale+x, this.ctx.strokeStyle=f, this.ctx.beginPath(), this.ctx.arc(0, 0, M, this.getAngle(o-V), this.getAngle(o+V), !1), this.ctx.stroke(), e.push(o+=v); return e
}
.call(this)):m.push(void 0); return m
}
}
, M.prototype.render=function() {
var t, i, e, s, n, o, a, h, r, l, p, c, u, d, g, m; if(g=this.canvas.width/2, e=this.canvas.height*this.paddingTop+this.availableHeight-(this.radius+this.lineWidth/2)*this.extraPadding, t=this.getAngle(this.displayedValue), this.textField&&this.textField.render(this), this.ctx.lineCap="butt", l=this.radius*this.options.radiusScale, this.options.staticLabels&&this.renderStaticLabels(this.options.staticLabels, g, e, l), this.options.staticZones)for(this.ctx.save(), this.ctx.translate(g, e), this.ctx.lineWidth=this.lineWidth, s=0, o=(p=this.options.staticZones).length; s<o; s++)r=(m=p[s]).min, this.options.limitMin&&r<this.minValue&&(r=this.minValue), h=m.max, this.options.limitMax&&h>this.maxValue&&(h=this.maxValue), d=this.radius*this.options.radiusScale, m.height&&(this.ctx.lineWidth=this.lineWidth*m.height, u=this.lineWidth/2*(m.offset||1-m.height), d=this.radius*this.options.radiusScale+u), this.ctx.strokeStyle=m.strokeStyle, this.ctx.beginPath(), this.ctx.arc(0, 0, d, this.getAngle(r), this.getAngle(h), !1), this.ctx.stroke(); else void 0 !==this.options.customFillStyle?i=this.options.customFillStyle(this):null !==this.percentColors?i=this.getColorForValue(this.displayedValue, this.options.generateGradient):void 0 !==this.options.colorStop?((i=0===this.options.gradientType?this.ctx.createRadialGradient(g, e, 9, g, e, 70):this.ctx.createLinearGradient(0, 0, g, 0)).addColorStop(0, this.options.colorStart), i.addColorStop(1, this.options.colorStop)):i=this.options.colorStart, this.ctx.strokeStyle=i, this.ctx.beginPath(), this.ctx.arc(g, e, l, (1+this.options.angle)*Math.PI, t, !1), this.ctx.lineWidth=this.lineWidth, this.ctx.stroke(), this.ctx.strokeStyle=this.options.strokeColor, this.ctx.beginPath(), this.ctx.arc(g, e, l, t, (2-this.options.angle)*Math.PI, !1), this.ctx.stroke(), this.ctx.save(), this.ctx.translate(g, e); for(this.options.renderTicks&&this.renderTicks(this.options.renderTicks, g, e, l), this.ctx.restore(), this.ctx.translate(g, e), n=0, a=(c=this.gp).length; n<a; n++)c[n].update( !0); return this.ctx.translate(-g, -e)
}
, o=M, t(C, s), C.prototype.lineWidth=15, C.prototype.displayedValue=0, C.prototype.value=33, C.prototype.maxValue=80, C.prototype.minValue=0, C.prototype.options= {
lineWidth:.1, colorStart:"#6f6ea0", colorStop:"#c0c0db", strokeColor:"#eeeeee", shadowColor:"#d5d5d5", angle:.35, radiusScale:1
}
, C.prototype.getAngle=function(t) {
return(1-this.options.angle)*Math.PI+(t-this.minValue)/(this.maxValue-this.minValue)*(2+this.options.angle-(1-this.options.angle))*Math.PI
}
, C.prototype.setOptions=function(t) {
return null==t&&(t=null), C.__super__.setOptions.call(this, t), this.lineWidth=this.canvas.height*this.options.lineWidth, this.radius=this.options.radiusScale*(this.canvas.height/2-this.lineWidth/2), this
}
, C.prototype.set=function(t) {
return this.value=this.parseValue(t), this.value>this.maxValue?this.options.limitMax?this.value=this.maxValue:this.maxValue=this.value:this.value<this.minValue&&(this.options.limitMin?this.value=this.minValue:this.minValue=this.value), AnimationUpdater.add(this), AnimationUpdater.run(this.forceUpdate), this.forceUpdate= !1
}
, C.prototype.render=function() {
var t, i, e, s; return t=this.getAngle(this.displayedValue), s=this.canvas.width/2, e=this.canvas.height/2, this.textField&&this.textField.render(this), (i=this.ctx.createRadialGradient(s, e, 39, s, e, 70)).addColorStop(0, this.options.colorStart), i.addColorStop(1, this.options.colorStop), this.radius, this.lineWidth, this.radius, this.lineWidth, this.ctx.strokeStyle=this.options.strokeColor, this.ctx.beginPath(), this.ctx.arc(s, e, this.radius, (1-this.options.angle)*Math.PI, (2+this.options.angle)*Math.PI, !1), this.ctx.lineWidth=this.lineWidth, this.ctx.lineCap="round", this.ctx.stroke(), this.ctx.strokeStyle=i, this.ctx.beginPath(), this.ctx.arc(s, e, this.radius, (1-this.options.angle)*Math.PI, t, !1), this.ctx.stroke()
}
, t(_, e=C), _.prototype.strokeGradient=function(t, i, e, s) {
var n; return(n=this.ctx.createRadialGradient(t, i, e, t, i, s)).addColorStop(0, this.options.shadowColor), n.addColorStop(.12, this.options._orgStrokeColor), n.addColorStop(.88, this.options._orgStrokeColor), n.addColorStop(1, this.options.shadowColor), n
}
, _.prototype.setOptions=function(t) {
var i, e, s, n; return null==t&&(t=null), _.__super__.setOptions.call(this, t), n=this.canvas.width/2, i=this.canvas.height/2, e=this.radius-this.lineWidth/2, s=this.radius+this.lineWidth/2, this.options._orgStrokeColor=this.options.strokeColor, this.options.strokeColor=this.strokeGradient(n, i, e, s), this
}
, n=_, window.AnimationUpdater= {
elements:[], animId:null, addAll:function(t) {
var i, e, s, n; for(n=[], e=0, s=t.length; e<s; e++)i=t[e], n.push(AnimationUpdater.elements.push(i)); return n
}
, add:function(t) {
if(x.call(AnimationUpdater.elements, t)<0)return AnimationUpdater.elements.push(t)
}
, run:function(t) {
var i, e, s, n, o, a, h; if(null==t&&(t= !1), isFinite(parseFloat(t))|| !0===t) {
for(i= !0, h=[], s=e=0, o=(a=AnimationUpdater.elements).length; e<o; s=++e)a[s].update( !0===t)?i= !1:h.push(s); for(n=h.length-1; 0<=n; n+=-1)s=h[n], AnimationUpdater.elements.splice(s, 1); return AnimationUpdater.animId=i?null:requestAnimationFrame(AnimationUpdater.run)
}
if( !1===t)return !0===AnimationUpdater.animId&&cancelAnimationFrame(AnimationUpdater.animId), AnimationUpdater.animId=requestAnimationFrame(AnimationUpdater.run)
}
}
, "function"==typeof window.define&&null !=window.define.amd?define(function() {
return {
Gauge:o, Donut:n, BaseDonut:e, TextRenderer:a
}
}
):"undefined" !=typeof module&&null !=module.exports?module.exports= {
Gauge:o, Donut:n, BaseDonut:e, TextRenderer:a
}
:(window.Gauge=o, window.Donut=n, window.BaseDonut=e, window.TextRenderer=a)
}
).call(this); | 72.265574 | 2,087 | 0.618892 |
b74634f872a4228ad85b9cd517d29c6c1a791248 | 3,865 | js | JavaScript | app/nuget/v3/searchQueryService.js | fr34kyn01535/Hangar | b519f558a17a2bf58655b6aab708b77fe15052e4 | [
"MIT"
] | null | null | null | app/nuget/v3/searchQueryService.js | fr34kyn01535/Hangar | b519f558a17a2bf58655b6aab708b77fe15052e4 | [
"MIT"
] | null | null | null | app/nuget/v3/searchQueryService.js | fr34kyn01535/Hangar | b519f558a17a2bf58655b6aab708b77fe15052e4 | [
"MIT"
] | null | null | null | "use strict";
const router = require('express').Router();
const db = require('../../../models/index');
const Sequelize = require('sequelize');
const Op = Sequelize.Op;
const semver = require('semver');
class QueryResult{
constructor(totalHits, packages){
this.totalHits = totalHits;
this.data = packages;
}
}
class Package{
constructor(packageContent,versions,totalDownloads){
this.id = packageContent.id;
this.version = packageContent.version;
this.versions = versions;
this.registration = process.env.ADDRESS + '/registration/'+packageContent.id+'/index.json',
this["@id"] = this.registration;
this["@type"] = "Package";
this.description = packageContent.description;
this.authors = packageContent.authors ? packageContent.authors.split(',').map(m => m.trim()) : '';
this.iconUrl = packageContent.iconUrl;
this.licenseUrl = packageContent.licenseUrl;
this.projectUrl = packageContent.projectUrl;
this.summary = packageContent.summary;
this.tags = packageContent.tags ? packageContent.tags.split(",").map(m => m.trim()) : "";
this.title = packageContent.title;
this.totalDownloads = this.versions.reduce((a, b) => a+b.downloads, 0);
this.verified = packageContent.verified;
}
}
class Version{
constructor(id,version, downloads){
this["@id"] = process.env.ADDRESS + '/registration/'+id+'/'+version+'.json'
this.version = version;
this.downloads = downloads || 0;
}
}
router.get('/', function(req, res) {
var query = req.query.q || "";
var skip = req.query.skip ? parseInt(req.query.skip) : 0;
var take = req.query.take ? parseInt(req.query.take) : 20;
var preRelease = req.query.prerelease == true || req.query.prerelease == "true" || false;
var semVerLevel = req.query.semVerLevel;
var where = {
[Op.and]:[
{
[Op.or]: [
{
summary: {
[Op.like]: '%'+query+'%'
}
},
{
id: {
[Op.like]: '%'+query+'%'
}
},
{
title: {
[Op.like]: '%'+query+'%'
}
}
]
},{
verified: !preRelease
}
]
};
if(req.query.my && req.user){
where[Op.and].push({userId:req.user.id});
}
db.Package.findAll({
where: where,
attributes: ['id'],
group: ['id'],
offset: skip,
limit: take
})
.then(result => {
let ids = result.map(r => r.id);
db.Package.findAll({
where:{
id :{
[Op.in]: ids
}
}
}).then(allresults => {
let results = [];
for(let id of ids){
let versions = allresults.filter(result => result.id == id);
versions = versions.sort((a,b) => { return b.published - a.published });
versions = versions.sort((a,b) => { return semver.lt(semver.coerce(a.version),semver.coerce(b.version)) });
let totalDownloads = versions.reduce((a, b) => a.downloads+b.downloads, 0);
results.push(new Package(versions[0],versions.map(v => new Version(id,v.version,v.downloads)),totalDownloads));
}
let response = new QueryResult(results.length,results);
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify(response,null,'\t'));
})
});
});
module.exports = router; | 33.034188 | 127 | 0.505563 |
b7464708ea696f2dd69e2783b85c393d1791f674 | 2,393 | js | JavaScript | src/utils/__tests__/matchesStringOrRegExp-test.js | ellerbrock/stylelint | 33ec787142df0ae0698bd95f3a61eb74465c9576 | [
"MIT"
] | 1 | 2019-04-15T16:27:19.000Z | 2019-04-15T16:27:19.000Z | src/utils/__tests__/matchesStringOrRegExp-test.js | ellerbrock/stylelint | 33ec787142df0ae0698bd95f3a61eb74465c9576 | [
"MIT"
] | 40 | 2016-11-24T01:06:10.000Z | 2020-06-02T23:46:59.000Z | src/utils/__tests__/matchesStringOrRegExp-test.js | ellerbrock/stylelint | 33ec787142df0ae0698bd95f3a61eb74465c9576 | [
"MIT"
] | null | null | null | import matchesStringOrRegExp from "../matchesStringOrRegExp"
import test from "tape"
test("matchesStringOrRegExp comparing with string comparisonValues", t => {
t.deepEqual(matchesStringOrRegExp("bar", "bar"),
{ match: "bar", pattern: "bar" })
t.notOk(matchesStringOrRegExp("bar", "/bar something"))
t.deepEqual(matchesStringOrRegExp("/bar something", "/bar something"),
{ match: "/bar something", pattern: "/bar something" })
t.deepEqual(matchesStringOrRegExp("bar something/", "bar something/"),
{ match: "bar something/", pattern: "bar something/" })
t.notOk(matchesStringOrRegExp("bar something/", "bar something//"))
t.deepEqual(matchesStringOrRegExp([ "foo", "bar" ], "bar"),
{ match: "bar", pattern: "bar" })
t.notOk(matchesStringOrRegExp([ "foo", "baz" ], "bar"))
t.deepEqual(matchesStringOrRegExp("bar", [ "foo", "bar" ]),
{ match: "bar", pattern: "bar" })
t.notOk(matchesStringOrRegExp("bar", [ "foo", "baz" ]))
t.deepEqual(matchesStringOrRegExp([ "foo", "baz" ], [ "foo", "bar" ]),
{ match: "foo", pattern: "foo" })
t.notOk(matchesStringOrRegExp([ "bar", "hooha" ], [ "foo", "baz" ]))
t.end()
})
test("matchesStringOrRegExp comparing with a RegExp comparisonValue", t => {
t.deepEqual(matchesStringOrRegExp(".foo", "/\\.foo$/"),
{ match: ".foo", pattern: "/\\.foo$/" })
t.deepEqual(matchesStringOrRegExp("bar .foo", "/\\.foo$/"),
{ match: "bar .foo", pattern: "/\\.foo$/" })
t.notOk(matchesStringOrRegExp("bar .foo bar", "/\\.foo$/"))
t.notOk(matchesStringOrRegExp("foo", "/\\.foo$/"))
t.deepEqual(matchesStringOrRegExp([ ".foo", "bar" ], "/\\.foo$/"),
{ match: ".foo", pattern: "/\\.foo$/" })
t.notOk(matchesStringOrRegExp([ "foo", "baz" ], "/\\.foo$/"))
t.deepEqual(matchesStringOrRegExp(".foo", [ "/\\.foo$/", "/^bar/" ]),
{ match: ".foo", pattern: "/\\.foo$/" })
t.deepEqual(matchesStringOrRegExp("bar", [ "/\\.foo$/", "/^bar/" ]),
{ match: "bar", pattern: "/^bar/" })
t.notOk(matchesStringOrRegExp("ebarz", [ "/\\.foo$/", "/^bar/" ]))
t.deepEqual(matchesStringOrRegExp([ ".foo", "ebarz" ], [ "/\\.foo$/", "/^bar/" ]),
{ match: ".foo", pattern: "/\\.foo$/" })
t.deepEqual(matchesStringOrRegExp([ "bar", "foo" ], [ "/\\.foo$/", "/^bar/" ]),
{ match: "bar", pattern: "/^bar/" })
t.notOk(matchesStringOrRegExp([ "ebarz", "foo" ], [ "/\\.foo$/", "/^bar/" ]))
t.end()
})
| 43.509091 | 84 | 0.593815 |
b74717ef3d96a0971f0a7106cb2a8c69fd21b526 | 967 | js | JavaScript | dist/es2015/ExePlatformModule.js | yefusheng/ng-platfroms | 3b08468ed393d584cb7152ca78a7e67aa19dc11c | [
"MIT"
] | null | null | null | dist/es2015/ExePlatformModule.js | yefusheng/ng-platfroms | 3b08468ed393d584cb7152ca78a7e67aa19dc11c | [
"MIT"
] | null | null | null | dist/es2015/ExePlatformModule.js | yefusheng/ng-platfroms | 3b08468ed393d584cb7152ca78a7e67aa19dc11c | [
"MIT"
] | null | null | null | import { NgModule } from '@angular/core';
import { ExePlatformService } from "./ExePlatform.service";
import { AuthService } from "./Auth.service";
//import {ExePlatformConponentModule} from "./dynamic-component/ExePlatformConponentModule";
import { WindowsPlatformModule } from "./windows/WindowsPlatformModule";
//导入对应的平台模块
// let platformModule=new PlatformStragety().getStragety();
var ExePlatformModule = (function () {
function ExePlatformModule() {
}
return ExePlatformModule;
}());
export { ExePlatformModule };
ExePlatformModule.decorators = [
{ type: NgModule, args: [{
imports: [
WindowsPlatformModule,
],
// exports: [ExePlatformConponentModule],
providers: [
AuthService,
ExePlatformService,
]
},] },
];
/** @nocollapse */
ExePlatformModule.ctorParameters = function () { return []; };
| 34.535714 | 92 | 0.616339 |
b7472a161d487849be96ae4342e559810977a710 | 751 | js | JavaScript | src/Actions/DevicesGet/index.js | octoblu/redux-meshblu | 77e3496a9437510cc6734f203cadc286b8c46d4c | [
"MIT"
] | null | null | null | src/Actions/DevicesGet/index.js | octoblu/redux-meshblu | 77e3496a9437510cc6734f203cadc286b8c46d4c | [
"MIT"
] | null | null | null | src/Actions/DevicesGet/index.js | octoblu/redux-meshblu | 77e3496a9437510cc6734f203cadc286b8c46d4c | [
"MIT"
] | 2 | 2017-06-30T20:33:46.000Z | 2021-12-19T01:01:37.000Z | import MeshbluHttp from 'browser-meshblu-http'
import { createAction } from 'redux-act'
export const getDeviceRequest = createAction('meshblu/devices/get/request')
export const getDeviceSuccess = createAction('meshblu/devices/get/success')
export const getDeviceFailure = createAction('meshblu/devices/get/failure')
export default function getDevice({uuid, meshbluConfig}) {
return dispatch => {
dispatch(getDeviceRequest())
return new Promise((resolve, reject) => {
const meshblu = new MeshbluHttp(meshbluConfig)
meshblu.device(uuid, (error, device) => {
if (error) return reject(dispatch(getDeviceFailure(new Error(error.message))))
return resolve(dispatch(getDeviceSuccess(device)))
})
})
}
}
| 32.652174 | 86 | 0.725699 |
b7474421d5b8b266f5636fd20381f6b9ad5dc0b4 | 444 | js | JavaScript | src/form/Button.js | tengge1/xtype-html5 | 1cbe1736cea31122574b2fb8adafd9f13d909049 | [
"MIT"
] | 1 | 2018-11-09T23:51:35.000Z | 2018-11-09T23:51:35.000Z | src/form/Button.js | tengge1/xtype-html5 | 1cbe1736cea31122574b2fb8adafd9f13d909049 | [
"MIT"
] | null | null | null | src/form/Button.js | tengge1/xtype-html5 | 1cbe1736cea31122574b2fb8adafd9f13d909049 | [
"MIT"
] | null | null | null | import { Control, UI } from '../third_party';
/**
* Button
* @author tengge / https://github.com/tengge1
* @param {*} options
*/
function Button(options = {}) {
Control.call(this, options);
}
Button.prototype = Object.create(Control.prototype);
Button.prototype.constructor = Button;
Button.prototype.render = function () {
this.renderDom(this.createElement('button'));
};
UI.addXType('button', Button);
export default Button; | 21.142857 | 52 | 0.686937 |
b7495d64f866f3bd98d7ad973b257f870b7c555b | 2,880 | js | JavaScript | adminclient/src/actions/notification.js | repetere/periodicjs.ext.reactapp | 5392ce755e870d2e2543cb4b28083f1425a5d734 | [
"MIT"
] | null | null | null | adminclient/src/actions/notification.js | repetere/periodicjs.ext.reactapp | 5392ce755e870d2e2543cb4b28083f1425a5d734 | [
"MIT"
] | 11 | 2019-11-04T21:25:38.000Z | 2022-02-26T12:27:58.000Z | adminclient/src/actions/notification.js | repetere/periodicjs.ext.reactapp | 5392ce755e870d2e2543cb4b28083f1425a5d734 | [
"MIT"
] | 4 | 2017-07-14T19:39:46.000Z | 2017-11-07T18:06:23.000Z | import constants from '../constants';
const generateNotificationID = () => {
return ((Math.random() * 1000000).toFixed(0) + '' + new Date().valueOf());
};
const notification = {
hideNotification(id='last') {
return {
type: constants.notification.HIDE_NOTIFICATION,
payload: { id, },
};
},
showNotification(options) {
// options.text = options.text + '+' + options.id;
return {
type: (options.timeout) ? constants.notification.SHOW_TIMED_NOTIFICATION : constants.notification.SHOW_STATIC_NOTIFICATION,
payload: options,
};
},
errorNotification(error, timeout) {
return (dispatch, getState) => {
let errorTimeout = getState().settings.ui.notifications.error_timeout;
let options = {
type: 'error',
text: (error && error.data && error.data.error)
? error.data.error
: (error && error.data && error.data)
? error.data
: error.toString(),
meta: error,
timeout: (typeof timeout === 'boolean' && timeout ===false)? false : errorTimeout,
};
dispatch(this.createNotification(options));
};
},
createNotification(options = {}) {
const ID = generateNotificationID();
if (typeof options === 'string') {
console.warn('please pass text as {text:noficationtext}');
options = { text: options, };
}
return (dispatch/*, getState*/) => {
if (options.timeout) {
let t = setTimeout(() => {
dispatch(this.hideNotification(ID));
clearTimeout(t);
}, options.timeout);
}
dispatch(this.showNotification(Object.assign({}, options, { id: ID, })));
};
},
hideModal(id='last') {
return {
type: constants.notification.HIDE_MODAL,
payload: { id, },
};
},
showModal(options) {
return {
type: constants.notification.SHOW_MODAL,
payload: options,
};
},
createModal(options = {}) {
const ID = generateNotificationID();
if (typeof options === 'string') {
console.warn('please pass text as {text:modalText}');
options = { text: options, };
}
return (dispatch/*, getState*/) => {
if (options.timeout) {
let t = setTimeout(() => {
dispatch(this.hideModal(ID));
clearTimeout(t);
}, options.timeout);
}
dispatch(this.showModal(Object.assign({}, options, { id: ID, })));
};
},
// ajaxModal(options = {}) {
// return (dispatch, getState) => {
// options.title = 'pagedata.title'
// options.text = 'layout'
// let AppManifest = getState().manifest;
// console.log({AppManifest});
// // dispatch(this.showModal(Object.assign({}, options, { id: ID, })));
// };
// },
};
export default notification; | 31.304348 | 130 | 0.557292 |
b749707f1bb13f422b835fb8e42fe03c60e99c9c | 959 | js | JavaScript | controllers/users.js | eddcrossman/contact-center-server-node | 33f9b6008bddf5c9315054a2f5398f6398509fef | [
"MIT"
] | 2 | 2019-10-06T21:43:21.000Z | 2020-10-20T05:33:46.000Z | controllers/users.js | eddcrossman/contact-center-server-node | 33f9b6008bddf5c9315054a2f5398f6398509fef | [
"MIT"
] | 2 | 2019-12-19T07:26:01.000Z | 2021-05-10T04:50:54.000Z | controllers/users.js | eddcrossman/contact-center-server-node | 33f9b6008bddf5c9315054a2f5398f6398509fef | [
"MIT"
] | 5 | 2019-09-16T18:00:53.000Z | 2021-06-25T17:48:27.000Z | const userModel = require('../models/user');
exports.users_get = (req, res) => {
userModel.find({}, (err, users) => {
res.render('users', { title: 'Users', users: users });
});
}
exports.users_new_get = (req, res) => {
res.render('users_new', { title: 'New User' });
}
exports.users_new_post = (req, res) => {
const { username } = req.body;
req.nexmo.createUser(username, (err, result) => {
if (err) {
console.log(err);
req.flash('alert', err);
res.redirect('/users');
} else {
const user = new userModel({
user_id: result.id,
href: result.href,
username: username
});
user.save((err) => {
if (err) {
console.log(err);
req.flash('alert', err);
res.redirect('/users');
} else {
req.flash('info', `User ${username} was successfully created.`)
res.redirect('/users');
}
});
};
})
} | 23.975 | 73 | 0.514077 |
b74979704096ea37f71225d6b3f01a66c88c78ad | 745 | js | JavaScript | app/assets/javascripts/helpers/mcasScores.test.js | ciscomeneses/studentinsights | 480457b5e8ad9c4748168aa762fc48fdff4defde | [
"MIT"
] | null | null | null | app/assets/javascripts/helpers/mcasScores.test.js | ciscomeneses/studentinsights | 480457b5e8ad9c4748168aa762fc48fdff4defde | [
"MIT"
] | null | null | null | app/assets/javascripts/helpers/mcasScores.test.js | ciscomeneses/studentinsights | 480457b5e8ad9c4748168aa762fc48fdff4defde | [
"MIT"
] | null | null | null | import {
shortLabelFromNextGenMcasScore,
shortLabelFromOldMcasScore
} from './mcasScores';
describe('#shortLabelFromNextGenMcasScore', () => {
it('works', () => {
expect(shortLabelFromNextGenMcasScore(412)).toEqual('NM');
expect(shortLabelFromNextGenMcasScore(450)).toEqual('PM');
expect(shortLabelFromNextGenMcasScore(504)).toEqual('M');
expect(shortLabelFromNextGenMcasScore(551)).toEqual('E');
});
});
describe('#shortLabelFromOldMcasScore', () => {
it('works', () => {
expect(shortLabelFromOldMcasScore(202)).toEqual('W');
expect(shortLabelFromOldMcasScore(224)).toEqual('NI');
expect(shortLabelFromOldMcasScore(246)).toEqual('P');
expect(shortLabelFromOldMcasScore(268)).toEqual('A');
});
});
| 31.041667 | 62 | 0.704698 |
b74a3d67393ebaa577423c11efdaf0725826d35f | 2,441 | js | JavaScript | src/router/Table/BasicTable.js | yangdongMC/redux-project | b579c5549948858f34c86fc69e147155c0aa8057 | [
"MIT"
] | 1 | 2017-11-22T13:51:23.000Z | 2017-11-22T13:51:23.000Z | src/router/Table/BasicTable.js | yangdongMC/redux-project | b579c5549948858f34c86fc69e147155c0aa8057 | [
"MIT"
] | null | null | null | src/router/Table/BasicTable.js | yangdongMC/redux-project | b579c5549948858f34c86fc69e147155c0aa8057 | [
"MIT"
] | null | null | null | import React from 'react'
import styles from './BasicTable.less'
import Mock from 'mockjs'
import Title from '../../components/commont/Title'
class BasicTable extends React.Component{
state = {
result:{}
}
componentWillMount(){
// const result = Mock.mock(
// 'http://table/list',{
// "username":'@name',
// "content":'@cparagraph()',
// "age|0-12":'12',
// "age|0-1":'1',
// "date" : "@date('yyyy-MM-dd')",
// "content":'是'
// }
// )
const result = Mock.mock({
"list|10":[
{
"id|+1":1,
"describe":'@cparagraph(true)',
"count|0-12":'1',
"status":Mock.Random.integer(0, 1),
"date":'@date("yyyy-mm-dd")',
"content":'是'
}
]
})
this.setState({
result:result,
});
}
returnLi = (item) => {
}
render(){
return(
<div className={styles.basicTable}>
<Title text="基础表格页面!!!"/>
<div className={styles.table}>
<ul className={styles.table_header}>
<li><span>规则编号</span></li>
<li><span>描述</span></li>
<li><span>服务调用次数</span></li>
<li><span>状态</span></li>
<li><span>更新时间</span></li>
<li><span>操作</span></li>
</ul>
{
this.state.result.list.map((item,index) => (
<ol className={styles.table_body} key={item.id}>
<li><span>{item.id}</span></li>
<li><span>{item.describe}</span></li>
<li><span>{item.count}</span></li>
<li><span>{item.status}</span></li>
<li><span>{item.date}</span></li>
<li><span>{item.content}</span></li>
</ol>
))
}
</div>
</div>
)
}
}
export default BasicTable; | 35.376812 | 77 | 0.34535 |
b74ae209eb7260e40d1c67343bda401452d7b55f | 461 | js | JavaScript | app/assets/javascripts/integrations/edit/constants.js | Testiduk/gitlabhq | 2d4f258f067f55894862e47ec32bbc54649d4741 | [
"MIT"
] | 1 | 2021-04-13T01:56:06.000Z | 2021-04-13T01:56:06.000Z | app/assets/javascripts/integrations/edit/constants.js | Testiduk/gitlabhq | 2d4f258f067f55894862e47ec32bbc54649d4741 | [
"MIT"
] | 818 | 2016-07-12T01:02:16.000Z | 2022-03-31T23:54:44.000Z | app/assets/javascripts/integrations/edit/constants.js | Testiduk/gitlabhq | 2d4f258f067f55894862e47ec32bbc54649d4741 | [
"MIT"
] | 3 | 2019-07-09T12:16:21.000Z | 2021-09-06T05:29:33.000Z | import { s__ } from '~/locale';
export const integrationLevels = {
GROUP: 'group',
INSTANCE: 'instance',
};
export const defaultIntegrationLevel = integrationLevels.INSTANCE;
export const overrideDropdownDescriptions = {
[integrationLevels.GROUP]: s__(
'Integrations|Default settings are inherited from the group level.',
),
[integrationLevels.INSTANCE]: s__(
'Integrations|Default settings are inherited from the instance level.',
),
};
| 25.611111 | 75 | 0.735358 |
b74bbed83d647a70741d1a2627fda11354dfda27 | 384 | js | JavaScript | agtms-vue/src/store/store.js | Saisimon/AGTMS | 5ffecd2398cf1927214794447a8dc529732e0890 | [
"MIT"
] | 2 | 2020-04-07T07:01:53.000Z | 2021-09-26T02:48:28.000Z | agtms-vue/src/store/store.js | Saisimon/AGTMS | 5ffecd2398cf1927214794447a8dc529732e0890 | [
"MIT"
] | 21 | 2020-06-06T13:32:04.000Z | 2022-02-26T10:00:23.000Z | agtms-vue/src/store/store.js | Saisimon/AGTMS | 5ffecd2398cf1927214794447a8dc529732e0890 | [
"MIT"
] | null | null | null | import Vue from 'vue'
import Vuex from 'vuex'
import base from './modules/base'
import list from './modules/list'
import edit from './modules/edit'
import template from './modules/template'
import selection from './modules/selection'
Vue.use(Vuex)
export default new Vuex.Store({
modules: {
base,
list,
edit,
template,
selection
}
})
| 19.2 | 43 | 0.645833 |
b74d259c91ac960b6d7233c941d8933db3f34766 | 1,815 | js | JavaScript | Balsam/screens/db.js | Nabeeldev20/B209 | 1082202aff82e3faae29c94d91b14719d22ccd95 | [
"MIT"
] | null | null | null | Balsam/screens/db.js | Nabeeldev20/B209 | 1082202aff82e3faae29c94d91b14719d22ccd95 | [
"MIT"
] | 17 | 2021-12-13T06:23:26.000Z | 2021-12-13T06:36:23.000Z | Balsam/screens/db.js | Nabeel20/B-mobile | 20ce116f9ac176cb9893385a57d8c5132b6f7e67 | [
"MIT"
] | 4 | 2021-03-16T19:42:50.000Z | 2021-03-18T15:42:24.000Z | /* eslint-disable prettier/prettier */
import { Dirs, FileSystem } from 'react-native-file-access';
import CryptoJS from 'crypto-js';
export let app_database = {
database: [],
bookmarks: [],
cache: [],
activation: [],
ID: null,
get get_database() {
return this.database;
},
set update_database(data) {
if (data.is_array) {
this.database = [...this.database, data.update];
} else {
this.database = data.update;
}
},
set default_ID(update) {
this.ID = update;
},
get get_bookmarks() {
return this.bookmarks;
},
set update_bookmarks(update) {
this.bookmarks = update;
},
get get_activation() {
return this.activation;
},
set update_activation(update) {
this.activation = update;
},
get get_cache() {
return this.cache;
},
set update_cache(update) {
this.cache = update;
},
async save_file(quiz) {
try {
let path = quiz.path;
let encrypted = CryptoJS.AES.encrypt(JSON.stringify(quiz), 'nabeeladnanalinizam_20900!@#()').toString();
await FileSystem.writeFile(path, encrypted);
} catch (error) {
return error;
}
},
async save_blsm() {
try {
let blsm = {
ID: this.ID,
activation: this.activation,
bookmarks: this.bookmarks,
cache: this.cache,
};
let encrypted = CryptoJS.AES.encrypt(
JSON.stringify(blsm),
'nabeeladnanalinizam_20900!@#()',
).toString();
await FileSystem.writeFile(Dirs.DocumentDir + '/b.blsm', encrypted);
} catch (error) {
}
},
};
| 26.691176 | 116 | 0.525069 |
b74e4e9f3b428aae4c27e72248f19cc4dae711d7 | 199 | js | JavaScript | docs/dotnet/classGoogle_1_1OrTools_1_1Util_1_1OptionalBooleanReflection.js | matbesancon/or-tools | b37d9c786b69128f3505f15beca09e89bf078a89 | [
"Apache-2.0"
] | 1 | 2021-07-06T13:01:46.000Z | 2021-07-06T13:01:46.000Z | docs/dotnet/classGoogle_1_1OrTools_1_1Util_1_1OptionalBooleanReflection.js | matbesancon/or-tools | b37d9c786b69128f3505f15beca09e89bf078a89 | [
"Apache-2.0"
] | null | null | null | docs/dotnet/classGoogle_1_1OrTools_1_1Util_1_1OptionalBooleanReflection.js | matbesancon/or-tools | b37d9c786b69128f3505f15beca09e89bf078a89 | [
"Apache-2.0"
] | 1 | 2021-07-24T22:52:41.000Z | 2021-07-24T22:52:41.000Z | var classGoogle_1_1OrTools_1_1Util_1_1OptionalBooleanReflection =
[
[ "Descriptor", "classGoogle_1_1OrTools_1_1Util_1_1OptionalBooleanReflection.html#a74b02ddd68c889c1980f7831064f5c0b", null ]
]; | 49.75 | 128 | 0.864322 |
b74e59590745328200f1b50d16a65171c76303dd | 666 | js | JavaScript | webpack/env.js | adrienZ/spotify-playlist-cleaner | 6fe34c7b9746e2092d312e7b6f40f72c2ea96f13 | [
"MIT"
] | null | null | null | webpack/env.js | adrienZ/spotify-playlist-cleaner | 6fe34c7b9746e2092d312e7b6f40f72c2ea96f13 | [
"MIT"
] | null | null | null | webpack/env.js | adrienZ/spotify-playlist-cleaner | 6fe34c7b9746e2092d312e7b6f40f72c2ea96f13 | [
"MIT"
] | null | null | null | const dotenv = require('dotenv').config().parsed
const path = require('path')
const urls = require('./urls')
// dev mode helpers
const serverMode = process.env.NODE_ENV === 'dev'
const devMode =
process.env.NODE_ENV === 'dev' ||
process.argv.indexOf('--mode=production') === -1
// build public path from dotenv urls
const buildPublicPath = url =>
path.join(url, path.relative(urls.BASE_URL, urls.prod.root), '/')
const setPublicPath = () => {
// if (!devMode) return ''
// if (!serverMode) {
// return dotenv.WP_HOME || ''
// }
return ''
}
module.exports = Object.assign({}, dotenv, {
serverMode,
devMode,
publicPath: setPublicPath(),
})
| 23.785714 | 67 | 0.648649 |
b74e9bd561ad6c72f463461de15211210c8c9220 | 4,044 | js | JavaScript | src/settings-preload.js | jordi-7/twinkle-tray | 3455e06629f0591e97d3d6ae44e1c4574078a92e | [
"MIT"
] | 3 | 2020-05-20T07:13:07.000Z | 2021-11-08T09:41:13.000Z | src/settings-preload.js | jordi-7/twinkle-tray | 3455e06629f0591e97d3d6ae44e1c4574078a92e | [
"MIT"
] | null | null | null | src/settings-preload.js | jordi-7/twinkle-tray | 3455e06629f0591e97d3d6ae44e1c4574078a92e | [
"MIT"
] | null | null | null | const { ipcRenderer: ipc, remote } = require('electron');
let browser = remote.getCurrentWindow()
function requestMonitors() {
ipc.send('request-monitors')
}
function requestAccent() {
ipc.send('request-colors')
}
// Send brightness update request. Params are the monitor's index in the array and requested brightness level.
function updateBrightness(index, level) {
ipc.send('update-brightness', {
index,
level
})
}
//
// Send Settings
// - Send immediately if no recent changes. Throttle if frequent changes.
//
//
let sendSettingsThrottle = false
let sendSettingsObj = {}
function sendSettings(newSettings = {}) {
sendSettingsObj = Object.assign(sendSettingsObj, newSettings)
if(!sendSettingsThrottle) {
actuallySendSettings()
sendSettingsThrottle = setTimeout(() => {
actuallySendSettings()
sendSettingsThrottle = false
}, 333)
}
}
function actuallySendSettings() {
ipc.send('send-settings', sendSettingsObj)
sendSettingsObj = {}
}
function requestSettings() {
ipc.send('request-settings')
}
function resetSettings() {
ipc.send('reset-settings')
}
function openURL(url) {
ipc.send('open-url', url)
}
function getUpdate(url) {
ipc.send('get-update', url)
}
// Monitor info updated
ipc.on("monitors-updated", (e, monitors) => {
if(JSON.stringify(window.allMonitors) == JSON.stringify(monitors)) return false;
window.allMonitors = monitors
window.lastUpdate = Date.now()
window.dispatchEvent(new CustomEvent('monitorsUpdated', {
detail: monitors
}))
})
// Monitor names updated
// This takes longer, so we update it after the panel pops up
ipc.on("names-updated", (e, monitors) => {
if(JSON.stringify(window.allMonitors) == JSON.stringify(monitors)) return false;
window.allMonitors = monitors
window.lastUpdate = Date.now()
window.dispatchEvent(new CustomEvent('monitorsUpdated', {
detail: monitors
}))
})
// Accent colors recieved
ipc.on('update-colors', (event, data) => {
window.document.body.style.setProperty("--system-accent-color", data.accent)
window.document.body.style.setProperty("--system-accent-lighter", data.lighter)
window.document.body.style.setProperty("--system-accent-light", data.light)
window.document.body.style.setProperty("--system-accent-medium", data.medium)
window.document.body.style.setProperty("--system-accent-medium-dark", data.mediumDark)
window.document.body.style.setProperty("--system-accent-transparent", data.transparent)
window.document.body.style.setProperty("--system-accent-dark", data.dark)
window.accent = data.accent
})
ipc.on('settings-updated', (event, settings) => {
window.settings = settings
window.dispatchEvent(new CustomEvent('settingsUpdated', {
detail: settings
}))
})
// Localization recieved
ipc.on('localization-updated', (event, localization) => {
window.dispatchEvent(new CustomEvent('localizationUpdated', {
detail: localization
}))
})
// User personalization settings recieved
ipc.on('theme-settings', (event, theme) => {
try {
window.document.body.dataset["systemTheme"] = (parseInt(theme.SystemUsesLightTheme) == 1 ? "light" : "dark")
} catch (e) {
window.document.body.dataset["systemTheme"] = "default"
}
})
// Request startup data
browser.webContents.once('dom-ready', () => {
requestSettings()
requestMonitors()
requestAccent()
})
window.ipc = ipc
window.updateBrightness = updateBrightness
window.requestMonitors = requestMonitors
window.sendSettings = sendSettings
window.requestSettings = requestSettings
window.resetSettings = resetSettings
window.getUpdate = getUpdate
window.openURL = openURL
window.allMonitors = []
window.lastUpdate = Date.now()
window.showPanel = false
window.settings = {}
window.thisWindow = browser
window.accent = "cyan"
window.version = 'v' + remote.app.getVersion()
window.isAppX = (remote.app.getName() == "twinkle-tray-appx" ? true : false) | 29.093525 | 116 | 0.699802 |
b74ebb064a8c5da3ad490c1ee073df349014905a | 78 | js | JavaScript | testing/miscellaneous/args.js | dhairy-online/elsa | eb69e6b8c7cdf868b3165114719a64a3dfd16a7a | [
"MIT"
] | 2,702 | 2020-09-22T09:48:08.000Z | 2022-03-31T16:15:32.000Z | testing/miscellaneous/args.js | dhairy-online/elsa | eb69e6b8c7cdf868b3165114719a64a3dfd16a7a | [
"MIT"
] | 50 | 2020-09-23T04:26:34.000Z | 2022-03-21T13:14:36.000Z | testing/miscellaneous/args.js | dhairy-online/elsa | eb69e6b8c7cdf868b3165114719a64a3dfd16a7a | [
"MIT"
] | 63 | 2020-09-22T19:20:07.000Z | 2022-02-08T03:21:22.000Z | // WARNING! pkg_test will fail if you move this file.
console.log(Elsa.args);
| 26 | 53 | 0.74359 |
b74ec66c4f44dea0a8ad81a9dbf2bb3aa4d82363 | 935 | js | JavaScript | base-components/scripts/gene-css-def.js | woshilanren11/cloud-design | 47c0ec009d37ab848ed1d877d7c24195a8fef7a9 | [
"MIT"
] | 89 | 2020-08-26T09:20:28.000Z | 2022-03-30T03:33:59.000Z | base-components/scripts/gene-css-def.js | woshilanren11/cloud-design | 47c0ec009d37ab848ed1d877d7c24195a8fef7a9 | [
"MIT"
] | 7 | 2020-10-12T02:43:08.000Z | 2022-02-28T12:26:31.000Z | base-components/scripts/gene-css-def.js | woshilanren11/cloud-design | 47c0ec009d37ab848ed1d877d7c24195a8fef7a9 | [
"MIT"
] | 13 | 2020-09-30T07:40:48.000Z | 2022-02-28T15:23:45.000Z | // 用于生成 css-var 文件
const path = require('path')
const fs = require('fs-extra')
const cwd = process.cwd()
const log = console.log
const themes = require('./theme-data')
const chalk = require('chalk');
log(chalk.green('generate css variables...'));
themes.forEach((theme) => {
const { themeName, ignore } = theme;
if (!ignore) {
const themePath = path.join(cwd, `fusion-theme/${themeName}/variables.css`);
const styleContent = fs.readFileSync(themePath, 'utf-8')
// const cssResult = `:root {
// ${styleContent.replace(/\$/g, '--').replace(/\/\/(.+)\/\//g, '/*$1*/')}
// }`
let cssResult = styleContent.replace(':root', '#{$css-var-scope}')
// 来自fusion主题包的bug,暂时暴力修复
cssResult = cssResult.replace(/, \$icon-reset/g, '')
fs.writeFileSync(
path.join(cwd, `src/theme/${themeName}`, 'css-var-definition.scss'),
cssResult
)
log(`generate theme ${themeName} success!`)
}
})
| 31.166667 | 80 | 0.616043 |
b75090e2366d112572ea1c134118f55c5bc7be5a | 4,421 | js | JavaScript | index.js | Enes557/V12-Buttonlu-Ticket-Botu | 05991c1fbba5db205fb3895f14bde5d05fe739cf | [
"MIT"
] | 1 | 2022-02-04T17:13:52.000Z | 2022-02-04T17:13:52.000Z | index.js | Enes557/V12-Buttonlu-Ticket-Bot | 05991c1fbba5db205fb3895f14bde5d05fe739cf | [
"MIT"
] | null | null | null | index.js | Enes557/V12-Buttonlu-Ticket-Bot | 05991c1fbba5db205fb3895f14bde5d05fe739cf | [
"MIT"
] | null | null | null | const Discord = require("discord.js");
const db = require("quick.db");
const client = new Discord.Client();
const disbut = require('discord-buttons')
disbut(client);
const express = require("express")
const app = express()
app.get("/errors", (req, res, next) => {
const errors = JSON.parse(req.body.jsonString)
})
process.on("unhandledRejection", (reason, promise) => {})
//sunucuya katıldığında
client.on("guildCreate", async guild => {
guild.owner.send("You or any of your officials added me to the server. To Create a Ticket Message, You Can Enter Any Channel and Type '!create', But Before That, You Have to Set a Channel Category with '!category <cetegory id>'. Good Uses.");
});
//mesaj fonksiyonu
client.on('message', async (message) => {
let args = message.content.trim().split(/ +/g)
var sunucu = message.guild.id;
var yetki = message.member.hasPermission('ADMINISTRATOR');
if (args[0] == "!create") {
if(!yetki) return;
if (!db.get(sunucu)) return message.channel.send('Please Complete Installation. !category <category id>');
message.delete()
let button = new disbut.MessageButton()
.setStyle('blurple')
.setEmoji("🎫")
.setLabel('Create')
.setID('create')
const embed = new Discord.MessageEmbed()
.setColor('#6064f4')
.setTitle('Ticket Manager')
.setDescription("You can open a ticket here.\nPlease Do Not Open Unnecessary Ticket!")
.setFooter('Official Owner of This Server \''+message.guild.owner.user.tag+'\'', 'https://i.hizliresim.com/3kcyfrj.png');
message.channel.send(embed, {buttons:[button]});
};
//kategori ayarlama fonksiyonu
if (args[0] == "!category") {
if(!yetki) return;
if(db.get(sunucu)) return message.channel.send('A Category Has Already Been Added!');
if(args[1] | typeof args[1] === 'number'){
if(!yetki) return;
db.set(sunucu, args[1])
message.channel.send("Category Added Successfully.");
}else{
message.channel.send("Please Enter a Valid Category ID!");
}};
if (args[0] == "!reset") {
if(!yetki) return;
if(!db.get(sunucu)) return message.channel.send('No Setting Found to Reset');
db.delete(sunucu)
message.channel.send("All Settings Related to This Server Have Been Reset.");
}
//klasik yardım şeysi işte
if(args[0] == "!help"){
const embed = new Discord.MessageEmbed()
.setColor('#6064f4')
.setTitle('Help Menu')
.setDescription("Prefix > !\n\n!create > Creates a ticket creation message\n!category > Opens a ticket channel in the category you specify\n!reset > Reset All Settings")
.setFooter(client.user.username, 'https://i.hizliresim.com/3kcyfrj.png');
message.channel.send(embed);
}
});
//button için
client.on('clickButton', async (button) => {
var sunucu = button.guild.id;
if (button.id === 'create') {
button.guild.channels.create("ticket-"+button.clicker.user.username, {
type: "text",
parent: db.get(sunucu),
permissionOverwrites: [
{
id: button.guild.roles.everyone,
deny: ['VIEW_CHANNEL']
},
{
id: button.clicker.user,
allow: ['VIEW_CHANNEL']
}
],
}).then(channel => {
//ticket kanalına atıcak mesaj
const exampleEmbed = new Discord.MessageEmbed()
.setColor('#f04444')
.setTitle('New Support Request!')
.setDescription("We will deal with you as soon as possible.")
.setFooter(client.user.username, 'https://i.hizliresim.com/3kcyfrj.png');
let ticketkapat1 = new disbut.MessageButton()
.setStyle('red')
.setEmoji("🗑")
.setLabel('Close')
.setID('close')
channel.send(exampleEmbed, {buttons:[ticketkapat1]});
})
}
if (button.id === 'close') {
button.channel.delete()
}
});
client.login("token"); | 31.805755 | 251 | 0.556661 |
b750c24a099074e118210b8917012c7309fe1703 | 3,668 | js | JavaScript | lib/websocket-relay.js | piznel/ffmpeg-jsmpeg | 5459fe8345bf2714bae0687f28b065a43dea67c3 | [
"MIT"
] | null | null | null | lib/websocket-relay.js | piznel/ffmpeg-jsmpeg | 5459fe8345bf2714bae0687f28b065a43dea67c3 | [
"MIT"
] | 1 | 2019-02-14T16:52:51.000Z | 2019-02-14T16:52:51.000Z | lib/websocket-relay.js | piznel/ffmpeg-jsmpeg | 5459fe8345bf2714bae0687f28b065a43dea67c3 | [
"MIT"
] | null | null | null | // Use the websocket-relay to serve a raw MPEG-TS over WebSockets. You can use
// ffmpeg to feed the relay. ffmpeg -> websocket-relay -> browser
// Example:
// node websocket-relay 8081 8082
// ffmpeg -i <some input> -f mpegts https://localhost:8081/
const fs = require('fs');
const https = require('https');
const pem = require('https-pem')
const WebSocket = require('ws');
const ffmpeg = require('./ffmpeg.js');
const shared = require('./shared');
const config = require('./config.js');
var isWebSocketHandshake = require('is-websocket-handshake')
module.exports = function (inputPort, outputPort) {
const STREAM_PORT = inputPort || 8081;
const WEBSOCKET_PORT = outputPort || 8082;
const RECORD_STREAM = false;
var httpsserver = https.createServer(pem);
httpsserver.on('upgrade', function (req, socket, head) {
if (isWebSocketHandshake(req)) {
console.log('FFmpeg-jsRTSP : received proper WebSocket handshake')
}
})
// Websocket Server
var socketServer = new WebSocket.Server({ server: httpsserver, perMessageDeflate: false });
socketServer.connectionCount = 0;
socketServer.on('connection', function (socket, upgradeReq) {
if (socketServer.connectionCount === 0) ffmpeg();
socketServer.connectionCount++;
console.log(
'FFmpeg-jsRTSP : New WebSocket Connection: ',
(upgradeReq || socket.upgradeReq).socket.remoteAddress,
(upgradeReq || socket.upgradeReq).headers['user-agent'],
'(' + socketServer.connectionCount + ' total)'
);
socket.on('close', function (code, message) {
socketServer.connectionCount--;
if (socketServer.connectionCount === 0) shared.ffmpeg.kill()
console.log(
'FFmpeg-jsRTSP : Disconnected WebSocket (' + socketServer.connectionCount + ' total)'
);
});
socket.on('message', function (message) {
let msg = JSON.parse(message)
let change = false;
if (msg.hasOwnProperty('width')) {
if (config.resolution !== msg.width + 'x?') {
config.resolution = msg.width + 'x?'
change = true
}
}
if (msg.hasOwnProperty('url')) {
if (config.uri !== msg.url) {
config.uri = msg.url
change = true
}
}
if (msg.hasOwnProperty('quality')) {
if (config.quality !== msg.quality) {
config.quality = msg.quality
change = true
}
}
if (change) {
if (shared.ffmpeg) shared.ffmpeg.kill()
ffmpeg()
}
})
});
socketServer.broadcast = function (data) {
socketServer.clients.forEach(function each(client) {
if (client.readyState === WebSocket.OPEN) {
try {
client.send(data);
}
catch (err) {
console.log(err)
}
}
});
};
httpsserver.listen(WEBSOCKET_PORT);
// HTTPS Server to accept incomming MPEG-TS Stream from ffmpeg
var streamServer = https.createServer(pem, function (request, response) {
response.connection.setTimeout(0);
console.log(
'FFmpeg-jsRTSP : Stream Connected: ' +
request.socket.remoteAddress + ':' +
request.socket.remotePort
);
request.on('data', function (data) {
socketServer.broadcast(data);
if (request.socket.recording) {
request.socket.recording.write(data);
}
});
request.on('end', function () {
console.log('close');
if (request.socket.recording) {
request.socket.recording.close();
}
});
// Record the stream to a local file?
if (RECORD_STREAM) {
var path = 'recordings/' + Date.now() + '.ts';
request.socket.recording = fs.createWriteStream(path);
}
}).listen(STREAM_PORT);
console.log('FFmpeg-jsRTSP : Listening for incomming MPEG-TS Stream on https://127.0.0.1:' + STREAM_PORT);
console.log('FFmpeg-jsRTSP : Awaiting WebSocket connections on ' + WEBSOCKET_PORT + ' port.');
}
| 28.88189 | 107 | 0.668757 |
b75296ab78090308e36766dedde057a47522f7f4 | 3,085 | js | JavaScript | public/admin_files/vendor/CodeMirror/mode/factor/factor.js | HyStarRat/Recent-project1 | e445fb24dcaf63b821ea0ece7d2c33024831f761 | [
"MIT"
] | 1 | 2021-05-23T14:23:16.000Z | 2021-05-23T14:23:16.000Z | assets/global/plugins/codemirror/mode/factor/factor.js | fakhirrizal/Dispendukcapil | c9a5ba4db95ff90bdf36459dd499a9c70a9f1023 | [
"MIT"
] | null | null | null | assets/global/plugins/codemirror/mode/factor/factor.js | fakhirrizal/Dispendukcapil | c9a5ba4db95ff90bdf36459dd499a9c70a9f1023 | [
"MIT"
] | 4 | 2018-11-05T07:14:48.000Z | 2021-10-31T17:46:51.000Z | // CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
// Factor syntax highlight - simple mode
//
// by Dimage Sapelkin (https://github.com/kerabromsmu)
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"), require("../../addon/mode/simple"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror", "../../addon/mode/simple"], mod);
else // Plain browser env
mod(CodeMirror);
})(function(CodeMirror) {
"use strict";
CodeMirror.defineSimpleMode("factor", {
// The start state contains the rules that are intially used
start: [
// comments
{regex: /#?!.*/, token: "comment"},
// strings """, multiline --> state
{regex: /"""/, token: "string", next: "string3"},
{regex: /"/, token: "string", next: "string"},
// numbers: dec, hex, unicode, bin, fractional, complex
{regex: /(?:[+-]?)(?:0x[\d,a-f]+)|(?:0o[0-7]+)|(?:0b[0,1]+)|(?:\d+.?\d*)/, token: "number"},
//{regex: /[+-]?/} //fractional
// definition: defining word, defined word, etc
{regex: /(\:)(\s+)(\S+)(\s+)(\()/, token: ["keyword", null, "def", null, "keyword"], next: "stack"},
// vocabulary using --> state
{regex: /USING\:/, token: "keyword", next: "vocabulary"},
// vocabulary definition/use
{regex: /(USE\:|IN\:)(\s+)(\S+)/, token: ["keyword", null, "variable-2"]},
// <constructors>
{regex: /<\S+>/, token: "builtin"},
// "keywords", incl. ; t f . [ ] { } defining words
{regex: /;|t|f|if|\.|\[|\]|\{|\}|MAIN:/, token: "keyword"},
// any id (?)
{regex: /\S+/, token: "variable"},
{
regex: /./,
token: null
}
],
vocabulary: [
{regex: /;/, token: "keyword", next: "start"},
{regex: /\S+/, token: "variable-2"},
{
regex: /./,
token: null
}
],
string: [
{regex: /(?:[^\\]|\\.)*?"/, token: "string", next: "start"},
{regex: /.*/, token: "string"}
],
string3: [
{regex: /(?:[^\\]|\\.)*?"""/, token: "string", next: "start"},
{regex: /.*/, token: "string"}
],
stack: [
{regex: /\)/, token: "meta", next: "start"},
{regex: /--/, token: "meta"},
{regex: /\S+/, token: "variable-3"},
{
regex: /./,
token: null
}
],
// The meta property contains global information about the mode. It
// can contain properties like lineComment, which are supported by
// all modes, and also directives like dontIndentStates, which are
// specific to simple modes.
meta: {
dontIndentStates: ["start", "vocabulary", "string", "string3", "stack"],
lineComment: [ "!", "#!" ]
}
});
CodeMirror.defineMIME("text/x-factor", "factor");
});
| 36.72619 | 108 | 0.492707 |
b753931a0fb448281b6bdf7e089560c3d91ef19c | 10,250 | js | JavaScript | src/components/CreateTAO/CreateTAO.js | jmul-dev/dao-dapp | 231e5d995b25299ea8d1f10c21594461afc7ed2b | [
"MIT"
] | null | null | null | src/components/CreateTAO/CreateTAO.js | jmul-dev/dao-dapp | 231e5d995b25299ea8d1f10c21594461afc7ed2b | [
"MIT"
] | null | null | null | src/components/CreateTAO/CreateTAO.js | jmul-dev/dao-dapp | 231e5d995b25299ea8d1f10c21594461afc7ed2b | [
"MIT"
] | null | null | null | import * as React from "react";
import { Wrapper, Title, SchemaForm, Error, MediumEditor, Button, Ahref } from "components/";
import { FieldWrapper, Label, Select, MinLogos, SelectedParent } from "./styledComponents";
import { ProgressLoaderContainer } from "widgets/ProgressLoader/";
import { schema } from "./schema";
import { getTransactionReceipt, waitForTransactionReceipt } from "utils/web3";
import { abi as TAOFactoryABI } from "ao-contracts/build/contracts/TAOFactory.json";
import { insertTAODescription as graphqlInsertTAODescription } from "utils/graphql";
import { metamaskPopup } from "../../utils/electron";
import { TxHashContainer } from "widgets/TxHash/";
import { getNameLookup as graphqlGetNameLookup, insertNameLookup as graphqlInsertNameLookup } from "utils/graphql";
const promisify = require("tiny-promisify");
const abiDecoder = require("abi-decoder");
abiDecoder.addABI(TAOFactoryABI);
class CreateTAO extends React.Component {
constructor(props) {
super(props);
this.formData = {
taoName: "",
childMinLogos: "",
ethosCapStatus: "No",
ethosCapAmount: ""
};
this.state = {
error: false,
errorMessage: "",
formLoading: false,
parentId: null,
parentIsName: true,
createChildTAOMinLogos: null,
parentMinLogos: null,
formData: this.formData,
taoDescription: "",
txHash: null
};
this.initialState = this.state;
this.handleParentChange = this.handleParentChange.bind(this);
this.handleEditorChange = this.handleEditorChange.bind(this);
this.handleFormChange = this.handleFormChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
async componentDidMount() {
await this.getCreateChildTAOMinLogos();
if (this.props.params.id) {
this.setState({ parentId: this.props.params.id });
} else {
this.setState({ parentId: this.props.nameId });
}
this.setParentMinLogos(this.state.parentId);
}
async componentDidUpdate(prevProps) {
if (
this.props.aoSetting !== prevProps.aoSetting ||
this.props.settingTAOId !== prevProps.settingTAOId ||
this.props.nameId !== prevProps.nameId ||
this.props.params.id !== prevProps.params.id
) {
this.setState(this.initialState);
await this.getCreateChildTAOMinLogos();
if (this.props.params.id) {
this.setState({ parentId: this.props.params.id });
} else {
this.setState({ parentId: this.props.nameId });
}
this.setParentMinLogos(this.state.parentId);
}
}
async getCreateChildTAOMinLogos() {
const { aoSetting, settingTAOId } = this.props;
if (!aoSetting || !settingTAOId) {
return;
}
const [createChildTAOMinLogos] = await promisify(aoSetting.getSettingValuesByTAOName)(settingTAOId, "createChildTAOMinLogos");
this.setState({ createChildTAOMinLogos });
}
async handleParentChange(event) {
event.persist();
await this.setParentMinLogos(event.target.value);
}
async setParentMinLogos(parentId) {
const { nameId, taoAncestry } = this.props;
if (!taoAncestry || !nameId || !parentId) {
return;
}
const { createChildTAOMinLogos } = this.state;
if (parentId === nameId) {
this.setState({ parentId, parentIsName: true, parentMinLogos: createChildTAOMinLogos });
} else {
const [, minLogos] = await promisify(taoAncestry.getAncestryById)(parentId);
this.setState({ parentId, parentIsName: false, parentMinLogos: minLogos });
}
}
handleEditorChange(taoDescription) {
this.setState({ taoDescription });
}
handleFormChange(data) {
const { formData } = data;
this.setState({ formData });
}
validate(formData, errors) {
if (!formData.taoName.match(/^[a-zA-Z]+[a-zA-Z0-9-_ ]*[a-zA-Z0-9]$/)) {
errors.taoName.addError(
"TAO name can only contain alphanumeric characters (letters A-Z, numbers 0-9) with the exception of underscores, spaces and hyphens."
);
}
return errors;
}
async handleSubmit(data) {
const { formData } = data;
const { taoFactory, nameFactory, nameTAOLookup, accounts } = this.props;
const { parentId, taoDescription } = this.state;
if (!taoFactory || !nameFactory || !nameTAOLookup || !accounts || !formData || !parentId) {
return;
}
this.setState({ formLoading: true });
const isExist = await promisify(nameTAOLookup.isExist)(formData.taoName);
let keyExist = false;
try {
const response = await graphqlGetNameLookup(formData.taoName);
keyExist = response.data.nameLookup.id ? true : false;
} catch (e) {}
if (isExist || keyExist) {
this.setState({ error: true, errorMessage: "TAO name has been taken", formLoading: false });
return;
}
if (taoDescription.length < 30) {
this.setState({ error: true, errorMessage: "Description is too short (min. 30 chars)", formLoading: false });
return;
}
metamaskPopup();
taoFactory.createTAO(
formData.taoName,
"",
"",
"",
"",
parentId,
formData.childMinLogos,
formData.ethosCapStatus === "Yes" ? 1 : 0,
formData.ethosCapAmount ? formData.ethosCapAmount : 0,
{ from: accounts[0] },
(err, transactionHash) => {
if (err) {
this.setState({ error: true, errorMessage: err.message, formLoading: false });
} else {
this.setState({ txHash: transactionHash });
waitForTransactionReceipt(transactionHash)
.then(async () => {
const receipt = await getTransactionReceipt(transactionHash);
const logs = abiDecoder.decodeLogs(receipt.logs);
const createTAOEvent = logs.filter((log) => log && log.name === "CreateTAO");
const taoIdArgs = createTAOEvent[0].events.filter((e) => e.name === "taoId");
const taoId = taoIdArgs[0].value;
try {
await graphqlInsertNameLookup(formData.taoName, taoId);
setTimeout(async () => {
const response = await graphqlInsertTAODescription(taoId, taoDescription);
this.setState({
error: false,
errorMessage: "",
formLoading: false,
formData: this.formData,
taoDescription: ""
});
if (!response.errors) {
this.props.setSuccess(
"Success!",
<div>
TAO # <Ahref to={`/tao/${taoId}`}>{taoId}</Ahref> was created successfully
</div>
);
} else {
this.props.setInfo(
"Success!",
<div>
TAO # <Ahref to={`/tao/${taoId}`}>{taoId}</Ahref> was created successfully but there was a
network congestion when inserting the TAO description. Click{" "}
<Ahref to={`/tao/${taoId}`}>here</Ahref> to update the description manually
</div>
);
}
}, 500);
} catch (e) {
this.setState({
error: false,
errorMessage: "",
formLoading: false,
formData: this.formData,
taoDescription: ""
});
this.props.setInfo(
"Success!",
<div>
TAO # <Ahref to={`/tao/${taoId}`}>{taoId}</Ahref> was created successfully but there was a network
congestion when inserting the TAO description. Click <Ahref to={`/tao/${taoId}`}>{taoId}</Ahref> to
update the description manually
</div>
);
}
})
.catch((err) => {
this.setState({ error: true, errorMessage: err.message, formLoading: false });
});
}
}
);
}
render() {
const { error, errorMessage, formLoading, parentMinLogos, parentId, formData, taoDescription, txHash } = this.state;
const { pastEventsRetrieved, nameId, nameInfo, taos, taoCurrencyBalances } = this.props;
if (!pastEventsRetrieved || !nameId || !nameInfo || !taos || !taoCurrencyBalances || !parentMinLogos) {
return <ProgressLoaderContainer />;
}
const { id } = this.props.params;
const taoOptions = taos.map((tao) => {
return tao.isChild ? (
<option key={tao.taoId} value={tao.taoId}>
{tao.name} ({tao.taoId})
</option>
) : null;
});
let selectedParent = null;
if (id) {
if (id === nameId) {
selectedParent = (
<div>
<Label>Parent Name</Label>
<SelectedParent>
Yourself - {nameInfo.name} ({nameId})
</SelectedParent>
</div>
);
} else if (taos) {
const selectedTAO = taos.filter((tao) => tao.taoId === id);
if (selectedTAO.length) {
selectedParent = (
<div>
<Label>Parent TAO</Label>
<SelectedParent>
{selectedTAO[0].name} ({selectedTAO[0].taoId})
</SelectedParent>
</div>
);
}
}
}
return (
<Wrapper className="padding-40">
<Title>Create TAO</Title>
<FieldWrapper>
{!id ? (
<div>
<Label>Which parent Name/TAO are you creating this new TAO from?*</Label>
<Select className="form-control" onChange={this.handleParentChange}>
<optgroup label="Name">
<option key={nameId} value={nameId}>
Yourself - {nameInfo.name} ({nameId})
</option>
</optgroup>
<optgroup label="TAO">{taoOptions}</optgroup>
</Select>
</div>
) : (
<div>{selectedParent}</div>
)}
</FieldWrapper>
<FieldWrapper>
{parentId === nameId ? "Global" : "Parent TAO's"} minimum required Logos to create TAO:
<MinLogos>{parentMinLogos && parentMinLogos.toNumber()}</MinLogos>
</FieldWrapper>
{taoCurrencyBalances.logos.gte(parentMinLogos) ? (
<div>
<SchemaForm
className="full"
schema={schema}
formData={formData}
onChange={this.handleFormChange}
showErrorList={false}
validate={this.validate}
onSubmit={this.handleSubmit}
>
<Label>Describe the description for this TAO*</Label>
<MediumEditor className="margin-bottom-20" text={taoDescription} onChange={this.handleEditorChange} />
<Button type="submit" disabled={formLoading}>
{formLoading ? "Loading..." : "Create"}
</Button>
<Ahref className="margin-left-20" to="/">
Back to Dashboard
</Ahref>
</SchemaForm>
{txHash && <TxHashContainer txHash={txHash} />}
{error && errorMessage && <Error>{errorMessage}</Error>}
</div>
) : (
<Error>You do not have enough Logos to create a TAO of this parent</Error>
)}
</Wrapper>
);
}
}
export { CreateTAO };
| 32.131661 | 137 | 0.635902 |
b7549503da7e8da757a802f7a05d884f8ed859fa | 7,144 | js | JavaScript | src/client/automation/playback/press/index.js | ChayaG/timewatch | 62eb473791961f083b2e9f373f42bcb8eb970cb2 | [
"MIT"
] | null | null | null | src/client/automation/playback/press/index.js | ChayaG/timewatch | 62eb473791961f083b2e9f373f42bcb8eb970cb2 | [
"MIT"
] | null | null | null | src/client/automation/playback/press/index.js | ChayaG/timewatch | 62eb473791961f083b2e9f373f42bcb8eb970cb2 | [
"MIT"
] | null | null | null | import hammerhead from '../../deps/hammerhead';
import { arrayUtils, domUtils, delay, getKeyArray, sendRequestToFrame } from '../../deps/testcafe-core';
import KeyPressSimulator from './key-press-simulator';
import supportedShortcutHandlers from './shortcuts';
import each from '../../utils/promise-each';
import { getActualKeysAndEventKeyProperties, getDeepActiveElement } from './utils';
import AutomationSettings from '../../settings';
var Promise = hammerhead.Promise;
var browserUtils = hammerhead.utils.browser;
var messageSandbox = hammerhead.eventSandbox.message;
const PRESS_REQUEST_CMD = 'automation|press|request';
const PRESS_RESPONSE_CMD = 'automation|press|response';
// Setup cross-iframe interaction
messageSandbox.on(messageSandbox.SERVICE_MSG_RECEIVED_EVENT, e => {
if (e.message.cmd === PRESS_REQUEST_CMD) {
hammerhead.on(hammerhead.EVENTS.beforeUnload, () => messageSandbox.sendServiceMsg({ cmd: PRESS_RESPONSE_CMD }, e.source));
var pressAutomation = new PressAutomation(e.message.keyCombinations, e.message.options);
pressAutomation
.run()
.then(() => messageSandbox.sendServiceMsg({ cmd: PRESS_RESPONSE_CMD }, e.source));
}
});
export default class PressAutomation {
constructor (keyCombinations, options) {
this.keyCombinations = keyCombinations;
this.isSelectElement = false;
this.pressedKeyString = '';
this.modifiersState = null;
this.shortcutHandlers = null;
this.topSameDomainDocument = domUtils.getTopSameDomainWindow(window).document;
this.automationSettings = new AutomationSettings(options.speed);
this.options = options;
}
static _getKeyPressSimulators (keyCombination) {
var keysArray = getKeyArray(keyCombination);
// NOTE: symbols may have the same keyCode, but their "event.key" will be different, so we
// need to get the "event.key" property for each key, and add the 'shift' key where needed.
var { actualKeys, eventKeyProperties } = getActualKeysAndEventKeyProperties(keysArray);
return arrayUtils.map(actualKeys, (key, index) => new KeyPressSimulator(key, eventKeyProperties[index]));
}
static _getShortcuts (keyCombination) {
var keys = getKeyArray(keyCombination.toLowerCase());
var shortcuts = [];
var curFullCombination = [];
var curCombination = [];
for (var i = 0; i < keys.length; i++) {
curFullCombination.push(keys[i]);
curCombination = curFullCombination.slice();
while (curCombination.length) {
var keyString = curCombination.join('+');
if (supportedShortcutHandlers[keyString]) {
shortcuts.push(keyString);
curFullCombination = curCombination = [];
}
else
curCombination.shift();
}
}
return shortcuts;
}
static _getShortcutHandlers (keyCombination) {
var shortcuts = PressAutomation._getShortcuts(keyCombination.toLowerCase());
var shortcutHandlers = {};
var stringWithShortcut = '';
var shortcut = null;
var shortcutPosition = null;
var shortcutLength = null;
for (var i = 0; i < shortcuts.length; i++) {
shortcut = shortcuts[i];
shortcutPosition = keyCombination.indexOf(shortcut);
shortcutLength = shortcut.length;
stringWithShortcut += keyCombination.substring(0, shortcutPosition + shortcutLength);
shortcutHandlers[stringWithShortcut] = supportedShortcutHandlers[shortcut];
keyCombination = keyCombination.substring(shortcutPosition + shortcutLength);
}
return shortcutHandlers;
}
_down (keyPressSimulator) {
this.pressedKeyString += (this.pressedKeyString ? '+' : '') + keyPressSimulator.key;
var keyDownPrevented = !keyPressSimulator.down(this.modifiersState);
return Promise.resolve(keyDownPrevented);
}
_press (keyPressSimulator, keyEventPrevented) {
// NOTE: preventing the 'keydown' and 'keypress' events for the select element does not
// affect the assignment of the new selectedIndex. So, we should execute a shortcut
// for the select element without taking into account that 'key' events are suppressed
if (keyEventPrevented && !this.isSelectElement)
return delay(this.automationSettings.keyActionStepDelay);
var currentShortcutHandler = this.shortcutHandlers[this.pressedKeyString];
var keyPressPrevented = false;
// NOTE: B254435
if (!currentShortcutHandler || browserUtils.isFirefox || keyPressSimulator.key === 'enter')
keyPressPrevented = !keyPressSimulator.press(this.modifiersState);
if ((!keyPressPrevented || this.isSelectElement) && currentShortcutHandler) {
return currentShortcutHandler(getDeepActiveElement(this.topSameDomainDocument))
.then(() => delay(this.automationSettings.keyActionStepDelay));
}
return delay(this.automationSettings.keyActionStepDelay);
}
_up (keyPressSimulator) {
keyPressSimulator.up(this.modifiersState);
return delay(this.automationSettings.keyActionStepDelay);
}
_runCombination (keyCombination) {
this.modifiersState = { ctrl: false, alt: false, shift: false, meta: false };
this.isSelectElement = domUtils.isSelectElement(getDeepActiveElement(this.topSameDomainDocument));
this.pressedKeyString = '';
this.shortcutHandlers = PressAutomation._getShortcutHandlers(keyCombination);
var keyPressSimulators = PressAutomation._getKeyPressSimulators(keyCombination);
return each(keyPressSimulators, keySimulator => {
return this
._down(keySimulator)
.then(keyEventPrevented => this._press(keySimulator, keyEventPrevented));
})
.then(() => {
arrayUtils.reverse(keyPressSimulators);
return each(keyPressSimulators, keySimulator => this._up(keySimulator));
});
}
run () {
var activeElement = domUtils.getActiveElement();
var activeElementIsIframe = domUtils.isIframeElement(activeElement);
if (window.top === window && activeElementIsIframe && activeElement.contentWindow) {
var msg = {
cmd: PRESS_REQUEST_CMD,
keyCombinations: this.keyCombinations,
options: this.options
};
return sendRequestToFrame(msg, PRESS_RESPONSE_CMD, activeElement.contentWindow);
}
return each(this.keyCombinations, combination => {
return this
._runCombination(combination)
.then(() => delay(this.automationSettings.keyActionStepDelay));
});
}
}
| 39.252747 | 130 | 0.645577 |
b755178fe30b4217ea4582d1b3f0460d6047d5d3 | 1,410 | js | JavaScript | src/modules/tools/indexTools.js | illsio/masterpssortal | 1fb109d65fa674e4b6db0ab89314cc8a8f37ae34 | [
"MIT"
] | null | null | null | src/modules/tools/indexTools.js | illsio/masterpssortal | 1fb109d65fa674e4b6db0ab89314cc8a8f37ae34 | [
"MIT"
] | null | null | null | src/modules/tools/indexTools.js | illsio/masterpssortal | 1fb109d65fa674e4b6db0ab89314cc8a8f37ae34 | [
"MIT"
] | null | null | null | import state from "./stateTools";
import getters from "./gettersTools";
import mutations from "./mutationsTools";
import actions from "./actionsTools";
/**
* The imported tools.
*/
import AddWMS from "./addWMS/store/indexAddWMS";
import Contact from "./contact/store/indexContact";
import Draw from "./draw/store/indexDraw";
import FileImport from "./fileImport/store/indexFileImport";
import Gfi from "./gfi/store/indexGfi";
import Measure from "./measure/store/indexMeasure";
import SaveSelection from "./saveSelection/store/indexSaveSelection";
import SearchByCoord from "./searchByCoord/store/indexSearchByCoord";
import ScaleSwitcher from "./scaleSwitcher/store/indexScaleSwitcher";
import StyleVT from "./styleVT/store/indexStyleVT";
import SupplyCoord from "./supplyCoord/store/indexSupplyCoord";
import SelectFeatures from "./selectFeatures/store/indexSelectFeatures";
import BufferAnalysis from "./bufferAnalysis/store/indexBufferAnalysis";
/**
* This is here to test app-store/utils/composeModules.
* Also provides actions.
*/
export default {
namespaced: true,
modules: {
AddWMS,
Contact,
Draw,
FileImport,
Gfi,
Measure,
SaveSelection,
SearchByCoord,
ScaleSwitcher,
StyleVT,
SupplyCoord,
SelectFeatures,
BufferAnalysis
},
state,
getters,
mutations,
actions
};
| 28.77551 | 72 | 0.712057 |
b75523691870a6684fd1de5b4efc04fb84a0f192 | 315 | js | JavaScript | Packages/ohif-google-cloud/imports/lib/utils.js | thiagosena/Viewers | 49c383f98c6634475a950f3bdf8c2d7a776c0e37 | [
"MIT"
] | null | null | null | Packages/ohif-google-cloud/imports/lib/utils.js | thiagosena/Viewers | 49c383f98c6634475a950f3bdf8c2d7a776c0e37 | [
"MIT"
] | null | null | null | Packages/ohif-google-cloud/imports/lib/utils.js | thiagosena/Viewers | 49c383f98c6634475a950f3bdf8c2d7a776c0e37 | [
"MIT"
] | null | null | null | export function loadScript(url, callback) {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = url;
script.onreadystatechange = callback;
script.onload = callback;
head.appendChild(script);
}
| 31.5 | 56 | 0.698413 |
b7561d934015fb5c24d49f863a19137d21a296d8 | 527 | js | JavaScript | routes/controller/home.js | ifredom/house-spider | 818bcb7296e8ec99b7e725e2e9dfaa8da21f590e | [
"MIT"
] | 1 | 2019-10-08T16:49:16.000Z | 2019-10-08T16:49:16.000Z | routes/controller/home.js | tidys/house-spider | 818bcb7296e8ec99b7e725e2e9dfaa8da21f590e | [
"MIT"
] | null | null | null | routes/controller/home.js | tidys/house-spider | 818bcb7296e8ec99b7e725e2e9dfaa8da21f590e | [
"MIT"
] | 3 | 2019-11-17T14:24:54.000Z | 2021-07-05T00:42:45.000Z | var sha1 = require('sha1');
var express = require('express');
var router = express.Router();
var getData = require('../../utils/getData'); // 导入router层控制函数
router.get('/', function (req, res) {
//
// res.sendFile(path.resolve(__dirname, '..', 'index.html'));
res.render('home', {
title: '首页'
});
res.end();
});
// 查询接口
router.post('/query', (req, res, next) => {
getData().then(data => {
res.json({
code: 0,
data: data,
msg: ''
});
})
// res.end();
});
module.exports = router; | 18.821429 | 63 | 0.544592 |
b7595de12004f3d472328617bc83b769cd6b1a5d | 1,581 | js | JavaScript | extensions/amp-timeago/1.0/storybook/Basic.js | jsnellbaker/amphtml | 1392a7a68bcbc19b75e0286c2d11ae97b8ad1558 | [
"Apache-2.0"
] | null | null | null | extensions/amp-timeago/1.0/storybook/Basic.js | jsnellbaker/amphtml | 1392a7a68bcbc19b75e0286c2d11ae97b8ad1558 | [
"Apache-2.0"
] | null | null | null | extensions/amp-timeago/1.0/storybook/Basic.js | jsnellbaker/amphtml | 1392a7a68bcbc19b75e0286c2d11ae97b8ad1558 | [
"Apache-2.0"
] | null | null | null | /**
* Copyright 2020 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import * as Preact from '../../../../src/preact';
import {Timeago} from '../timeago';
import {date, number, select, text, withKnobs} from '@storybook/addon-knobs';
import {withA11y} from '@storybook/addon-a11y';
export default {
title: 'Timeago',
component: Timeago,
decorators: [withA11y, withKnobs],
};
const LOCALES = ['en-US', 'en-GB', 'fr', 'ru', 'ar', 'he', 'ja'];
export const _default = () => {
const dateTime = date('Date/time', new Date());
const cutoff = number('Cutoff (seconds)', 0);
const placeholder = text('Cutoff placeholder', 'Time passed!');
const userLocale = navigator.language || 'en-US';
const allLocales = [userLocale].concat(
LOCALES.filter((locale) => locale != userLocale)
);
const locale = select('Locale', allLocales, userLocale);
return (
<Timeago
datetime={new Date(dateTime).toISOString()}
locale={locale}
cutoff={cutoff}
placeholder={placeholder}
/>
);
};
| 32.9375 | 77 | 0.678684 |
b7597f11df3f6f73e907e85f7320a6df3a1dbad4 | 1,947 | js | JavaScript | src/generation/index.js | luqaska/static-url-shortener | ec676c856b7a8bda5b622b268b1ee1964ab544b9 | [
"Apache-2.0"
] | 7 | 2021-04-13T07:21:32.000Z | 2021-11-08T23:41:06.000Z | src/generation/index.js | MattIPv4/static-url-shortener | ad495f0981678222e787ba89fd09b783d952d7f7 | [
"Apache-2.0"
] | 2 | 2021-04-27T21:57:32.000Z | 2021-04-29T23:40:31.000Z | src/generation/index.js | luqaska/static-url-shortener | ec676c856b7a8bda5b622b268b1ee1964ab544b9 | [
"Apache-2.0"
] | 2 | 2021-04-16T10:32:43.000Z | 2021-12-23T02:32:54.000Z | const fs = require('fs');
const path = require('path');
const deleteDir = require('../utilities/deleteDir');
const redirect = require('./redirect');
const notFound = require('./not-found');
/**
* Perform redirect generation for a given {@link RedirectTree}
* @param {string} out The base full output directory path for the redirect tree
* @param {RedirectTree} tree The redirect tree structure to generate redirects for
* @param {TemplateFunction} template The redirect HTML generation template function
*/
const handleTree = (out, tree, template) => {
// If no data and no subpaths, stop
if (!Object.prototype.hasOwnProperty.call(tree, 'data') && !Object.prototype.hasOwnProperty.call(tree, 'subpaths'))
return;
// We have either data or subpaths, so we need to create the directory
if (!fs.existsSync(out)) fs.mkdirSync(out);
// If we have data, output a redirect file
if (Object.prototype.hasOwnProperty.call(tree, 'data'))
redirect.output(template, tree.data, out);
// If we have subpaths, recurse over each subpath
if (Object.prototype.hasOwnProperty.call(tree, 'subpaths'))
for (const subpath in tree.subpaths) {
if (!Object.prototype.hasOwnProperty.call(tree.subpaths, subpath)) continue;
handleTree(path.join(out, subpath), tree.subpaths[subpath], template);
}
};
/**
* Perform redirect generation for a given {@link RedirectTree}
* @param {string} out The full output directory path for the redirect tree (will be cleaned)
* @param {RedirectTree} tree The redirect tree to generate redirects for
* @return {Promise<void>}
*/
module.exports = async (out, tree) => {
// Clean the output directory
deleteDir(out);
// Get the doT template
const template = redirect.load();
// Start generating recursively
handleTree(out, tree, template);
// Generate the final 404.html file
await notFound(out, tree);
};
| 37.442308 | 119 | 0.692347 |
b7599dd3ad61c951088a38a86bf727bb5301ae50 | 16,714 | js | JavaScript | terminal/js/terminal_display_manager_tests.js | cliffcod/libapps-mirror | 3d0e895234e5166ef601ecabec6c1e8a1690ebb2 | [
"BSD-3-Clause"
] | null | null | null | terminal/js/terminal_display_manager_tests.js | cliffcod/libapps-mirror | 3d0e895234e5166ef601ecabec6c1e8a1690ebb2 | [
"BSD-3-Clause"
] | null | null | null | terminal/js/terminal_display_manager_tests.js | cliffcod/libapps-mirror | 3d0e895234e5166ef601ecabec6c1e8a1690ebb2 | [
"BSD-3-Clause"
] | null | null | null | // Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview Terminal Display Manager Element unit tests.
*/
import {TerminalDisplayManagerElement as Element} from
'./terminal_display_manager.js';
describe('terminal_display_manager_tests.js', () => {
/**
* @param {!Element} element
* @param {string} key
* @return {string}
*/
const getStyle = (element, key) => {
return window.getComputedStyle(element).getPropertyValue(key);
};
/**
* @param {!Array<!Element>} elements
* @param {string} key
* @return {!Array<string>}
*/
const getStyles = (elements, key) => {
return Array.prototype.map.call(elements, (el) => getStyle(el, key));
};
const getDimensions = (element) => {
return {
l: element.offsetLeft,
w: element.offsetWidth,
t: element.offsetTop,
h: element.offsetHeight
};
};
before(function() {
if (customElements.get(Element.is) === undefined) {
customElements.define(Element.is, Element);
}
});
afterEach(function() {
document.querySelectorAll(Element.is)
.forEach(el => el.parentNode.removeChild(el));
});
it('dispatches-terminal-window-ready-when-connected', function() {
const el = document.createElement(Element.is);
let slot = null;
el.addEventListener(
'terminal-window-ready', (event) => slot = event.detail.slot);
document.body.appendChild(el);
assert(slot);
const contents = document.createElement('div');
contents.id = 'contents';
contents.slot = slot;
el.appendChild(contents);
assert(document.getElementById('contents'));
});
it('does-not-show-controls-when-not-enabled', function() {
const el = document.createElement(Element.is);
let eventTriggerCount = 0;
el.addEventListener(
'terminal-window-ready', (event) => ++eventTriggerCount);
document.body.appendChild(el);
assert.lengthOf(el.shadowRoot.querySelectorAll('.window'), 1);
assert.equal(eventTriggerCount, 1);
{
const displayValues =
getStyles(el.shadowRoot.querySelectorAll('.controls'), 'display');
assert.lengthOf(displayValues, 4);
assert.lengthOf(displayValues.filter(x => x != 'none'), 0);
}
el.shadowRoot.querySelectorAll('.controls')
.forEach(control => control.click());
assert.lengthOf(el.shadowRoot.querySelectorAll('.window'), 1);
assert.equal(eventTriggerCount, 1);
{
const displayValues =
getStyles(el.shadowRoot.querySelectorAll('.controls'), 'display');
assert.lengthOf(displayValues, 4);
assert.lengthOf(displayValues.filter(x => x != 'none'), 0);
}
});
it('shows-controls-and-adds-new-slots-when-enabled-and-controls-clicked',
function() {
const el = document.createElement(Element.is);
let eventTriggerCount = 0;
el.addEventListener(
'terminal-window-ready', (event) => ++eventTriggerCount);
el.setAttribute('terminal-splits-enabled', true);
document.body.appendChild(el);
assert.lengthOf(el.shadowRoot.querySelectorAll('.window'), 1);
assert.equal(eventTriggerCount, 1);
{
const displayValues =
getStyles(el.shadowRoot.querySelectorAll('.controls'), 'display');
assert.lengthOf(displayValues, 4);
assert.lengthOf(displayValues.filter(x => x != 'none'), 4);
}
el.shadowRoot.querySelectorAll('.controls')
.forEach(control => control.click());
assert.lengthOf(el.shadowRoot.querySelectorAll('.window'), 5);
assert.equal(eventTriggerCount, 5);
{
const displayValues =
getStyles(el.shadowRoot.querySelectorAll('.controls'), 'display');
assert.lengthOf(displayValues, 20);
assert.lengthOf(displayValues.filter(x => x != 'none'), 20);
}
});
it('can-split-vertically-towards-the-left', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(slots, 1);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
assert.deepEqual(getDimensions(el), getDimensions(first));
}
el.shadowRoot.querySelector('.controls[side="L"]').click();
assert.lengthOf(slots, 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l: l + w / 2, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(second));
}
});
it('can-split-vertically-towards-the-right', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(slots, 1);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
assert.deepEqual(getDimensions(el), getDimensions(first));
}
el.shadowRoot.querySelector('.controls[side="R"]').click();
assert.lengthOf(slots, 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l: l + w / 2, w: w / 2, t, h}, getDimensions(second));
}
});
it('can-split-horizontally-towards-the-bottom', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(slots, 1);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
assert.deepEqual(getDimensions(el), getDimensions(first));
}
el.shadowRoot.querySelector('.controls[side="B"]').click();
assert.lengthOf(slots, 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w, t, h: h / 2}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w, t: t + h / 2, h: h / 2}, getDimensions(second));
}
});
it('can-split-horizontally-towards-the-top', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(slots, 1);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
assert.deepEqual(getDimensions(el), getDimensions(first));
}
el.shadowRoot.querySelector('.controls[side="T"]').click();
assert.lengthOf(slots, 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w, t: t + h / 2, h: h / 2}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w, t, h: h / 2}, getDimensions(second));
}
});
it('cannot-destroy-root-slot', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
document.body.appendChild(el);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 1);
el.destroySlot(slots[0]);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 1);
});
for (const [name, edge] of
[['left', 'L'], ['right', 'R'], ['top', 'T'], ['bottom', 'B']]) {
it(`can-destroy-${name}-split-slot`, function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 1);
el.shadowRoot.querySelector(`.controls[side="${edge}"]`).click();
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 2);
el.destroySlot(slots[0]);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 1);
assert.equal(
el.shadowRoot.querySelector('slot').getAttribute('name'), slots[1]);
const slot = el.shadowRoot.querySelector('slot').parentNode;
assert.deepEqual(getDimensions(el), getDimensions(slot));
});
}
it('can-destroy-deep-split-slot', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 1);
el.shadowRoot.querySelector(`slot[name=${slots[0]}]`)
.parentNode.querySelector('.controls[side="R"]')
.click();
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l: l + w / 2, w: w / 2, t, h}, getDimensions(second));
}
el.shadowRoot.querySelector(`slot[name=${slots[1]}]`)
.parentNode.querySelector('.controls[side="L"]')
.click();
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 3);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + 3 * w / 4, w: w / 4, t, h}, getDimensions(second));
}
{
const third =
el.shadowRoot.querySelector(`slot[name="${slots[2]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + 2 * w / 4, w: w / 4, t, h}, getDimensions(third));
}
el.destroySlot(slots[2]);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l: l + w / 2, w: w / 2, t, h}, getDimensions(second));
}
});
it('can-destroy-slot-whose-sibling-is-not-a-leaf', function() {
const el = document.createElement(Element.is);
const slots = [];
el.addEventListener(
'terminal-window-ready', (event) => slots.push(event.detail.slot));
el.setAttribute('terminal-splits-enabled', true);
el.style.width = '500px';
el.style.height = '500px';
document.body.appendChild(el);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 1);
el.shadowRoot.querySelector(`slot[name=${slots[0]}]`)
.parentNode.querySelector('.controls[side="R"]')
.click();
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 2);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l: l + w / 2, w: w / 2, t, h}, getDimensions(second));
}
el.shadowRoot.querySelector(`slot[name=${slots[1]}]`)
.parentNode.querySelector('.controls[side="L"]')
.click();
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 3);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + 3 * w / 4, w: w / 4, t, h}, getDimensions(second));
}
{
const third =
el.shadowRoot.querySelector(`slot[name="${slots[2]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + 2 * w / 4, w: w / 4, t, h}, getDimensions(third));
}
el.shadowRoot.querySelector(`slot[name=${slots[1]}]`)
.parentNode.querySelector('.controls[side="R"]')
.click();
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 4);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + 3 * w / 4, w: Math.ceil(w / 8), t, h}, getDimensions(second));
}
{
const third =
el.shadowRoot.querySelector(`slot[name="${slots[2]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + 2 * w / 4, w: w / 4, t, h}, getDimensions(third));
}
{
const fourth =
el.shadowRoot.querySelector(`slot[name="${slots[3]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: Math.ceil(l + 7 * w / 8), w: Math.floor(w / 8), t, h},
getDimensions(fourth));
}
el.destroySlot(slots[2]);
assert.lengthOf(el.shadowRoot.querySelectorAll('slot'), 3);
{
const first =
el.shadowRoot.querySelector(`slot[name="${slots[0]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual({l, w: w / 2, t, h}, getDimensions(first));
}
{
const second =
el.shadowRoot.querySelector(`slot[name="${slots[1]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: l + w / 2, w: Math.ceil(3 * w / 8), t, h}, getDimensions(second));
}
{
const fourth =
el.shadowRoot.querySelector(`slot[name="${slots[3]}"]`).parentNode;
const {l, w, t, h} = getDimensions(el);
assert.deepEqual(
{l: Math.ceil(l + 7 * w / 8), w: Math.floor(w / 8), t, h},
getDimensions(fourth));
}
});
});
| 33.765657 | 80 | 0.602489 |
b75a5da37632266d4fda6fbd4eab7fec7f8e3fda | 2,851 | js | JavaScript | gulpfile.js | laugustofrontend/learning_jekyll | 132bb3466eb815c41c0519f5a58113ceee9aaaeb | [
"MIT"
] | null | null | null | gulpfile.js | laugustofrontend/learning_jekyll | 132bb3466eb815c41c0519f5a58113ceee9aaaeb | [
"MIT"
] | null | null | null | gulpfile.js | laugustofrontend/learning_jekyll | 132bb3466eb815c41c0519f5a58113ceee9aaaeb | [
"MIT"
] | null | null | null | const gulp = require('gulp')
const sass = require('gulp-sass')
const prefixer = require('gulp-autoprefixer')
const minifycss = require('gulp-minify-css')
const jshint = require('gulp-jshint')
const uglify = require('gulp-uglify')
const rename = require('gulp-rename')
const clean = require('gulp-clean')
const concat = require('gulp-concat')
const notify = require('gulp-notify')
const cache = require('gulp-cache')
const plumber = require('gulp-plumber')
const browserSync = require('browser-sync')
const critical = require('critical')
const cp = require('child_process')
gulp.task('css', () => {
return sass('assets/css/main.scss', {style: 'expanded'})
.pipe(plumber())
.pipe(prefixer('last 15 versions', '> 1%', 'ie 9', 'ie 8', 'ie 7'))
.pipe(gulp.dest('css'))
.pipe(rename({suffix: '.min'}))
.pipe(minifycss())
.pipe(gulp.dest('css'))
.pipe(gulp.dest('_site/assets/css'))
.pipe(browserSync.reload({stream: true}))
.pipe(notify({message: 'Style task complete'}))
})
gulp.task('js', () => {
return gulp.src('assets/javascripts/**/*.js')
.pipe(jshint())
.pipe(jshint.reporter('default'))
.pipe(concat('scripts.js'))
.pipe(gulp.dest('js'))
.pipe(rename({suffix: '.min'}))
.pipe(uglify())
.pipe(gulp.dest('js'))
.pipe(gulp.dest('assets/javascripts'))
.pipe(notify({message: 'Scripts task complete'}))
})
gulp.task('clean', () => {
return gulp.src(['css', 'js'], {read: false})
.pipe(clean())
})
gulp.task('critical-css', () => {
critical.generate({
// Your base directory
base: '_site/',
// HTML source file
src: 'index.html',
// CSS output file
dest: 'css/critical.min.css',
// Viewport widthy
width: 1200,
// Viewport height
height: 900,
// Minify critical-path CSS
minify: true
})
})
/**
* Build Jekyll Site
*/
gulp.task('jekyll-build', (done) => {
browserSync.notify('Building Jekyll')
return cp.spawn('jekyll', ['build'], {stdio: 'inherit'})
.on('close', done)
})
/**
* Rebuild jekyll & do page reload
*/
gulp.task('jekyll-rebuild', ['jekyll-build'], () => {
browserSync.reload()
})
/**
* Wait for jekyll-build, then launch the Server
*/
gulp.task('server', ['jekyll-build'], () => {
browserSync({
server: {
baseDir: '_site'
},
host: 'localhost',
open: false,
reloadOnRestart: true,
logPrefix: 'Learning Jekyll'
})
})
gulp.task('watch', () => {
// Watch .scss files
gulp.watch(['assets/css/main.scss', '_sass/**/*.scss'], ['css'])
// Watch .js files
gulp.watch('assets/javascripts/**/*.js', ['js'])
// Watch .html files and posts
gulp.watch(['*.html', '_includes/*.html', '_layouts/*.html', '*.md', '_posts/*', '!node_modules/**/*'], ['jekyll-rebuild'])
})
gulp.task('default', ['clean'], () => {
gulp.start('css', 'js', 'server', 'watch')
}) | 26.64486 | 125 | 0.607155 |
b75a6dc8fedec2e414cf2fb9cdd65e229b9f6746 | 61,206 | js | JavaScript | packages/ember/tests/helpers/link_to_test.js | aceofspades/ember.js | e0f340fd5f04789eca55c1a6048873bc798985ae | [
"MIT"
] | null | null | null | packages/ember/tests/helpers/link_to_test.js | aceofspades/ember.js | e0f340fd5f04789eca55c1a6048873bc798985ae | [
"MIT"
] | null | null | null | packages/ember/tests/helpers/link_to_test.js | aceofspades/ember.js | e0f340fd5f04789eca55c1a6048873bc798985ae | [
"MIT"
] | null | null | null | import "ember";
import { objectControllerDeprecation } from "ember-runtime/controllers/object_controller";
import EmberHandlebars from "ember-htmlbars/compat";
var compile = EmberHandlebars.compile;
var Router, App, AppView, router, registry, container;
var set = Ember.set;
function bootApplication() {
router = container.lookup('router:main');
Ember.run(App, 'advanceReadiness');
}
// IE includes the host name
function normalizeUrl(url) {
return url.replace(/https?:\/\/[^\/]+/, '');
}
function shouldNotBeActive(selector) {
checkActive(selector, false);
}
function shouldBeActive(selector) {
checkActive(selector, true);
}
function checkActive(selector, active) {
var classList = Ember.$(selector, '#qunit-fixture')[0].className;
equal(classList.indexOf('active') > -1, active, selector + " active should be " + active.toString());
}
var updateCount, replaceCount;
function sharedSetup() {
App = Ember.Application.create({
name: "App",
rootElement: '#qunit-fixture'
});
App.deferReadiness();
updateCount = replaceCount = 0;
App.Router.reopen({
location: Ember.NoneLocation.createWithMixins({
setURL: function(path) {
updateCount++;
set(this, 'path', path);
},
replaceURL: function(path) {
replaceCount++;
set(this, 'path', path);
}
})
});
Router = App.Router;
registry = App.registry;
container = App.__container__;
}
function sharedTeardown() {
Ember.run(function() { App.destroy(); });
Ember.TEMPLATES = {};
}
QUnit.module("The {{link-to}} helper", {
setup: function() {
Ember.run(function() {
sharedSetup();
Ember.TEMPLATES.app = compile("{{outlet}}");
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'about' id='about-link'}}About{{/link-to}}{{#link-to 'index' id='self-link'}}Self{{/link-to}}");
Ember.TEMPLATES.about = compile("<h3>About</h3>{{#link-to 'index' id='home-link'}}Home{{/link-to}}{{#link-to 'about' id='self-link'}}Self{{/link-to}}");
Ember.TEMPLATES.item = compile("<h3>Item</h3><p>{{model.name}}</p>{{#link-to 'index' id='home-link'}}Home{{/link-to}}");
AppView = Ember.View.extend({
templateName: 'app'
});
registry.register('view:app', AppView);
registry.unregister('router:main');
registry.register('router:main', Router);
});
},
teardown: sharedTeardown
});
test("The {{link-to}} helper moves into the named route", function() {
Router.map(function(match) {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(Ember.$('h3:contains(Home)', '#qunit-fixture').length, 1, "The home template was rendered");
equal(Ember.$('#self-link.active', '#qunit-fixture').length, 1, "The self-link was rendered with active class");
equal(Ember.$('#about-link:not(.active)', '#qunit-fixture').length, 1, "The other link was rendered without active class");
Ember.run(function() {
Ember.$('#about-link', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(About)', '#qunit-fixture').length, 1, "The about template was rendered");
equal(Ember.$('#self-link.active', '#qunit-fixture').length, 1, "The self-link was rendered with active class");
equal(Ember.$('#home-link:not(.active)', '#qunit-fixture').length, 1, "The other link was rendered without active class");
});
test("The {{link-to}} helper supports URL replacement", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'about' id='about-link' replace=true}}About{{/link-to}}");
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(updateCount, 0, 'precond: setURL has not been called');
equal(replaceCount, 0, 'precond: replaceURL has not been called');
Ember.run(function() {
Ember.$('#about-link', '#qunit-fixture').click();
});
equal(updateCount, 0, 'setURL should not be called');
equal(replaceCount, 1, 'replaceURL should be called once');
});
test("the {{link-to}} helper doesn't add an href when the tagName isn't 'a'", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'about' id='about-link' tagName='div'}}About{{/link-to}}");
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(Ember.$('#about-link').attr('href'), undefined, "there is no href attribute");
});
test("the {{link-to}} applies a 'disabled' class when disabled", function () {
Ember.TEMPLATES.index = compile('{{#link-to "about" id="about-link" disabledWhen="shouldDisable"}}About{{/link-to}}');
App.IndexController = Ember.Controller.extend({
shouldDisable: true
});
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(Ember.$('#about-link.disabled', '#qunit-fixture').length, 1, "The link is disabled when its disabledWhen is true");
});
test("the {{link-to}} doesn't apply a 'disabled' class if disabledWhen is not provided", function () {
Ember.TEMPLATES.index = compile('{{#link-to "about" id="about-link"}}About{{/link-to}}');
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
ok(!Ember.$('#about-link', '#qunit-fixture').hasClass("disabled"), "The link is not disabled if disabledWhen not provided");
});
test("the {{link-to}} helper supports a custom disabledClass", function () {
Ember.TEMPLATES.index = compile('{{#link-to "about" id="about-link" disabledWhen="shouldDisable" disabledClass="do-not-want"}}About{{/link-to}}');
App.IndexController = Ember.Controller.extend({
shouldDisable: true
});
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(Ember.$('#about-link.do-not-want', '#qunit-fixture').length, 1, "The link can apply a custom disabled class");
});
test("the {{link-to}} helper does not respond to clicks when disabled", function () {
Ember.TEMPLATES.index = compile('{{#link-to "about" id="about-link" disabledWhen="shouldDisable"}}About{{/link-to}}');
App.IndexController = Ember.Controller.extend({
shouldDisable: true
});
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
Ember.run(function() {
Ember.$('#about-link', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(About)', '#qunit-fixture').length, 0, "Transitioning did not occur");
});
test("The {{link-to}} helper supports a custom activeClass", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'about' id='about-link'}}About{{/link-to}}{{#link-to 'index' id='self-link' activeClass='zomg-active'}}Self{{/link-to}}");
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(Ember.$('h3:contains(Home)', '#qunit-fixture').length, 1, "The home template was rendered");
equal(Ember.$('#self-link.zomg-active', '#qunit-fixture').length, 1, "The self-link was rendered with active class");
equal(Ember.$('#about-link:not(.active)', '#qunit-fixture').length, 1, "The other link was rendered without active class");
});
test("The {{link-to}} helper supports leaving off .index for nested routes", function() {
Router.map(function() {
this.resource("about", function() {
this.route("item");
});
});
Ember.TEMPLATES.about = compile("<h1>About</h1>{{outlet}}");
Ember.TEMPLATES['about/index'] = compile("<div id='index'>Index</div>");
Ember.TEMPLATES['about/item'] = compile("<div id='item'>{{#link-to 'about'}}About{{/link-to}}</div>");
bootApplication();
Ember.run(router, 'handleURL', '/about/item');
equal(normalizeUrl(Ember.$('#item a', '#qunit-fixture').attr('href')), '/about');
});
test("The {{link-to}} helper supports currentWhen (DEPRECATED)", function() {
expectDeprecation('Using currentWhen with {{link-to}} is deprecated in favor of `current-when`.');
Router.map(function(match) {
this.resource("index", { path: "/" }, function() {
this.route("about");
});
this.route("item");
});
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{outlet}}");
Ember.TEMPLATES['index/about'] = compile("{{#link-to 'item' id='other-link' currentWhen='index'}}ITEM{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
equal(Ember.$('#other-link.active', '#qunit-fixture').length, 1, "The link is active since current-when is a parent route");
});
test("The {{link-to}} helper supports custom, nested, current-when", function() {
Router.map(function(match) {
this.resource("index", { path: "/" }, function() {
this.route("about");
});
this.route("item");
});
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{outlet}}");
Ember.TEMPLATES['index/about'] = compile("{{#link-to 'item' id='other-link' current-when='index'}}ITEM{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
equal(Ember.$('#other-link.active', '#qunit-fixture').length, 1, "The link is active since current-when is a parent route");
});
test("The {{link-to}} helper does not disregard current-when when it is given explicitly for a resource", function() {
Router.map(function(match) {
this.resource("index", { path: "/" }, function() {
this.route("about");
});
this.resource("items", function() {
this.route('item');
});
});
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{outlet}}");
Ember.TEMPLATES['index/about'] = compile("{{#link-to 'items' id='other-link' current-when='index'}}ITEM{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
equal(Ember.$('#other-link.active', '#qunit-fixture').length, 1, "The link is active when current-when is given for explicitly for a resource");
});
test("The {{link-to}} helper supports multiple current-when routes", function() {
Router.map(function(match) {
this.resource("index", { path: "/" }, function() {
this.route("about");
});
this.route("item");
this.route("foo");
});
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{outlet}}");
Ember.TEMPLATES['index/about'] = compile("{{#link-to 'item' id='link1' current-when='item index'}}ITEM{{/link-to}}");
Ember.TEMPLATES['item'] = compile("{{#link-to 'item' id='link2' current-when='item index'}}ITEM{{/link-to}}");
Ember.TEMPLATES['foo'] = compile("{{#link-to 'item' id='link3' current-when='item index'}}ITEM{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
equal(Ember.$('#link1.active', '#qunit-fixture').length, 1, "The link is active since current-when contains the parent route");
Ember.run(function() {
router.handleURL("/item");
});
equal(Ember.$('#link2.active', '#qunit-fixture').length, 1, "The link is active since you are on the active route");
Ember.run(function() {
router.handleURL("/foo");
});
equal(Ember.$('#link3.active', '#qunit-fixture').length, 0, "The link is not active since current-when does not contain the active route");
});
test("The {{link-to}} helper defaults to bubbling", function() {
Ember.TEMPLATES.about = compile("<div {{action 'hide'}}>{{#link-to 'about.contact' id='about-contact'}}About{{/link-to}}</div>{{outlet}}");
Ember.TEMPLATES['about/contact'] = compile("<h1 id='contact'>Contact</h1>");
Router.map(function() {
this.resource("about", function() {
this.route("contact");
});
});
var hidden = 0;
App.AboutRoute = Ember.Route.extend({
actions: {
hide: function() {
hidden++;
}
}
});
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
Ember.run(function() {
Ember.$('#about-contact', '#qunit-fixture').click();
});
equal(Ember.$("#contact", "#qunit-fixture").text(), "Contact", "precond - the link worked");
equal(hidden, 1, "The link bubbles");
});
test("The {{link-to}} helper supports bubbles=false", function() {
Ember.TEMPLATES.about = compile("<div {{action 'hide'}}>{{#link-to 'about.contact' id='about-contact' bubbles=false}}About{{/link-to}}</div>{{outlet}}");
Ember.TEMPLATES['about/contact'] = compile("<h1 id='contact'>Contact</h1>");
Router.map(function() {
this.resource("about", function() {
this.route("contact");
});
});
var hidden = 0;
App.AboutRoute = Ember.Route.extend({
actions: {
hide: function() {
hidden++;
}
}
});
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
Ember.run(function() {
Ember.$('#about-contact', '#qunit-fixture').click();
});
equal(Ember.$("#contact", "#qunit-fixture").text(), "Contact", "precond - the link worked");
equal(hidden, 0, "The link didn't bubble");
});
test("The {{link-to}} helper moves into the named route with context", function() {
Router.map(function(match) {
this.route("about");
this.resource("item", { path: "/item/:id" });
});
Ember.TEMPLATES.about = compile("<h3>List</h3><ul>{{#each person in model}}<li>{{#link-to 'item' person}}{{person.name}}{{/link-to}}</li>{{/each}}</ul>{{#link-to 'index' id='home-link'}}Home{{/link-to}}");
App.AboutRoute = Ember.Route.extend({
model: function() {
return Ember.A([
{ id: "yehuda", name: "Yehuda Katz" },
{ id: "tom", name: "Tom Dale" },
{ id: "erik", name: "Erik Brynroflsson" }
]);
}
});
App.ItemRoute = Ember.Route.extend({
serialize: function(object) {
return { id: object.id };
}
});
bootApplication();
Ember.run(function() {
router.handleURL("/about");
});
equal(Ember.$('h3:contains(List)', '#qunit-fixture').length, 1, "The home template was rendered");
equal(normalizeUrl(Ember.$('#home-link').attr('href')), '/', "The home link points back at /");
Ember.run(function() {
Ember.$('li a:contains(Yehuda)', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(Item)', '#qunit-fixture').length, 1, "The item template was rendered");
equal(Ember.$('p', '#qunit-fixture').text(), "Yehuda Katz", "The name is correct");
Ember.run(function() { Ember.$('#home-link').click(); });
Ember.run(function() { Ember.$('#about-link').click(); });
equal(normalizeUrl(Ember.$('li a:contains(Yehuda)').attr('href')), "/item/yehuda");
equal(normalizeUrl(Ember.$('li a:contains(Tom)').attr('href')), "/item/tom");
equal(normalizeUrl(Ember.$('li a:contains(Erik)').attr('href')), "/item/erik");
Ember.run(function() {
Ember.$('li a:contains(Erik)', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(Item)', '#qunit-fixture').length, 1, "The item template was rendered");
equal(Ember.$('p', '#qunit-fixture').text(), "Erik Brynroflsson", "The name is correct");
});
test("The {{link-to}} helper binds some anchor html tag common attributes", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'index' id='self-link' title='title-attr' rel='rel-attr' tabindex='-1'}}Self{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
var link = Ember.$('#self-link', '#qunit-fixture');
equal(link.attr('title'), 'title-attr', "The self-link contains title attribute");
equal(link.attr('rel'), 'rel-attr', "The self-link contains rel attribute");
equal(link.attr('tabindex'), '-1', "The self-link contains tabindex attribute");
});
test("The {{link-to}} helper supports `target` attribute", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'index' id='self-link' target='_blank'}}Self{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
var link = Ember.$('#self-link', '#qunit-fixture');
equal(link.attr('target'), '_blank', "The self-link contains `target` attribute");
});
test("The {{link-to}} helper does not call preventDefault if `target` attribute is provided", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'index' id='self-link' target='_blank'}}Self{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
var event = Ember.$.Event("click");
Ember.$('#self-link', '#qunit-fixture').trigger(event);
equal(event.isDefaultPrevented(), false, "should not preventDefault when target attribute is specified");
});
test("The {{link-to}} helper should preventDefault when `target = _self`", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#link-to 'index' id='self-link' target='_self'}}Self{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
var event = Ember.$.Event("click");
Ember.$('#self-link', '#qunit-fixture').trigger(event);
equal(event.isDefaultPrevented(), true, "should preventDefault when target attribute is `_self`");
});
test("The {{link-to}} helper should not transition if target is not equal to _self or empty", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'about' id='about-link' replace=true target='_blank'}}About{{/link-to}}");
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
Ember.run(function() {
Ember.$('#about-link', '#qunit-fixture').click();
});
notEqual(container.lookup('controller:application').get('currentRouteName'), 'about', 'link-to should not transition if target is not equal to _self or empty');
});
test("The {{link-to}} helper accepts string/numeric arguments", function() {
Router.map(function() {
this.route('filter', { path: '/filters/:filter' });
this.route('post', { path: '/post/:post_id' });
this.route('repo', { path: '/repo/:owner/:name' });
});
App.FilterController = Ember.Controller.extend({
filter: "unpopular",
repo: Ember.Object.create({ owner: 'ember', name: 'ember.js' }),
post_id: 123
});
Ember.TEMPLATES.filter = compile('<p>{{filter}}</p>{{#link-to "filter" "unpopular" id="link"}}Unpopular{{/link-to}}{{#link-to "filter" filter id="path-link"}}Unpopular{{/link-to}}{{#link-to "post" post_id id="post-path-link"}}Post{{/link-to}}{{#link-to "post" 123 id="post-number-link"}}Post{{/link-to}}{{#link-to "repo" repo id="repo-object-link"}}Repo{{/link-to}}');
Ember.TEMPLATES.index = compile(' ');
bootApplication();
Ember.run(function() { router.handleURL("/filters/popular"); });
equal(normalizeUrl(Ember.$('#link', '#qunit-fixture').attr('href')), "/filters/unpopular");
equal(normalizeUrl(Ember.$('#path-link', '#qunit-fixture').attr('href')), "/filters/unpopular");
equal(normalizeUrl(Ember.$('#post-path-link', '#qunit-fixture').attr('href')), "/post/123");
equal(normalizeUrl(Ember.$('#post-number-link', '#qunit-fixture').attr('href')), "/post/123");
equal(normalizeUrl(Ember.$('#repo-object-link', '#qunit-fixture').attr('href')), "/repo/ember/ember.js");
});
test("Issue 4201 - Shorthand for route.index shouldn't throw errors about context arguments", function() {
expect(2);
Router.map(function() {
this.resource('lobby', function() {
this.route('index', { path: ':lobby_id' });
this.route('list');
});
});
App.LobbyIndexRoute = Ember.Route.extend({
model: function(params) {
equal(params.lobby_id, 'foobar');
return params.lobby_id;
}
});
Ember.TEMPLATES['lobby/index'] = compile("{{#link-to 'lobby' 'foobar' id='lobby-link'}}Lobby{{/link-to}}");
Ember.TEMPLATES.index = compile("");
Ember.TEMPLATES['lobby/list'] = compile("{{#link-to 'lobby' 'foobar' id='lobby-link'}}Lobby{{/link-to}}");
bootApplication();
Ember.run(router, 'handleURL', '/lobby/list');
Ember.run(Ember.$('#lobby-link'), 'click');
shouldBeActive('#lobby-link');
});
test("The {{link-to}} helper unwraps controllers", function() {
if (Ember.FEATURES.isEnabled('ember-routing-transitioning-classes')) {
expect(4);
} else {
expect(5);
}
Router.map(function() {
this.route('filter', { path: '/filters/:filter' });
});
var indexObject = { filter: 'popular' };
App.FilterRoute = Ember.Route.extend({
model: function(params) {
return indexObject;
},
serialize: function(passedObject) {
equal(passedObject, indexObject, "The unwrapped object is passed");
return { filter: 'popular' };
}
});
App.IndexRoute = Ember.Route.extend({
model: function() {
return indexObject;
}
});
Ember.TEMPLATES.filter = compile('<p>{{model.filter}}</p>');
Ember.TEMPLATES.index = compile('{{#link-to "filter" this id="link"}}Filter{{/link-to}}');
bootApplication();
Ember.run(function() { router.handleURL("/"); });
Ember.$('#link', '#qunit-fixture').trigger('click');
});
test("The {{link-to}} helper doesn't change view context", function() {
App.IndexView = Ember.View.extend({
elementId: 'index',
name: 'test',
isTrue: true
});
Ember.TEMPLATES.index = compile("{{view.name}}-{{#link-to 'index' id='self-link'}}Link: {{view.name}}-{{#if view.isTrue}}{{view.name}}{{/if}}{{/link-to}}");
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
equal(Ember.$('#index', '#qunit-fixture').text(), 'test-Link: test-test', "accesses correct view");
});
test("Quoteless route param performs property lookup", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'index' id='string-link'}}string{{/link-to}}{{#link-to foo id='path-link'}}path{{/link-to}}{{#link-to view.foo id='view-link'}}{{view.foo}}{{/link-to}}");
function assertEquality(href) {
equal(normalizeUrl(Ember.$('#string-link', '#qunit-fixture').attr('href')), '/');
equal(normalizeUrl(Ember.$('#path-link', '#qunit-fixture').attr('href')), href);
equal(normalizeUrl(Ember.$('#view-link', '#qunit-fixture').attr('href')), href);
}
App.IndexView = Ember.View.extend({
foo: 'index',
elementId: 'index-view'
});
App.IndexController = Ember.Controller.extend({
foo: 'index'
});
App.Router.map(function() {
this.route('about');
});
bootApplication();
Ember.run(router, 'handleURL', '/');
assertEquality('/');
var controller = container.lookup('controller:index');
var view = Ember.View.views['index-view'];
Ember.run(function() {
controller.set('foo', 'about');
view.set('foo', 'about');
});
assertEquality('/about');
});
test("link-to with null/undefined dynamic parameters are put in a loading state", function() {
expect(19);
var oldWarn = Ember.Logger.warn;
var warnCalled = false;
Ember.Logger.warn = function() { warnCalled = true; };
Ember.TEMPLATES.index = compile("{{#link-to destinationRoute routeContext loadingClass='i-am-loading' id='context-link'}}string{{/link-to}}{{#link-to secondRoute loadingClass='i-am-loading' id='static-link'}}string{{/link-to}}");
var thing = Ember.Object.create({ id: 123 });
App.IndexController = Ember.Controller.extend({
destinationRoute: null,
routeContext: null
});
App.AboutRoute = Ember.Route.extend({
activate: function() {
ok(true, "About was entered");
}
});
App.Router.map(function() {
this.route('thing', { path: '/thing/:thing_id' });
this.route('about');
});
bootApplication();
Ember.run(router, 'handleURL', '/');
function assertLinkStatus($link, url) {
if (url) {
equal(normalizeUrl($link.attr('href')), url, "loaded link-to has expected href");
ok(!$link.hasClass('i-am-loading'), "loaded linkView has no loadingClass");
} else {
equal(normalizeUrl($link.attr('href')), '#', "unloaded link-to has href='#'");
ok($link.hasClass('i-am-loading'), "loading linkView has loadingClass");
}
}
var $contextLink = Ember.$('#context-link', '#qunit-fixture');
var $staticLink = Ember.$('#static-link', '#qunit-fixture');
var controller = container.lookup('controller:index');
assertLinkStatus($contextLink);
assertLinkStatus($staticLink);
Ember.run(function() {
warnCalled = false;
$contextLink.click();
ok(warnCalled, "Logger.warn was called from clicking loading link");
});
// Set the destinationRoute (context is still null).
Ember.run(controller, 'set', 'destinationRoute', 'thing');
assertLinkStatus($contextLink);
// Set the routeContext to an id
Ember.run(controller, 'set', 'routeContext', '456');
assertLinkStatus($contextLink, '/thing/456');
// Test that 0 isn't interpreted as falsy.
Ember.run(controller, 'set', 'routeContext', 0);
assertLinkStatus($contextLink, '/thing/0');
// Set the routeContext to an object
Ember.run(controller, 'set', 'routeContext', thing);
assertLinkStatus($contextLink, '/thing/123');
// Set the destinationRoute back to null.
Ember.run(controller, 'set', 'destinationRoute', null);
assertLinkStatus($contextLink);
Ember.run(function() {
warnCalled = false;
$staticLink.click();
ok(warnCalled, "Logger.warn was called from clicking loading link");
});
Ember.run(controller, 'set', 'secondRoute', 'about');
assertLinkStatus($staticLink, '/about');
// Click the now-active link
Ember.run($staticLink, 'click');
Ember.Logger.warn = oldWarn;
});
test("The {{link-to}} helper refreshes href element when one of params changes", function() {
Router.map(function() {
this.route('post', { path: '/posts/:post_id' });
});
var post = Ember.Object.create({ id: '1' });
var secondPost = Ember.Object.create({ id: '2' });
Ember.TEMPLATES.index = compile('{{#link-to "post" post id="post"}}post{{/link-to}}');
App.IndexController = Ember.Controller.extend();
var indexController = container.lookup('controller:index');
Ember.run(function() { indexController.set('post', post); });
bootApplication();
Ember.run(function() { router.handleURL("/"); });
equal(normalizeUrl(Ember.$('#post', '#qunit-fixture').attr('href')), '/posts/1', 'precond - Link has rendered href attr properly');
Ember.run(function() { indexController.set('post', secondPost); });
equal(Ember.$('#post', '#qunit-fixture').attr('href'), '/posts/2', 'href attr was updated after one of the params had been changed');
Ember.run(function() { indexController.set('post', null); });
equal(Ember.$('#post', '#qunit-fixture').attr('href'), '#', 'href attr becomes # when one of the arguments in nullified');
});
test("The {{link-to}} helper's bound parameter functionality works as expected in conjunction with an ObjectProxy/Controller", function() {
expectDeprecation(objectControllerDeprecation);
Router.map(function() {
this.route('post', { path: '/posts/:post_id' });
});
var post = Ember.Object.create({ id: '1' });
var secondPost = Ember.Object.create({ id: '2' });
Ember.TEMPLATES = {
index: compile(' '),
post: compile('{{#link-to "post" this id="self-link"}}selflink{{/link-to}}')
};
App.PostController = Ember.ObjectController.extend();
var postController = container.lookup('controller:post');
bootApplication();
Ember.run(router, 'transitionTo', 'post', post);
var $link = Ember.$('#self-link', '#qunit-fixture');
equal(normalizeUrl($link.attr('href')), '/posts/1', 'self link renders post 1');
Ember.run(postController, 'set', 'model', secondPost);
equal(normalizeUrl($link.attr('href')), '/posts/2', 'self link updated to post 2');
});
test("{{linkTo}} is aliased", function() {
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{#linkTo 'about' id='about-link' replace=true}}About{{/linkTo}}");
Router.map(function() {
this.route("about");
});
expectDeprecation(function() {
bootApplication();
}, "The 'linkTo' view helper is deprecated in favor of 'link-to'");
Ember.run(function() {
router.handleURL("/");
});
Ember.run(function() {
Ember.$('#about-link', '#qunit-fixture').click();
});
equal(container.lookup('controller:application').get('currentRouteName'), 'about', 'linkTo worked properly');
});
test("The {{link-to}} helper is active when a resource is active", function() {
Router.map(function() {
this.resource("about", function() {
this.route("item");
});
});
Ember.TEMPLATES.about = compile("<div id='about'>{{#link-to 'about' id='about-link'}}About{{/link-to}} {{#link-to 'about.item' id='item-link'}}Item{{/link-to}} {{outlet}}</div>");
Ember.TEMPLATES['about/item'] = compile(" ");
Ember.TEMPLATES['about/index'] = compile(" ");
bootApplication();
Ember.run(router, 'handleURL', '/about');
equal(Ember.$('#about-link.active', '#qunit-fixture').length, 1, "The about resource link is active");
equal(Ember.$('#item-link.active', '#qunit-fixture').length, 0, "The item route link is inactive");
Ember.run(router, 'handleURL', '/about/item');
equal(Ember.$('#about-link.active', '#qunit-fixture').length, 1, "The about resource link is active");
equal(Ember.$('#item-link.active', '#qunit-fixture').length, 1, "The item route link is active");
});
test("The {{link-to}} helper works in an #each'd array of string route names", function() {
Router.map(function() {
this.route('foo');
this.route('bar');
this.route('rar');
});
App.IndexController = Ember.Controller.extend({
routeNames: Ember.A(['foo', 'bar', 'rar']),
route1: 'bar',
route2: 'foo'
});
Ember.TEMPLATES = {
index: compile('{{#each routeName in routeNames}}{{#link-to routeName}}{{routeName}}{{/link-to}}{{/each}}{{#each routeNames}}{{#link-to this}}{{this}}{{/link-to}}{{/each}}{{#link-to route1}}a{{/link-to}}{{#link-to route2}}b{{/link-to}}')
};
expectDeprecation(function() {
bootApplication();
}, 'Using the context switching form of {{each}} is deprecated. Please use the keyword form (`{{#each foo in bar}}`) instead.');
function linksEqual($links, expected) {
equal($links.length, expected.length, "Has correct number of links");
var idx;
for (idx = 0; idx < $links.length; idx++) {
var href = Ember.$($links[idx]).attr('href');
// Old IE includes the whole hostname as well
equal(href.slice(-expected[idx].length), expected[idx], "Expected link to be '"+expected[idx]+"', but was '"+href+"'");
}
}
linksEqual(Ember.$('a', '#qunit-fixture'), ["/foo", "/bar", "/rar", "/foo", "/bar", "/rar", "/bar", "/foo"]);
var indexController = container.lookup('controller:index');
Ember.run(indexController, 'set', 'route1', 'rar');
linksEqual(Ember.$('a', '#qunit-fixture'), ["/foo", "/bar", "/rar", "/foo", "/bar", "/rar", "/rar", "/foo"]);
Ember.run(indexController.routeNames, 'shiftObject');
linksEqual(Ember.$('a', '#qunit-fixture'), ["/bar", "/rar", "/bar", "/rar", "/rar", "/foo"]);
});
test("The non-block form {{link-to}} helper moves into the named route", function() {
expect(3);
Router.map(function(match) {
this.route("contact");
});
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{link-to 'Contact us' 'contact' id='contact-link'}}{{#link-to 'index' id='self-link'}}Self{{/link-to}}");
Ember.TEMPLATES.contact = compile("<h3>Contact</h3>{{link-to 'Home' 'index' id='home-link'}}{{link-to 'Self' 'contact' id='self-link'}}");
bootApplication();
Ember.run(function() {
Ember.$('#contact-link', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(Contact)', '#qunit-fixture').length, 1, "The contact template was rendered");
equal(Ember.$('#self-link.active', '#qunit-fixture').length, 1, "The self-link was rendered with active class");
equal(Ember.$('#home-link:not(.active)', '#qunit-fixture').length, 1, "The other link was rendered without active class");
});
test("The non-block form {{link-to}} helper updates the link text when it is a binding", function() {
expect(8);
Router.map(function(match) {
this.route("contact");
});
App.IndexController = Ember.Controller.extend({
contactName: 'Jane'
});
Ember.TEMPLATES.index = compile("<h3>Home</h3>{{link-to contactName 'contact' id='contact-link'}}{{#link-to 'index' id='self-link'}}Self{{/link-to}}");
Ember.TEMPLATES.contact = compile("<h3>Contact</h3>{{link-to 'Home' 'index' id='home-link'}}{{link-to 'Self' 'contact' id='self-link'}}");
bootApplication();
Ember.run(function() {
router.handleURL("/");
});
var controller = container.lookup('controller:index');
equal(Ember.$('#contact-link:contains(Jane)', '#qunit-fixture').length, 1, "The link title is correctly resolved");
Ember.run(function() {
controller.set('contactName', 'Joe');
});
equal(Ember.$('#contact-link:contains(Joe)', '#qunit-fixture').length, 1, "The link title is correctly updated when the bound property changes");
Ember.run(function() {
controller.set('contactName', 'Robert');
});
equal(Ember.$('#contact-link:contains(Robert)', '#qunit-fixture').length, 1, "The link title is correctly updated when the bound property changes a second time");
Ember.run(function() {
Ember.$('#contact-link', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(Contact)', '#qunit-fixture').length, 1, "The contact template was rendered");
equal(Ember.$('#self-link.active', '#qunit-fixture').length, 1, "The self-link was rendered with active class");
equal(Ember.$('#home-link:not(.active)', '#qunit-fixture').length, 1, "The other link was rendered without active class");
Ember.run(function() {
Ember.$('#home-link', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(Home)', '#qunit-fixture').length, 1, "The index template was rendered");
equal(Ember.$('#contact-link:contains(Robert)', '#qunit-fixture').length, 1, "The link title is correctly updated when the route changes");
});
test("The non-block form {{link-to}} helper moves into the named route with context", function() {
expect(5);
Router.map(function(match) {
this.route("item", { path: "/item/:id" });
});
App.IndexRoute = Ember.Route.extend({
model: function() {
return Ember.A([
{ id: "yehuda", name: "Yehuda Katz" },
{ id: "tom", name: "Tom Dale" },
{ id: "erik", name: "Erik Brynroflsson" }
]);
}
});
App.ItemRoute = Ember.Route.extend({
serialize: function(object) {
return { id: object.id };
}
});
Ember.TEMPLATES.index = compile("<h3>Home</h3><ul>{{#each person in controller}}<li>{{link-to person.name 'item' person}}</li>{{/each}}</ul>");
Ember.TEMPLATES.item = compile("<h3>Item</h3><p>{{model.name}}</p>{{#link-to 'index' id='home-link'}}Home{{/link-to}}");
bootApplication();
Ember.run(function() {
Ember.$('li a:contains(Yehuda)', '#qunit-fixture').click();
});
equal(Ember.$('h3:contains(Item)', '#qunit-fixture').length, 1, "The item template was rendered");
equal(Ember.$('p', '#qunit-fixture').text(), "Yehuda Katz", "The name is correct");
Ember.run(function() { Ember.$('#home-link').click(); });
equal(normalizeUrl(Ember.$('li a:contains(Yehuda)').attr('href')), "/item/yehuda");
equal(normalizeUrl(Ember.$('li a:contains(Tom)').attr('href')), "/item/tom");
equal(normalizeUrl(Ember.$('li a:contains(Erik)').attr('href')), "/item/erik");
});
test("The non-block form {{link-to}} performs property lookup", function() {
Ember.TEMPLATES.index = compile("{{link-to 'string' 'index' id='string-link'}}{{link-to path foo id='path-link'}}{{link-to view.foo view.foo id='view-link'}}");
function assertEquality(href) {
equal(normalizeUrl(Ember.$('#string-link', '#qunit-fixture').attr('href')), '/');
equal(normalizeUrl(Ember.$('#path-link', '#qunit-fixture').attr('href')), href);
equal(normalizeUrl(Ember.$('#view-link', '#qunit-fixture').attr('href')), href);
}
App.IndexView = Ember.View.extend({
foo: 'index',
elementId: 'index-view'
});
App.IndexController = Ember.Controller.extend({
foo: 'index'
});
App.Router.map(function() {
this.route('about');
});
bootApplication();
Ember.run(router, 'handleURL', '/');
assertEquality('/');
var controller = container.lookup('controller:index');
var view = Ember.View.views['index-view'];
Ember.run(function() {
controller.set('foo', 'about');
view.set('foo', 'about');
});
assertEquality('/about');
});
test("The non-block form {{link-to}} protects against XSS", function() {
Ember.TEMPLATES.application = compile("{{link-to display 'index' id='link'}}");
App.ApplicationController = Ember.Controller.extend({
display: 'blahzorz'
});
bootApplication();
Ember.run(router, 'handleURL', '/');
var controller = container.lookup('controller:application');
equal(Ember.$('#link', '#qunit-fixture').text(), 'blahzorz');
Ember.run(function() {
controller.set('display', '<b>BLAMMO</b>');
});
equal(Ember.$('#link', '#qunit-fixture').text(), '<b>BLAMMO</b>');
equal(Ember.$('b', '#qunit-fixture').length, 0);
});
test("the {{link-to}} helper calls preventDefault", function() {
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(router, 'handleURL', '/');
var event = Ember.$.Event("click");
Ember.$('#about-link', '#qunit-fixture').trigger(event);
equal(event.isDefaultPrevented(), true, "should preventDefault");
});
test("the {{link-to}} helper does not call preventDefault if `preventDefault=false` is passed as an option", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'about' id='about-link' preventDefault=false}}About{{/link-to}}");
Router.map(function() {
this.route("about");
});
bootApplication();
Ember.run(router, 'handleURL', '/');
var event = Ember.$.Event("click");
Ember.$('#about-link', '#qunit-fixture').trigger(event);
equal(event.isDefaultPrevented(), false, "should not preventDefault");
});
test("the {{link-to}} helper does not throw an error if its route has exited", function() {
expect(0);
Ember.TEMPLATES.application = compile("{{#link-to 'index' id='home-link'}}Home{{/link-to}}{{#link-to 'post' defaultPost id='default-post-link'}}Default Post{{/link-to}}{{#if currentPost}}{{#link-to 'post' id='post-link'}}Post{{/link-to}}{{/if}}");
App.ApplicationController = Ember.Controller.extend({
needs: ['post'],
currentPost: Ember.computed.alias('controllers.post.model')
});
App.PostController = Ember.Controller.extend({
model: { id: 1 }
});
Router.map(function() {
this.route("post", { path: 'post/:post_id' });
});
bootApplication();
Ember.run(router, 'handleURL', '/');
Ember.run(function() {
Ember.$('#default-post-link', '#qunit-fixture').click();
});
Ember.run(function() {
Ember.$('#home-link', '#qunit-fixture').click();
});
});
test("{{link-to}} active property respects changing parent route context", function() {
Ember.TEMPLATES.application = compile(
"{{link-to 'OMG' 'things' 'omg' id='omg-link'}} " +
"{{link-to 'LOL' 'things' 'lol' id='lol-link'}} ");
Router.map(function() {
this.resource('things', { path: '/things/:name' }, function() {
this.route('other');
});
});
bootApplication();
Ember.run(router, 'handleURL', '/things/omg');
shouldBeActive('#omg-link');
shouldNotBeActive('#lol-link');
Ember.run(router, 'handleURL', '/things/omg/other');
shouldBeActive('#omg-link');
shouldNotBeActive('#lol-link');
});
test("{{link-to}} populates href with default query param values even without query-params object", function() {
App.IndexController = Ember.Controller.extend({
queryParams: ['foo'],
foo: '123'
});
Ember.TEMPLATES.index = compile("{{#link-to 'index' id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), "/", "link has right href");
});
test("{{link-to}} populates href with default query param values with empty query-params object", function() {
App.IndexController = Ember.Controller.extend({
queryParams: ['foo'],
foo: '123'
});
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params) id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), "/", "link has right href");
});
test("{{link-to}} populates href with supplied query param values", function() {
App.IndexController = Ember.Controller.extend({
queryParams: ['foo'],
foo: '123'
});
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params foo='456') id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), "/?foo=456", "link has right href");
});
test("{{link-to}} populates href with partially supplied query param values", function() {
App.IndexController = Ember.Controller.extend({
queryParams: ['foo', 'bar'],
foo: '123',
bar: 'yes'
});
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params foo='456') id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), "/?foo=456", "link has right href");
});
test("{{link-to}} populates href with partially supplied query param values, but omits if value is default value", function() {
App.IndexController = Ember.Controller.extend({
queryParams: ['foo', 'bar'],
foo: '123',
bar: 'yes'
});
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params foo='123') id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), "/", "link has right href");
});
test("{{link-to}} populates href with fully supplied query param values", function() {
App.IndexController = Ember.Controller.extend({
queryParams: ['foo', 'bar'],
foo: '123',
bar: 'yes'
});
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params foo='456' bar='NAW') id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), "/?bar=NAW&foo=456", "link has right href");
});
QUnit.module("The {{link-to}} helper: invoking with query params", {
setup: function() {
Ember.run(function() {
sharedSetup();
App.IndexController = Ember.Controller.extend({
queryParams: ['foo', 'bar', 'abool'],
foo: '123',
bar: 'abc',
boundThing: "OMG",
abool: true
});
App.AboutController = Ember.Controller.extend({
queryParams: ['baz', 'bat'],
baz: 'alex',
bat: 'borf'
});
registry.unregister('router:main');
registry.register('router:main', Router);
});
},
teardown: sharedTeardown
});
test("doesn't update controller QP properties on current route when invoked", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'index' id='the-link'}}Index{{/link-to}}");
bootApplication();
Ember.run(Ember.$('#the-link'), 'click');
var indexController = container.lookup('controller:index');
deepEqual(indexController.getProperties('foo', 'bar'), { foo: '123', bar: 'abc' }, "controller QP properties not");
});
test("doesn't update controller QP properties on current route when invoked (empty query-params obj)", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params) id='the-link'}}Index{{/link-to}}");
bootApplication();
Ember.run(Ember.$('#the-link'), 'click');
var indexController = container.lookup('controller:index');
deepEqual(indexController.getProperties('foo', 'bar'), { foo: '123', bar: 'abc' }, "controller QP properties not");
});
test("link-to with no params throws", function() {
Ember.TEMPLATES.index = compile("{{#link-to id='the-link'}}Index{{/link-to}}");
expectAssertion(function() {
bootApplication();
}, /one or more/);
});
test("doesn't update controller QP properties on current route when invoked (empty query-params obj, inferred route)", function() {
Ember.TEMPLATES.index = compile("{{#link-to (query-params) id='the-link'}}Index{{/link-to}}");
bootApplication();
Ember.run(Ember.$('#the-link'), 'click');
var indexController = container.lookup('controller:index');
deepEqual(indexController.getProperties('foo', 'bar'), { foo: '123', bar: 'abc' }, "controller QP properties not");
});
test("updates controller QP properties on current route when invoked", function() {
Ember.TEMPLATES.index = compile("{{#link-to 'index' (query-params foo='456') id='the-link'}}Index{{/link-to}}");
bootApplication();
Ember.run(Ember.$('#the-link'), 'click');
var indexController = container.lookup('controller:index');
deepEqual(indexController.getProperties('foo', 'bar'), { foo: '456', bar: 'abc' }, "controller QP properties updated");
});
test("updates controller QP properties on current route when invoked (inferred route)", function() {
Ember.TEMPLATES.index = compile("{{#link-to (query-params foo='456') id='the-link'}}Index{{/link-to}}");
bootApplication();
Ember.run(Ember.$('#the-link'), 'click');
var indexController = container.lookup('controller:index');
deepEqual(indexController.getProperties('foo', 'bar'), { foo: '456', bar: 'abc' }, "controller QP properties updated");
});
test("updates controller QP properties on other route after transitioning to that route", function() {
Router.map(function() {
this.route('about');
});
Ember.TEMPLATES.index = compile("{{#link-to 'about' (query-params baz='lol') id='the-link'}}About{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), '/about?baz=lol');
Ember.run(Ember.$('#the-link'), 'click');
var aboutController = container.lookup('controller:about');
deepEqual(aboutController.getProperties('baz', 'bat'), { baz: 'lol', bat: 'borf' }, "about controller QP properties updated");
equal(container.lookup('controller:application').get('currentPath'), "about");
});
test("supplied QP properties can be bound", function() {
var indexController = container.lookup('controller:index');
Ember.TEMPLATES.index = compile("{{#link-to (query-params foo=boundThing) id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), '/?foo=OMG');
Ember.run(indexController, 'set', 'boundThing', "ASL");
equal(Ember.$('#the-link').attr('href'), '/?foo=ASL');
});
test("supplied QP properties can be bound (booleans)", function() {
var indexController = container.lookup('controller:index');
Ember.TEMPLATES.index = compile("{{#link-to (query-params abool=boundThing) id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), '/?abool=OMG');
Ember.run(indexController, 'set', 'boundThing', false);
equal(Ember.$('#the-link').attr('href'), '/?abool=false');
Ember.run(Ember.$('#the-link'), 'click');
deepEqual(indexController.getProperties('foo', 'bar', 'abool'), { foo: '123', bar: 'abc', abool: false });
});
test("href updates when unsupplied controller QP props change", function() {
var indexController = container.lookup('controller:index');
Ember.TEMPLATES.index = compile("{{#link-to (query-params foo='lol') id='the-link'}}Index{{/link-to}}");
bootApplication();
equal(Ember.$('#the-link').attr('href'), '/?foo=lol');
Ember.run(indexController, 'set', 'bar', 'BORF');
equal(Ember.$('#the-link').attr('href'), '/?bar=BORF&foo=lol');
Ember.run(indexController, 'set', 'foo', 'YEAH');
equal(Ember.$('#the-link').attr('href'), '/?bar=BORF&foo=lol');
});
test("The {{link-to}} applies activeClass when query params are not changed", function() {
Ember.TEMPLATES.index = compile(
"{{#link-to (query-params foo='cat') id='cat-link'}}Index{{/link-to}} " +
"{{#link-to (query-params foo='dog') id='dog-link'}}Index{{/link-to}} " +
"{{#link-to 'index' id='change-nothing'}}Index{{/link-to}}"
);
Ember.TEMPLATES.search = compile(
"{{#link-to (query-params search='same') id='same-search'}}Index{{/link-to}} " +
"{{#link-to (query-params search='change') id='change-search'}}Index{{/link-to}} " +
"{{#link-to (query-params search='same' archive=true) id='same-search-add-archive'}}Index{{/link-to}} " +
"{{#link-to (query-params archive=true) id='only-add-archive'}}Index{{/link-to}} " +
"{{#link-to (query-params search='same' archive=true) id='both-same'}}Index{{/link-to}} " +
"{{#link-to (query-params search='different' archive=true) id='change-one'}}Index{{/link-to}} " +
"{{#link-to (query-params search='different' archive=false) id='remove-one'}}Index{{/link-to}} " +
"{{outlet}}"
);
Ember.TEMPLATES['search/results'] = compile(
"{{#link-to (query-params sort='title') id='same-sort-child-only'}}Index{{/link-to}} " +
"{{#link-to (query-params search='same') id='same-search-parent-only'}}Index{{/link-to}} " +
"{{#link-to (query-params search='change') id='change-search-parent-only'}}Index{{/link-to}} " +
"{{#link-to (query-params search='same' sort='title') id='same-search-same-sort-child-and-parent'}}Index{{/link-to}} " +
"{{#link-to (query-params search='same' sort='author') id='same-search-different-sort-child-and-parent'}}Index{{/link-to}} " +
"{{#link-to (query-params search='change' sort='title') id='change-search-same-sort-child-and-parent'}}Index{{/link-to}} " +
"{{#link-to (query-params foo='dog') id='dog-link'}}Index{{/link-to}} "
);
Router.map(function() {
this.resource("search", function() {
this.route("results");
});
});
App.SearchController = Ember.Controller.extend({
queryParams: ['search', 'archive'],
search: '',
archive: false
});
App.SearchResultsController = Ember.Controller.extend({
queryParams: ['sort', 'showDetails'],
sort: 'title',
showDetails: true
});
bootApplication();
//Basic tests
shouldNotBeActive('#cat-link');
shouldNotBeActive('#dog-link');
Ember.run(router, 'handleURL', '/?foo=cat');
shouldBeActive('#cat-link');
shouldNotBeActive('#dog-link');
Ember.run(router, 'handleURL', '/?foo=dog');
shouldBeActive('#dog-link');
shouldNotBeActive('#cat-link');
shouldBeActive('#change-nothing');
//Multiple params
Ember.run(function() {
router.handleURL("/search?search=same");
});
shouldBeActive('#same-search');
shouldNotBeActive('#change-search');
shouldNotBeActive('#same-search-add-archive');
shouldNotBeActive('#only-add-archive');
shouldNotBeActive('#remove-one');
Ember.run(function() {
router.handleURL("/search?search=same&archive=true");
});
shouldBeActive('#both-same');
shouldNotBeActive('#change-one');
//Nested Controllers
Ember.run(function() {
// Note: this is kind of a strange case; sort's default value is 'title',
// so this URL shouldn't have been generated in the first place, but
// we should also be able to gracefully handle these cases.
router.handleURL("/search/results?search=same&sort=title&showDetails=true");
});
//shouldBeActive('#same-sort-child-only');
shouldBeActive('#same-search-parent-only');
shouldNotBeActive('#change-search-parent-only');
shouldBeActive('#same-search-same-sort-child-and-parent');
shouldNotBeActive('#same-search-different-sort-child-and-parent');
shouldNotBeActive('#change-search-same-sort-child-and-parent');
});
test("The {{link-to}} applies active class when query-param is number", function() {
Ember.TEMPLATES.index = compile(
"{{#link-to (query-params page=pageNumber) id='page-link'}}Index{{/link-to}} ");
App.IndexController = Ember.Controller.extend({
queryParams: ['page'],
page: 1,
pageNumber: 5
});
bootApplication();
shouldNotBeActive('#page-link');
Ember.run(router, 'handleURL', '/?page=5');
shouldBeActive('#page-link');
});
test("The {{link-to}} applies active class when query-param is array", function() {
Ember.TEMPLATES.index = compile(
"{{#link-to (query-params pages=pagesArray) id='array-link'}}Index{{/link-to}} " +
"{{#link-to (query-params pages=biggerArray) id='bigger-link'}}Index{{/link-to}} " +
"{{#link-to (query-params pages=emptyArray) id='empty-link'}}Index{{/link-to}} "
);
App.IndexController = Ember.Controller.extend({
queryParams: ['pages'],
pages: [],
pagesArray: [1,2],
biggerArray: [1,2,3],
emptyArray: []
});
bootApplication();
shouldNotBeActive('#array-link');
Ember.run(router, 'handleURL', '/?pages=%5B1%2C2%5D');
shouldBeActive('#array-link');
shouldNotBeActive('#bigger-link');
shouldNotBeActive('#empty-link');
Ember.run(router, 'handleURL', '/?pages=%5B2%2C1%5D');
shouldNotBeActive('#array-link');
shouldNotBeActive('#bigger-link');
shouldNotBeActive('#empty-link');
Ember.run(router, 'handleURL', '/?pages=%5B1%2C2%2C3%5D');
shouldBeActive('#bigger-link');
shouldNotBeActive('#array-link');
shouldNotBeActive('#empty-link');
});
test("The {{link-to}} helper applies active class to parent route", function() {
App.Router.map(function() {
this.resource('parent', function() {
this.route('child');
});
});
Ember.TEMPLATES.application = compile(
"{{#link-to 'parent' id='parent-link'}}Parent{{/link-to}} " +
"{{#link-to 'parent.child' id='parent-child-link'}}Child{{/link-to}} " +
"{{#link-to 'parent' (query-params foo=cat) id='parent-link-qp'}}Parent{{/link-to}} " +
"{{outlet}}"
);
App.ParentChildController = Ember.Controller.extend({
queryParams: ['foo'],
foo: 'bar'
});
bootApplication();
shouldNotBeActive('#parent-link');
shouldNotBeActive('#parent-child-link');
shouldNotBeActive('#parent-link-qp');
Ember.run(router, 'handleURL', '/parent/child?foo=dog');
shouldBeActive('#parent-link');
shouldNotBeActive('#parent-link-qp');
});
test("The {{link-to}} helper disregards query-params in activeness computation when current-when specified", function() {
App.Router.map(function() {
this.route('parent');
});
Ember.TEMPLATES.application = compile(
"{{#link-to 'parent' (query-params page=1) current-when='parent' id='app-link'}}Parent{{/link-to}} {{outlet}}");
Ember.TEMPLATES.parent = compile(
"{{#link-to 'parent' (query-params page=1) current-when='parent' id='parent-link'}}Parent{{/link-to}} {{outlet}}");
App.ParentController = Ember.Controller.extend({
queryParams: ['page'],
page: 1
});
bootApplication();
equal(Ember.$('#app-link').attr('href'), '/parent');
shouldNotBeActive('#app-link');
Ember.run(router, 'handleURL', '/parent?page=2');
equal(Ember.$('#app-link').attr('href'), '/parent');
shouldBeActive('#app-link');
equal(Ember.$('#parent-link').attr('href'), '/parent');
shouldBeActive('#parent-link');
var parentController = container.lookup('controller:parent');
equal(parentController.get('page'), 2);
Ember.run(parentController, 'set', 'page', 3);
equal(router.get('location.path'), '/parent?page=3');
shouldBeActive('#app-link');
shouldBeActive('#parent-link');
Ember.$('#app-link').click();
equal(router.get('location.path'), '/parent');
});
function basicEagerURLUpdateTest(setTagName) {
expect(6);
if (setTagName) {
Ember.TEMPLATES.application = compile("{{outlet}}{{link-to 'Index' 'index' id='index-link'}}{{link-to 'About' 'about' id='about-link' tagName='span'}}");
}
bootApplication();
equal(updateCount, 0);
Ember.run(Ember.$('#about-link'), 'click');
// URL should be eagerly updated now
equal(updateCount, 1);
equal(router.get('location.path'), '/about');
// Resolve the promise.
Ember.run(aboutDefer, 'resolve');
equal(router.get('location.path'), '/about');
// Shouldn't have called update url again.
equal(updateCount, 1);
equal(router.get('location.path'), '/about');
}
var aboutDefer;
if (!Ember.FEATURES.isEnabled('ember-routing-transitioning-classes')) {
QUnit.module("The {{link-to}} helper: eager URL updating", {
setup: function() {
Ember.run(function() {
sharedSetup();
registry.unregister('router:main');
registry.register('router:main', Router);
Router.map(function() {
this.route('about');
});
App.AboutRoute = Ember.Route.extend({
model: function() {
aboutDefer = Ember.RSVP.defer();
return aboutDefer.promise;
}
});
Ember.TEMPLATES.application = compile("{{outlet}}{{link-to 'Index' 'index' id='index-link'}}{{link-to 'About' 'about' id='about-link'}}");
});
},
teardown: function() {
sharedTeardown();
aboutDefer = null;
}
});
test("invoking a link-to with a slow promise eager updates url", function() {
basicEagerURLUpdateTest(false);
});
test("when link-to eagerly updates url, the path it provides does NOT include the rootURL", function() {
expect(2);
// HistoryLocation is the only Location class that will cause rootURL to be
// prepended to link-to href's right now
var HistoryTestLocation = Ember.HistoryLocation.extend({
location: {
hash: '',
hostname: 'emberjs.com',
href: 'http://emberjs.com/app/',
pathname: '/app/',
protocol: 'http:',
port: '',
search: ''
},
// Don't actually touch the URL
replaceState: function(path) {},
pushState: function(path) {},
setURL: function(path) {
set(this, 'path', path);
},
replaceURL: function(path) {
set(this, 'path', path);
}
});
registry.register('location:historyTest', HistoryTestLocation);
Router.reopen({
location: 'historyTest',
rootURL: '/app/'
});
bootApplication();
// href should have rootURL prepended
equal(Ember.$('#about-link').attr('href'), '/app/about');
Ember.run(Ember.$('#about-link'), 'click');
// Actual path provided to Location class should NOT have rootURL
equal(router.get('location.path'), '/about');
});
test("non `a` tags also eagerly update URL", function() {
basicEagerURLUpdateTest(true);
});
test("invoking a link-to with a promise that rejects on the run loop doesn't update url", function() {
App.AboutRoute = Ember.Route.extend({
model: function() {
return Ember.RSVP.reject();
}
});
bootApplication();
Ember.run(Ember.$('#about-link'), 'click');
// Shouldn't have called update url.
equal(updateCount, 0);
equal(router.get('location.path'), '', 'url was not updated');
});
test("invoking a link-to whose transition gets aborted in will transition doesn't update the url", function() {
App.IndexRoute = Ember.Route.extend({
actions: {
willTransition: function(transition) {
ok(true, "aborting transition");
transition.abort();
}
}
});
bootApplication();
Ember.run(Ember.$('#about-link'), 'click');
// Shouldn't have called update url.
equal(updateCount, 0);
equal(router.get('location.path'), '', 'url was not updated');
});
}
if (Ember.FEATURES.isEnabled('ember-routing-transitioning-classes')) {
QUnit.module("The {{link-to}} helper: .transitioning-in .transitioning-out CSS classes", {
setup: function() {
Ember.run(function() {
sharedSetup();
registry.unregister('router:main');
registry.register('router:main', Router);
Router.map(function() {
this.route('about');
this.route('other');
});
App.AboutRoute = Ember.Route.extend({
model: function() {
aboutDefer = Ember.RSVP.defer();
return aboutDefer.promise;
}
});
Ember.TEMPLATES.application = compile("{{outlet}}{{link-to 'Index' 'index' id='index-link'}}{{link-to 'About' 'about' id='about-link'}}{{link-to 'Other' 'other' id='other-link'}}");
});
},
teardown: function() {
sharedTeardown();
aboutDefer = null;
}
});
test("while a transition is underway", function() {
expect(18);
bootApplication();
function assertHasClass(className) {
var i = 1;
while (i < arguments.length) {
var $a = arguments[i];
var shouldHaveClass = arguments[i+1];
equal($a.hasClass(className), shouldHaveClass, $a.attr('id') + " should " + (shouldHaveClass ? '' : "not ") + "have class " + className);
i +=2;
}
}
var $index = Ember.$('#index-link');
var $about = Ember.$('#about-link');
var $other = Ember.$('#other-link');
Ember.run($about, 'click');
assertHasClass('active', $index, true, $about, false, $other, false);
assertHasClass('ember-transitioning-in', $index, false, $about, true, $other, false);
assertHasClass('ember-transitioning-out', $index, true, $about, false, $other, false);
Ember.run(aboutDefer, 'resolve');
assertHasClass('active', $index, false, $about, true, $other, false);
assertHasClass('ember-transitioning-in', $index, false, $about, false, $other, false);
assertHasClass('ember-transitioning-out', $index, false, $about, false, $other, false);
});
}
| 33.318454 | 370 | 0.63551 |
b75a93a5953856e112cf5e9bc2c19add29836979 | 1,719 | js | JavaScript | js/breed.js | margut/sinus | 397caaa5b23855e785c8bc1aad675c2e96ac1a9d | [
"MIT"
] | null | null | null | js/breed.js | margut/sinus | 397caaa5b23855e785c8bc1aad675c2e96ac1a9d | [
"MIT"
] | null | null | null | js/breed.js | margut/sinus | 397caaa5b23855e785c8bc1aad675c2e96ac1a9d | [
"MIT"
] | null | null | null | /*
* JQuery PlugIn "breed"
* Add new elements to each element in collection and return collection of *added* elements
*
* For easy adding elements to dom tree in a chaining way
* M. Gutbrod, 2014
*
* Possible parameters:
* One element: .breed('tagname', pos)
* Slibing several elements: .breed(['tagname','tag2',...], pos)
* Slibing several elements with attributes: .breed([ [tagname, {attr:'one', attr2: 'two', ...}, text|breed-parameter1], [tag2: {attr:'abc', attr2: '123', ...}, text|breed-parameter1], ...], pos)
* Slibing elements as function results object: .breed(function (this) {return <one of other types>;}, pos)
*
* pos: 'prepend' insert element(s) to the beginning of each element in the set of matched elements.
* 'append' insert element(s) to the end of each element in the set of matched elements.
* 'before' insert element(s) before each element in the set of matched elements.
* 'after' insert element(s) after each element in the set of matched elements.
*/
(function ($) {
$.fn.breed = function(tag,pos) {
var jQ = $();
pos = ((['prepend','append','before','after'].indexOf(pos) !== -1) && pos) || 'append';
this.each(function() {
var tmp;
if (typeof tag === 'function') {
tag=tag(this);}
if (typeof tag === 'string') {
tag=[tag];}
for (var t in tag) {
tmp=document.createElement(typeof tag[t] === 'string' ? tag[t] : tag[t][0]);
$(this)[pos](tmp);
jQ=jQ.add(tmp);
if (typeof tag[t] !== 'string') {
$(tmp).attr(tag[t][1]);
if (tag[t][2]) {
if (typeof tag[t][2] === 'string') {
$(tmp).text(tag[t][2]);}
else {
tmp.breed(tag[t][2]);}}}}});
return jQ;}
}(jQuery));
| 34.38 | 195 | 0.599767 |
b75aade780a1f41f7e2b2175214217351ef40f38 | 266 | js | JavaScript | JavaScript/Array/Format.js | piovezan/SOpt | a5ec90796b7bdf98f0675457fc4bb99c8695bc40 | [
"MIT"
] | 148 | 2017-08-03T01:49:27.000Z | 2022-03-26T10:39:30.000Z | JavaScript/Array/Format.js | piovezan/SOpt | a5ec90796b7bdf98f0675457fc4bb99c8695bc40 | [
"MIT"
] | 3 | 2017-11-23T19:52:05.000Z | 2020-04-01T00:44:40.000Z | JavaScript/Array/Format.js | piovezan/SOpt | a5ec90796b7bdf98f0675457fc4bb99c8695bc40 | [
"MIT"
] | 59 | 2017-08-03T01:49:19.000Z | 2022-03-31T23:24:38.000Z | let array7 = new Array;
for (let x = 0; x < 50; x++) array7[x] = Math.floor(Math.random() * 50 - 10 + 10);
let array8 = array7.filter(array7 => array7 < 20)
console.log(array7.join(", "));
console.log(array8.join(", "));
//https://pt.stackoverflow.com/q/416301/101
| 33.25 | 82 | 0.635338 |
b75ab58d4aa02a58a313fa37b8af80ddb5db6c2d | 725 | js | JavaScript | api/helpers/SwaggerSecurity.js | berkitamas/simplelight | 35828ba8358d1638ac567915bde0dcffca887c1f | [
"MIT"
] | null | null | null | api/helpers/SwaggerSecurity.js | berkitamas/simplelight | 35828ba8358d1638ac567915bde0dcffca887c1f | [
"MIT"
] | null | null | null | api/helpers/SwaggerSecurity.js | berkitamas/simplelight | 35828ba8358d1638ac567915bde0dcffca887c1f | [
"MIT"
] | null | null | null | var db = require('./db');
db.initCollection("sessions");
module.exports = {
swaggerSecurityHandlers: {
ApiKeyAuth: function(req, authOrSecDef, scopesOrApiKey, callback) {
if (scopesOrApiKey) {
try {
const session = db.getObject("sessions", item => item._id === scopesOrApiKey);
req.userId = session.user;
req.sessionId = scopesOrApiKey;
callback();
} catch ( e) {
callback(new Error('Api key missing or not registered'));
}
} else {
callback(new Error('Api key missing or not registered'));
}
}
}
}; | 32.954545 | 98 | 0.491034 |
b75b8d6d057426b36f35ea880b6c72cdd9bbe9c1 | 387 | js | JavaScript | algorithms/remove-value.js | Dbz/Algorithms | 40dd7dee88ea29c91f13461d268f16c6d74208f6 | [
"MIT"
] | 95 | 2015-01-15T21:52:06.000Z | 2022-02-20T07:35:10.000Z | algorithms/remove-value.js | Dbz/Algorithms | 40dd7dee88ea29c91f13461d268f16c6d74208f6 | [
"MIT"
] | 7 | 2015-12-28T01:52:42.000Z | 2017-07-03T21:04:49.000Z | algorithms/remove-value.js | Dbz/Algorithms | 40dd7dee88ea29c91f13461d268f16c6d74208f6 | [
"MIT"
] | 21 | 2015-08-03T03:17:10.000Z | 2021-11-13T17:21:54.000Z | /**
* Given an array and a value, remove all instances of that value in place and return the new length.
*
* @param {number[]} numbers
* @param {number} value
* @return {number}
*/
var removeValue = function(numbers, value) {
for (var i = 0; i < numbers.length; i++) {
if (numbers[i] === value) {
numbers.splice(i, 1);
i--;
}
}
return numbers.length;
};
| 21.5 | 101 | 0.596899 |
b75b8ddc60f90cf3c1a7f974f596a67e02f0d930 | 5,600 | js | JavaScript | docs/_apidocs/member-search-index.js | dcchaudhary/aem-modernize-tools | 7482b4f064576c8314a138c1a6e49c122ded3b86 | [
"Apache-2.0"
] | 56 | 2019-03-28T17:19:22.000Z | 2022-03-30T03:59:52.000Z | docs/_apidocs/member-search-index.js | dcchaudhary/aem-modernize-tools | 7482b4f064576c8314a138c1a6e49c122ded3b86 | [
"Apache-2.0"
] | 158 | 2019-03-29T07:43:36.000Z | 2022-03-28T17:15:43.000Z | docs/_apidocs/member-search-index.js | bstopp/aem-modernize-tools | bcd34e9c4a5bc7ea5548c3ae6003ce1cd6da8f5a | [
"Apache-2.0"
] | 32 | 2019-03-29T18:50:44.000Z | 2021-12-08T20:37:03.000Z | memberSearchIndex = [{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"activate(ComponentContext, ColumnControlRewriteRule.Config)","url":"activate(org.osgi.service.component.ComponentContext,com.adobe.aem.modernize.component.rule.ColumnControlRewriteRule.Config)"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"activate(ComponentContext, PageRewriteRule.Config)","url":"activate(org.osgi.service.component.ComponentContext,com.adobe.aem.modernize.structure.rule.PageRewriteRule.Config)"},{"p":"com.adobe.aem.modernize.structure","c":"StructureRewriteRuleService","l":"apply(Page, Set<String>)","url":"apply(com.day.cq.wcm.api.Page,java.util.Set)"},{"p":"com.adobe.aem.modernize.component","c":"ComponentRewriteRuleService","l":"apply(Resource, Set<String>, boolean)","url":"apply(org.apache.sling.api.resource.Resource,java.util.Set,boolean)"},{"p":"com.adobe.aem.modernize.policy","c":"PolicyImportRuleService","l":"apply(Resource, String, Set<String>, boolean, boolean)","url":"apply(org.apache.sling.api.resource.Resource,java.lang.String,java.util.Set,boolean,boolean)"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"applyTo(Node, Set<String>)","url":"applyTo(javax.jcr.Node,java.util.Set)"},{"p":"com.adobe.aem.modernize.policy","c":"PolicyImportRule","l":"applyTo(Node, Set<String>)","url":"applyTo(javax.jcr.Node,java.util.Set)"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule","l":"applyTo(Node, Set<String>)","url":"applyTo(javax.jcr.Node,java.util.Set)"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"applyTo(Node, Set<String>)","url":"applyTo(javax.jcr.Node,java.util.Set)"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"ColumnControlRewriteRule()","url":"%3Cinit%3E()"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule.Comparator","l":"Comparator()","url":"%3Cinit%3E()"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule.Comparator","l":"compare(RewriteRule, RewriteRule)","url":"compare(com.adobe.aem.modernize.rule.RewriteRule,com.adobe.aem.modernize.rule.RewriteRule)"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule","l":"compareTo(RewriteRule)","url":"compareTo(com.adobe.aem.modernize.rule.RewriteRule)"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRuleService","l":"find(Resource)","url":"find(org.apache.sling.api.resource.Resource)"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"findMatches(Resource)","url":"findMatches(org.apache.sling.api.resource.Resource)"},{"p":"com.adobe.aem.modernize.rule","c":"ServiceBasedRewriteRule","l":"findMatches(Resource)","url":"findMatches(org.apache.sling.api.resource.Resource)"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"findMatches(Resource)","url":"findMatches(org.apache.sling.api.resource.Resource)"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"getId()"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule","l":"getId()"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"getId()"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"getRanking()"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule","l":"getRanking()"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"getRanking()"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"getTitle()"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule","l":"getTitle()"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"getTitle()"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"hasPattern(String...)","url":"hasPattern(java.lang.String...)"},{"p":"com.adobe.aem.modernize.rule","c":"ServiceBasedRewriteRule","l":"hasPattern(String...)","url":"hasPattern(java.lang.String...)"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"hasPattern(String...)","url":"hasPattern(java.lang.String...)"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRuleService","l":"listRules(ResourceResolver, String...)","url":"listRules(org.apache.sling.api.resource.ResourceResolver,java.lang.String...)"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"matches(Node)","url":"matches(javax.jcr.Node)"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRule","l":"matches(Node)","url":"matches(javax.jcr.Node)"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"matches(Node)","url":"matches(javax.jcr.Node)"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"NN_ROOT_CONTAINER"},{"p":"com.adobe.aem.modernize.structure.rule","c":"PageRewriteRule","l":"PageRewriteRule()","url":"%3Cinit%3E()"},{"p":"com.adobe.aem.modernize.policy","c":"PolicyImportRuleService","l":"PN_IMPORTED"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"PN_OFFSET"},{"p":"com.adobe.aem.modernize.component.rule","c":"ColumnControlRewriteRule","l":"PN_WIDTH"},{"p":"com.adobe.aem.modernize.policy","c":"PolicyImportRuleService","l":"POLICY_REL_PATH"},{"p":"com.adobe.aem.modernize","c":"RewriteException","l":"RewriteException(String, Throwable)","url":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"com.adobe.aem.modernize","c":"RewriteException","l":"RewriteException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"com.adobe.aem.modernize.rule","c":"RewriteRuleMapping","l":"RewriteRuleMapping()","url":"%3Cinit%3E()"}] | 5,600 | 5,600 | 0.722857 |
b75bc438625ee2ce0dda70ca6a6d75ec1b945d86 | 1,462 | js | JavaScript | assets/js/script.js | ahnjaeyung/Day_Planner | bce3a90e48ce3efe34985dd0324d15c20efc2682 | [
"Unlicense",
"MIT"
] | null | null | null | assets/js/script.js | ahnjaeyung/Day_Planner | bce3a90e48ce3efe34985dd0324d15c20efc2682 | [
"Unlicense",
"MIT"
] | null | null | null | assets/js/script.js | ahnjaeyung/Day_Planner | bce3a90e48ce3efe34985dd0324d15c20efc2682 | [
"Unlicense",
"MIT"
] | null | null | null | var savedPlans = Object.keys(localStorage);
var saveBtn = $(".saveBtn");
var timer = true
var currentHour = moment().hours();
var time = setInterval(function () {
if (timer === true) {
$("#currentDay").text(moment().format("LLL"));
}
}, 1000) //end of setInterval
function rowColor() {
$(".time-block").each(function () {
var hourId = $(this).attr("id");
// console.log(hourAttr);
var hourRow = hourId.substring(5, hourId.length); //takes just the number
// console.log(hourRow);
intHourRow = parseInt(hourRow)
// console.log(intHourRow);
intCurrentHour = parseInt(currentHour)
if (parseInt(intHourRow) < currentHour) {
$(this).addClass("past");
}
else if (parseInt(intHourRow) === currentHour) {
$(this).addClass("present");
}
else if (parseInt(intHourRow) > currentHour) {
$(this).addClass("future");
}
}
)
}; //end of rowColor function definition
rowColor();
saveBtn.on("click", function () {
var taskInput = $(this).siblings(".description").val();
var timeSlot = $(this).parent().attr("id");
localStorage.setItem(timeSlot, taskInput);
}); // end of saveBtn click event
for (i = 0; i < savedPlans.length; i++) {
var taskInput = localStorage.getItem(savedPlans[i]);
var savedText = $("#" + savedPlans[i]).find("textarea")
savedText.val(taskInput);
} // end of for loop | 35.658537 | 81 | 0.595759 |
b75bd5cbbb87547c567e907f956c832e59abbb0f | 5,975 | js | JavaScript | src/main/webapp/math/extensions/HelpDialog.js | Tomkirn/drawio | d738fe3656bb39a5f09f8215a715e0a312c5d850 | [
"Apache-2.0"
] | 25,562 | 2017-07-27T12:30:54.000Z | 2022-03-31T22:50:52.000Z | src/main/webapp/math/extensions/HelpDialog.js | Tomkirn/drawio | d738fe3656bb39a5f09f8215a715e0a312c5d850 | [
"Apache-2.0"
] | 2,409 | 2017-07-27T13:56:39.000Z | 2022-03-31T11:19:34.000Z | src/main/webapp/math/extensions/HelpDialog.js | Tomkirn/drawio | d738fe3656bb39a5f09f8215a715e0a312c5d850 | [
"Apache-2.0"
] | 5,511 | 2017-07-27T12:30:56.000Z | 2022-03-31T17:29:18.000Z | /*
* /MathJax-v2/extensions/HelpDialog.js
*
* Copyright (c) 2009-2018 The MathJax Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function(d,f,i,c,j){var e=MathJax.Extension.Help={version:"2.7.9"};var b="http://www.stixfonts.org/";var a=MathJax.Menu;var h,g;d.Register.StartupHook("MathEvents Ready",function(){h=MathJax.Extension.MathEvents.Event.False;g=MathJax.Extension.MathEvents.Event.KEY});var k=d.CombineConfig("HelpDialog",{styles:{"#MathJax_Help":{position:"fixed",left:"50%",width:"auto","max-width":"90%","text-align":"center",border:"3px outset",padding:"1em 2em","background-color":"#DDDDDD",color:"black",cursor:"default","font-family":"message-box","font-size":"120%","font-style":"normal","text-indent":0,"text-transform":"none","line-height":"normal","letter-spacing":"normal","word-spacing":"normal","word-wrap":"normal","white-space":"wrap","float":"none","z-index":201,"border-radius":"15px","-webkit-border-radius":"15px","-moz-border-radius":"15px","-khtml-border-radius":"15px","box-shadow":"0px 10px 20px #808080","-webkit-box-shadow":"0px 10px 20px #808080","-moz-box-shadow":"0px 10px 20px #808080","-khtml-box-shadow":"0px 10px 20px #808080",filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color='gray', Positive='true')"},"#MathJax_Help.MathJax_MousePost":{outline:"none"},"#MathJax_HelpContent":{overflow:"auto","text-align":"left","font-size":"80%",padding:".4em .6em",border:"1px inset",margin:"1em 0px","max-height":"20em","max-width":"30em","background-color":"#EEEEEE"},"#MathJax_HelpClose":{position:"absolute",top:".2em",right:".2em",cursor:"pointer",display:"inline-block",border:"2px solid #AAA","border-radius":"18px","-webkit-border-radius":"18px","-moz-border-radius":"18px","-khtml-border-radius":"18px","font-family":"'Courier New',Courier","font-size":"24px",color:"#F0F0F0"},"#MathJax_HelpClose span":{display:"block","background-color":"#AAA",border:"1.5px solid","border-radius":"18px","-webkit-border-radius":"18px","-moz-border-radius":"18px","-khtml-border-radius":"18px","line-height":0,padding:"8px 0 6px"},"#MathJax_HelpClose:hover":{color:"white!important",border:"2px solid #CCC!important"},"#MathJax_HelpClose:hover span":{"background-color":"#CCC!important"},"#MathJax_HelpClose:hover:focus":{outline:"none"}}});e.Dialog=function(l){j.loadDomain("HelpDialog",["Post",e,l])};e.Post=function(n){this.div=a.Background(this);var l=f.addElement(this.div,"div",{id:"MathJax_Help",tabIndex:0,onkeydown:e.Keydown},j._("HelpDialog",[["b",{style:{fontSize:"120%"}},[["Help","MathJax Help"]]],["div",{id:"MathJax_HelpContent",tabIndex:0},[["p",{},[["MathJax","*MathJax* is a JavaScript library that allows page authors to include mathematics within their web pages. As a reader, you don't need to do anything to make that happen."]]],["p",{},[["Browsers","*Browsers*: MathJax works with all modern browsers including IE6+, Firefox 3+, Chrome 0.2+, Safari 2+, Opera 9.6+ and most mobile browsers."]]],["p",{},[["Menu","*Math Menu*: MathJax adds a contextual menu to equations. Right-click or CTRL-click on any mathematics to access the menu."]]],["div",{style:{"margin-left":"1em"}},[["p",{},[["ShowMath","*Show Math As* allows you to view the formula's source markup for copy & paste (as MathML or in its original format)."]]],["p",{},[["Settings","*Settings* gives you control over features of MathJax, such as the size of the mathematics, and the mechanism used to display equations."]]],["p",{},[["Language","*Language* lets you select the language used by MathJax for its menus and warning messages."]]],]],["p",{},[["Zoom","*Math Zoom*: If you are having difficulty reading an equation, MathJax can enlarge it to help you see it better."]]],["p",{},[["Accessibilty","*Accessibility*: MathJax will automatically work with screen readers to make mathematics accessible to the visually impaired."]]],["p",{},[["Fonts","*Fonts*: MathJax will use certain math fonts if they are installed on your computer; otherwise, it will use web-based fonts. Although not required, locally installed fonts will speed up typesetting. We suggest installing the [STIX fonts](%1).",b]]]]],["a",{href:"http://www.mathjax.org/"},["www.mathjax.org"]],["span",{id:"MathJax_HelpClose",onclick:e.Remove,onkeydown:e.Keydown,tabIndex:0,role:"button","aria-label":j._(["HelpDialog","CloseDialog"],"Close help dialog")},[["span",{},["\u00D7"]]]]]));if(n.type==="mouseup"){l.className+=" MathJax_MousePost"}l.focus();j.setCSS(l);var o=(document.documentElement||{});var m=window.innerHeight||o.clientHeight||o.scrollHeight||0;if(a.prototype.msieAboutBug){l.style.width="20em";l.style.position="absolute";l.style.left=Math.floor((document.documentElement.scrollWidth-l.offsetWidth)/2)+"px";l.style.top=(Math.floor((m-l.offsetHeight)/3)+document.body.scrollTop)+"px"}else{l.style.marginLeft=Math.floor(-l.offsetWidth/2)+"px";l.style.top=Math.floor((m-l.offsetHeight)/3)+"px"}};e.Remove=function(l){if(e.div){document.body.removeChild(e.div);delete e.div}};e.Keydown=function(l){if(l.keyCode===g.ESCAPE||(this.id==="MathJax_HelpClose"&&(l.keyCode===g.SPACE||l.keyCode===g.RETURN))){e.Remove(l);a.CurrentNode().focus();h(l)}},MathJax.Callback.Queue(d.Register.StartupHook("End Config",{}),["Styles",i,k.styles],["Post",d.Startup.signal,"HelpDialog Ready"],["loadComplete",i,"[MathJax]/extensions/HelpDialog.js"])})(MathJax.Hub,MathJax.HTML,MathJax.Ajax,MathJax.OutputJax,MathJax.Localization);
| 298.75 | 5,304 | 0.716653 |
b75c42abdca74fd74fc557aaa7b6683a2b56f636 | 189 | js | JavaScript | src/store/getters.js | 944494038/supermall | f07d216766f77f8027a65e2deab32b8aaa0989f1 | [
"MIT"
] | null | null | null | src/store/getters.js | 944494038/supermall | f07d216766f77f8027a65e2deab32b8aaa0989f1 | [
"MIT"
] | 5 | 2021-03-09T17:31:18.000Z | 2022-02-18T10:02:02.000Z | src/store/getters.js | 944494038/supermall | f07d216766f77f8027a65e2deab32b8aaa0989f1 | [
"MIT"
] | null | null | null | export default {
cartLength(state) {
return state.cartList.length
},
cartList(state) {
return state.cartList
}
}
export const getCount = state => {
return state.count
}
| 13.5 | 34 | 0.661376 |
b75cb7cd5d5587d369faa4878d26457c763bf2e6 | 3,541 | js | JavaScript | arcgis_js_api/library/3.17/3.17compact/dojo/cldr/nls/et/hebrew.js | darklilium/PO_Filiales | 7d71dcd46b26bd87ef8f0354138b84eeac245bca | [
"MIT"
] | 1 | 2019-11-05T16:47:26.000Z | 2019-11-05T16:47:26.000Z | arcgis_js_api/library/3.17/3.17compact/dojo/cldr/nls/et/hebrew.js | darklilium/PO_Filiales | 7d71dcd46b26bd87ef8f0354138b84eeac245bca | [
"MIT"
] | 13 | 2017-03-23T15:37:01.000Z | 2018-08-08T21:10:05.000Z | arcgis_js_api/library/3.17/3.17compact/dojo/cldr/nls/et/hebrew.js | darklilium/Factigis | 6d0a8957d2ee84dce82731d74afc1f5246fbf494 | [
"MIT"
] | null | null | null | /*
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
//>>built
define("dojo/cldr/nls/et/hebrew",{"field-second-relative+0":"praegu","field-weekday":"N\u00e4dalap\u00e4ev","field-wed-relative+0":"k\u00e4esolev kolmap\u00e4ev","field-wed-relative+1":"j\u00e4rgmine kolmap\u00e4ev","dateFormatItem-GyMMMEd":"E, d. MMMM y G","dateFormatItem-MMMEd":"E, d.M","field-tue-relative+-1":"eelmine teisip\u00e4ev","days-format-short":"ETKNRLP".split(""),"dateFormat-long":"d. MMMM y G","field-fri-relative+-1":"eelmine reede","field-wed-relative+-1":"eelmine kolmap\u00e4ev","dateFormatItem-yyyyQQQ":"QQQ y G",
"dateTimeFormat-medium":"{1}, {0}","dateFormat-full":"EEEE, d. MMMM y G","dateFormatItem-yyyyMEd":"E, d.M y G","field-thu-relative+-1":"eelmine neljap\u00e4ev","dateFormatItem-Md":"d.M","field-era":"Ajastu","timeFormat-short":"H:mm","quarters-format-wide":["Esimene kvartal","Teine kvartal","Kolmas kvartal","Neljas kvartal"],"timeFormat-long":"H:mm:ss z","field-year":"Aasta","dateTimeFormats-appendItem-Era":"{0} {1}","field-hour":"Tund","field-sat-relative+0":"k\u00e4esolev laup\u00e4ev","field-sat-relative+1":"j\u00e4rgmine laup\u00e4ev",
"timeFormat-full":"H:mm:ss zzzz","field-day-relative+0":"t\u00e4na","field-thu-relative+0":"k\u00e4esolev neljap\u00e4ev","field-day-relative+1":"homme","field-thu-relative+1":"j\u00e4rgmine neljap\u00e4ev","dateFormatItem-GyMMMd":"d. MMM y G","dateFormatItem-Gy":"y G","dateFormatItem-yyyyMMMEd":"E, d. MMMM y G","dateFormatItem-yyyyMMM":"MMM y G","dateFormatItem-yyyyMMMd":"d. MMM y G","timeFormat-medium":"H:mm:ss","field-sun-relative+0":"k\u00e4esolev p\u00fchap\u00e4ev","field-sun-relative+1":"j\u00e4rgmine p\u00fchap\u00e4ev",
eraAbbr:["e.k."],"field-minute":"Minut","field-dayperiod":"enne/p\u00e4rast l\u00f5unat","field-day-relative+-1":"eile","dateTimeFormat-long":"{1} kell {0}","dateFormatItem-MEd":"E, d.M","dateTimeFormat-full":"{1} kell {0}","field-fri-relative+0":"k\u00e4esolev reede","field-fri-relative+1":"j\u00e4rgmine reede","field-day":"P\u00e4ev","days-format-wide":"Esmasp\u00e4ev Teisip\u00e4ev Kolmap\u00e4ev Neljap\u00e4ev Reede Laup\u00e4ev P\u00fchap\u00e4ev".split(" "),"field-zone":"Ajav\u00f6\u00f6nd",
"dateFormatItem-y":"y G","field-year-relative+-1":"eelmine aasta","field-month-relative+-1":"eelmine kuu","dateTimeFormats-appendItem-Year":"{0} {1}","dateFormatItem-yyyyMd":"dd.MM.y GGGGG","field-month":"Kuu","field-tue-relative+0":"k\u00e4esolev teisip\u00e4ev","field-tue-relative+1":"j\u00e4rgmine teisip\u00e4ev","field-mon-relative+0":"k\u00e4esolev esmap\u00e4ev","field-mon-relative+1":"j\u00e4rgmine esmasp\u00e4ev","dateFormat-short":"dd.MM.y GGGGG","field-second":"Sekund","field-sat-relative+-1":"eelmine laup\u00e4ev",
"field-sun-relative+-1":"eelmine p\u00fchap\u00e4ev","field-month-relative+0":"k\u00e4esolev kuu","field-month-relative+1":"j\u00e4rgmine kuu","dateFormatItem-Ed":"E, d","field-week":"N\u00e4dal","dateFormat-medium":"d. MMM y G","field-year-relative+0":"k\u00e4esolev aasta","field-week-relative+-1":"eelmine n\u00e4dal","dateFormatItem-yyyyM":"M.y G","field-year-relative+1":"j\u00e4rgmine aasta","dateFormatItem-yyyyQQQQ":"QQQQ y G","dateTimeFormat-short":"{1}, {0}","dateFormatItem-GyMMM":"MMM y G",
"field-mon-relative+-1":"eelmine esmasp\u00e4ev","dateFormatItem-yyyy":"y G","field-week-relative+0":"k\u00e4esolev n\u00e4dal","field-week-relative+1":"j\u00e4rgmine n\u00e4dal"}); | 252.928571 | 544 | 0.729455 |
b75e2ea6fe0f79a3cc08388989b4aad6aef5be5c | 584 | js | JavaScript | lib/cf/simple-db.js | briancsparks/aws-json | df224093d0d5018834625f7a6fa640773814a311 | [
"MIT"
] | null | null | null | lib/cf/simple-db.js | briancsparks/aws-json | df224093d0d5018834625f7a6fa640773814a311 | [
"MIT"
] | null | null | null | lib/cf/simple-db.js | briancsparks/aws-json | df224093d0d5018834625f7a6fa640773814a311 | [
"MIT"
] | null | null | null |
/**
*
*/
var _ = require('underscore');
var base = require('./cf-base');
var Base = base.Base;
// Our lib
var simpleDb = {};
/**
* simpleDb
*
*/
var SimpleDb = simpleDb.SimpleDb = function(name, cf, description) {
var self = this;
Base.call(this, cf, 'SDB::Domain', name);
self.addProperty('Description', description);
cf.data.Resources[name] = self;
};
simpleDb.makeSimpleDb = function(name, cf, description) {
return new SimpleDb(name, cf, description);
}
_.each(simpleDb, function(value, key) {
exports[key] = value;
});
| 15.783784 | 68 | 0.606164 |
b75e9e87e2823ed8aac13527f638c78b41171357 | 587 | js | JavaScript | 7-kyu/Dominant array elements/index.test.js | ayessetova/codeW | fa5479162a19b863047ea318ad728c86946a3f46 | [
"MIT"
] | 314 | 2017-12-08T16:51:31.000Z | 2022-03-30T01:59:49.000Z | 7-kyu/Dominant array elements/index.test.js | ayessetova/codeW | fa5479162a19b863047ea318ad728c86946a3f46 | [
"MIT"
] | 4 | 2018-04-27T03:54:20.000Z | 2020-12-06T20:13:40.000Z | 7-kyu/Dominant array elements/index.test.js | ayessetova/codeW | fa5479162a19b863047ea318ad728c86946a3f46 | [
"MIT"
] | 141 | 2017-12-18T18:19:13.000Z | 2022-03-29T12:16:38.000Z | const solve = require('.')
test('Test 1', () => {
expect(solve([16, 17, 14, 3, 14, 5, 2])).toEqual([17, 14, 5, 2])
})
test('Test 2', () => {
expect(solve([92, 52, 93, 31, 89, 87, 77, 105])).toEqual([105])
})
test('Test 3', () => {
expect(solve([75, 47, 42, 56, 13, 55])).toEqual([75, 56, 55])
})
test('Test 4', () => {
expect(solve([67, 54, 27, 85, 66, 88, 31, 24, 49])).toEqual([88, 49])
})
test('Test 5', () => {
expect(solve([76, 17, 25, 36, 29])).toEqual([76, 36, 29])
})
test('Test 6', () => {
expect(solve([104, 18, 37, 9, 36, 47, 28])).toEqual([104, 47, 28])
})
| 22.576923 | 71 | 0.499148 |
b75ed5b2df488b0a0bcaddc6d20d9a804ed7300f | 307 | js | JavaScript | app/routes/auth.js | lapavila/contatooh | a120cae511ef8e49909badeac2cb940e14575520 | [
"MIT"
] | null | null | null | app/routes/auth.js | lapavila/contatooh | a120cae511ef8e49909badeac2cb940e14575520 | [
"MIT"
] | null | null | null | app/routes/auth.js | lapavila/contatooh | a120cae511ef8e49909badeac2cb940e14575520 | [
"MIT"
] | null | null | null | var passport = require('passport');
module.exports = function(app) {
app.get('/auth/github', passport.authenticate('github'));
app.get('/auth/github/callback', passport.authenticate('github', {successRedirect: '/'}));
app.get('/logout', function(req, res) {
req.logout();
res.redirect('/');
});
};
| 27.909091 | 91 | 0.661238 |
b75ee9baec1544d7d1e5445ba4d336d7903a9393 | 578 | js | JavaScript | Teamworks/03.TheMovies/TheMovies/system-config.js | iliyaST/TelericAcademy | 40cec6a20b4d256a0c70060ddf8211f03930a90b | [
"MIT"
] | null | null | null | Teamworks/03.TheMovies/TheMovies/system-config.js | iliyaST/TelericAcademy | 40cec6a20b4d256a0c70060ddf8211f03930a90b | [
"MIT"
] | null | null | null | Teamworks/03.TheMovies/TheMovies/system-config.js | iliyaST/TelericAcademy | 40cec6a20b4d256a0c70060ddf8211f03930a90b | [
"MIT"
] | null | null | null | SystemJS.config({
transpiler: 'plugin-babel',
paths: {
'npm:*': './node_modules/*',
'bower:*': './bower_components/*',
},
map: {
'plugin-babel': 'npm:/systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': 'npm:/systemjs-plugin-babel/systemjs-babel-browser.js',
'main': './js/main.js',
'jquery': 'npm:/jquery/dist/jquery.js',
'templatesLoader': './js/templatesLoader.js',
'Handlebars': 'bower:/handlebars/handlebars.js',
'clothesFactory': './js/models/clothes-factory.js'
}
}); | 36.125 | 87 | 0.579585 |
b75eed39688b91947749f8a587704edafe8b49f4 | 5,103 | js | JavaScript | dist-node/0_transfer_transaction.js | hotam-singh/phaeton-transactions | b9c4c8fb69498fec509d7bb866a0dc750ffcd6f6 | [
"Apache-2.0"
] | null | null | null | dist-node/0_transfer_transaction.js | hotam-singh/phaeton-transactions | b9c4c8fb69498fec509d7bb866a0dc750ffcd6f6 | [
"Apache-2.0"
] | null | null | null | dist-node/0_transfer_transaction.js | hotam-singh/phaeton-transactions | b9c4c8fb69498fec509d7bb866a0dc750ffcd6f6 | [
"Apache-2.0"
] | null | null | null | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const BigNum = require("bignum");
const phaeton_cryptography_1 = require("phaeton-cryptography");
const base_transaction_1 = require("./base_transaction");
const constants_1 = require("./constants");
const errors_1 = require("./errors");
const utils_1 = require("./utils");
exports.transferAssetFormatSchema = {
type: 'object',
properties: {
data: {
type: 'string',
format: 'transferData',
maxLength: 64,
},
},
};
class TransferTransaction extends base_transaction_1.BaseTransaction {
constructor(rawTransaction) {
super(rawTransaction);
const tx = (typeof rawTransaction === 'object' && rawTransaction !== null
? rawTransaction
: {});
this.asset = (tx.asset || {});
}
assetToBytes() {
const { data } = this.asset;
return data ? Buffer.from(data, 'utf8') : Buffer.alloc(0);
}
async prepare(store) {
await store.account.cache([
{
address: this.senderId,
},
{
address: this.recipientId,
},
]);
}
verifyAgainstTransactions(_) {
return [];
}
validateAsset() {
utils_1.validator.validate(exports.transferAssetFormatSchema, this.asset);
const errors = errors_1.convertToAssetError(this.id, utils_1.validator.errors);
if (!utils_1.validateTransferAmount(this.amount.toString())) {
errors.push(new errors_1.TransactionError('Amount must be a valid number in string format.', this.id, '.amount', this.amount.toString()));
}
if (!this.recipientId) {
errors.push(new errors_1.TransactionError('`recipientId` must be provided.', this.id, '.recipientId'));
}
try {
utils_1.validateAddress(this.recipientId);
}
catch (error) {
errors.push(new errors_1.TransactionError(error.message, this.id, '.recipientId', this.recipientId));
}
if (this.recipientPublicKey) {
const calculatedAddress = phaeton_cryptography_1.getAddressFromPublicKey(this.recipientPublicKey);
if (this.recipientId !== calculatedAddress) {
errors.push(new errors_1.TransactionError('recipientId does not match recipientPublicKey.', this.id, '.recipientId', this.recipientId, calculatedAddress));
}
}
return errors;
}
applyAsset(store) {
const errors = [];
const sender = store.account.get(this.senderId);
const balanceError = utils_1.verifyAmountBalance(this.id, sender, this.amount, this.fee);
if (balanceError) {
errors.push(balanceError);
}
const updatedSenderBalance = new BigNum(sender.balance).sub(this.amount);
const updatedSender = Object.assign({}, sender, { balance: updatedSenderBalance.toString() });
store.account.set(updatedSender.address, updatedSender);
const recipient = store.account.getOrDefault(this.recipientId);
const updatedRecipientBalance = new BigNum(recipient.balance).add(this.amount);
if (updatedRecipientBalance.gt(constants_1.MAX_TRANSACTION_AMOUNT)) {
errors.push(new errors_1.TransactionError('Invalid amount', this.id, '.amount', this.amount.toString()));
}
const updatedRecipient = Object.assign({}, recipient, { balance: updatedRecipientBalance.toString() });
store.account.set(updatedRecipient.address, updatedRecipient);
return errors;
}
undoAsset(store) {
const errors = [];
const sender = store.account.get(this.senderId);
const updatedSenderBalance = new BigNum(sender.balance).add(this.amount);
if (updatedSenderBalance.gt(constants_1.MAX_TRANSACTION_AMOUNT)) {
errors.push(new errors_1.TransactionError('Invalid amount', this.id, '.amount', this.amount.toString()));
}
const updatedSender = Object.assign({}, sender, { balance: updatedSenderBalance.toString() });
store.account.set(updatedSender.address, updatedSender);
const recipient = store.account.getOrDefault(this.recipientId);
const balanceError = utils_1.verifyBalance(this.id, recipient, this.amount);
if (balanceError) {
errors.push(balanceError);
}
const updatedRecipientBalance = new BigNum(recipient.balance).sub(this.amount);
const updatedRecipient = Object.assign({}, recipient, { balance: updatedRecipientBalance.toString() });
store.account.set(updatedRecipient.address, updatedRecipient);
return errors;
}
assetFromSync(raw) {
if (raw.tf_data) {
const data = raw.tf_data.toString('utf8');
return { data };
}
return undefined;
}
}
TransferTransaction.TYPE = 0;
TransferTransaction.FEE = constants_1.TRANSFER_FEE.toString();
exports.TransferTransaction = TransferTransaction;
//# sourceMappingURL=0_transfer_transaction.js.map
| 43.615385 | 171 | 0.643543 |
b75f6dab08f1e3983a2a4ccf0a1084314a8e7cf6 | 13,848 | js | JavaScript | src/components/ids-list-builder/ids-list-builder.js | whernebrink/enterprise-wc | f8a3d5bfa4c8fc7a70b7f1de599fbd82b54c5a38 | [
"Apache-2.0"
] | null | null | null | src/components/ids-list-builder/ids-list-builder.js | whernebrink/enterprise-wc | f8a3d5bfa4c8fc7a70b7f1de599fbd82b54c5a38 | [
"Apache-2.0"
] | null | null | null | src/components/ids-list-builder/ids-list-builder.js | whernebrink/enterprise-wc | f8a3d5bfa4c8fc7a70b7f1de599fbd82b54c5a38 | [
"Apache-2.0"
] | null | null | null | import {
IdsElement,
customElement,
scss,
mix,
} from '../../core';
// Import Mixins
import {
IdsEventsMixin,
IdsThemeMixin
} from '../../mixins';
import styles from './ids-list-builder.scss';
import IdsListView from '../ids-list-view';
import IdsInput from '../ids-input/ids-input';
/**
* IDS ListBuilder Component
* @type {IdsListBuilder}
* @inherits IdsElement
* @mixes IdsEventsMixin
* @mixes IdsThemeMixin
*/
@customElement('ids-list-builder')
@scss(styles)
class IdsListBuilder extends mix(IdsListView).with(IdsEventsMixin, IdsThemeMixin) {
constructor() {
super();
}
// the currently selected list item
#selectedLi;
// any active editor of the selected list item
#selectedLiEditor;
// a clone of the list item being dragged -- appears during drag to help visualize where the dragged item's position
placeholder;
connectedCallback() {
this.draggable = true;
this.itemHeight = 44; // hard-coded
this.#attachEventListeners();
super.connectedCallback();
}
/**
* Return the attributes we handle as getters/setters
* @returns {Array} The attributes in an array
*/
static get attributes() {
return [
...super.attributes,
];
}
/**
* Create the Template for the contents
* @returns {string} The template
*/
template() {
return `
<div class="ids-list-builder">
<div class="header">
<ids-toolbar tabbable="true">
<ids-toolbar-section type="buttonset">
<ids-button id="button-add">
<span slot="text" class="audible">Add List Item</span>
<ids-icon slot="icon" icon="add"></ids-icon>
</ids-button>
<div class="separator"></div>
<ids-button id="button-up">
<span slot="text" class="audible">Move Up List Item</span>
<ids-icon slot="icon" icon="arrow-up"></ids-icon>
</ids-button>
<ids-button id="button-down">
<span slot="text" class="audible">Move Down List Item</span>
<ids-icon slot="icon" icon="arrow-down"></ids-icon>
</ids-button>
<div class="separator"></div>
<ids-button id="button-edit">
<span slot="text" class="audible">Edit List Item</span>
<ids-icon slot="icon" icon="edit"></ids-icon>
</ids-button>
<ids-button id="button-delete">
<span slot="text" class="audible">Delete Down List Item</span>
<ids-icon slot="icon" icon="delete"></ids-icon>
</ids-button>
</ids-toolbar-section>
</ids-toolbar>
</div>
<div class="content">
${super.template()}
</div>
<slot></slot>
</div>
`;
}
get data() {
return super.data;
}
/**
* Set the data set of the list
* @param {Array} val The list of items
*/
set data(val) {
super.data = val;
// need to reattach event listeners when new data set dynamically adds list items
this.#attachEventListeners();
}
/**
* Helper function that toggles the 'selected' attribute of an element, then focuses on that element
* @param {Element} item the item to add/remove the selected attribute
*/
#toggleSelectedAttribute(item) {
const hasSelectedAttribute = item.getAttribute('selected');
if (hasSelectedAttribute) {
item.removeAttribute('selected');
this.#selectedLi = null;
} else if (!hasSelectedAttribute) {
item.setAttribute('selected', 'selected');
this.#selectedLi = item;
}
item.focus();
}
/**
* Toggles the selected list item
* @param {*} item the selected list item to toggle
*/
#toggleSelectedLi(item) {
if (item.tagName === 'DIV' && item.getAttribute('part') === 'list-item') {
if (item !== this.#selectedLi) {
if (this.#selectedLi) {
// unselect previous item if it's selected
this.#toggleSelectedAttribute(this.#selectedLi);
}
}
this.#toggleSelectedAttribute(item);
item.focus();
}
}
/**
* Attaches all the listeners which allow for clicking, dragging, and keyboard interaction with the list items
*/
#attachEventListeners() {
this.#attachClickListeners(); // for toolbar buttons
this.#attachDragEventListeners(); // for dragging list items
this.#attachKeyboardListeners(); // for selecting/editing list items
}
/**
* Helper function for swapping nodes in the list item -- used when dragging list items or clicking the up/down arrows
* @param {Node} nodeA the first node
* @param {Node} nodeB the second node
*/
#swap(nodeA, nodeB) {
const parentA = nodeA.parentNode;
const siblingA = nodeA.nextSibling === nodeB ? nodeA : nodeA.nextSibling;
nodeB.parentNode.insertBefore(nodeA, nodeB);
parentA.insertBefore(nodeB, siblingA);
}
/**
* Helper function to check if a node is being dragged above another node
* @param {Node} nodeA the node being dragged
* @param {Node} nodeB the referred node being checked if nodeA is above
* @returns {boolean} whether or not nodeA is above nodeB
*/
#isAbove(nodeA, nodeB) {
const rectA = nodeA.getBoundingClientRect();
const rectB = nodeB.getBoundingClientRect();
const centerA = rectA.top + rectA.height / 2;
const centerB = rectB.top + rectB.height / 2;
return centerA < centerB;
}
/**
* Helper function that creates a placeholder node in place of the node being dragged
* @param {Node} node the node being dragged around to clone
* @returns {Node} a clone of the node
*/
#createPlaceholderClone(node) {
const p = node.cloneNode(true);
p.querySelector('div[part="list-item"]').classList.add('placeholder');
p.querySelector('div[part="list-item"]').removeAttribute('selected');
return p;
}
/**
* Removes and unfocuses any active list item editor after updating the list item's value
*/
#unfocusAnySelectedLiEditor() {
if (this.#selectedLiEditor) {
this.#updateSelectedLiWithEditorValue();
this.#removeSelectedLiEditor();
}
}
/**
* Helper function to update the list item inner text with the editor's input value
*/
#updateSelectedLiWithEditorValue() {
this.#selectedLi.querySelector('ids-text').innerHTML = this.#selectedLiEditor.value;
}
/**
* Helper function to remove the editor element from the DOM
*/
#removeSelectedLiEditor() {
this.#selectedLi.querySelector('ids-text').style.display = 'list-item';
this.#selectedLi.parentNode.removeAttribute('disabled');
this.#selectedLiEditor.remove();
this.#selectedLiEditor = null;
}
/**
* Helper function to insert an editor into the DOM and hide the inner text of the list item
* @param {boolean} newEntry whether or not this is an editor for a new or pre-existing list item
*/
#insertSelectedLiWithEditor(newEntry = false) {
if (this.#selectedLi) {
if (!this.#selectedLiEditor) {
const i = new IdsInput();
// insert into DOM
this.#selectedLi.insertBefore(i, this.#selectedLi.querySelector('ids-text'));
// hide inner text
this.#selectedLi.querySelector('ids-text').style.display = `none`;
// set the value of input
this.#selectedLiEditor = i;
i.value = newEntry ? 'New Value' : this.#selectedLi.querySelector('ids-text').innerHTML;
i.autoselect = 'true';
i.noMargins = 'true';
i.colorVariant = 'alternate';
i.focus();
} else {
this.#selectedLiEditor.focus();
}
}
}
/**
* Add/remove the editor in one function -- used when 'Enter' key is hit on a selected list item
*/
#toggleEditor() {
if (this.#selectedLi) {
if (!this.#selectedLiEditor) {
this.#insertSelectedLiWithEditor();
} else {
this.#unfocusAnySelectedLiEditor();
}
this.#selectedLi.focus();
}
}
/**
* Attaches functionality for toolbar button interaction
*/
#attachClickListeners() {
// Add button
this.onEvent('click', this.container.querySelector('#button-add'), () => {
this.#unfocusAnySelectedLiEditor();
const selectionNull = !this.#selectedLi;
// if an item is selected, create a node under it, otherwise create a node above the first item
const targetDraggableItem = selectionNull ? this.container.querySelector('ids-draggable') : this.#selectedLi.parentNode;
const newDraggableItem = targetDraggableItem.cloneNode(true);
const insertionLocation = selectionNull ? targetDraggableItem : targetDraggableItem.nextSibling;
targetDraggableItem.parentNode.insertBefore(newDraggableItem, insertionLocation);
this.#attachDragEventListenersForDraggable(newDraggableItem);
this.#attachKeyboardListenersForLi(newDraggableItem.querySelector('div[part="list-item"]'));
const listItem = newDraggableItem.querySelector('div[part="list-item"]');
// remove any selected attribute on li that may have propogated from the clone
listItem.getAttribute('selected') && listItem.removeAttribute('selected');
this.#toggleSelectedLi(listItem);
const newEntry = true;
this.#insertSelectedLiWithEditor(newEntry);
});
// Up button
this.onEvent('click', this.container.querySelector('#button-up'), () => {
if (this.#selectedLi) {
this.#unfocusAnySelectedLiEditor();
const prev = this.#selectedLi.parentNode.previousElementSibling;
if (prev) {
this.#swap(this.#selectedLi.parentNode, prev);
}
}
});
// Down button
this.onEvent('click', this.container.querySelector('#button-down'), () => {
if (this.#selectedLi) {
this.#unfocusAnySelectedLiEditor();
const next = this.#selectedLi.parentNode.nextElementSibling;
if (next) {
this.#swap(this.#selectedLi.parentNode, next);
}
}
});
// Edit button
this.onEvent('click', this.container.querySelector('#button-edit'), () => {
this.#insertSelectedLiWithEditor();
});
// Delete button
this.onEvent('click', this.container.querySelector('#button-delete'), () => {
if (this.#selectedLi) {
this.#selectedLi.parentNode.remove();
this.#selectedLi = null;
if (this.#selectedLiEditor) this.#selectedLiEditor = null;
}
});
}
/**
* Adds dragging functionality to all list items
*/
#attachDragEventListeners() {
this.container.querySelectorAll('ids-draggable').forEach((draggable) => {
this.#attachDragEventListenersForDraggable(draggable);
});
}
/**
* Helper function for attaching dragging functionality to a list item
* @param {Element} el the list item to add draggable functionality
*/
#attachDragEventListenersForDraggable(el) {
// Toggle selected attribute, create placeholder, edit the css at the beginning of the drag
this.onEvent('ids-dragstart', el, (event) => {
this.#unfocusAnySelectedLiEditor();
// toggle selected item
const listItem = event.target.querySelector('div[part="list-item"]');
this.#toggleSelectedLi(listItem);
// create placeholder
this.placeholder = this.#createPlaceholderClone(el);
// need this for draggable to move around
el.style.position = `absolute`;
el.style.opacity = `0.95`;
el.style.zIndex = `100`;
el.parentNode.insertBefore(
this.placeholder,
el.nextSibling
);
});
// Calculate where the dragged list item is in relation to the other list items and move the placeholder accordingly
this.onEvent('ids-drag', el, () => {
let prevEle = this.placeholder?.previousElementSibling;
let nextEle = this.placeholder?.nextElementSibling;
// skip over checking the original selected node position
if (prevEle === el) {
prevEle = prevEle.previousElementSibling;
}
// skip over checking the original selected position
if (nextEle === el) {
nextEle = nextEle.nextElementSibling;
}
if (prevEle && this.#isAbove(el, prevEle)) {
this.#swap(this.placeholder, prevEle);
return;
}
if (nextEle && this.#isAbove(nextEle, el)) {
this.#swap(nextEle, this.placeholder);
}
});
// At the end of the drag, return the css properties back to normal and remove the placeholder
this.onEvent('ids-dragend', el, () => {
el.style.removeProperty('position');
el.style.removeProperty('transform');
el.style.removeProperty('opacity');
el.style.removeProperty('z-index');
this.#swap(el, this.placeholder);
if (this.placeholder) {
this.placeholder.remove();
}
el.querySelector('div[part="list-item"]').focus();
});
}
/**
* Attach selection toggling, editing feature, and navigation focus functionality to keyboard events
*/
#attachKeyboardListeners() {
this.container.querySelectorAll('div[part="list-item"]').forEach((l) => {
this.#attachKeyboardListenersForLi(l);
});
}
#attachKeyboardListenersForLi(l) {
this.onEvent('keydown', l, (event) => {
switch (event.key) {
case 'Enter': // edits the list item
this.#toggleEditor();
break;
case ' ': // selects the list item
if (!this.#selectedLiEditor) {
event.preventDefault(); // prevent container from scrolling
this.#toggleSelectedLi(l);
}
break;
case 'Tab':
this.#unfocusAnySelectedLiEditor();
break;
default:
break;
}
});
}
}
export default IdsListBuilder;
| 31.401361 | 126 | 0.629261 |
b760032ec1fcb44ad7408650cde6c77f0db4b824 | 453 | js | JavaScript | Samples/MasterPortal/js/timeago/locales/jquery.timeago.sr-Latn.js | hhnguyen/xRM-Portals-Community-Edition | d3b5ba1f6884d091acf5114bba08ef9b4f96ab1f | [
"MIT"
] | 117 | 2017-08-25T18:43:42.000Z | 2022-01-19T18:36:21.000Z | Samples/MasterPortal/js/timeago/locales/jquery.timeago.sr-Latn.js | hhnguyen/xRM-Portals-Community-Edition | d3b5ba1f6884d091acf5114bba08ef9b4f96ab1f | [
"MIT"
] | 113 | 2017-08-28T20:35:30.000Z | 2020-12-15T00:25:15.000Z | Samples/MasterPortal/js/timeago/locales/jquery.timeago.sr-Latn.js | hhnguyen/xRM-Portals-Community-Edition | d3b5ba1f6884d091acf5114bba08ef9b4f96ab1f | [
"MIT"
] | 72 | 2017-08-25T20:00:48.000Z | 2022-02-27T17:20:17.000Z | // English (Template)
jQuery.timeago.settings.strings = {
prefixAgo: null,
prefixFromNow: null,
suffixAgo: "pre",
suffixFromNow: "od sada",
seconds: "manje od minuta",
minute: "oko minut",
minutes: "%d minuta",
hour: "oko sat vremena",
hours: "oko %d sata/i",
day: "dan",
days: "%d dana",
month: "oko mesec dana",
months: "%d meseca/i",
year: "oko godinu dana",
years: "%d godine/a",
wordSeparator: " ",
numbers: []
};
| 21.571429 | 35 | 0.615894 |
b76038639e77c009ec11f506ddcf686045986216 | 391 | js | JavaScript | frontend/web/js/pageagent/admindex.js | tianzhicun/pageagent | b25471451c18439b98a0e28e282662ea50a5e829 | [
"BSD-3-Clause"
] | null | null | null | frontend/web/js/pageagent/admindex.js | tianzhicun/pageagent | b25471451c18439b98a0e28e282662ea50a5e829 | [
"BSD-3-Clause"
] | 1 | 2017-02-09T02:48:16.000Z | 2017-02-09T02:48:16.000Z | frontend/web/js/pageagent/admindex.js | tianzhicun/pageagent | b25471451c18439b98a0e28e282662ea50a5e829 | [
"BSD-3-Clause"
] | null | null | null | $(document).ready(function () {
var vue = new Vue({
el: '#info',
data: {
proinfo:[],
message: 'Hello Vue!',
},
});
var options = {};
//console.log(API);
API.pageagent.getprolist(options,function(data){
vue.proinfo = data.data.list;
console.log(data.data.list);
//console.log(vue.proinfo);
});
});
| 21.722222 | 52 | 0.493606 |
b760e3738837fc14a62d4f0f1f572c488d2f260f | 1,347 | js | JavaScript | mongodb.js | KarlssonIvan/task-manager | 866f3493cb5a00fbdbf4b422668e550c84d2d156 | [
"MIT"
] | null | null | null | mongodb.js | KarlssonIvan/task-manager | 866f3493cb5a00fbdbf4b422668e550c84d2d156 | [
"MIT"
] | 1 | 2022-03-26T03:48:16.000Z | 2022-03-26T03:48:16.000Z | mongodb.js | KarlssonIvan/task-manager | 866f3493cb5a00fbdbf4b422668e550c84d2d156 | [
"MIT"
] | null | null | null | const mongodb = require('mongodb')
const {MongoClient, ObjectID} = mongodb
const connectionUrl = 'mongodb://127.0.0.1:27017'
const database = 'task-manager'
MongoClient.connect(connectionUrl, {useNewUrlParser: true}, (error, client) => {
if (error) {
return console.log(`unable to connect to database due to ${error}`)
}
const db = client.db(database)
// const updatePromise = db.collection('users').updateOne({
// '_id': new ObjectID("5e231572fabace0912e0ccb7")
// }, {
// $set: {
// name: 'Karlsson'
// }
// })
// const updatePromise = db.collection('users').updateOne({
// '_id': new ObjectID("5e231572fabace0912e0ccb7")
// }, {
// $inc: {
// age: 3
// }
// })
const updatePromise = db.collection('tasks').updateMany({
'completed': false
}, {
$set: {
completed: true
}
})
updatePromise.then((result) => {
console.log(result.modifiedCount)
}).catch((error) => {
console.log({error})
})
const deletePromise = db.collection('tasks').deleteOne({
descriptiom: 'task one'
})
deletePromise.then((result) => {
console.log(result.deletedCount)
}).catch((error) => {
console.log({ error })
})
}) | 28.659574 | 80 | 0.545657 |
b76316d5527441f4a752fa4f864af15bff96a8e4 | 626,635 | js | JavaScript | 2021/readData.js | shumez/election | c1aa6eea3d4b64c1f2d1c721f934e73b8cba9b6b | [
"MIT"
] | null | null | null | 2021/readData.js | shumez/election | c1aa6eea3d4b64c1f2d1c721f934e73b8cba9b6b | [
"MIT"
] | null | null | null | 2021/readData.js | shumez/election | c1aa6eea3d4b64c1f2d1c721f934e73b8cba9b6b | [
"MIT"
] | null | null | null | /*
* Filename: readData.js
* Project: ~/Developer/election/2021
* Authors: shumez <https://github.com/shumez>
* Created: 2021-10-23 18:03:45
* Modified: 2021-10-23 18:04:09
* Hosted: shuBookPro.local
* -----
* Copyright (c) 2021 shumez
*/
function myFunction() {
var dat1 = {
"Update":"10月22日更新",
"Update_Seito":"",
"Setsumei":"<strong>〈朝日・東大谷口研究室共同調査〉</strong>朝日新聞と東京大学大学院法学政治学研究科の蒲島郁夫名誉教授(2005年調査まで。現熊本県知事)、谷口将紀教授の研究室は03年以降、国政選挙の候補者を対象に、様々な政策への考え方を聞く共同調査を実施してきた。有権者を対象にした調査も行い、当選者との比較もしている。<br><br><strong>〈候補者アンケート〉</strong>今回は、衆院議員の任期が近づいた9月2日から立候補予定者を対象に質問票の配布を始め、10月19日までに候補者1051人のうち、974人から回答を得た(回答率92.67%)。分析は、東大・谷口研究室では淺野良成、大森翔子、高宮秀典、原文聖の各氏と金子智樹東北大准教授が、朝日新聞側は安倍龍太郎、菅原普、井上昇、山下剛が担当した。","Oshirase":[{"DATE":"10/22","TXT":"候補者陣営から誤記入との申し入れがあったため、山梨2区・大久保令子氏の回答の一部を修正しました"}],"Answer_Txt":{"YN":["0","賛成","どちらかと言えば賛成","どちらとも言えない","どちらかと言えば反対","反対","無回答"],"AB":["0","Aに近い","どちらかと言えばAに近い","どちらとも言えない","どちらかと言えばBに近い","Bに近い","無回答"],"HITSUYO":["0","必要がある","どちらかと言えば必要がある","どちらとも言えない","どちらかと言えば必要はない","必要はない","無回答"],"Q2":["0","検査体制の拡充","治療体制の拡充","治療薬やワクチンの開発・確保","給付金や助成金の拡充","消費税の減税","IT 環境の整備","水際対策の強化","外出自粛や休業に強制力を持たせる法整備"]},"Question":[{"Q":"Q6_1","VIEW":"www","TYPE":"YN","GENRE":"外交・安全保障","TITLE":"防衛力強化","HTML":"<p>日本の防衛力はもっと強化すべきだ</p>"},{"Q":"Q6_2","VIEW":"digital","TYPE":"YN","GENRE":"外交・安全保障","TITLE":"敵基地攻撃","HTML":"<p>他国からの攻撃が予想される場合には<br>敵基地攻撃もためらうべきではない</p>"},{"Q":"Q6_3","VIEW":"digital","TYPE":"YN","GENRE":"外交・安全保障","TITLE":"対北朝鮮","HTML":"<p>北朝鮮には対話よりも圧力を優先すべきだ</p>"},{"Q":"Q6_4","VIEW":"digital","TYPE":"YN","GENRE":"外交・安全保障","TITLE":"非核三原則","HTML":"<p>非核三原則を堅持すべきだ</p>"},{"Q":"Q6_5","VIEW":"digital","TYPE":"YN","GENRE":"外交・安全保障","TITLE":"辺野古移設","HTML":"<p>沖縄県の普天間基地の<br>辺野古移設はやむをえない</p>"},{"Q":"Q7_1","VIEW":"digital","TYPE":"AB","GENRE":"外交・安全保障","TITLE":"日米安保体制","HTML":"<p class=\'a\'><span>危機のときのアメリカによる協力を確実にするため、日米安保体制をもっと強化すべきだ</span></p><p class=\'b\'><span>日本と関係ない戦争に巻き込まれないように、日米安保体制の強化には慎重であるべきだ</span></p>"},{"Q":"Q7_2","VIEW":"digital","TYPE":"AB","GENRE":"外交・安全保障","TITLE":"対中国","HTML":"<p class=\'a\'><span>日本にとって中国は脅威である</span></p><p class=\'b\'><span>日本にとって中国はパートナーである</span></p>"},{"Q":"Q6_6","VIEW":"digital","TYPE":"YN","GENRE":"経済・財政","TITLE":"政府の規模","HTML":"<p>社会福祉など政府のサービスが悪くなっても、<br>お金のかからない小さな政府の方が良い</p>"},{"Q":"Q6_7","VIEW":"digital","TYPE":"YN","GENRE":"経済・財政","TITLE":"公共事業","HTML":"<p>公共事業による雇用確保は必要だ</p>"},{"Q":"Q6_8","VIEW":"digital","TYPE":"YN","GENRE":"経済・財政","TITLE":"財政出動","HTML":"<p>当面は財政再建のために歳出を抑えるのではなく、<br>景気対策のために財政出動を行うべきだ</p>"},{"Q":"Q6_9","VIEW":"digital","TYPE":"YN","GENRE":"経済・財政","TITLE":"消費税率","HTML":"<p>時限的又は恒久的に消費税率を引き下げるべきだ</p>"},{"Q":"Q6_10","VIEW":"digital","TYPE":"YN","GENRE":"経済・財政","TITLE":"裕福層への課税","HTML":"<p>所得や資産の多い人に対する課税を強化すべきだ</p>"},{"Q":"Q6_11","VIEW":"digital","TYPE":"YN","GENRE":"経済・財政","TITLE":"法人税率","HTML":"<p>企業が納めている法人税率を引き上げるべきだ</p>"},{"Q":"Q7_3","VIEW":"digital","TYPE":"AB","GENRE":"経済・財政","TITLE":"格差是正","HTML":"<p class=\'a\'><span>社会的格差が多少あっても、いまは経済競争力の向上を優先すべきだ</span></p><p class=\'b\'><span>経済競争力を多少犠牲にしても、いまは社会的格差の是正を優先すべきだ</span></p>"},{"Q":"Q7_4","VIEW":"digital","TYPE":"AB","GENRE":"経済・財政","TITLE":"貿易","HTML":"<p class=\'a\'><span>国内産業を保護すべきだ</span></p><p class=\'b\'><span>貿易や投資の自由化を進めるべきだ</span></p>"},{"Q":"Q7_6","VIEW":"digital","TYPE":"AB","GENRE":"経済・財政","TITLE":"財政赤字","HTML":"<p class=\'a\'><span>国債は安定的に消化されており、財政赤字を心配する必要はない</span></p><p class=\'b\'><span>財政赤字は危機的水準であるので、国債発行を抑制すべきだ</span></p>"},{"Q":"Q8","VIEW":"digital","TYPE":"HITSUYO","GENRE":"社会の課題","TITLE":"憲法改正","HTML":"<p>あなたはいまの憲法を変える必要があると思いますか、<br>それとも変える必要はないと思いますか</p>"},{"Q":"Q6_12","VIEW":"digital","TYPE":"YN","GENRE":"社会の課題","TITLE":"外国人労働者","HTML":"<p>外国人労働者の受け入れを進めるべきだ</p>"},{"Q":"Q6_13","VIEW":"digital","TYPE":"YN","GENRE":"社会の課題","TITLE":"治安か人権か","HTML":"<p>治安を守るためにプライバシーや<br>個人の権利が制約されるのは当然だ</p>"},{"Q":"Q6_14","VIEW":"digital","TYPE":"YN","GENRE":"社会の課題","TITLE":"処理水の海洋放出","HTML":"<p>福島第一原発の処理水の海洋放出はやむをえない</p>"},{"Q":"Q6_15","VIEW":"digital","TYPE":"YN","GENRE":"社会の課題","TITLE":"夫婦別姓","HTML":"<p>夫婦が望む場合には、結婚後も夫婦がそれぞれ<br>結婚前の名字を称することを、法律で認めるべきだ</p>"},{"Q":"Q6_16","VIEW":"digital","TYPE":"YN","GENRE":"社会の課題","TITLE":"同性婚","HTML":"<p>男性同士、女性同士の結婚を法律で認めるべきだ</p>"},{"Q":"Q6_17","VIEW":"digital","TYPE":"YN","GENRE":"社会の課題","TITLE":"性的少数者","HTML":"<p>LGBTなど性的少数者をめぐる<br>『理解増進』法案を早期に成立させるべきだ</p>"},{"Q":"Q7_5","VIEW":"digital","TYPE":"AB","GENRE":"社会の課題","TITLE":"原発ゼロか存続か","HTML":"<p class=\'a\'><span>いますぐ原子力発電を廃止すべきだ</span></p><p class=\'b\'><span>将来も原子力発電は電力源のひとつとして保つべきだ</span></p>"},{"Q":"Q7_7","VIEW":"digital","TYPE":"AB","GENRE":"社会の課題","TITLE":"参院選の合区","HTML":"<p class=\'a\'><span>一票の格差是正のためにも、参議院選挙区の「合区」は許容されるべきだ</span></p><p class=\'b\'><span>参議院選挙区の「合区」を解消するためにも、一定範囲内の一票の格差は許容されるべきだ</span></p>"}],"PartyData":[{"name":"","class":"","longName":"未選択","no":0},{"name":"自民","class":"yoto","longName":"自由民主党","no":1},{"name":"立憲","class":"yato","longName":"立憲民主党","no":2},{"name":"公明","class":"yoto2","longName":"公明党","no":3},{"name":"共産","class":"yato","longName":"日本共産党","no":4},{"name":"維新","class":"yato2","longName":"日本維新の会","no":5},{"name":"国民","class":"yato","longName":"国民民主党","no":6},{"name":"れいわ","class":"yato","longName":"れいわ新選組","no":10},{"name":"社民","class":"yato","longName":"社会民主党","no":7},{"name":"N党","class":"yato2","longName":"NHKと裁判してる党弁護士法72条違反で","no":9},{"name":"諸派","class":"shoha","longName":"諸派","no":11},{"name":"無所","class":"shoha","longName":"無所属","no":12}],"PrefStr":["0","北海道","青森","岩手","宮城","秋田","山形","福島","茨城","栃木","群馬","埼玉","千葉","東京","神奈川","新潟","富山","石川","福井","山梨","長野","岐阜","静岡","愛知","三重","滋賀","京都","大阪","兵庫","奈良","和歌山","鳥取","島根","岡山","広島","山口","徳島","香川","愛媛","高知","福岡","佐賀","長崎","熊本","大分","宮崎","鹿児島","沖縄","48","49","50","北海道","東北","北関東","南関東","東京","北陸信越","東海","近畿","中国","四国","九州"],"CodeHenkan":[{"CODE":"A01","NAME":"北海道","NUM":1},{"CODE":"A02","NAME":"青森","NUM":2},{"CODE":"A03","NAME":"岩手","NUM":3},{"CODE":"A04","NAME":"宮城","NUM":4},{"CODE":"A05","NAME":"秋田","NUM":5},{"CODE":"A06","NAME":"山形","NUM":6},{"CODE":"A07","NAME":"福島","NUM":7},{"CODE":"A08","NAME":"茨城","NUM":8},{"CODE":"A09","NAME":"栃木","NUM":9},{"CODE":"A10","NAME":"群馬","NUM":10},{"CODE":"A11","NAME":"埼玉","NUM":11},{"CODE":"A12","NAME":"千葉","NUM":12},{"CODE":"A13","NAME":"東京","NUM":13},{"CODE":"A14","NAME":"神奈川","NUM":14},{"CODE":"A15","NAME":"新潟","NUM":15},{"CODE":"A16","NAME":"富山","NUM":16},{"CODE":"A17","NAME":"石川","NUM":17},{"CODE":"A18","NAME":"福井","NUM":18},{"CODE":"A19","NAME":"山梨","NUM":19},{"CODE":"A20","NAME":"長野","NUM":20},{"CODE":"A21","NAME":"岐阜","NUM":21},{"CODE":"A22","NAME":"静岡","NUM":22},{"CODE":"A23","NAME":"愛知","NUM":23},{"CODE":"A24","NAME":"三重","NUM":24},{"CODE":"A25","NAME":"滋賀","NUM":25},{"CODE":"A26","NAME":"京都","NUM":26},{"CODE":"A27","NAME":"大阪","NUM":27},{"CODE":"A28","NAME":"兵庫","NUM":28},{"CODE":"A29","NAME":"奈良","NUM":29},{"CODE":"A30","NAME":"和歌山","NUM":30},{"CODE":"A31","NAME":"鳥取","NUM":31},{"CODE":"A32","NAME":"島根","NUM":32},{"CODE":"A33","NAME":"岡山","NUM":33},{"CODE":"A34","NAME":"広島","NUM":34},{"CODE":"A35","NAME":"山口","NUM":35},{"CODE":"A36","NAME":"徳島","NUM":36},{"CODE":"A37","NAME":"香川","NUM":37},{"CODE":"A38","NAME":"愛媛","NUM":38},{"CODE":"A39","NAME":"高知","NUM":39},{"CODE":"A40","NAME":"福岡","NUM":40},{"CODE":"A41","NAME":"佐賀","NUM":41},{"CODE":"A42","NAME":"長崎","NUM":42},{"CODE":"A43","NAME":"熊本","NUM":43},{"CODE":"A44","NAME":"大分","NUM":44},{"CODE":"A45","NAME":"宮崎","NUM":45},{"CODE":"A46","NAME":"鹿児島","NUM":46},{"CODE":"A47","NAME":"沖縄","NUM":47},{"CODE":"O01","NAME":"北海道","NUM":51},{"CODE":"O02","NAME":"東北","NUM":52},{"CODE":"O03","NAME":"北関東","NUM":53},{"CODE":"O04","NAME":"南関東","NUM":54},{"CODE":"O05","NAME":"東京","NUM":55},{"CODE":"O06","NAME":"北陸信越","NUM":56},{"CODE":"O07","NAME":"東海","NUM":57},{"CODE":"O08","NAME":"近畿","NUM":58},{"CODE":"O09","NAME":"中国","NUM":59},{"CODE":"O10","NAME":"四国","NUM":60},{"CODE":"O11","NAME":"九州","NUM":61}]};
var dat2 = [{"ID":"00002KAE","NAME":"小林 悟","PREFEC":1,"DISTRICT":1,"PARTY":5,"PIC":"P_20211018SNSA0003S","KANA":"こばやし さとる","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":4,"Q6_4":3,"Q6_5":2,"Q6_6":2,"Q6_7":3,"Q6_8":3,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000FJJ","NAME":"道下 大樹","PREFEC":1,"DISTRICT":1,"PARTY":2,"PIC":"P_20210910SNSA0006S","KANA":"みちした だいき","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1J6","NAME":"船橋 利実","PREFEC":1,"DISTRICT":1,"PARTY":1,"PIC":"P_20210921SNSA0011S","KANA":"ふなはし としみつ","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWQ","NAME":"高橋 祐介","PREFEC":1,"DISTRICT":2,"PARTY":1,"PIC":"P_20211011SNSA0018S","KANA":"たかはし ゆうすけ","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ04J","NAME":"松木 謙公","PREFEC":1,"DISTRICT":2,"PARTY":2,"PIC":"P_20211015SNSA0021S","KANA":"まつき けんこう","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":4,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ5Y9","NAME":"山崎 泉","PREFEC":1,"DISTRICT":2,"PARTY":5,"PIC":"P_20211015SNSA0039S","KANA":"やまざき いずみ","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NHO","NAME":"高木 宏寿","PREFEC":1,"DISTRICT":3,"PARTY":1,"PIC":"P_20210804SNSA0004S","KANA":"たかぎ ひろひさ","AGE":61,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KXD","NAME":"荒井 優","PREFEC":1,"DISTRICT":3,"PARTY":2,"PIC":"P_20210804SNSA0003S","KANA":"あらい ゆたか","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":4,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O4N","NAME":"小和田 康文","PREFEC":1,"DISTRICT":3,"PARTY":5,"PIC":"P_20210818SNSA0001S","KANA":"こわだ やすふみ","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":3,"Q6_3":4,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LCN","NAME":"大築 紅葉","PREFEC":1,"DISTRICT":4,"PARTY":2,"PIC":"P_20210924SNSA0004S","KANA":"おおつき くれは","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1KM","NAME":"中村 裕之","PREFEC":1,"DISTRICT":4,"PARTY":1,"PIC":"P_20210824SNSA0007S","KANA":"なかむら ひろゆき","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":7,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":4,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001PQU","NAME":"大津 伸太郎","PREFEC":1,"DISTRICT":5,"PARTY":12,"PIC":"P_20211007SNSA0050S","KANA":"おおつ しんたろう","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":7,"Q2_3":2,"Q6_1":4,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000020UP","NAME":"和田 義明","PREFEC":1,"DISTRICT":5,"PARTY":1,"PIC":"P_20200914SNSA0006S","KANA":"わだ よしあき","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":4,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001U0J","NAME":"橋本 美香","PREFEC":1,"DISTRICT":5,"PARTY":4,"PIC":"P_20200917SNSA0003S","KANA":"はしもと みか","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RSH","NAME":"池田 真紀","PREFEC":1,"DISTRICT":5,"PARTY":2,"PIC":"P_20200928SNSA0003S","KANA":"いけだ まき","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KA6","NAME":"斉藤 忠行","PREFEC":1,"DISTRICT":6,"PARTY":9,"PIC":"P_20210730SNSA0018S","KANA":"さいとう ただゆき","AGE":30,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00000CJR","NAME":"西川 将人","PREFEC":1,"DISTRICT":6,"PARTY":2,"PIC":"P_20210803SNSA0003S","KANA":"にしかわ まさひと","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":3,"Q2_3":2,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000MIK","NAME":"東 国幹","PREFEC":1,"DISTRICT":6,"PARTY":1,"PIC":"P_20201001SNSA0007S","KANA":"あずま くによし","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":99,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000002V3","NAME":"伊東 良孝","PREFEC":1,"DISTRICT":7,"PARTY":1,"PIC":"P_20201105SNSA0004S","KANA":"いとう よしたか","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002IRF","NAME":"篠田 奈保子","PREFEC":1,"DISTRICT":7,"PARTY":2,"PIC":"P_20211011SNSA0015S","KANA":"しのだ なおこ","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000NNH","NAME":"石川 明美","PREFEC":1,"DISTRICT":7,"PARTY":4,"PIC":"P_20200917SNSA0005S","KANA":"いしかわ あけみ","AGE":70,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004R9","NAME":"逢坂 誠二","PREFEC":1,"DISTRICT":8,"PARTY":2,"PIC":"P_20210727SNSA0024S","KANA":"おおさか せいじ","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ048","NAME":"前田 一男","PREFEC":1,"DISTRICT":8,"PARTY":1,"PIC":"P_20210727SNSA0027S","KANA":"まえだ かずお","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000019ZU","NAME":"山岡 達丸","PREFEC":1,"DISTRICT":9,"PARTY":2,"PIC":"P_20200919SNSA0007S","KANA":"やまおか たつまる","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":3,"Q7_6":3,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000ZFM","NAME":"堀井 学","PREFEC":1,"DISTRICT":9,"PARTY":1,"PIC":"P_20200912SNSA0002S","KANA":"ほりい まなぶ","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":5,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RQS","NAME":"神谷 裕","PREFEC":1,"DISTRICT":10,"PARTY":2,"PIC":"P_20210730SNSA0046S","KANA":"かみや ひろし","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1KU","NAME":"稲津 久","PREFEC":1,"DISTRICT":10,"PARTY":3,"PIC":"P_20210730SNSA0044S","KANA":"いなつ ひさし","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000272S","NAME":"石川 香織","PREFEC":1,"DISTRICT":11,"PARTY":2,"PIC":"P_20210903SNSA0008S","KANA":"いしかわ かおり","AGE":37,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NHR","NAME":"中川 郁子","PREFEC":1,"DISTRICT":11,"PARTY":1,"PIC":"P_20211007SNSA0015S","KANA":"なかがわ ゆうこ","AGE":62,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":4,"Q6_16":5,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001TS8","NAME":"川原田 英世","PREFEC":1,"DISTRICT":12,"PARTY":2,"PIC":"P_20210920SNSA0001S","KANA":"かわはらだ えいせい","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NTG","NAME":"武部 新","PREFEC":1,"DISTRICT":12,"PARTY":1,"PIC":"P_20201005SNSA0007S","KANA":"たけべ あらた","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000044X","NAME":"菅原 誠","PREFEC":1,"DISTRICT":12,"PARTY":4,"PIC":"P_20210909SNSA0012S","KANA":"すがわら まこと","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ04U","NAME":"江渡 聡徳","PREFEC":2,"DISTRICT":1,"PARTY":1,"PIC":"P_20210717SNSA0002S","KANA":"えと あきのり","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ1NF","NAME":"升田 世喜男","PREFEC":2,"DISTRICT":1,"PARTY":2,"PIC":"P_20210727SNSA0007S","KANA":"ますた せきお","AGE":64,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001NTM","NAME":"斎藤 美緒","PREFEC":2,"DISTRICT":1,"PARTY":4,"PIC":"P_20210727SNSA0044S","KANA":"さいとう みお","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L57","NAME":"神田 潤一","PREFEC":2,"DISTRICT":2,"PARTY":1,"PIC":"P_20210903SNSA0010S","KANA":"かんだ じゅんいち","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":7,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":4,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KWP","NAME":"高畑 紀子","PREFEC":2,"DISTRICT":2,"PARTY":2,"PIC":"P_20210729SNSA0022S","KANA":"たかはた のりこ","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002KW6","NAME":"田端 深雪","PREFEC":2,"DISTRICT":2,"PARTY":4,"PIC":"P_20210727SNSA0048S","KANA":"たばた みゆき","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1M2","NAME":"山内 崇","PREFEC":2,"DISTRICT":3,"PARTY":2,"PIC":"P_20210727SNSA0049S","KANA":"やまうち たかし","AGE":66,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000270I","NAME":"木村 次郎","PREFEC":2,"DISTRICT":3,"PARTY":1,"PIC":"P_20210910SNSA0015S","KANA":"きむら じろう","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":4,"Q7_5":5,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000015WT","NAME":"吉田 恭子","PREFEC":3,"DISTRICT":1,"PARTY":4,"PIC":"P_20210921SNSA0022S","KANA":"よしだ きょうこ","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000011SA","NAME":"階 猛","PREFEC":3,"DISTRICT":1,"PARTY":2,"PIC":"P_20210917SNSA0012S","KANA":"しな たけし","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":4,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ6HP","NAME":"高橋 比奈子","PREFEC":3,"DISTRICT":1,"PARTY":1,"PIC":"P_20210921SNSA0023S","KANA":"たかはし ひなこ","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001YEE","NAME":"大林 正英","PREFEC":3,"DISTRICT":2,"PARTY":2,"PIC":"P_20210918SNSA0002S","KANA":"おおばやし まさひで","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":5,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LFR","NAME":"荒川 順子","PREFEC":3,"DISTRICT":2,"PARTY":9,"PIC":"P_20211004SNSA0028S","KANA":"あらかわ じゅんこ","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ056","NAME":"鈴木 俊一","PREFEC":3,"DISTRICT":2,"PARTY":1,"PIC":"P_20211005SNSA0003S","KANA":"すずき しゅんいち","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NFX","NAME":"藤原 崇","PREFEC":3,"DISTRICT":3,"PARTY":1,"PIC":"P_20210807SNSA0001S","KANA":"ふじわら たかし","AGE":38,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":6,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ05A","NAME":"小沢 一郎","PREFEC":3,"DISTRICT":3,"PARTY":2,"PIC":"P_20211017SNSA0010S","KANA":"おざわ いちろう","AGE":79,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":4,"Q7_5":1,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ5EY","NAME":"岡本 章子","PREFEC":4,"DISTRICT":1,"PARTY":2,"PIC":"P_20210728SNSA0020S","KANA":"おかもと あきこ","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LI0","NAME":"春藤 沙弥香","PREFEC":4,"DISTRICT":1,"PARTY":5,"PIC":"P_20211007SNSA0004S","KANA":"しゅんどう さやか","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ05G","NAME":"土井 亨","PREFEC":4,"DISTRICT":1,"PARTY":1,"PIC":"P_20210728SNSA0018S","KANA":"どい とおる","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002GR9","NAME":"大草 芳江","PREFEC":4,"DISTRICT":1,"PARTY":12,"PIC":"P_20211016SNSA0006S","KANA":"おおくさ よしえ","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":99,"Q2_3":99,"Q6_1":2,"Q6_2":5,"Q6_3":1,"Q6_4":1,"Q6_5":3,"Q6_6":1,"Q6_7":4,"Q6_8":3,"Q6_9":3,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ05I","NAME":"鎌田 さゆり","PREFEC":4,"DISTRICT":2,"PARTY":2,"PIC":"P_20210728SNSA0027S","KANA":"かまた さゆり","AGE":56,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1QV","NAME":"秋葉 賢也","PREFEC":4,"DISTRICT":2,"PARTY":1,"PIC":"P_20211005SNSA0029S","KANA":"あきば けんや","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LI1","NAME":"林 マリアゆき","PREFEC":4,"DISTRICT":2,"PARTY":9,"PIC":"P_20211007SNSA0006S","KANA":"はやし まりあゆき","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":4,"Q6_13":1,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"00002KWY","NAME":"大野 園子","PREFEC":4,"DISTRICT":3,"PARTY":2,"PIC":"P_20210730SNSA0042S","KANA":"おおの そのこ","AGE":33,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ05O","NAME":"西村 明宏","PREFEC":4,"DISTRICT":3,"PARTY":1,"PIC":"P_20210728SNSA0037S","KANA":"にしむら あきひろ","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LNQ","NAME":"浅田 晃司","PREFEC":4,"DISTRICT":3,"PARTY":12,"PIC":"P_20211015SNSA0013S","KANA":"あさだ こうじ","AGE":74,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":5,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ05S","NAME":"伊藤 信太郎","PREFEC":4,"DISTRICT":4,"PARTY":1,"PIC":"P_20210805SNSA0007S","KANA":"いとう しんたろう","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ5EX","NAME":"舩山 由美","PREFEC":4,"DISTRICT":4,"PARTY":4,"PIC":"P_20210903SNSA0007S","KANA":"ふなやま ゆみ","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001DZE","NAME":"早坂 敦","PREFEC":4,"DISTRICT":4,"PARTY":5,"PIC":"P_20211007SNSA0005S","KANA":"はやさか あつし","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ05V","NAME":"安住 淳","PREFEC":4,"DISTRICT":5,"PARTY":2,"PIC":"P_20210916SNSA0028S","KANA":"あずみ じゅん","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":1,"Q6_12":1,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KWO","NAME":"森下 千里","PREFEC":4,"DISTRICT":5,"PARTY":1,"PIC":"P_20210729SNSA0016S","KANA":"もりした ちさと","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":5,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ05W","NAME":"小野寺 五典","PREFEC":4,"DISTRICT":6,"PARTY":1,"PIC":"P_20210728SNSA0028S","KANA":"おのでら いつのり","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001GPI","NAME":"内藤 隆司","PREFEC":4,"DISTRICT":6,"PARTY":4,"PIC":"P_20211013SNSA0007S","KANA":"ないとう たかじ","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1T0","NAME":"冨樫 博之","PREFEC":5,"DISTRICT":1,"PARTY":1,"PIC":"P_20211004SNSA0032S","KANA":"とがし ひろゆき","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"ZZZZZ05Y","NAME":"寺田 学","PREFEC":5,"DISTRICT":1,"PARTY":2,"PIC":"P_20210913SNSA0017S","KANA":"てらた まなぶ","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0WQ","NAME":"金田 勝年","PREFEC":5,"DISTRICT":2,"PARTY":1,"PIC":"P_20211015SNSA0035S","KANA":"かねだ かつとし","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RLJ","NAME":"緑川 貴士","PREFEC":5,"DISTRICT":2,"PARTY":2,"PIC":"P_20210913SNSA0018S","KANA":"みどりかわ たかし","AGE":36,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L66","NAME":"杉山 彰","PREFEC":5,"DISTRICT":3,"PARTY":4,"PIC":"P_20211011SNSA0030S","KANA":"すぎやま あきら","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ065","NAME":"御法川 信英","PREFEC":5,"DISTRICT":3,"PARTY":1,"PIC":"P_20211011SNSA0031S","KANA":"みのりかわ のぶひで","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RSG","NAME":"原田 和広","PREFEC":6,"DISTRICT":1,"PARTY":2,"PIC":"P_20210720SNSA0010S","KANA":"はらだ まさひろ","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":7,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":1,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ069","NAME":"遠藤 利明","PREFEC":6,"DISTRICT":1,"PARTY":1,"PIC":"P_20211008SNSA0004S","KANA":"えんどう としあき","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MOG","NAME":"鈴木 憲和","PREFEC":6,"DISTRICT":2,"PARTY":1,"PIC":"P_20201005SNSA0014S","KANA":"すずき のりかず","AGE":39,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L35","NAME":"加藤 健一","PREFEC":6,"DISTRICT":2,"PARTY":6,"PIC":"P_20210901SNSA0008S","KANA":"かとう けんいち","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":1,"Q2_3":2,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LG1","NAME":"梅木 威","PREFEC":6,"DISTRICT":3,"PARTY":4,"PIC":"P_20211016SNSA0007S","KANA":"うめき たけし","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027A1","NAME":"阿部 ひとみ","PREFEC":6,"DISTRICT":3,"PARTY":12,"PIC":"P_20210923SNSA0003S","KANA":"あべ ひとみ","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":7,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RKR","NAME":"加藤 鮎子","PREFEC":6,"DISTRICT":3,"PARTY":1,"PIC":"P_20210717SNSA0001S","KANA":"かとう あゆこ","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":5,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":3,"Q6_16":99,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":5,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000011SM","NAME":"金子 恵美","PREFEC":7,"DISTRICT":1,"PARTY":2,"PIC":"P_20210811SNSA0002S","KANA":"かねこ えみ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ06L","NAME":"亀岡 偉民","PREFEC":7,"DISTRICT":1,"PARTY":1,"PIC":"P_20210908SNSA0002S","KANA":"かめおか よしたみ","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWR","NAME":"馬場 雄基","PREFEC":7,"DISTRICT":2,"PARTY":2,"PIC":"P_20210730SNSA0004S","KANA":"ばば ゆうき","AGE":29,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ06S","NAME":"根本 匠","PREFEC":7,"DISTRICT":2,"PARTY":1,"PIC":"P_20210830SNSA0006S","KANA":"ねもと たくみ","AGE":70,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":5,"Q6_11":5,"Q6_12":4,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O3T","NAME":"上杉 謙太郎","PREFEC":7,"DISTRICT":3,"PARTY":1,"PIC":"P_20210830SNSA0007S","KANA":"うえすぎ けんたろう","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ06U","NAME":"玄葉 光一郎","PREFEC":7,"DISTRICT":3,"PARTY":2,"PIC":"P_20211016SNSA0015S","KANA":"げんば こういちろう","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"000019U4","NAME":"小熊 慎司","PREFEC":7,"DISTRICT":4,"PARTY":2,"PIC":"P_20210730SNSA0037S","KANA":"おぐま しんじ","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":2,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ5M0","NAME":"菅家 一郎","PREFEC":7,"DISTRICT":4,"PARTY":1,"PIC":"P_20210803SNSA0007S","KANA":"かんけ いちろう","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000021G4","NAME":"熊谷 智","PREFEC":7,"DISTRICT":5,"PARTY":4,"PIC":"P_20210806SNSA0013S","KANA":"くまがい とも","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":1,"Q2_3":5,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ00B","NAME":"吉野 正芳","PREFEC":7,"DISTRICT":5,"PARTY":1,"PIC":"P_20210806SNSA0012S","KANA":"よしの まさよし","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":1,"Q6_14":1,"Q6_15":4,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ072","NAME":"福島 伸享","PREFEC":8,"DISTRICT":1,"PARTY":12,"PIC":"P_20210729SNSA0024S","KANA":"ふくしま のぶゆき","AGE":51,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":8,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":1,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"ZZZZZ1YZ","NAME":"田所 嘉徳","PREFEC":8,"DISTRICT":1,"PARTY":1,"PIC":"P_20210729SNSA0023S","KANA":"たどころ よしのり","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":3,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ075","NAME":"額賀 福志郎","PREFEC":8,"DISTRICT":2,"PARTY":1,"PIC":"P_20210924SNSA0005S","KANA":"ぬかが ふくしろう","AGE":77,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":4,"Q6_8":4,"Q6_9":5,"Q6_10":2,"Q6_11":99,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":99,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":5,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0CA","NAME":"藤田 幸久","PREFEC":8,"DISTRICT":2,"PARTY":2,"PIC":"P_20210916SNSA0005S","KANA":"ふじた ゆきひさ","AGE":71,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":4,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ079","NAME":"葉梨 康弘","PREFEC":8,"DISTRICT":3,"PARTY":1,"PIC":"P_20210728SNSA0041S","KANA":"はなし やすひろ","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000016KK","NAME":"梶岡 博樹","PREFEC":8,"DISTRICT":3,"PARTY":2,"PIC":"P_20210902SNSA0014S","KANA":"かじおか ひろき","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KHP","NAME":"岸野 智康","PREFEC":8,"DISTRICT":3,"PARTY":5,"PIC":"P_20210915SNSA0038S","KANA":"きしの ともやす","AGE":27,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ07B","NAME":"梶山 弘志","PREFEC":8,"DISTRICT":4,"PARTY":1,"PIC":"P_20211015SNSA0022S","KANA":"かじやま ひろし","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O59","NAME":"武藤 優子","PREFEC":8,"DISTRICT":4,"PARTY":5,"PIC":"P_20210728SNSA0008S","KANA":"むとう ゆうこ","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":2,"Q6_7":4,"Q6_8":3,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":5,"Q6_13":3,"Q6_14":5,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ1YA","NAME":"大内 久美子","PREFEC":8,"DISTRICT":4,"PARTY":4,"PIC":"P_20210910SNSA0013S","KANA":"おおうち くみこ","AGE":72,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000273B","NAME":"飯田 美弥子","PREFEC":8,"DISTRICT":5,"PARTY":4,"PIC":"P_20210913SNSA0001S","KANA":"いいだ みやこ","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MCV","NAME":"石川 昭政","PREFEC":8,"DISTRICT":5,"PARTY":1,"PIC":"P_20210910SNSA0016S","KANA":"いしかわ あきまさ","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000021EN","NAME":"浅野 哲","PREFEC":8,"DISTRICT":5,"PARTY":6,"PIC":"P_20210729SNSA0021S","KANA":"あさの さとし","AGE":39,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":5,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ7BM","NAME":"田村 弘","PREFEC":8,"DISTRICT":5,"PARTY":12,"PIC":"P_20211014SNSA0003S","KANA":"たむら ひろし","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":2,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000E1N","NAME":"青山 大人","PREFEC":8,"DISTRICT":6,"PARTY":2,"PIC":"P_20210916SNSA0011S","KANA":"あおやま やまと","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000272B","NAME":"国光 文乃","PREFEC":8,"DISTRICT":6,"PARTY":1,"PIC":"P_20210916SNSA0012S","KANA":"くにみつ あやの","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000004G6","NAME":"永岡 桂子","PREFEC":8,"DISTRICT":7,"PARTY":1,"PIC":"P_20210724SNSA0002S","KANA":"ながおか けいこ","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LNZ","NAME":"水梨 伸晃","PREFEC":8,"DISTRICT":7,"PARTY":5,"PIC":"P_20211015SNSA0024S","KANA":"みずなし のぶあき","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000004G4","NAME":"中村 喜四郎","PREFEC":8,"DISTRICT":7,"PARTY":2,"PIC":"P_20210711SNSA0002S","KANA":"なかむら きしろう","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":7,"Q2_3":2,"Q6_1":2,"Q6_2":99,"Q6_3":99,"Q6_4":2,"Q6_5":99,"Q6_6":99,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":1,"Q6_15":1,"Q6_16":99,"Q6_17":1,"Q7_1":3,"Q7_2":99,"Q7_3":5,"Q7_4":1,"Q7_5":99,"Q7_6":5,"Q7_7":5,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000273H","NAME":"青木 弘","PREFEC":9,"DISTRICT":1,"PARTY":4,"PIC":"P_20200915SNSA0003S","KANA":"あおき ひろし","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MNU","NAME":"柏倉 祐司","PREFEC":9,"DISTRICT":1,"PARTY":5,"PIC":"P_20210803SNSA0002S","KANA":"かしわくら ゆうじ","AGE":52,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ07P","NAME":"船田 元","PREFEC":9,"DISTRICT":1,"PARTY":1,"PIC":"P_20210803SNSA0005S","KANA":"ふなだ はじめ","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":4,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000274E","NAME":"渡辺 典喜","PREFEC":9,"DISTRICT":1,"PARTY":2,"PIC":"P_20210730SNSA0054S","KANA":"わたなべ のりよし","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ227","NAME":"五十嵐 清","PREFEC":9,"DISTRICT":2,"PARTY":1,"PIC":"P_20210720SNSA0022S","KANA":"いがらし きよし","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000043V","NAME":"福田 昭夫","PREFEC":9,"DISTRICT":2,"PARTY":2,"PIC":"P_20210726SNSA0012S","KANA":"ふくだ あきお","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"000005XQ","NAME":"伊賀 央","PREFEC":9,"DISTRICT":3,"PARTY":2,"PIC":"P_20210830SNSA0002S","KANA":"いが ひろし","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001NQ8","NAME":"簗 和生","PREFEC":9,"DISTRICT":3,"PARTY":1,"PIC":"P_20211006SNSA0001S","KANA":"やな かずお","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ07Y","NAME":"佐藤 勉","PREFEC":9,"DISTRICT":4,"PARTY":1,"PIC":"P_20210712SNSA0002S","KANA":"さとう つとむ","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":3,"Q6_5":2,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CFJ","NAME":"藤岡 隆雄","PREFEC":9,"DISTRICT":4,"PARTY":2,"PIC":"P_20210720SNSA0003S","KANA":"ふじおか たかお","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ7O2","NAME":"岡村 恵子","PREFEC":9,"DISTRICT":5,"PARTY":4,"PIC":"P_20201008SNSA0006S","KANA":"おかむら けいこ","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ081","NAME":"茂木 敏充","PREFEC":9,"DISTRICT":5,"PARTY":1,"PIC":"P_20211017SNSA0016S","KANA":"もてぎ としみつ","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":99,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":99,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":99,"Q6_11":99,"Q6_12":3,"Q6_13":99,"Q6_14":1,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":2,"Q7_2":2,"Q7_3":99,"Q7_4":99,"Q7_5":4,"Q7_6":4,"Q7_7":99,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000026WA","NAME":"中曽根 康隆","PREFEC":10,"DISTRICT":1,"PARTY":1,"PIC":"P_20210730SNSA0082S","KANA":"なかそね やすたか","AGE":39,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002GAU","NAME":"斉藤 敦子","PREFEC":10,"DISTRICT":1,"PARTY":12,"PIC":"P_20210802SNSA0009S","KANA":"さいとう あつこ","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013BU","NAME":"宮崎 岳志","PREFEC":10,"DISTRICT":1,"PARTY":5,"PIC":"P_20210730SNSA0078S","KANA":"みやざき たけし","AGE":51,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":1,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001704","NAME":"店橋 世津子","PREFEC":10,"DISTRICT":1,"PARTY":4,"PIC":"P_20210802SNSA0006S","KANA":"たなはし せつこ","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021FK","NAME":"堀越 啓仁","PREFEC":10,"DISTRICT":2,"PARTY":2,"PIC":"P_20210825SNSA0008S","KANA":"ほりこし けいにん","AGE":41,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":5,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ23W","NAME":"石関 貴史","PREFEC":10,"DISTRICT":2,"PARTY":12,"PIC":"P_20210929SNSA0010S","KANA":"いしぜき たかし","AGE":49,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":2,"Q6_10":4,"Q6_11":2,"Q6_12":4,"Q6_13":3,"Q6_14":4,"Q6_15":4,"Q6_16":5,"Q6_17":4,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"00001NK1","NAME":"井野 俊郎","PREFEC":10,"DISTRICT":2,"PARTY":1,"PIC":"P_20210804SNSA0001S","KANA":"いの としろう","AGE":41,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":4,"Q6_13":4,"Q6_14":1,"Q6_15":3,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":1,"Q7_7":5,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LIX","NAME":"説田 健二","PREFEC":10,"DISTRICT":3,"PARTY":9,"PIC":"P_20211007SNSA0041S","KANA":"せった けんじ","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":2,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":1,"Q6_15":3,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":1,"Q7_3":5,"Q7_4":2,"Q7_5":4,"Q7_6":1,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ185","NAME":"笹川 博義","PREFEC":10,"DISTRICT":3,"PARTY":1,"PIC":"P_20210728SNSA0016S","KANA":"ささがわ ひろよし","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ244","NAME":"長谷川 嘉一","PREFEC":10,"DISTRICT":3,"PARTY":2,"PIC":"P_20210728SNSA0017S","KANA":"はせがわ かいち","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":1,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000EYJ","NAME":"角倉 邦良","PREFEC":10,"DISTRICT":4,"PARTY":2,"PIC":"P_20210901SNSA0001S","KANA":"かどくら くによし","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":7,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NXQ","NAME":"福田 達夫","PREFEC":10,"DISTRICT":4,"PARTY":1,"PIC":"P_20211015SNSA0010S","KANA":"ふくだ たつお","AGE":54,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002187","NAME":"伊藤 達也","PREFEC":10,"DISTRICT":5,"PARTY":4,"PIC":"P_20210915SNSA0027S","KANA":"いとう たつや","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ08G","NAME":"小渕 優子","PREFEC":10,"DISTRICT":5,"PARTY":1,"PIC":"P_20210915SNSA0028S","KANA":"おぶち ゆうこ","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001US2","NAME":"吉村 豪介","PREFEC":11,"DISTRICT":1,"PARTY":5,"PIC":"P_20210928SNSA0004S","KANA":"よしむら ごうすけ","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":8,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":2,"Q6_7":4,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LPF","NAME":"中島 徳二","PREFEC":11,"DISTRICT":1,"PARTY":12,"PIC":"P_20211018SNSA0035S","KANA":"なかじま とくじ","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":2,"Q2_3":6,"Q6_1":4,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":5,"Q6_6":2,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":1,"Q6_13":1,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":1,"Q7_3":5,"Q7_4":4,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ08M","NAME":"武正 公一","PREFEC":11,"DISTRICT":1,"PARTY":2,"PIC":"P_20210913SNSA0008S","KANA":"たけまさ こういち","AGE":60,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L8C","NAME":"佐藤 真実","PREFEC":11,"DISTRICT":1,"PARTY":12,"PIC":"P_20210915SNSA0003S","KANA":"さとう まなみ","AGE":37,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":4,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MOK","NAME":"村井 英樹","PREFEC":11,"DISTRICT":1,"PARTY":1,"PIC":"P_20211005SNSA0028S","KANA":"むらい ひでき","AGE":41,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ08N","NAME":"新藤 義孝","PREFEC":11,"DISTRICT":2,"PARTY":1,"PIC":"P_20210716SNSA0009S","KANA":"しんどう よしたか","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001SMZ","NAME":"高橋 英明","PREFEC":11,"DISTRICT":2,"PARTY":5,"PIC":"P_20201006SNSA0011S","KANA":"たかはし ひであき","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":5,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":4,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MND","NAME":"奥田 智子","PREFEC":11,"DISTRICT":2,"PARTY":4,"PIC":"P_20200930SNSA0005S","KANA":"おくだ ともこ","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":5,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MM0","NAME":"黄川田 仁志","PREFEC":11,"DISTRICT":3,"PARTY":1,"PIC":"P_20200929SNSA0007S","KANA":"きかわだ ひとし","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":4,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ25C","NAME":"山川 百合子","PREFEC":11,"DISTRICT":3,"PARTY":2,"PIC":"P_20201006SNSA0012S","KANA":"やまかわ ゆりこ","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002JNN","NAME":"河合 悠祐","PREFEC":11,"DISTRICT":3,"PARTY":9,"PIC":"P_20211012SNSA0025S","KANA":"かわい ゆうすけ","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0BH","NAME":"遠藤 宣彦","PREFEC":11,"DISTRICT":4,"PARTY":12,"PIC":"P_20211018SNSA0027S","KANA":"えんどう のぶひこ","AGE":58,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":4,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001ZWH","NAME":"工藤 薫","PREFEC":11,"DISTRICT":4,"PARTY":4,"PIC":"P_20210415SNSA0003S","KANA":"くどう かおる","AGE":71,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001TBZ","NAME":"穂坂 泰","PREFEC":11,"DISTRICT":4,"PARTY":1,"PIC":"P_20201006SNSA0013S","KANA":"ほさか やすし","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000018YK","NAME":"浅野 克彦","PREFEC":11,"DISTRICT":4,"PARTY":6,"PIC":"P_20210414SNSA0009S","KANA":"あさの かつひこ","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001O33","NAME":"小笠原 洋輝","PREFEC":11,"DISTRICT":4,"PARTY":12,"PIC":"P_20211013SNSA0031S","KANA":"おがさわら ひろき","AGE":37,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":8,"Q2_3":2,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":5,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":2,"Q6_15":2,"Q6_16":1,"Q6_17":3,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ08W","NAME":"枝野 幸男","PREFEC":11,"DISTRICT":5,"PARTY":2,"PIC":"P_20200929SNSA0001S","KANA":"えだの ゆきお","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":7,"Q2_3":3,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004IK","NAME":"牧原 秀樹","PREFEC":11,"DISTRICT":5,"PARTY":1,"PIC":"P_20210421SNSA0001S","KANA":"まきはら ひでき","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ090","NAME":"大島 敦","PREFEC":11,"DISTRICT":6,"PARTY":2,"PIC":"P_20210712SNSA0008S","KANA":"おおしま あつし","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"000004IO","NAME":"中根 一幸","PREFEC":11,"DISTRICT":6,"PARTY":1,"PIC":"P_20200930SNSA0004S","KANA":"なかね かずゆき","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ094","NAME":"小宮山 泰子","PREFEC":11,"DISTRICT":7,"PARTY":2,"PIC":"P_20200929SNSA0003S","KANA":"こみやま やすこ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LL0","NAME":"伊勢田 享子","PREFEC":11,"DISTRICT":7,"PARTY":5,"PIC":"P_20211011SNSA0023S","KANA":"いせだ みちこ","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"000014ZH","NAME":"中野 英幸","PREFEC":11,"DISTRICT":7,"PARTY":1,"PIC":"P_20210803SNSA0006S","KANA":"なかの ひでゆき","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":4,"Q6_11":4,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000008C","NAME":"柴山 昌彦","PREFEC":11,"DISTRICT":8,"PARTY":1,"PIC":"P_20200930SNSA0006S","KANA":"しばやま まさひこ","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001546","NAME":"小野塚 勝俊","PREFEC":11,"DISTRICT":8,"PARTY":12,"PIC":"P_20210421SNSA0002S","KANA":"おのづか まさとし","AGE":49,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ09B","NAME":"神田 三春","PREFEC":11,"DISTRICT":9,"PARTY":4,"PIC":"P_20210427SNSA0001S","KANA":"かんだ みはる","AGE":67,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004UO","NAME":"大塚 拓","PREFEC":11,"DISTRICT":9,"PARTY":1,"PIC":"P_20210806SNSA0007S","KANA":"おおつか たく","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027AW","NAME":"杉村 慎治","PREFEC":11,"DISTRICT":9,"PARTY":2,"PIC":"P_20210427SNSA0002S","KANA":"すぎむら しんじ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000BE1","NAME":"坂本 祐之輔","PREFEC":11,"DISTRICT":10,"PARTY":2,"PIC":"P_20210521SNSA0001S","KANA":"さかもと ゆうのすけ","AGE":66,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KXU","NAME":"山口 晋","PREFEC":11,"DISTRICT":10,"PARTY":1,"PIC":"P_20210806SNSA0014S","KANA":"やまぐち すすむ","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ09G","NAME":"小泉 龍司","PREFEC":11,"DISTRICT":11,"PARTY":1,"PIC":"P_20200929SNSA0004S","KANA":"こいずみ りゅうじ","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000BJE","NAME":"島田 誠","PREFEC":11,"DISTRICT":11,"PARTY":2,"PIC":"P_20200929SNSA0005S","KANA":"しまだ まこと","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KKH","NAME":"小山 森也","PREFEC":11,"DISTRICT":11,"PARTY":4,"PIC":"P_20210531SNSA0007S","KANA":"こやま しんや","AGE":30,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ28J","NAME":"森田 俊和","PREFEC":11,"DISTRICT":12,"PARTY":2,"PIC":"P_20201001SNSA0009S","KANA":"もりた としかず","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000N1W","NAME":"野中 厚","PREFEC":11,"DISTRICT":12,"PARTY":1,"PIC":"P_20201001SNSA0008S","KANA":"のなか あつし","AGE":44,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ09O","NAME":"赤岸 雅治","PREFEC":11,"DISTRICT":13,"PARTY":4,"PIC":"P_20210426SNSA0003S","KANA":"あかぎし まさはる","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ09M","NAME":"土屋 品子","PREFEC":11,"DISTRICT":13,"PARTY":1,"PIC":"P_20210426SNSA0002S","KANA":"つちや しなこ","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000026YQ","NAME":"三角 創太","PREFEC":11,"DISTRICT":13,"PARTY":2,"PIC":"P_20210426SNSA0004S","KANA":"みすみ そうた","AGE":33,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":4,"Q6_8":4,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MNW","NAME":"三ツ林 裕巳","PREFEC":11,"DISTRICT":14,"PARTY":1,"PIC":"P_20210526SNSA0006S","KANA":"みつばやし ひろみ","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":4,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ29B","NAME":"鈴木 義弘","PREFEC":11,"DISTRICT":14,"PARTY":6,"PIC":"P_20201005SNSA0003S","KANA":"すずき よしひろ","AGE":58,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":4,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KKI","NAME":"田村 勉","PREFEC":11,"DISTRICT":14,"PARTY":4,"PIC":"P_20210531SNSA0008S","KANA":"たむら つとむ","AGE":73,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004IL","NAME":"田中 良生","PREFEC":11,"DISTRICT":15,"PARTY":1,"PIC":"P_20210531SNSA0006S","KANA":"たなか りょうせい","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000FZM","NAME":"高木 錬太郎","PREFEC":11,"DISTRICT":15,"PARTY":2,"PIC":"P_20200929SNSA0006S","KANA":"たかぎ れんたろう","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021QX","NAME":"沢田 良","PREFEC":11,"DISTRICT":15,"PARTY":5,"PIC":"P_20201005SNSA0005S","KANA":"さわだ りょう","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":2,"Q6_2":1,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":5,"Q6_13":2,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ09Z","NAME":"田嶋 要","PREFEC":12,"DISTRICT":1,"PARTY":2,"PIC":"P_20210705SNSA0003S","KANA":"たじま かなめ","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MLB","NAME":"門山 宏哲","PREFEC":12,"DISTRICT":1,"PARTY":1,"PIC":"P_20210705SNSA0002S","KANA":"かどやま ひろあき","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NYJ","NAME":"寺尾 賢","PREFEC":12,"DISTRICT":2,"PARTY":4,"PIC":"P_20210819SNSA0003S","KANA":"てらお さとし","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MLC","NAME":"小林 鷹之","PREFEC":12,"DISTRICT":2,"PARTY":1,"PIC":"P_20210819SNSA0002S","KANA":"こばやし たかゆき","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ29P","NAME":"黒田 雄","PREFEC":12,"DISTRICT":2,"PARTY":2,"PIC":"P_20210819SNSA0001S","KANA":"くろだ ゆう","AGE":62,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0A6","NAME":"松野 博一","PREFEC":12,"DISTRICT":3,"PARTY":1,"PIC":"P_20210906SNSA0003S","KANA":"まつの ひろかず","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0A5","NAME":"岡島 一正","PREFEC":12,"DISTRICT":3,"PARTY":2,"PIC":"P_20210905SNSA0010S","KANA":"おかじま かずまさ","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ8Q0","NAME":"木村 哲也","PREFEC":12,"DISTRICT":4,"PARTY":1,"PIC":"P_20210819SNSA0007S","KANA":"きむら てつや","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":4,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":1,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0A7","NAME":"野田 佳彦","PREFEC":12,"DISTRICT":4,"PARTY":2,"PIC":"P_20210819SNSA0008S","KANA":"のだ よしひこ","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":5,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000YSD","NAME":"矢崎 堅太郎","PREFEC":12,"DISTRICT":5,"PARTY":2,"PIC":"P_20200916SNSA0005S","KANA":"やざき けんたろう","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027BZ","NAME":"鴇田 敦","PREFEC":12,"DISTRICT":5,"PARTY":6,"PIC":"P_20200916SNSA0007S","KANA":"ときた あつし","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"00001O1K","NAME":"椎木 保","PREFEC":12,"DISTRICT":5,"PARTY":5,"PIC":"P_20200917SNSA0001S","KANA":"しいき たもつ","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":5,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0AC","NAME":"薗浦 健太郎","PREFEC":12,"DISTRICT":5,"PARTY":1,"PIC":"P_20200908SNSA0002S","KANA":"そのうら けんたろう","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RSM","NAME":"藤巻 健太","PREFEC":12,"DISTRICT":6,"PARTY":5,"PIC":"P_20210819SNSA0004S","KANA":"ふじまき けんた","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":5,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":2,"Q6_7":4,"Q6_8":4,"Q6_9":2,"Q6_10":5,"Q6_11":4,"Q6_12":5,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":5,"Q7_5":2,"Q7_6":5,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0AG","NAME":"渡辺 博道","PREFEC":12,"DISTRICT":6,"PARTY":1,"PIC":"P_20210909SNSA0009S","KANA":"わたなべ ひろみち","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0YL","NAME":"浅野 史子","PREFEC":12,"DISTRICT":6,"PARTY":4,"PIC":"P_20211014SNSA0002S","KANA":"あさの ふみこ","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":5,"Q6_10":5,"Q6_11":5,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":1,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0AF","NAME":"生方 幸夫","PREFEC":12,"DISTRICT":6,"PARTY":12,"PIC":"P_20210726SNSA0001S","KANA":"うぶかた ゆきお","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":4,"Q7_5":1,"Q7_6":5,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0AH","NAME":"内山 晃","PREFEC":12,"DISTRICT":7,"PARTY":5,"PIC":"P_20210903SNSA0003S","KANA":"うちやま あきら","AGE":67,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000009ND","NAME":"斎藤 健","PREFEC":12,"DISTRICT":7,"PARTY":1,"PIC":"P_20210824SNSA0003S","KANA":"さいとう けん","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KV7","NAME":"竹内 千春","PREFEC":12,"DISTRICT":7,"PARTY":2,"PIC":"P_20210824SNSA0006S","KANA":"たけうち ちはる","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":7,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002IFY","NAME":"渡辺 晋宏","PREFEC":12,"DISTRICT":7,"PARTY":9,"PIC":"P_20210904SNSA0001S","KANA":"わたなべ くにひろ","AGE":36,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":5,"Q2_3":2,"Q6_1":2,"Q6_2":4,"Q6_3":4,"Q6_4":4,"Q6_5":3,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":5,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":4,"Q7_5":5,"Q7_6":1,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002IY0","NAME":"本庄 知史","PREFEC":12,"DISTRICT":8,"PARTY":2,"PIC":"P_20210706SNSA0001S","KANA":"ほんじょう さとし","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0AM","NAME":"桜田 義孝","PREFEC":12,"DISTRICT":8,"PARTY":1,"PIC":"P_20210714SNSA0003S","KANA":"さくらだ よしたか","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":1,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":5,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0AK","NAME":"宮岡 進一郎","PREFEC":12,"DISTRICT":8,"PARTY":12,"PIC":"P_20211014SNSA0018S","KANA":"みやおか しんいちろう","AGE":80,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000039X","NAME":"奥野 総一郎","PREFEC":12,"DISTRICT":9,"PARTY":2,"PIC":"P_20201008SNSA0007S","KANA":"おくの そういちろう","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":4,"Q6_3":2,"Q6_4":2,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ942","NAME":"秋本 真利","PREFEC":12,"DISTRICT":9,"PARTY":1,"PIC":"P_20210913SNSA0016S","KANA":"あきもと まさとし","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":2,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":5,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":99,"Q6_17":99,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000027GC","NAME":"今留 尚人","PREFEC":12,"DISTRICT":10,"PARTY":12,"PIC":"P_20211009SNSA0008S","KANA":"いまどめ なおと","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":5,"Q6_13":3,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LGR","NAME":"梓 まり","PREFEC":12,"DISTRICT":10,"PARTY":11,"PIC":"P_20211008SNSA0020S","KANA":"あずさ まり","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":1,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0AT","NAME":"谷田川 元","PREFEC":12,"DISTRICT":10,"PARTY":2,"PIC":"P_20210830SNSA0004S","KANA":"やたがわ はじめ","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0AS","NAME":"林 幹雄","PREFEC":12,"DISTRICT":10,"PARTY":1,"PIC":"P_20210830SNSA0003S","KANA":"はやし もとお","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O42","NAME":"多ケ谷 亮","PREFEC":12,"DISTRICT":11,"PARTY":10,"PIC":"P_20200909SNSA0001S","KANA":"たがや りょう","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0AW","NAME":"森 英介","PREFEC":12,"DISTRICT":11,"PARTY":1,"PIC":"P_20200918SNSA0008S","KANA":"もり えいすけ","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001N7W","NAME":"椎名 史明","PREFEC":12,"DISTRICT":11,"PARTY":4,"PIC":"P_20200909SNSA0002S","KANA":"しいな ふみあき","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":2,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KV2","NAME":"葛原 茂","PREFEC":12,"DISTRICT":12,"PARTY":4,"PIC":"P_20211008SNSA0001S","KANA":"くずはら しげる","AGE":70,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0AZ","NAME":"浜田 靖一","PREFEC":12,"DISTRICT":12,"PARTY":1,"PIC":"P_20211008SNSA0002S","KANA":"はまだ やすかず","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0FG","NAME":"樋高 剛","PREFEC":12,"DISTRICT":12,"PARTY":2,"PIC":"P_20211008SNSA0003S","KANA":"ひだか たけし","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000272D","NAME":"宮川 伸","PREFEC":12,"DISTRICT":13,"PARTY":2,"PIC":"P_20210906SNSA0001S","KANA":"みやかわ しん","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KVA","NAME":"松本 尚","PREFEC":12,"DISTRICT":13,"PARTY":1,"PIC":"P_20210720SNSA0026S","KANA":"まつもと ひさし","AGE":59,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":4,"Q6_4":5,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":4,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":1,"Q7_5":5,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000B8G","NAME":"清水 聖士","PREFEC":12,"DISTRICT":13,"PARTY":5,"PIC":"P_20211015SNSA0015S","KANA":"しみず きよし","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0B5","NAME":"海江田 万里","PREFEC":13,"DISTRICT":1,"PARTY":2,"PIC":"P_20211006SNSA0014S","KANA":"かいえだ ばんり","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002IFW","NAME":"小野 泰輔","PREFEC":13,"DISTRICT":1,"PARTY":5,"PIC":"P_20210714SNSA0005S","KANA":"おの たいすけ","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":6,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":4,"Q6_5":2,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"00001MOA","NAME":"山田 美樹","PREFEC":13,"DISTRICT":1,"PARTY":1,"PIC":"P_20210728SNSA0043S","KANA":"やまだ みき","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001QJS","NAME":"内藤 久遠","PREFEC":13,"DISTRICT":1,"PARTY":12,"PIC":"P_20211017SNSA0033S","KANA":"ないとう ひさお","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":5,"Q7_2":1,"Q7_3":2,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000015SP","NAME":"木内 孝胤","PREFEC":13,"DISTRICT":2,"PARTY":5,"PIC":"P_20210720SNSA0025S","KANA":"きうち たかたね","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":2,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":4,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000274B","NAME":"松尾 明弘","PREFEC":13,"DISTRICT":2,"PARTY":2,"PIC":"P_20210713SNSA0002S","KANA":"まつお あきひろ","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NS9","NAME":"辻 清人","PREFEC":13,"DISTRICT":2,"PARTY":1,"PIC":"P_20210715SNSA0004S","KANA":"つじ きよと","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":7,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":1,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RTO","NAME":"北村 造","PREFEC":13,"DISTRICT":2,"PARTY":10,"PIC":"P_20210714SNSA0006S","KANA":"きたむら いたる","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LON","NAME":"出口 紳一郎","PREFEC":13,"DISTRICT":2,"PARTY":12,"PIC":"P_20211016SNSA0010S","KANA":"でぐち しんいちろう","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":5,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001MOR","NAME":"香西 克介","PREFEC":13,"DISTRICT":3,"PARTY":4,"PIC":"P_20210721SNSA0001S","KANA":"こうざい かつすけ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0BD","NAME":"松原 仁","PREFEC":13,"DISTRICT":3,"PARTY":2,"PIC":"P_20210721SNSA0002S","KANA":"まつばら じん","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":1,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0BC","NAME":"石原 宏高","PREFEC":13,"DISTRICT":3,"PARTY":1,"PIC":"P_20211010SNSA0011S","KANA":"いしはら ひろたか","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":4,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001WQC","NAME":"林 智興","PREFEC":13,"DISTRICT":4,"PARTY":5,"PIC":"P_20211004SNSA0001S","KANA":"はやし ともおき","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000004KJ","NAME":"平 将明","PREFEC":13,"DISTRICT":4,"PARTY":1,"PIC":"P_20210721SNSA0003S","KANA":"たいら まさあき","AGE":54,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":5,"Q6_7":5,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000011DR","NAME":"谷川 智行","PREFEC":13,"DISTRICT":4,"PARTY":4,"PIC":"P_20210721SNSA0004S","KANA":"たにがわ ともゆき","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0BI","NAME":"手塚 仁雄","PREFEC":13,"DISTRICT":5,"PARTY":2,"PIC":"P_20210811SNSA0013S","KANA":"てづか よしお","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":5,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":2,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004UN","NAME":"若宮 健嗣","PREFEC":13,"DISTRICT":5,"PARTY":1,"PIC":"P_20210720SNSA0024S","KANA":"わかみや けんじ","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002182","NAME":"田淵 正文","PREFEC":13,"DISTRICT":5,"PARTY":5,"PIC":"P_20210726SNSA0013S","KANA":"たぶち まさふみ","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0BM","NAME":"越智 隆雄","PREFEC":13,"DISTRICT":6,"PARTY":1,"PIC":"P_20210804SNSA0005S","KANA":"おち たかお","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L9Z","NAME":"碓井 梨恵","PREFEC":13,"DISTRICT":6,"PARTY":5,"PIC":"P_20210917SNSA0011S","KANA":"うすい りえ","AGE":36,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NK6","NAME":"落合 貴之","PREFEC":13,"DISTRICT":6,"PARTY":2,"PIC":"P_20210730SNSA0041S","KANA":"おちあい たかゆき","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LBP","NAME":"辻 健太郎","PREFEC":13,"DISTRICT":7,"PARTY":5,"PIC":"P_20211014SNSA0011S","KANA":"つじ けんたろう","AGE":35,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0BU","NAME":"松本 文明","PREFEC":13,"DISTRICT":7,"PARTY":1,"PIC":"P_20211008SNSA0019S","KANA":"まつもと ふみあき","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0BQ","NAME":"長妻 昭","PREFEC":13,"DISTRICT":7,"PARTY":2,"PIC":"P_20211006SNSA0033S","KANA":"ながつま あきら","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":1,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GIK","NAME":"猪野 恵司","PREFEC":13,"DISTRICT":7,"PARTY":9,"PIC":"P_20210915SNSA0021S","KANA":"いの けいじ","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":6,"Q2_3":2,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002IFM","NAME":"込山 洋","PREFEC":13,"DISTRICT":7,"PARTY":12,"PIC":"P_20211013SNSA0009S","KANA":"こみやま ひろし","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0BW","NAME":"石原 伸晃","PREFEC":13,"DISTRICT":8,"PARTY":1,"PIC":"P_20211008SNSA0016S","KANA":"いしはら のぶてる","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001D9S","NAME":"吉田 晴美","PREFEC":13,"DISTRICT":8,"PARTY":2,"PIC":"P_20210909SNSA0002S","KANA":"よしだ はるみ","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000015Q8","NAME":"笠谷 圭司","PREFEC":13,"DISTRICT":8,"PARTY":5,"PIC":"P_20210909SNSA0004S","KANA":"かさたに けいじ","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002GFH","NAME":"山岸 一生","PREFEC":13,"DISTRICT":9,"PARTY":2,"PIC":"P_20210901SNSA0006S","KANA":"やまぎし いっせい","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CC3","NAME":"安藤 高夫","PREFEC":13,"DISTRICT":9,"PARTY":1,"PIC":"P_20210915SNSO0019S","KANA":"あんどう たかお","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0C3","NAME":"小林 興起","PREFEC":13,"DISTRICT":9,"PARTY":11,"PIC":"P_20211004SNSA0010S","KANA":"こばやし こうき","AGE":77,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":1,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002LFN","NAME":"南 純","PREFEC":13,"DISTRICT":9,"PARTY":5,"PIC":"P_20211004SNSA0014S","KANA":"みなみ じゅん","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000022KG","NAME":"鈴木 庸介","PREFEC":13,"DISTRICT":10,"PARTY":2,"PIC":"P_20210730SNSA0051S","KANA":"すずき ようすけ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001RUX","NAME":"鈴木 隼人","PREFEC":13,"DISTRICT":10,"PARTY":1,"PIC":"P_20211014SNSA0013S","KANA":"すずき はやと","AGE":44,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":1,"Q6_6":4,"Q6_7":99,"Q6_8":2,"Q6_9":99,"Q6_10":2,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000027IR","NAME":"小山 徹","PREFEC":13,"DISTRICT":10,"PARTY":12,"PIC":"P_20211014SNSA0020S","KANA":"こやま とおる","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":6,"Q2_2":2,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":5,"Q6_8":5,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":5,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001V3O","NAME":"藤川 隆史","PREFEC":13,"DISTRICT":10,"PARTY":5,"PIC":"P_20211014SNSA0010S","KANA":"ふじかわ たかし","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002KQV","NAME":"沢口 祐司","PREFEC":13,"DISTRICT":10,"PARTY":11,"PIC":"P_20211013SNSA0010S","KANA":"さわぐち ゆうじ","AGE":67,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":5,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0C7","NAME":"下村 博文","PREFEC":13,"DISTRICT":11,"PARTY":1,"PIC":"P_20210930SNSA0003S","KANA":"しもむら はくぶん","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LNB","NAME":"桑島 康文","PREFEC":13,"DISTRICT":11,"PARTY":12,"PIC":"P_20211014SNSA0005S","KANA":"くわじま やすふみ","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":3,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":4,"Q6_11":5,"Q6_12":5,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LFO","NAME":"西之原 修斗","PREFEC":13,"DISTRICT":11,"PARTY":4,"PIC":"P_20211004SNSA0017S","KANA":"にしのはら しゅうと","AGE":27,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0DG","NAME":"阿久津 幸彦","PREFEC":13,"DISTRICT":11,"PARTY":2,"PIC":"P_20211004SNSA0015S","KANA":"あくつ ゆきひこ","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MKG","NAME":"岡本 三成","PREFEC":13,"DISTRICT":12,"PARTY":3,"PIC":"P_20210730SNSA0035S","KANA":"おかもと みつなり","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KW0","NAME":"阿部 司","PREFEC":13,"DISTRICT":12,"PARTY":5,"PIC":"P_20210727SNSA0026S","KANA":"あべ つかさ","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000013ED","NAME":"池内 沙織","PREFEC":13,"DISTRICT":12,"PARTY":4,"PIC":"P_20210727SNSA0020S","KANA":"いけうち さおり","AGE":39,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIV","NAME":"土田 慎","PREFEC":13,"DISTRICT":13,"PARTY":1,"PIC":"P_20211013SNSA0004S","KANA":"つちだ しん","AGE":31,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":6,"Q2_3":99,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":5,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001HZ6","NAME":"沢田 真吾","PREFEC":13,"DISTRICT":13,"PARTY":4,"PIC":"P_20210916SNSA0007S","KANA":"さわだ しんご","AGE":36,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LO0","NAME":"渡辺 秀高","PREFEC":13,"DISTRICT":13,"PARTY":12,"PIC":"P_20211015SNSA0025S","KANA":"わたなべ ひでたか","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":5,"Q6_10":1,"Q6_11":4,"Q6_12":1,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000026Z9","NAME":"北條 智彦","PREFEC":13,"DISTRICT":13,"PARTY":2,"PIC":"P_20210728SNSA0029S","KANA":"きたじょう ともひこ","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":5,"Q6_13":5,"Q6_14":3,"Q6_15":4,"Q6_16":2,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":99,"Q7_4":1,"Q7_5":4,"Q7_6":1,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LOP","NAME":"橋本 孫美","PREFEC":13,"DISTRICT":13,"PARTY":12,"PIC":"P_20211016SNSA0014S","KANA":"はしもと まごみ","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027GL","NAME":"大塚 紀久雄","PREFEC":13,"DISTRICT":14,"PARTY":12,"PIC":"P_20211015SNSA0002S","KANA":"おおつか きくお","AGE":80,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":4,"Q6_8":4,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":4,"Q7_5":1,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0CG","NAME":"松島 みどり","PREFEC":13,"DISTRICT":14,"PARTY":1,"PIC":"P_20210727SNSA0031S","KANA":"まつしま みどり","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":4,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002GHW","NAME":"竹本 秀之","PREFEC":13,"DISTRICT":14,"PARTY":12,"PIC":"P_20211015SNSA0011S","KANA":"たけもと ひでゆき","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":5,"Q2_3":6,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000025R8","NAME":"西村 恵美","PREFEC":13,"DISTRICT":14,"PARTY":5,"PIC":"P_20210728SNSA0023S","KANA":"にしむら えみ","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZFR0","NAME":"木村 剛司","PREFEC":13,"DISTRICT":14,"PARTY":2,"PIC":"P_20210727SNSA0029S","KANA":"きむら たけつか","AGE":50,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":5,"Q6_13":5,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LNL","NAME":"梁本 和則","PREFEC":13,"DISTRICT":14,"PARTY":12,"PIC":"P_20211015SNSA0006S","KANA":"やなもと かずのり","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":7,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":5,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021Z2","NAME":"桜井 誠","PREFEC":13,"DISTRICT":15,"PARTY":11,"PIC":"P_20211017SNSA0018S","KANA":"さくらい まこと","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ3NN","NAME":"井戸 まさえ","PREFEC":13,"DISTRICT":15,"PARTY":2,"PIC":"P_20210910SNSA0001S","KANA":"いど まさえ","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":5,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2ES","NAME":"柿沢 未途","PREFEC":13,"DISTRICT":15,"PARTY":12,"PIC":"P_20210915SNSA0014S","KANA":"かきざわ みと","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":4,"Q7_5":1,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001O4I","NAME":"猪野 隆","PREFEC":13,"DISTRICT":15,"PARTY":12,"PIC":"P_20210915SNSA0023S","KANA":"いの たかし","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O7N","NAME":"今村 洋史","PREFEC":13,"DISTRICT":15,"PARTY":12,"PIC":"P_20200916SNSA0003S","KANA":"いまむら ひろふみ","AGE":59,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":2,"Q6_17":4,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002LGF","NAME":"金沢 結衣","PREFEC":13,"DISTRICT":15,"PARTY":5,"PIC":"P_20211006SNSA0010S","KANA":"かなざわ ゆい","AGE":31,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LMK","NAME":"吉田 浩司","PREFEC":13,"DISTRICT":15,"PARTY":12,"PIC":"P_20211013SNSA0013S","KANA":"よしだ こうじ","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":1,"Q7_4":5,"Q7_5":3,"Q7_6":5,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002GAZ","NAME":"水野 素子","PREFEC":13,"DISTRICT":16,"PARTY":2,"PIC":"P_20210924SNSA0001S","KANA":"みずの もとこ","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0CN","NAME":"中津川 博郷","PREFEC":13,"DISTRICT":16,"PARTY":5,"PIC":"P_20210916SNSA0003S","KANA":"なかつがわ ひろさと","AGE":72,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":5,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002L8T","NAME":"太田 彩花","PREFEC":13,"DISTRICT":16,"PARTY":4,"PIC":"P_20210916SNSA0001S","KANA":"おおた あやか","AGE":26,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2HL","NAME":"大西 英男","PREFEC":13,"DISTRICT":16,"PARTY":1,"PIC":"P_20210916SNSA0002S","KANA":"おおにし ひでお","AGE":75,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":4,"Q6_17":4,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZGCH","NAME":"田中 健","PREFEC":13,"DISTRICT":16,"PARTY":9,"PIC":"P_20211001SNSA0010S","KANA":"たなか けん","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":3,"Q6_6":1,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":5,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":1,"SQ8_16":1},{"ID":"000027D7","NAME":"猪口 幸子","PREFEC":13,"DISTRICT":17,"PARTY":5,"PIC":"P_20210924SNSA0003S","KANA":"いのくち さちこ","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000013I4","NAME":"新井 杉生","PREFEC":13,"DISTRICT":17,"PARTY":4,"PIC":"P_20210924SNSA0002S","KANA":"あらい すぎお","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0CQ","NAME":"平沢 勝栄","PREFEC":13,"DISTRICT":17,"PARTY":1,"PIC":"P_20211001SNSA0009S","KANA":"ひらさわ かつえい","AGE":76,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ19Z","NAME":"円 より子","PREFEC":13,"DISTRICT":17,"PARTY":6,"PIC":"P_20210916SNSA0004S","KANA":"まどか よりこ","AGE":74,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0D6","NAME":"長島 昭久","PREFEC":13,"DISTRICT":18,"PARTY":1,"PIC":"P_20210909SNSA0008S","KANA":"ながしま あきひさ","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":4,"Q6_17":4,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LNF","NAME":"子安 正美","PREFEC":13,"DISTRICT":18,"PARTY":12,"PIC":"P_20211014SNSA0012S","KANA":"こやす まさみ","AGE":71,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0CV","NAME":"菅 直人","PREFEC":13,"DISTRICT":18,"PARTY":2,"PIC":"P_20210909SNSA0006S","KANA":"かん なおと","AGE":75,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0CZ","NAME":"末松 義規","PREFEC":13,"DISTRICT":19,"PARTY":2,"PIC":"P_20210914SNSA0008S","KANA":"すえまつ よしのり","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0CX","NAME":"松本 洋平","PREFEC":13,"DISTRICT":19,"PARTY":1,"PIC":"P_20210915SNSA0010S","KANA":"まつもと ようへい","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001P14","NAME":"山崎 英昭","PREFEC":13,"DISTRICT":19,"PARTY":5,"PIC":"P_20210914SNSA0009S","KANA":"やまざき ひであき","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000026Z2","NAME":"前田 順一郎","PREFEC":13,"DISTRICT":20,"PARTY":5,"PIC":"P_20211012SNSA0023S","KANA":"まえだ じゅんいちろう","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"0000014Q","NAME":"宮本 徹","PREFEC":13,"DISTRICT":20,"PARTY":4,"PIC":"P_20211007SNSA0030S","KANA":"みやもと とおる","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004MG","NAME":"木原 誠二","PREFEC":13,"DISTRICT":20,"PARTY":1,"PIC":"P_20211007SNSA0011S","KANA":"きはら せいじ","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":1,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001AAB","NAME":"竹田 光明","PREFEC":13,"DISTRICT":21,"PARTY":5,"PIC":"P_20211001SNSA0012S","KANA":"たけだ みつあき","AGE":66,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ2FO","NAME":"大河原 雅子","PREFEC":13,"DISTRICT":21,"PARTY":2,"PIC":"P_20210730SNSA0053S","KANA":"おおかわら まさこ","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CBO","NAME":"小田原 潔","PREFEC":13,"DISTRICT":21,"PARTY":1,"PIC":"P_20210915SNSA0036S","KANA":"おだわら きよし","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":4,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0D7","NAME":"伊藤 達也","PREFEC":13,"DISTRICT":22,"PARTY":1,"PIC":"P_20211007SNSA0028S","KANA":"いとう たつや","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":4,"Q6_17":4,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KXV","NAME":"長谷川 洋平","PREFEC":13,"DISTRICT":22,"PARTY":9,"PIC":"P_20210906SNSA0004S","KANA":"はせがわ ようへい","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":99,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":5,"Q6_5":3,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":5,"Q6_11":5,"Q6_12":5,"Q6_13":1,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":4,"Q7_5":5,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000015R8","NAME":"櫛渕 万里","PREFEC":13,"DISTRICT":22,"PARTY":10,"PIC":"P_20211007SNSA0029S","KANA":"くしぶち まり","AGE":54,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0D9","NAME":"山花 郁夫","PREFEC":13,"DISTRICT":22,"PARTY":2,"PIC":"P_20210914SNSA0011S","KANA":"やまはな いくお","AGE":54,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MMA","NAME":"小倉 将信","PREFEC":13,"DISTRICT":23,"PARTY":1,"PIC":"P_20211006SNSA0006S","KANA":"おぐら まさのぶ","AGE":40,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NY1","NAME":"伊藤 俊輔","PREFEC":13,"DISTRICT":23,"PARTY":2,"PIC":"P_20210712SNSA0012S","KANA":"いとう しゅんすけ","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":5,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000019WW","NAME":"佐藤 由美","PREFEC":13,"DISTRICT":24,"PARTY":6,"PIC":"P_20210727SNSA0041S","KANA":"さとう ゆみ","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":5,"Q6_7":4,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":99,"Q7_6":3,"Q7_7":99,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KW5","NAME":"吉川 穂香","PREFEC":13,"DISTRICT":24,"PARTY":4,"PIC":"P_20210727SNSA0045S","KANA":"よしかわ ほのか","AGE":26,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GAD","NAME":"朝倉 玲子","PREFEC":13,"DISTRICT":24,"PARTY":7,"PIC":"P_20210727SNSA0042S","KANA":"あさくら れいこ","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0DD","NAME":"萩生田 光一","PREFEC":13,"DISTRICT":24,"PARTY":1,"PIC":"P_20210828SNSA0002S","KANA":"はぎうだ こういち","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000018XO","NAME":"島田 幸成","PREFEC":13,"DISTRICT":25,"PARTY":2,"PIC":"P_20210910SNSA0012S","KANA":"しまだ ゆきなり","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0DI","NAME":"井上 信治","PREFEC":13,"DISTRICT":25,"PARTY":1,"PIC":"P_20211012SNSA0002S","KANA":"いのうえ しんじ","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ4S7","NAME":"浅川 義治","PREFEC":14,"DISTRICT":1,"PARTY":5,"PIC":"P_20210929SNSA0004S","KANA":"あさかわ よしはる","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":4,"Q6_6":3,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":5,"Q6_14":1,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":5,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0DL","NAME":"松本 純","PREFEC":14,"DISTRICT":1,"PARTY":12,"PIC":"P_20210921SNSA0003S","KANA":"まつもと じゅん","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001DGF","NAME":"篠原 豪","PREFEC":14,"DISTRICT":1,"PARTY":2,"PIC":"P_20210906SNSA0008S","KANA":"しのはら ごう","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":3,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ4U0","NAME":"岡本 英子","PREFEC":14,"DISTRICT":2,"PARTY":2,"PIC":"P_20210726SNSA0006S","KANA":"おかもと えいこ","AGE":57,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0DP","NAME":"菅 義偉","PREFEC":14,"DISTRICT":2,"PARTY":1,"PIC":"P_20211013SNSA0002S","KANA":"すが よしひで","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001A6I","NAME":"中西 健治","PREFEC":14,"DISTRICT":3,"PARTY":1,"PIC":"P_20210902SNSA0004S","KANA":"なかにし けんじ","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":2,"Q7_6":5,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001SJR","NAME":"小林 丈人","PREFEC":14,"DISTRICT":3,"PARTY":2,"PIC":"P_20210928SNSA0007S","KANA":"こばやし たけと","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":4,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KVU","NAME":"藤村 晃子","PREFEC":14,"DISTRICT":3,"PARTY":12,"PIC":"P_20210728SNSA0019S","KANA":"ふじむら あきこ","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":4,"Q6_5":99,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":5,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RMI","NAME":"木佐木 忠晶","PREFEC":14,"DISTRICT":3,"PARTY":4,"PIC":"P_20210928SNSA0006S","KANA":"きさき ただまさ","AGE":37,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000045S","NAME":"山本 朋広","PREFEC":14,"DISTRICT":4,"PARTY":1,"PIC":"P_20210721SNSA0008S","KANA":"やまもと ともひろ","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0ZH","NAME":"浅尾 慶一郎","PREFEC":14,"DISTRICT":4,"PARTY":12,"PIC":"P_20201002SNSA0009S","KANA":"あさお けいいちろう","AGE":57,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":8,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":2,"Q6_7":4,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001DYK","NAME":"早稲田 夕季","PREFEC":14,"DISTRICT":4,"PARTY":2,"PIC":"P_20201002SNSA0010S","KANA":"わせだ ゆき","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027BJ","NAME":"大西 恒樹","PREFEC":14,"DISTRICT":4,"PARTY":12,"PIC":"P_20210727SNSA0036S","KANA":"おおにし つねき","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":3,"Q6_17":2,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002945","NAME":"高谷 清彦","PREFEC":14,"DISTRICT":4,"PARTY":5,"PIC":"P_20211005SNSA0009S","KANA":"たかや あきひこ","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":6,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":1,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":1,"Q7_4":5,"Q7_5":5,"Q7_6":4,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000008TW","NAME":"山崎 誠","PREFEC":14,"DISTRICT":5,"PARTY":2,"PIC":"P_20210729SNSA0009S","KANA":"やまざき まこと","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0E0","NAME":"坂井 学","PREFEC":14,"DISTRICT":5,"PARTY":1,"PIC":"P_20210826SNSA0001S","KANA":"さかい まなぶ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ2K6","NAME":"串田 誠一","PREFEC":14,"DISTRICT":6,"PARTY":5,"PIC":"P_20201006SNSA0020S","KANA":"くしだ せいいち","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00001N7U","NAME":"青柳 陽一郎","PREFEC":14,"DISTRICT":6,"PARTY":2,"PIC":"P_20201006SNSA0022S","KANA":"あおやぎ よういちろう","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ4TJ","NAME":"古川 直季","PREFEC":14,"DISTRICT":6,"PARTY":1,"PIC":"P_20210726SNSA0014S","KANA":"ふるかわ なおき","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001DYU","NAME":"中谷 一馬","PREFEC":14,"DISTRICT":7,"PARTY":2,"PIC":"P_20210908SNSA0011S","KANA":"なかたに かずま","AGE":38,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004V7","NAME":"鈴木 馨祐","PREFEC":14,"DISTRICT":7,"PARTY":1,"PIC":"P_20201005SNSA0004S","KANA":"すずき けいすけ","AGE":44,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":1,"Q6_7":5,"Q6_8":3,"Q6_9":5,"Q6_10":4,"Q6_11":5,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":5,"Q7_5":4,"Q7_6":5,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MM5","NAME":"三谷 英弘","PREFEC":14,"DISTRICT":8,"PARTY":1,"PIC":"P_20210728SNSA0014S","KANA":"みたに ひでひろ","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":5,"Q6_11":5,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0EC","NAME":"江田 憲司","PREFEC":14,"DISTRICT":8,"PARTY":2,"PIC":"P_20211011SNSA0003S","KANA":"えだ けんじ","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":1,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000026UP","NAME":"斉藤 温","PREFEC":14,"DISTRICT":9,"PARTY":4,"PIC":"P_20210830SNSA0010S","KANA":"さいとう のどか","AGE":30,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001A4P","NAME":"中山 展宏","PREFEC":14,"DISTRICT":9,"PARTY":1,"PIC":"P_20210802SNSA0012S","KANA":"なかやま のりひろ","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0EI","NAME":"笠 浩史","PREFEC":14,"DISTRICT":9,"PARTY":2,"PIC":"P_20210830SNSA0012S","KANA":"りゅう ひろふみ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":99,"Q6_7":99,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":99,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ2MN","NAME":"吉田 大成","PREFEC":14,"DISTRICT":9,"PARTY":5,"PIC":"P_20210830SNSA0011S","KANA":"よしだ たいせい","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LNH","NAME":"鈴木 敦","PREFEC":14,"DISTRICT":10,"PARTY":6,"PIC":"P_20211014SNSA0024S","KANA":"すずき あつし","AGE":32,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":1,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":1,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0EL","NAME":"田中 和徳","PREFEC":14,"DISTRICT":10,"PARTY":1,"PIC":"P_20210802SNSA0013S","KANA":"たなか かずのり","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0ZI","NAME":"畑野 君枝","PREFEC":14,"DISTRICT":10,"PARTY":4,"PIC":"P_20210811SNSA0009S","KANA":"はたの きみえ","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001P2M","NAME":"金村 龍那","PREFEC":14,"DISTRICT":10,"PARTY":5,"PIC":"P_20210830SNSA0008S","KANA":"かねむら りゅうな","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":5,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0DY","NAME":"林 伸明","PREFEC":14,"DISTRICT":11,"PARTY":4,"PIC":"P_20210916SNSA0013S","KANA":"はやし のぶあき","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001606","NAME":"小泉 進次郎","PREFEC":14,"DISTRICT":11,"PARTY":1,"PIC":"P_20210912SNSA0008S","KANA":"こいずみ しんじろう","AGE":40,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2N8","NAME":"星野 剛士","PREFEC":14,"DISTRICT":12,"PARTY":1,"PIC":"P_20210928SNSA0002S","KANA":"ほしの つよし","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0ER","NAME":"阿部 知子","PREFEC":14,"DISTRICT":12,"PARTY":2,"PIC":"P_20210928SNSA0001S","KANA":"あべ ともこ","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":7,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":2,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2LN","NAME":"水戸 将史","PREFEC":14,"DISTRICT":12,"PARTY":5,"PIC":"P_20210928SNSA0003S","KANA":"みと まさし","AGE":59,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002724","NAME":"太 栄志","PREFEC":14,"DISTRICT":13,"PARTY":2,"PIC":"P_20200925SNSA0008S","KANA":"ふとり ひでし","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0EY","NAME":"甘利 明","PREFEC":14,"DISTRICT":13,"PARTY":1,"PIC":"P_20210911SNSA0002S","KANA":"あまり あきら","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":99,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ9T9","NAME":"長友 克洋","PREFEC":14,"DISTRICT":14,"PARTY":2,"PIC":"P_20210716SNSA0001S","KANA":"ながとも よしひろ","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":4,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ2NZ","NAME":"赤間 二郎","PREFEC":14,"DISTRICT":14,"PARTY":1,"PIC":"P_20210727SNSA0025S","KANA":"あかま じろう","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000277A","NAME":"佐々木 克己","PREFEC":14,"DISTRICT":15,"PARTY":7,"PIC":"P_20210727SNSA0033S","KANA":"ささき かつみ","AGE":66,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0F6","NAME":"河野 太郎","PREFEC":14,"DISTRICT":15,"PARTY":1,"PIC":"P_20211007SNSA0053S","KANA":"こうの たろう","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L8B","NAME":"渡辺 麻里子","PREFEC":14,"DISTRICT":15,"PARTY":9,"PIC":"","KANA":"わたなべ まりこ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000120A","NAME":"義家 弘介","PREFEC":14,"DISTRICT":16,"PARTY":1,"PIC":"P_20210918SNSA0001S","KANA":"よしいえ ひろゆき","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000CDR","NAME":"後藤 祐一","PREFEC":14,"DISTRICT":16,"PARTY":2,"PIC":"P_20210930SNSA0001S","KANA":"ごとう ゆういち","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":99,"Q7_4":4,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000015W1","NAME":"牧島 かれん","PREFEC":14,"DISTRICT":17,"PARTY":1,"PIC":"P_20211011SNSA0010S","KANA":"まきしま かれん","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000013N8","NAME":"神山 洋介","PREFEC":14,"DISTRICT":17,"PARTY":2,"PIC":"P_20210909SNSA0007S","KANA":"かみやま ようすけ","AGE":46,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L7U","NAME":"山田 正","PREFEC":14,"DISTRICT":17,"PARTY":4,"PIC":"P_20210914SNSA0003S","KANA":"やまだ ただし","AGE":70,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000015Q0","NAME":"三村 和也","PREFEC":14,"DISTRICT":18,"PARTY":2,"PIC":"P_20210811SNSA0003S","KANA":"みむら かずや","AGE":46,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O51","NAME":"横田 光弘","PREFEC":14,"DISTRICT":18,"PARTY":5,"PIC":"P_20210827SNSA0008S","KANA":"よこた みつひろ","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":5,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0FJ","NAME":"山際 大志郎","PREFEC":14,"DISTRICT":18,"PARTY":1,"PIC":"P_20210813SNSA0001S","KANA":"やまぎわ だいしろう","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MMG","NAME":"石崎 徹","PREFEC":15,"DISTRICT":1,"PARTY":5,"PIC":"P_20210730SNSA0077S","KANA":"いしざき とおる","AGE":37,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":3,"Q7_2":1,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0ZT","NAME":"塚田 一郎","PREFEC":15,"DISTRICT":1,"PARTY":1,"PIC":"P_20210730SNSA0048S","KANA":"つかだ いちろう","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0FL","NAME":"西村 智奈美","PREFEC":15,"DISTRICT":1,"PARTY":2,"PIC":"P_20210730SNSA0003S","KANA":"にしむら ちなみ","AGE":54,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000FZC","NAME":"高倉 栄","PREFEC":15,"DISTRICT":2,"PARTY":6,"PIC":"P_20211007SNSA0017S","KANA":"たかくら さかえ","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NK4","NAME":"細田 健一","PREFEC":15,"DISTRICT":2,"PARTY":1,"PIC":"P_20211007SNSA0014S","KANA":"ほそだ けんいち","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":2,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001SHJ","NAME":"平 あや子","PREFEC":15,"DISTRICT":2,"PARTY":4,"PIC":"P_20211007SNSA0013S","KANA":"たいら あやこ","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000008D","NAME":"黒岩 宇洋","PREFEC":15,"DISTRICT":3,"PARTY":2,"PIC":"P_20210730SNSA0005S","KANA":"くろいわ たかひろ","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NDE","NAME":"斎藤 洋明","PREFEC":15,"DISTRICT":3,"PARTY":1,"PIC":"P_20210730SNSA0023S","KANA":"さいとう ひろあき","AGE":44,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0FV","NAME":"菊田 真紀子","PREFEC":15,"DISTRICT":4,"PARTY":2,"PIC":"P_20210730SNSA0009S","KANA":"きくた まきこ","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000CUJ","NAME":"国定 勇人","PREFEC":15,"DISTRICT":4,"PARTY":1,"PIC":"P_20210730SNSA0029S","KANA":"くにさだ いさと","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":1,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000004FS","NAME":"米山 隆一","PREFEC":15,"DISTRICT":5,"PARTY":12,"PIC":"P_20210915SNSA0032S","KANA":"よねやま りゅういち","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000138L","NAME":"森 民夫","PREFEC":15,"DISTRICT":5,"PARTY":12,"PIC":"P_20210921SNSA0010S","KANA":"もり たみお","AGE":72,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000160B","NAME":"泉田 裕彦","PREFEC":15,"DISTRICT":5,"PARTY":1,"PIC":"P_20210915SNSA0029S","KANA":"いずみだ ひろひこ","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000FVS","NAME":"梅谷 守","PREFEC":15,"DISTRICT":6,"PARTY":2,"PIC":"P_20210730SNSA0008S","KANA":"うめたに まもる","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"ZZZZZ0G6","NAME":"高鳥 修一","PREFEC":15,"DISTRICT":6,"PARTY":1,"PIC":"P_20210730SNSA0034S","KANA":"たかとり しゅういち","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RQT","NAME":"神鳥 古賛","PREFEC":15,"DISTRICT":6,"PARTY":12,"PIC":"P_20211019SNSA0007S","KANA":"かんどり こさん","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":1,"Q6_2":3,"Q6_3":5,"Q6_4":3,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZAAP","NAME":"青山 了介","PREFEC":16,"DISTRICT":1,"PARTY":4,"PIC":"P_20210727SNSA0030S","KANA":"あおやま りょうすけ","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0GC","NAME":"西尾 政英","PREFEC":16,"DISTRICT":1,"PARTY":2,"PIC":"P_20210729SNSA0005S","KANA":"にしお まさえい","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":2,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":4,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001DJP","NAME":"田畑 裕明","PREFEC":16,"DISTRICT":1,"PARTY":1,"PIC":"P_20210719SNSA0014S","KANA":"たばた ひろあき","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":4,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":5,"Q6_17":4,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000FNR","NAME":"吉田 豊史","PREFEC":16,"DISTRICT":1,"PARTY":5,"PIC":"P_20210720SNSA0001S","KANA":"よしだ とよふみ","AGE":51,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ2SV","NAME":"上田 英俊","PREFEC":16,"DISTRICT":2,"PARTY":1,"PIC":"P_20210720SNSA0009S","KANA":"うえだ えいしゅん","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":3,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L4R","NAME":"越川 康晴","PREFEC":16,"DISTRICT":2,"PARTY":2,"PIC":"P_20210902SNSA0012S","KANA":"こしかわ やすはる","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000002TS","NAME":"橘 慶一郎","PREFEC":16,"DISTRICT":3,"PARTY":1,"PIC":"P_20210719SNSA0013S","KANA":"たちばな けいいちろう","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0GG","NAME":"坂本 洋史","PREFEC":16,"DISTRICT":3,"PARTY":4,"PIC":"P_20210727SNSA0028S","KANA":"さかもと ひろし","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000O3W","NAME":"小林 誠","PREFEC":17,"DISTRICT":1,"PARTY":5,"PIC":"P_20210727SNSA0019S","KANA":"こばやし まこと","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002IQE","NAME":"荒井 淳志","PREFEC":17,"DISTRICT":1,"PARTY":2,"PIC":"P_20200915SNSA0004S","KANA":"あらい あつし","AGE":27,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LG5","NAME":"小森 卓郎","PREFEC":17,"DISTRICT":1,"PARTY":1,"PIC":"P_20211006SNSA0023S","KANA":"こもり たくお","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001PDC","NAME":"亀田 良典","PREFEC":17,"DISTRICT":1,"PARTY":4,"PIC":"P_20200915SNSA0005S","KANA":"かめだ りょうすけ","AGE":72,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":5,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0GO","NAME":"坂本 浩","PREFEC":17,"DISTRICT":2,"PARTY":4,"PIC":"P_20200915SNSA0006S","KANA":"さかもと ひろし","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NM9","NAME":"佐々木 紀","PREFEC":17,"DISTRICT":2,"PARTY":1,"PIC":"P_20210730SNSA0007S","KANA":"ささき はじめ","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001D4A","NAME":"山本 保彦","PREFEC":17,"DISTRICT":2,"PARTY":12,"PIC":"P_20211019SNSA0008S","KANA":"やまもと やすひこ","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2UG","NAME":"倉知 昭一","PREFEC":17,"DISTRICT":3,"PARTY":12,"PIC":"P_20211015SNSA0023S","KANA":"くらち しょういち","AGE":85,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZADO","NAME":"西田 昭二","PREFEC":17,"DISTRICT":3,"PARTY":1,"PIC":"P_20210726SNSA0019S","KANA":"にしだ しょうじ","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000013DV","NAME":"近藤 和也","PREFEC":17,"DISTRICT":3,"PARTY":2,"PIC":"P_20210727SNSA0018S","KANA":"こんどう かずや","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":4,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":5,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2UR","NAME":"野田 富久","PREFEC":18,"DISTRICT":1,"PARTY":2,"PIC":"P_20210728SNSA0011S","KANA":"のだ とみひさ","AGE":74,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":4,"Q6_9":3,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004OK","NAME":"稲田 朋美","PREFEC":18,"DISTRICT":1,"PARTY":1,"PIC":"P_20211004SNSA0025S","KANA":"いなだ ともみ","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0GX","NAME":"高木 毅","PREFEC":18,"DISTRICT":2,"PARTY":1,"PIC":"P_20211013SNSA0001S","KANA":"たかぎ つよし","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001536","NAME":"斉木 武志","PREFEC":18,"DISTRICT":2,"PARTY":2,"PIC":"P_20211004SNSA0026S","KANA":"さいき たけし","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":7,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MNR","NAME":"中谷 真一","PREFEC":19,"DISTRICT":1,"PARTY":1,"PIC":"P_20210726SNSA0023S","KANA":"なかたに しんいち","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MNT","NAME":"中島 克仁","PREFEC":19,"DISTRICT":1,"PARTY":2,"PIC":"P_20210820SNSA0002S","KANA":"なかじま かつひと","AGE":54,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L3O","NAME":"辺見 信介","PREFEC":19,"DISTRICT":1,"PARTY":9,"PIC":"P_20210903SNSA0012S","KANA":"へんみ のぶゆき","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":4,"Q7_6":1,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001HFI","NAME":"市来 伴子","PREFEC":19,"DISTRICT":2,"PARTY":2,"PIC":"P_20210726SNSA0022S","KANA":"いちき ともこ","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":5,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001DFZ","NAME":"大久保 令子","PREFEC":19,"DISTRICT":2,"PARTY":4,"PIC":"P_20210909SNSA0005S","KANA":"おおくぼ れいこ","AGE":71,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NY0","NAME":"堀内 詔子","PREFEC":19,"DISTRICT":2,"PARTY":1,"PIC":"P_20210726SNSA0021S","KANA":"ほりうち のりこ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0H8","NAME":"篠原 孝","PREFEC":20,"DISTRICT":1,"PARTY":2,"PIC":"P_20210728SNSA0003S","KANA":"しのはら たかし","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":5,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":3,"Q6_14":5,"Q6_15":2,"Q6_16":5,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CBE","NAME":"若林 健太","PREFEC":20,"DISTRICT":1,"PARTY":1,"PIC":"P_20210728SNSA0004S","KANA":"わかばやし けんた","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001TJA","NAME":"手塚 大輔","PREFEC":20,"DISTRICT":2,"PARTY":5,"PIC":"P_20210929SNSA0008S","KANA":"てづか だいすけ","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0H9","NAME":"下条 みつ","PREFEC":20,"DISTRICT":2,"PARTY":2,"PIC":"P_20210929SNSA0007S","KANA":"しもじょう みつ","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000015UQ","NAME":"務台 俊介","PREFEC":20,"DISTRICT":2,"PARTY":1,"PIC":"P_20210915SNSA0013S","KANA":"むたい しゅんすけ","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":1},{"ID":"00002KWK","NAME":"神津 健","PREFEC":20,"DISTRICT":3,"PARTY":2,"PIC":"P_20210903SNSA0006S","KANA":"こうづ たけし","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CIW","NAME":"井出 庸生","PREFEC":20,"DISTRICT":3,"PARTY":1,"PIC":"P_20210927SNSA0012S","KANA":"いで ようせい","AGE":43,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LG0","NAME":"池 高生","PREFEC":20,"DISTRICT":3,"PARTY":9,"PIC":"P_20211008SNSA0025S","KANA":"いけ たかお","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":6,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":5,"Q6_5":1,"Q6_6":3,"Q6_7":5,"Q6_8":1,"Q6_9":1,"Q6_10":5,"Q6_11":5,"Q6_12":1,"Q6_13":1,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":5,"Q7_1":1,"Q7_2":3,"Q7_3":1,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000273I","NAME":"長瀬 由希子","PREFEC":20,"DISTRICT":4,"PARTY":4,"PIC":"P_20210906SNSA0006S","KANA":"ながせ ゆきこ","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0HF","NAME":"後藤 茂之","PREFEC":20,"DISTRICT":4,"PARTY":1,"PIC":"P_20210904SNSA0003S","KANA":"ごとう しげゆき","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0HL","NAME":"宮下 一郎","PREFEC":20,"DISTRICT":5,"PARTY":1,"PIC":"P_20210908SNSA0003S","KANA":"みやした いちろう","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000002JU","NAME":"曽我 逸郎","PREFEC":20,"DISTRICT":5,"PARTY":2,"PIC":"P_20210908SNSA0004S","KANA":"そが いつろう","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002DT6","NAME":"土田 正光","PREFEC":21,"DISTRICT":1,"PARTY":11,"PIC":"P_20210909SNSA0010S","KANA":"つちだ まさみつ","AGE":77,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":6,"Q2_3":1,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":2,"Q6_7":2,"Q6_8":4,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":4,"Q6_16":5,"Q6_17":4,"Q7_1":3,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":5,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002L76","NAME":"川本 慧佑","PREFEC":21,"DISTRICT":1,"PARTY":2,"PIC":"P_20210910SNSA0007S","KANA":"かわもと けいすけ","AGE":30,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0HO","NAME":"野田 聖子","PREFEC":21,"DISTRICT":1,"PARTY":1,"PIC":"P_20210715SNSA0006S","KANA":"のだ せいこ","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":2,"Q6_2":99,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"00001W3P","NAME":"山越 徹","PREFEC":21,"DISTRICT":1,"PARTY":4,"PIC":"P_20210916SNSA0009S","KANA":"やまこし とおる","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L8R","NAME":"三尾 圭司","PREFEC":21,"DISTRICT":2,"PARTY":4,"PIC":"P_20210915SNSA0031S","KANA":"みお けいじ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002IQ7","NAME":"大谷 由里子","PREFEC":21,"DISTRICT":2,"PARTY":6,"PIC":"P_20211012SNSA0015S","KANA":"おおたに ゆりこ","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":4,"Q6_11":4,"Q6_12":4,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":4,"Q7_2":4,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0HR","NAME":"棚橋 泰文","PREFEC":21,"DISTRICT":2,"PARTY":1,"PIC":"P_20211011SNSA0019S","KANA":"たなはし やすふみ","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0FB","NAME":"阪口 直人","PREFEC":21,"DISTRICT":3,"PARTY":2,"PIC":"P_20201012SNSA0001S","KANA":"さかぐち なおと","AGE":58,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000004JL","NAME":"武藤 容治","PREFEC":21,"DISTRICT":3,"PARTY":1,"PIC":"P_20210716SNSA0011S","KANA":"むとう ようじ","AGE":66,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":4,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002735","NAME":"金子 俊平","PREFEC":21,"DISTRICT":4,"PARTY":1,"PIC":"P_20210715SNSA0008S","KANA":"かねこ しゅんぺい","AGE":43,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":8,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000016Y4","NAME":"今井 雅人","PREFEC":21,"DISTRICT":4,"PARTY":2,"PIC":"P_20210922SNSA0012S","KANA":"いまい まさと","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000127G","NAME":"佐伯 哲也","PREFEC":21,"DISTRICT":4,"PARTY":5,"PIC":"P_20211013SNSA0030S","KANA":"さえき てつや","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0I0","NAME":"古屋 圭司","PREFEC":21,"DISTRICT":5,"PARTY":1,"PIC":"P_20211007SNSA0034S","KANA":"ふるや けいじ","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":3,"Q6_15":5,"Q6_16":5,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L8P","NAME":"今井 瑠々","PREFEC":21,"DISTRICT":5,"PARTY":2,"PIC":"P_20211007SNSA0032S","KANA":"いまい るる","AGE":25,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"0000012R","NAME":"山田 良司","PREFEC":21,"DISTRICT":5,"PARTY":5,"PIC":"P_20211007SNSA0035S","KANA":"やまだ りょうじ","AGE":61,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZB13","NAME":"小関 祥子","PREFEC":21,"DISTRICT":5,"PARTY":4,"PIC":"P_20211007SNSA0033S","KANA":"おぜき しょうこ","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":4,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66}];
var dat2_1 = [{"ID":"00001NXY","NAME":"高橋 美穂","PREFEC":22,"DISTRICT":1,"PARTY":6,"PIC":"P_20210908SNSA0013S","KANA":"たかはし みほ","AGE":56,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":4,"Q6_12":4,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000026YR","NAME":"青山 雅幸","PREFEC":22,"DISTRICT":1,"PARTY":5,"PIC":"P_20211017SNSA0008S","KANA":"あおやま まさゆき","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0I4","NAME":"上川 陽子","PREFEC":22,"DISTRICT":1,"PARTY":1,"PIC":"P_20210903SNSA0009S","KANA":"かみかわ ようこ","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00001D48","NAME":"遠藤 行洋","PREFEC":22,"DISTRICT":1,"PARTY":2,"PIC":"P_20210917SNSA0008S","KANA":"えんどう ゆきひろ","AGE":59,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":4,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":5,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002DS6","NAME":"山口 祐樹","PREFEC":22,"DISTRICT":2,"PARTY":4,"PIC":"P_20210917SNSA0004S","KANA":"やまぐち ゆうき","AGE":31,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MOH","NAME":"井林 辰憲","PREFEC":22,"DISTRICT":2,"PARTY":1,"PIC":"P_20210912SNSA0006S","KANA":"いばやし たつのり","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":3,"Q6_16":5,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NY8","NAME":"福村 隆","PREFEC":22,"DISTRICT":2,"PARTY":2,"PIC":"P_20210912SNSA0005S","KANA":"ふくむら たかし","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013E5","NAME":"小山 展弘","PREFEC":22,"DISTRICT":3,"PARTY":2,"PIC":"P_20210921SNSA0008S","KANA":"こやま のぶひろ","AGE":45,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":99,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001N0V","NAME":"宮沢 博行","PREFEC":22,"DISTRICT":3,"PARTY":1,"PIC":"P_20210921SNSA0009S","KANA":"みやざわ ひろゆき","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000185B","NAME":"深沢 陽一","PREFEC":22,"DISTRICT":4,"PARTY":1,"PIC":"P_20210915SNSA0035S","KANA":"ふかざわ よういち","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":8,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":4,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZFXL","NAME":"田中 健","PREFEC":22,"DISTRICT":4,"PARTY":6,"PIC":"P_20210915SNSA0034S","KANA":"たなか けん","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000G1N","NAME":"中村 憲一","PREFEC":22,"DISTRICT":4,"PARTY":5,"PIC":"P_20210915SNSA0039S","KANA":"なかむら けんいち","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0II","NAME":"細野 豪志","PREFEC":22,"DISTRICT":5,"PARTY":12,"PIC":"P_20210913SNSA0013S","KANA":"ほその ごうし","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":4,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L7P","NAME":"小野 範和","PREFEC":22,"DISTRICT":5,"PARTY":2,"PIC":"P_20210913SNSA0011S","KANA":"おの のりかず","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":7,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NFS","NAME":"吉川 赳","PREFEC":22,"DISTRICT":5,"PARTY":1,"PIC":"P_20210914SNSA0012S","KANA":"よしかわ たける","AGE":39,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":3,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L7Q","NAME":"千田 光","PREFEC":22,"DISTRICT":5,"PARTY":11,"PIC":"P_20210913SNSA0012S","KANA":"ちだ ひかる","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":3,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":5,"Q6_15":5,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001MNQ","NAME":"勝俣 孝明","PREFEC":22,"DISTRICT":6,"PARTY":1,"PIC":"P_20210908SNSA0019S","KANA":"かつまた たかあき","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":4,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L7V","NAME":"山下 洸棋","PREFEC":22,"DISTRICT":6,"PARTY":5,"PIC":"P_20210924SNSA0010S","KANA":"やました こうき","AGE":30,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0IL","NAME":"渡辺 周","PREFEC":22,"DISTRICT":6,"PARTY":2,"PIC":"P_20210908SNSA0020S","KANA":"わたなべ しゅう","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":1,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":99,"Q6_13":3,"Q6_14":3,"Q6_15":4,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":1,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NZV","NAME":"日吉 雄太","PREFEC":22,"DISTRICT":7,"PARTY":2,"PIC":"P_20210914SNSA0007S","KANA":"ひよし ゆうた","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0IR","NAME":"城内 実","PREFEC":22,"DISTRICT":7,"PARTY":1,"PIC":"P_20210915SNSA0009S","KANA":"きうち みのる","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":5,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":4,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":5,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":4,"Q7_1":1,"Q7_2":1,"Q7_3":5,"Q7_4":2,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000N2T","NAME":"源馬 謙太郎","PREFEC":22,"DISTRICT":8,"PARTY":2,"PIC":"P_20210915SNSA0020S","KANA":"げんま けんたろう","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0IS","NAME":"塩谷 立","PREFEC":22,"DISTRICT":8,"PARTY":1,"PIC":"P_20211005SNSA0010S","KANA":"しおのや りゅう","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ369","NAME":"熊田 裕通","PREFEC":23,"DISTRICT":1,"PARTY":1,"PIC":"P_20210816SNSA0008S","KANA":"くまだ ひろみち","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":99,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":99,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002GHE","NAME":"門田 節代","PREFEC":23,"DISTRICT":1,"PARTY":9,"PIC":"P_20211007SNSA0037S","KANA":"かどた せつよ","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":2,"Q6_12":5,"Q6_13":2,"Q6_14":3,"Q6_15":5,"Q6_16":2,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001A9R","NAME":"吉田 統彦","PREFEC":23,"DISTRICT":1,"PARTY":2,"PIC":"P_20210909SNSA0013S","KANA":"よしだ つねひこ","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":4,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"ZZZZZ0IY","NAME":"古川 元久","PREFEC":23,"DISTRICT":2,"PARTY":6,"PIC":"P_20210802SNSA0015S","KANA":"ふるかわ もとひさ","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ4XC","NAME":"中川 貴元","PREFEC":23,"DISTRICT":2,"PARTY":1,"PIC":"P_20210901SNSA0004S","KANA":"なかがわ たかもと","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MO2","NAME":"池田 佳隆","PREFEC":23,"DISTRICT":3,"PARTY":1,"PIC":"P_20211005SNSA0008S","KANA":"いけだ よしたか","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0J1","NAME":"近藤 昭一","PREFEC":23,"DISTRICT":3,"PARTY":2,"PIC":"P_20210803SNSA0004S","KANA":"こんどう しょういち","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ4YM","NAME":"工藤 彰三","PREFEC":23,"DISTRICT":4,"PARTY":1,"PIC":"P_20210907SNSA0004S","KANA":"くどう しょうぞう","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":8,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KX7","NAME":"中田 千代","PREFEC":23,"DISTRICT":4,"PARTY":5,"PIC":"P_20210802SNSA0010S","KANA":"なかた ちよ","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":5,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":5,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0J5","NAME":"牧 義夫","PREFEC":23,"DISTRICT":4,"PARTY":2,"PIC":"P_20210730SNSA0025S","KANA":"まき よしお","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GHB","NAME":"岬 麻紀","PREFEC":23,"DISTRICT":5,"PARTY":5,"PIC":"P_20210907SNSA0012S","KANA":"みさき まき","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ36R","NAME":"西川 厚志","PREFEC":23,"DISTRICT":5,"PARTY":2,"PIC":"P_20210729SNSA0013S","KANA":"にしかわ あつし","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":5,"Q6_1":4,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O4J","NAME":"神田 憲次","PREFEC":23,"DISTRICT":5,"PARTY":1,"PIC":"P_20210806SNSA0004S","KANA":"かんだ けんじ","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZBG1","NAME":"内田 謙","PREFEC":23,"DISTRICT":6,"PARTY":4,"PIC":"P_20211007SNSA0048S","KANA":"うちだ けん","AGE":71,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000AD5","NAME":"松田 功","PREFEC":23,"DISTRICT":6,"PARTY":2,"PIC":"P_20211006SNSA0007S","KANA":"まつだ いさお","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0JB","NAME":"丹羽 秀樹","PREFEC":23,"DISTRICT":6,"PARTY":1,"PIC":"P_20211007SNSA0046S","KANA":"にわ ひでき","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001SHU","NAME":"須山 初美","PREFEC":23,"DISTRICT":7,"PARTY":4,"PIC":"P_20210729SNSA0002S","KANA":"すやま はつみ","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004FT","NAME":"森本 和義","PREFEC":23,"DISTRICT":7,"PARTY":2,"PIC":"P_20210729SNSA0003S","KANA":"もりもと かずよし","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ01S","NAME":"鈴木 淳司","PREFEC":23,"DISTRICT":7,"PARTY":1,"PIC":"P_20210727SNSA0035S","KANA":"すずき じゅんじ","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0JJ","NAME":"伴野 豊","PREFEC":23,"DISTRICT":8,"PARTY":2,"PIC":"P_20211007SNSA0047S","KANA":"ばんの ゆたか","AGE":60,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ39E","NAME":"伊藤 忠彦","PREFEC":23,"DISTRICT":8,"PARTY":1,"PIC":"P_20211012SNSA0012S","KANA":"いとう ただひこ","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":4,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"ZZZZZ392","NAME":"長坂 康正","PREFEC":23,"DISTRICT":9,"PARTY":1,"PIC":"P_20211006SNSA0022S","KANA":"ながさか やすまさ","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":1,"Q7_5":4,"Q7_6":1,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0JN","NAME":"岡本 充功","PREFEC":23,"DISTRICT":9,"PARTY":2,"PIC":"P_20210730SNSA0058S","KANA":"おかもと みつのり","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0JR","NAME":"江崎 鉄磨","PREFEC":23,"DISTRICT":10,"PARTY":1,"PIC":"P_20211016SNSA0008S","KANA":"えさき てつま","AGE":78,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":1,"Q6_14":5,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":5,"Q7_2":5,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CBT","NAME":"安井 美沙子","PREFEC":23,"DISTRICT":10,"PARTY":10,"PIC":"P_20210909SNSA0020S","KANA":"やすい みさこ","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002IP8","NAME":"藤原 規真","PREFEC":23,"DISTRICT":10,"PARTY":2,"PIC":"P_20210909SNSA0018S","KANA":"ふじわら のりまさ","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZBCN","NAME":"板倉 正文","PREFEC":23,"DISTRICT":10,"PARTY":4,"PIC":"P_20210909SNSA0019S","KANA":"いたくら まさふみ","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000455","NAME":"杉本 和巳","PREFEC":23,"DISTRICT":10,"PARTY":5,"PIC":"P_20211004SNSA0003S","KANA":"すぎもと かずみ","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZBJL","NAME":"八木 哲也","PREFEC":23,"DISTRICT":11,"PARTY":1,"PIC":"P_20210923SNSA0004S","KANA":"やぎ てつや","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000272G","NAME":"本多 信弘","PREFEC":23,"DISTRICT":11,"PARTY":4,"PIC":"P_20210923SNSA0001S","KANA":"ほんだ のぶひろ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LQA","NAME":"梅村 忠司","PREFEC":23,"DISTRICT":11,"PARTY":12,"PIC":"P_20211018SNSA0046S","KANA":"うめむら ただし","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001DKB","NAME":"重徳 和彦","PREFEC":23,"DISTRICT":12,"PARTY":2,"PIC":"P_20211017SNSA0032S","KANA":"しげとく かずひこ","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001MN2","NAME":"青山 周平","PREFEC":23,"DISTRICT":12,"PARTY":1,"PIC":"P_20211017SNSA0031S","KANA":"あおやま しゅうへい","AGE":44,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":99,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000014T0","NAME":"石井 拓","PREFEC":23,"DISTRICT":13,"PARTY":1,"PIC":"P_20211006SNSA0013S","KANA":"いしい たく","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":1,"Q7_5":3,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000013AX","NAME":"大西 健介","PREFEC":23,"DISTRICT":13,"PARTY":2,"PIC":"P_20211007SNSA0001S","KANA":"おおにし けんすけ","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"000027BH","NAME":"田中 克典","PREFEC":23,"DISTRICT":14,"PARTY":2,"PIC":"P_20210908SNSA0012S","KANA":"たなか かつのり","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MN8","NAME":"今枝 宗一郎","PREFEC":23,"DISTRICT":14,"PARTY":1,"PIC":"P_20210908SNSA0017S","KANA":"いまえだ そういちろう","AGE":37,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027AZ","NAME":"野沢 康幸","PREFEC":23,"DISTRICT":14,"PARTY":4,"PIC":"P_20211018SNSA0028S","KANA":"のざわ やすゆき","AGE":33,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L6O","NAME":"菅谷 竜","PREFEC":23,"DISTRICT":15,"PARTY":10,"PIC":"P_20210908SNSA0022S","KANA":"すがや りゅう","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RTA","NAME":"関 健一郎","PREFEC":23,"DISTRICT":15,"PARTY":2,"PIC":"P_20210908SNSA0016S","KANA":"せき けんいちろう","AGE":43,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":5,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZBBN","NAME":"根本 幸典","PREFEC":23,"DISTRICT":15,"PARTY":1,"PIC":"P_20210908SNSA0018S","KANA":"ねもと ゆきのり","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000816","NAME":"松田 直久","PREFEC":24,"DISTRICT":1,"PARTY":2,"PIC":"P_20210727SNSA0004S","KANA":"まつだ なおひさ","AGE":67,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":1,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0KH","NAME":"田村 憲久","PREFEC":24,"DISTRICT":1,"PARTY":1,"PIC":"P_20211012SNSA0003S","KANA":"たむら のりひさ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"00002LMY","NAME":"山田 いずみ","PREFEC":24,"DISTRICT":1,"PARTY":9,"PIC":"P_20211015SNSA0004S","KANA":"やまだ いずみ","AGE":35,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":5,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":5,"Q6_13":3,"Q6_14":3,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":4,"Q7_6":1,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0KC","NAME":"中川 正春","PREFEC":24,"DISTRICT":2,"PARTY":2,"PIC":"P_20200930SNSA0003S","KANA":"なかがわ まさはる","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002LEI","NAME":"川崎 秀人","PREFEC":24,"DISTRICT":2,"PARTY":1,"PIC":"P_20210930SNSA0009S","KANA":"かわさき ひでと","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":5,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0KE","NAME":"岡田 克也","PREFEC":24,"DISTRICT":3,"PARTY":2,"PIC":"P_20210730SNSA0002S","KANA":"おかだ かつや","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":3,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":5,"Q7_5":3,"Q7_6":5,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000FKB","NAME":"石原 正敬","PREFEC":24,"DISTRICT":3,"PARTY":1,"PIC":"P_20210930SNSA0013S","KANA":"いしはら まさたか","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001L9M","NAME":"中川 民英","PREFEC":24,"DISTRICT":4,"PARTY":4,"PIC":"P_20210810SNSA0005S","KANA":"なかがわ たみひで","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KKU","NAME":"坊農 秀治","PREFEC":24,"DISTRICT":4,"PARTY":2,"PIC":"P_20210714SNSA0001S","KANA":"ぼうの しゅうじ","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001423","NAME":"鈴木 英敬","PREFEC":24,"DISTRICT":4,"PARTY":1,"PIC":"P_20210916SNSA0026S","KANA":"すずき えいけい","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L4I","NAME":"斎藤 アレックス","PREFEC":25,"DISTRICT":1,"PARTY":6,"PIC":"P_20210902SNSA0005S","KANA":"さいとう あれっくす","AGE":36,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"ZZZZZ5P0","NAME":"大岡 敏孝","PREFEC":25,"DISTRICT":1,"PARTY":1,"PIC":"P_20210906SNSA0005S","KANA":"おおおか としたか","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":4,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":5,"Q7_6":5,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KSR","NAME":"日高 千穂","PREFEC":25,"DISTRICT":1,"PARTY":9,"PIC":"P_20211013SNSA0014S","KANA":"ひだか ちほ","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":5,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":5,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ12D","NAME":"上野 賢一郎","PREFEC":25,"DISTRICT":2,"PARTY":1,"PIC":"P_20210905SNSA0003S","KANA":"うえの けんいちろう","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0KT","NAME":"田島 一成","PREFEC":25,"DISTRICT":2,"PARTY":2,"PIC":"P_20210905SNSA0006S","KANA":"たじま いっせい","AGE":59,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000005A1","NAME":"高井 崇志","PREFEC":25,"DISTRICT":3,"PARTY":10,"PIC":"P_20211007SNSA0022S","KANA":"たかい たかし","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":1,"Q2_3":8,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001RI9","NAME":"佐藤 耕平","PREFEC":25,"DISTRICT":3,"PARTY":4,"PIC":"P_20210831SNSA0003S","KANA":"さとう こうへい","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CDM","NAME":"武村 展英","PREFEC":25,"DISTRICT":3,"PARTY":1,"PIC":"P_20210905SNSA0001S","KANA":"たけむら のぶひで","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LG2","NAME":"直山 仁","PREFEC":25,"DISTRICT":3,"PARTY":5,"PIC":"P_20211007SNSA0021S","KANA":"なおやま ひとし","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ3CS","NAME":"徳永 久志","PREFEC":25,"DISTRICT":4,"PARTY":2,"PIC":"P_20210905SNSA0007S","KANA":"とくなが ひさし","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ3CX","NAME":"小寺 裕雄","PREFEC":25,"DISTRICT":4,"PARTY":1,"PIC":"P_20210905SNSA0002S","KANA":"こてら ひろお","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":5,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0L1","NAME":"穀田 恵二","PREFEC":26,"DISTRICT":1,"PARTY":4,"PIC":"P_20210719SNSA0005S","KANA":"こくた けいじ","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KW4","NAME":"堀場 幸子","PREFEC":26,"DISTRICT":1,"PARTY":5,"PIC":"P_20210727SNSA0037S","KANA":"ほりば さちこ","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002KZO","NAME":"勝目 康","PREFEC":26,"DISTRICT":1,"PARTY":1,"PIC":"P_20210824SNSA0001S","KANA":"かつめ やすし","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"0000271X","NAME":"繁本 護","PREFEC":26,"DISTRICT":2,"PARTY":1,"PIC":"P_20210806SNSA0001S","KANA":"しげもと まもる","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":5,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0L4","NAME":"前原 誠司","PREFEC":26,"DISTRICT":2,"PARTY":6,"PIC":"P_20210723SNSA0003S","KANA":"まえはら せいじ","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000271V","NAME":"地坂 拓晃","PREFEC":26,"DISTRICT":2,"PARTY":4,"PIC":"P_20210728SNSA0009S","KANA":"ちさか たくあき","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KVQ","NAME":"中 辰哉","PREFEC":26,"DISTRICT":2,"PARTY":10,"PIC":"P_20210725SNSA0001S","KANA":"なか たつや","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002BH3","NAME":"井上 博明","PREFEC":26,"DISTRICT":3,"PARTY":5,"PIC":"P_20211004SNSA0020S","KANA":"いのうえ ひろあき","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001RVN","NAME":"木村 弥生","PREFEC":26,"DISTRICT":3,"PARTY":1,"PIC":"P_20210720SNSA0002S","KANA":"きむら やよい","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":3,"Q6_10":4,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0L7","NAME":"泉 健太","PREFEC":26,"DISTRICT":3,"PARTY":2,"PIC":"P_20210823SNSA0005S","KANA":"いずみ けんた","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":2,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013HU","NAME":"吉田 幸一","PREFEC":26,"DISTRICT":4,"PARTY":4,"PIC":"P_20210728SNSA0007S","KANA":"よしだ こういち","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0LC","NAME":"北神 圭朗","PREFEC":26,"DISTRICT":4,"PARTY":12,"PIC":"P_20210823SNSA0002S","KANA":"きたがみ けいろう","AGE":54,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ51I","NAME":"田中 英之","PREFEC":26,"DISTRICT":4,"PARTY":1,"PIC":"P_20210726SNSA0015S","KANA":"たなか ひでゆき","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000027IH","NAME":"山本 和嘉子","PREFEC":26,"DISTRICT":5,"PARTY":2,"PIC":"P_20210823SNSA0006S","KANA":"やまもと わかこ","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001DLL","NAME":"山内 健","PREFEC":26,"DISTRICT":5,"PARTY":4,"PIC":"P_20210727SNSA0038S","KANA":"やまうち けん","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000276R","NAME":"井上 一徳","PREFEC":26,"DISTRICT":5,"PARTY":12,"PIC":"P_20210802SNSA0004S","KANA":"いのうえ かずのり","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":3,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001T2Q","NAME":"本田 太郎","PREFEC":26,"DISTRICT":5,"PARTY":1,"PIC":"P_20210802SNSA0005S","KANA":"ほんだ たろう","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002CGS","NAME":"中嶋 秀樹","PREFEC":26,"DISTRICT":6,"PARTY":5,"PIC":"P_20210727SNSA0040S","KANA":"なかじま ひでき","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0LG","NAME":"山井 和則","PREFEC":26,"DISTRICT":6,"PARTY":2,"PIC":"P_20210802SNSA0003S","KANA":"やまのい かずのり","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":5,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ3FB","NAME":"清水 鴻一郎","PREFEC":26,"DISTRICT":6,"PARTY":1,"PIC":"P_20210816SNSA0009S","KANA":"しみず こういちろう","AGE":75,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ53Z","NAME":"大西 宏幸","PREFEC":27,"DISTRICT":1,"PARTY":1,"PIC":"P_20210727SNSA0011S","KANA":"おおにし ひろゆき","AGE":54,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ530","NAME":"井上 英孝","PREFEC":27,"DISTRICT":1,"PARTY":5,"PIC":"P_20210722SNSA0001S","KANA":"いのうえ ひでたか","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001ROL","NAME":"村上 賀厚","PREFEC":27,"DISTRICT":1,"PARTY":2,"PIC":"P_20210722SNSA0002S","KANA":"むらかみ のりあつ","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":4,"Q7_5":2,"Q7_6":2,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001TTJ","NAME":"竹内 祥倫","PREFEC":27,"DISTRICT":1,"PARTY":4,"PIC":"P_20210721SNSA0006S","KANA":"たけうち よしのり","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ3IK","NAME":"尾辻 かな子","PREFEC":27,"DISTRICT":2,"PARTY":2,"PIC":"P_20210728SNSA0002S","KANA":"おつじ かなこ","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0LN","NAME":"左藤 章","PREFEC":27,"DISTRICT":2,"PARTY":1,"PIC":"P_20210730SNSA0011S","KANA":"さとう あきら","AGE":70,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001EYK","NAME":"守島 正","PREFEC":27,"DISTRICT":2,"PARTY":5,"PIC":"P_20210729SNSA0001S","KANA":"もりしま ただし","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":3,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":2,"Q6_7":4,"Q6_8":3,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":1,"Q6_16":2,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":1,"Q7_4":5,"Q7_5":4,"Q7_6":4,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"000004FO","NAME":"萩原 仁","PREFEC":27,"DISTRICT":3,"PARTY":2,"PIC":"P_20210728SNSA0001S","KANA":"はぎはら ひとし","AGE":54,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"000027I0","NAME":"中条 栄太郎","PREFEC":27,"DISTRICT":3,"PARTY":12,"PIC":"P_20210908SNSA0021S","KANA":"ちゅうじょう えいたろう","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":7,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":5,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":5,"Q6_14":1,"Q6_15":5,"Q6_16":1,"Q6_17":3,"Q7_1":5,"Q7_2":1,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ02C","NAME":"佐藤 茂樹","PREFEC":27,"DISTRICT":3,"PARTY":3,"PIC":"P_20210728SNSA0005S","KANA":"さとう しげき","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MJX","NAME":"渡部 結","PREFEC":27,"DISTRICT":3,"PARTY":4,"PIC":"P_20210729SNSA0010S","KANA":"わたなべ ゆい","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ3GR","NAME":"清水 忠史","PREFEC":27,"DISTRICT":4,"PARTY":4,"PIC":"P_20210722SNSA0003S","KANA":"しみず ただし","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ55X","NAME":"美延 映夫","PREFEC":27,"DISTRICT":4,"PARTY":5,"PIC":"P_20210722SNSA0004S","KANA":"みのべ てるお","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0LT","NAME":"吉田 治","PREFEC":27,"DISTRICT":4,"PARTY":2,"PIC":"P_20210722SNSA0005S","KANA":"よしだ おさむ","AGE":59,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0LS","NAME":"中山 泰秀","PREFEC":27,"DISTRICT":4,"PARTY":1,"PIC":"P_20211002SNSA0001S","KANA":"なかやま やすひで","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LO2","NAME":"籠池 諄子","PREFEC":27,"DISTRICT":5,"PARTY":12,"PIC":"P_20211015SNSA0030S","KANA":"かごいけ じゅんこ","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":99,"Q2_3":99,"Q6_1":3,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":3,"Q6_16":5,"Q6_17":5,"Q7_1":5,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002DCV","NAME":"大石 晃子","PREFEC":27,"DISTRICT":5,"PARTY":10,"PIC":"P_20210921SNSA0014S","KANA":"おおいし あきこ","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ12W","NAME":"宮本 岳志","PREFEC":27,"DISTRICT":5,"PARTY":4,"PIC":"P_20210802SNSA0007S","KANA":"みやもと たけし","AGE":61,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MI7","NAME":"国重 徹","PREFEC":27,"DISTRICT":5,"PARTY":3,"PIC":"P_20210730SNSA0047S","KANA":"くにしげ とおる","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001MI6","NAME":"伊佐 進一","PREFEC":27,"DISTRICT":6,"PARTY":3,"PIC":"P_20210731SNSA0001S","KANA":"いさ しんいち","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0LY","NAME":"村上 史好","PREFEC":27,"DISTRICT":6,"PARTY":2,"PIC":"P_20210802SNSA0002S","KANA":"むらかみ ふみよし","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000275M","NAME":"星 健太郎","PREFEC":27,"DISTRICT":6,"PARTY":12,"PIC":"P_20211018SNSA0043S","KANA":"ほし けんたろう","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":6,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000ODL","NAME":"奥下 剛光","PREFEC":27,"DISTRICT":7,"PARTY":5,"PIC":"P_20210728SNSA0036S","KANA":"おくした たけみつ","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":1,"Q6_9":1,"Q6_10":4,"Q6_11":5,"Q6_12":1,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZG48","NAME":"渡嘉敷 奈緒美","PREFEC":27,"DISTRICT":7,"PARTY":1,"PIC":"P_20210728SNSA0035S","KANA":"とかしき なおみ","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWG","NAME":"川添 健真","PREFEC":27,"DISTRICT":7,"PARTY":4,"PIC":"P_20210917SNSA0003S","KANA":"かわそえ たつま","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002730","NAME":"乃木 涼介","PREFEC":27,"DISTRICT":7,"PARTY":2,"PIC":"P_20210728SNSA0033S","KANA":"のぎ りょうすけ","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":4,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ3HI","NAME":"西川 弘城","PREFEC":27,"DISTRICT":7,"PARTY":10,"PIC":"P_20210917SNSA0006S","KANA":"にしかわ ひろき","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001SLU","NAME":"高麗 啓一郎","PREFEC":27,"DISTRICT":8,"PARTY":1,"PIC":"P_20211017SNSA0007S","KANA":"こうらい けいいちろう","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001FYH","NAME":"漆間 譲司","PREFEC":27,"DISTRICT":8,"PARTY":5,"PIC":"P_20210712SNSA0007S","KANA":"うるま じょうじ","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001FBO","NAME":"松井 博史","PREFEC":27,"DISTRICT":8,"PARTY":2,"PIC":"P_20210702SNSA0001S","KANA":"まつい ひろふみ","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ3KN","NAME":"原田 憲治","PREFEC":27,"DISTRICT":9,"PARTY":1,"PIC":"P_20210727SNSA0012S","KANA":"はらだ けんじ","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":99,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002G96","NAME":"大椿 裕子","PREFEC":27,"DISTRICT":9,"PARTY":7,"PIC":"P_20210720SNSA0005S","KANA":"おおつばき ゆうこ","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001N6O","NAME":"足立 康史","PREFEC":27,"DISTRICT":9,"PARTY":5,"PIC":"P_20201007SNSA0001S","KANA":"あだち やすし","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":4,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":5,"Q7_5":4,"Q7_6":1,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LLB","NAME":"磯部 和哉","PREFEC":27,"DISTRICT":9,"PARTY":12,"PIC":"P_20211012SNSA0029S","KANA":"いそべ かずや","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":7,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":2,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":1,"Q7_3":3,"Q7_4":5,"Q7_5":1,"Q7_6":5,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ12Z","NAME":"辻元 清美","PREFEC":27,"DISTRICT":10,"PARTY":2,"PIC":"P_20210728SNSA0026S","KANA":"つじもと きよみ","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001GTC","NAME":"池下 卓","PREFEC":27,"DISTRICT":10,"PARTY":5,"PIC":"P_20210728SNSA0031S","KANA":"いけした たく","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":2,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NYB","NAME":"大隈 和英","PREFEC":27,"DISTRICT":10,"PARTY":1,"PIC":"P_20210728SNSA0021S","KANA":"おおくま かずひで","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ5Q8","NAME":"中司 宏","PREFEC":27,"DISTRICT":11,"PARTY":5,"PIC":"P_20210716SNSA0007S","KANA":"なかつか ひろし","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"000004NY","NAME":"佐藤 ゆかり","PREFEC":27,"DISTRICT":11,"PARTY":1,"PIC":"P_20210727SNSA0013S","KANA":"さとう ゆかり","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":3,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0MN","NAME":"平野 博文","PREFEC":27,"DISTRICT":11,"PARTY":2,"PIC":"P_20210716SNSA0004S","KANA":"ひらの ひろふみ","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002ES2","NAME":"北川 晋平","PREFEC":27,"DISTRICT":12,"PARTY":1,"PIC":"P_20210727SNSA0017S","KANA":"きたかわ しんぺい","AGE":34,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000272U","NAME":"藤田 文武","PREFEC":27,"DISTRICT":12,"PARTY":5,"PIC":"P_20210716SNSA0005S","KANA":"ふじた ふみたけ","AGE":40,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":4,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"0000272M","NAME":"松尾 正利","PREFEC":27,"DISTRICT":12,"PARTY":4,"PIC":"P_20210716SNSA0002S","KANA":"まつお まさのり","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KUE","NAME":"宇都宮 優子","PREFEC":27,"DISTRICT":12,"PARTY":2,"PIC":"P_20210716SNSA0006S","KANA":"うつのみや ゆうこ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00000BIZ","NAME":"宗清 皇一","PREFEC":27,"DISTRICT":13,"PARTY":1,"PIC":"P_20211001SNSA0003S","KANA":"むねきよ こういち","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":99,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":5,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001YLQ","NAME":"神野 淳一","PREFEC":27,"DISTRICT":13,"PARTY":4,"PIC":"P_20211001SNSA0002S","KANA":"かみの じゅんいち","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001FEH","NAME":"岩谷 良平","PREFEC":27,"DISTRICT":13,"PARTY":5,"PIC":"P_20211001SNSA0001S","KANA":"いわたに りょうへい","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NXS","NAME":"青柳 仁士","PREFEC":27,"DISTRICT":14,"PARTY":5,"PIC":"P_20210710SNSA0003S","KANA":"あおやぎ ひとし","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0MW","NAME":"長尾 敬","PREFEC":27,"DISTRICT":14,"PARTY":1,"PIC":"P_20210727SNSA0014S","KANA":"ながお たかし","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ3JZ","NAME":"小松 久","PREFEC":27,"DISTRICT":14,"PARTY":4,"PIC":"P_20210710SNSA0004S","KANA":"こまつ ひさし","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L97","NAME":"加納 陽之助","PREFEC":27,"DISTRICT":15,"PARTY":1,"PIC":"P_20210924SNSA0012S","KANA":"かのう ようのすけ","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"ZZZZZ3KG","NAME":"浦野 靖人","PREFEC":27,"DISTRICT":15,"PARTY":5,"PIC":"P_20210710SNSA0002S","KANA":"うらの やすと","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001GON","NAME":"為 仁史","PREFEC":27,"DISTRICT":15,"PARTY":4,"PIC":"P_20210710SNSA0001S","KANA":"ため きみひと","AGE":72,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000055Q","NAME":"森山 浩行","PREFEC":27,"DISTRICT":16,"PARTY":2,"PIC":"P_20211012SNSA0005S","KANA":"もりやま ひろゆき","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":4,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0N3","NAME":"北側 一雄","PREFEC":27,"DISTRICT":16,"PARTY":3,"PIC":"P_20211012SNSA0004S","KANA":"きたがわ かずお","AGE":68,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LAE","NAME":"西脇 京子","PREFEC":27,"DISTRICT":16,"PARTY":9,"PIC":"P_20211016SNSA0018S","KANA":"にしわき きょうこ","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002C7B","NAME":"森 流星","PREFEC":27,"DISTRICT":17,"PARTY":4,"PIC":"P_20211012SNSA0009S","KANA":"もり りゅうせい","AGE":38,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZCEO","NAME":"馬場 伸幸","PREFEC":27,"DISTRICT":17,"PARTY":5,"PIC":"P_20210719SNSA0011S","KANA":"ばば のぶゆき","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":1,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":5,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001FKQ","NAME":"岡下 昌平","PREFEC":27,"DISTRICT":17,"PARTY":1,"PIC":"P_20211012SNSA0007S","KANA":"おかした しょうへい","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001N85","NAME":"遠藤 敬","PREFEC":27,"DISTRICT":18,"PARTY":5,"PIC":"P_20210720SNSA0014S","KANA":"えんどう たかし","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":1,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ3J9","NAME":"神谷 昇","PREFEC":27,"DISTRICT":18,"PARTY":1,"PIC":"P_20210727SNSA0015S","KANA":"かみたに のぼる","AGE":72,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001U7O","NAME":"川戸 康嗣","PREFEC":27,"DISTRICT":18,"PARTY":2,"PIC":"P_20210719SNSA0007S","KANA":"かわと やすし","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":4,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KV8","NAME":"望月 亮佑","PREFEC":27,"DISTRICT":18,"PARTY":4,"PIC":"P_20210720SNSA0019S","KANA":"もちづき りょうすけ","AGE":29,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RKQ","NAME":"北村 みき","PREFEC":27,"DISTRICT":19,"PARTY":4,"PIC":"P_20210715SNSA0001S","KANA":"きたむら みき","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001N88","NAME":"谷川 とむ","PREFEC":27,"DISTRICT":19,"PARTY":1,"PIC":"P_20210727SNSA0016S","KANA":"たにがわ とむ","AGE":45,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NXW","NAME":"伊東 信久","PREFEC":27,"DISTRICT":19,"PARTY":5,"PIC":"P_20210720SNSA0016S","KANA":"いとう のぶひさ","AGE":57,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0NE","NAME":"長安 豊","PREFEC":27,"DISTRICT":19,"PARTY":2,"PIC":"P_20210719SNSA0008S","KANA":"ながやす たかし","AGE":53,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002LNT","NAME":"木原 功仁哉","PREFEC":28,"DISTRICT":1,"PARTY":12,"PIC":"P_20211015SNSA0014S","KANA":"きはら くにや","AGE":37,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":99,"Q2_3":99,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":2,"Q6_6":4,"Q6_7":4,"Q6_8":4,"Q6_9":2,"Q6_10":4,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":3,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ56E","NAME":"高橋 進吾","PREFEC":28,"DISTRICT":1,"PARTY":12,"PIC":"P_20211008SNSA0006S","KANA":"たかはし しんご","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ56L","NAME":"井坂 信彦","PREFEC":28,"DISTRICT":1,"PARTY":2,"PIC":"P_20210730SNSA0061S","KANA":"いさか のぶひこ","AGE":47,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"00002KWH","NAME":"一谷 勇一郎","PREFEC":28,"DISTRICT":1,"PARTY":5,"PIC":"P_20210811SNSA0004S","KANA":"いちたに ゆういちろう","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":1,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":1,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"000004NA","NAME":"盛山 正仁","PREFEC":28,"DISTRICT":1,"PARTY":1,"PIC":"P_20211015SNSA0016S","KANA":"もりやま まさひと","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NFF","NAME":"舩川 治郎","PREFEC":28,"DISTRICT":2,"PARTY":2,"PIC":"P_20210730SNSA0062S","KANA":"ふなかわ じろう","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0NJ","NAME":"赤羽 一嘉","PREFEC":28,"DISTRICT":2,"PARTY":3,"PIC":"P_20211015SNSA0007S","KANA":"あかば かずよし","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":1,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000028MI","NAME":"宮野 鶴生","PREFEC":28,"DISTRICT":2,"PARTY":4,"PIC":"P_20210806SNSA0008S","KANA":"みやの つるお","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ57W","NAME":"和田 有一朗","PREFEC":28,"DISTRICT":3,"PARTY":5,"PIC":"P_20210811SNSA0005S","KANA":"わだ ゆういちろう","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":4,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":5,"Q6_11":5,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":4,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002734","NAME":"佐藤 泰樹","PREFEC":28,"DISTRICT":3,"PARTY":6,"PIC":"P_20210810SNSA0006S","KANA":"さとう やすき","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004GV","NAME":"関 芳弘","PREFEC":28,"DISTRICT":3,"PARTY":1,"PIC":"P_20210910SNSA0014S","KANA":"せき よしひろ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ57T","NAME":"赤田 勝紀","PREFEC":28,"DISTRICT":3,"PARTY":4,"PIC":"P_20200924SNSA0002S","KANA":"あかだ かつのり","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GI6","NAME":"今泉 真緒","PREFEC":28,"DISTRICT":4,"PARTY":2,"PIC":"P_20210730SNSA0063S","KANA":"いまいずみ まお","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NH1","NAME":"赤木 正幸","PREFEC":28,"DISTRICT":4,"PARTY":5,"PIC":"P_20211005SNSA0019S","KANA":"あかぎ まさゆき","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001MMQ","NAME":"藤井 比早之","PREFEC":28,"DISTRICT":4,"PARTY":1,"PIC":"P_20211006SNSA0026S","KANA":"ふじい ひさゆき","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LEK","NAME":"遠藤 良太","PREFEC":28,"DISTRICT":5,"PARTY":5,"PIC":"P_20211004SNSA0018S","KANA":"えんどう りょうた","AGE":36,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0NT","NAME":"梶原 康弘","PREFEC":28,"DISTRICT":5,"PARTY":2,"PIC":"P_20210730SNSA0064S","KANA":"かじわら やすひろ","AGE":65,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":4,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":4,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0NS","NAME":"谷 公一","PREFEC":28,"DISTRICT":5,"PARTY":1,"PIC":"P_20211004SNSA0008S","KANA":"たに こういち","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":8,"Q6_1":1,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001G6I","NAME":"桜井 周","PREFEC":28,"DISTRICT":6,"PARTY":2,"PIC":"P_20210906SNSA0012S","KANA":"さくらい しゅう","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001ML9","NAME":"大串 正樹","PREFEC":28,"DISTRICT":6,"PARTY":1,"PIC":"P_20210906SNSA0014S","KANA":"おおぐし まさき","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":1,"Q7_3":4,"Q7_4":4,"Q7_5":5,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0NV","NAME":"市村 浩一郎","PREFEC":28,"DISTRICT":6,"PARTY":5,"PIC":"P_20210824SNSA0005S","KANA":"いちむら こういちろう","AGE":57,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002GB6","NAME":"安田 真理","PREFEC":28,"DISTRICT":7,"PARTY":2,"PIC":"P_20210730SNSA0066S","KANA":"やすだ まり","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MLA","NAME":"山田 賢司","PREFEC":28,"DISTRICT":7,"PARTY":1,"PIC":"P_20210820SNSA0003S","KANA":"やまだ けんじ","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"000015Q3","NAME":"三木 圭恵","PREFEC":28,"DISTRICT":7,"PARTY":5,"PIC":"P_20210820SNSA0004S","KANA":"みき けえ","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0LP","NAME":"辻 恵","PREFEC":28,"DISTRICT":8,"PARTY":10,"PIC":"P_20211004SNSA0013S","KANA":"つじ めぐむ","AGE":73,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000023MV","NAME":"小村 潤","PREFEC":28,"DISTRICT":8,"PARTY":4,"PIC":"P_20210726SNSA0005S","KANA":"こむら じゅん","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MLN","NAME":"中野 洋昌","PREFEC":28,"DISTRICT":8,"PARTY":3,"PIC":"P_20210726SNSA0003S","KANA":"なかの ひろまさ","AGE":43,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0O8","NAME":"西村 康稔","PREFEC":28,"DISTRICT":9,"PARTY":1,"PIC":"P_20211016SNSA0019S","KANA":"にしむら やすとし","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002CJH","NAME":"福原 由加利","PREFEC":28,"DISTRICT":9,"PARTY":4,"PIC":"P_20210901SNSA0009S","KANA":"ふくはら ゆかり","AGE":34,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CHZ","NAME":"掘井 健智","PREFEC":28,"DISTRICT":10,"PARTY":5,"PIC":"P_20210811SNSA0006S","KANA":"ほりい けんじ","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002IU6","NAME":"隠樹 圭子","PREFEC":28,"DISTRICT":10,"PARTY":2,"PIC":"P_20211012SNSA0016S","KANA":"おき けいこ","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":3,"Q6_4":5,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0OA","NAME":"渡海 紀三朗","PREFEC":28,"DISTRICT":10,"PARTY":1,"PIC":"P_20210728SNSA0024S","KANA":"とかい きさぶろう","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001T77","NAME":"住吉 寛紀","PREFEC":28,"DISTRICT":11,"PARTY":5,"PIC":"P_20210811SNSA0007S","KANA":"すみよし ひろき","AGE":36,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":1,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0OF","NAME":"松本 剛明","PREFEC":28,"DISTRICT":11,"PARTY":1,"PIC":"P_20211012SNSA0001S","KANA":"まつもと たけあき","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00000YSN","NAME":"太田 清幸","PREFEC":28,"DISTRICT":11,"PARTY":4,"PIC":"P_20210823SNSA0007S","KANA":"おおた きよゆき","AGE":66,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000019OH","NAME":"池畑 浩太朗","PREFEC":28,"DISTRICT":12,"PARTY":5,"PIC":"P_20210921SNSA0025S","KANA":"いけはた こうたろう","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":5,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":2,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":4,"Q6_12":4,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0OH","NAME":"山口 壮","PREFEC":28,"DISTRICT":12,"PARTY":1,"PIC":"P_20210921SNSA0027S","KANA":"やまぐち つよし","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":4,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWB","NAME":"酒井 孝典","PREFEC":28,"DISTRICT":12,"PARTY":2,"PIC":"P_20210921SNSA0026S","KANA":"さかい たかのり","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0OK","NAME":"馬淵 澄夫","PREFEC":29,"DISTRICT":1,"PARTY":2,"PIC":"P_20211007SNSA0027S","KANA":"まぶち すみお","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000NEF","NAME":"小林 茂樹","PREFEC":29,"DISTRICT":1,"PARTY":1,"PIC":"P_20211007SNSA0024S","KANA":"こばやし しげき","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ13J","NAME":"前川 清成","PREFEC":29,"DISTRICT":1,"PARTY":5,"PIC":"P_20211007SNSA0026S","KANA":"まえかわ きよしげ","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":3,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":5,"Q6_8":3,"Q6_9":1,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":5,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0OL","NAME":"高市 早苗","PREFEC":29,"DISTRICT":2,"PARTY":1,"PIC":"P_20211014SNSA0017S","KANA":"たかいち さなえ","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001DTK","NAME":"猪奥 美里","PREFEC":29,"DISTRICT":2,"PARTY":2,"PIC":"P_20211007SNSA0051S","KANA":"いおく みさと","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0OP","NAME":"宮本 次郎","PREFEC":29,"DISTRICT":2,"PARTY":4,"PIC":"P_20211007SNSA0025S","KANA":"みやもと じろう","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000017CH","NAME":"西川 正克","PREFEC":29,"DISTRICT":3,"PARTY":4,"PIC":"P_20211007SNSA0023S","KANA":"にしかわ まさかつ","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NY7","NAME":"田野瀬 太道","PREFEC":29,"DISTRICT":3,"PARTY":12,"PIC":"P_20211007SNSA0031S","KANA":"たのせ たいどう","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001QSX","NAME":"高見 省次","PREFEC":29,"DISTRICT":3,"PARTY":12,"PIC":"P_20211014SNSA0008S","KANA":"たかみ しょうじ","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIU","NAME":"加藤 孝","PREFEC":29,"DISTRICT":3,"PARTY":9,"PIC":"P_20211007SNSA0036S","KANA":"かとう たかし","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":5,"Q6_1":1,"Q6_2":1,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":1,"Q6_14":5,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":5,"Q7_5":1,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000004DT","NAME":"岸本 周平","PREFEC":30,"DISTRICT":1,"PARTY":6,"PIC":"P_20210808SNSA0002S","KANA":"きしもと しゅうへい","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001MNP","NAME":"門 博文","PREFEC":30,"DISTRICT":1,"PARTY":1,"PIC":"P_20210731SNSA0006S","KANA":"かど ひろふみ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L9I","NAME":"遠西 愛美","PREFEC":30,"DISTRICT":2,"PARTY":9,"PIC":"P_20210916SNSA0017S","KANA":"とおにし まなみ","AGE":37,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":5,"Q6_1":2,"Q6_2":1,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":5,"Q6_11":5,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":1,"Q7_4":2,"Q7_5":4,"Q7_6":1,"Q7_7":1,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0P0","NAME":"石田 真敏","PREFEC":30,"DISTRICT":2,"PARTY":1,"PIC":"P_20211009SNSA0007S","KANA":"いしだ まさとし","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002GAO","NAME":"藤井 幹雄","PREFEC":30,"DISTRICT":2,"PARTY":2,"PIC":"P_20210731SNSA0008S","KANA":"ふじい みきお","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":5,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CBG","NAME":"所 順子","PREFEC":30,"DISTRICT":2,"PARTY":5,"PIC":"P_20211013SNSA0020S","KANA":"ところ じゅんこ","AGE":72,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001GQY","NAME":"本間 奈々","PREFEC":30,"DISTRICT":3,"PARTY":11,"PIC":"P_20211007SNSA0008S","KANA":"ほんま なな","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":5,"Q6_13":4,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0P2","NAME":"二階 俊博","PREFEC":30,"DISTRICT":3,"PARTY":1,"PIC":"P_20211016SNSA0020S","KANA":"にかい としひろ","AGE":82,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000N4W","NAME":"畑野 良弘","PREFEC":30,"DISTRICT":3,"PARTY":4,"PIC":"P_20210731SNSA0007S","KANA":"はたの よしひろ","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002I8Y","NAME":"根来 英樹","PREFEC":30,"DISTRICT":3,"PARTY":12,"PIC":"P_20211013SNSA0021S","KANA":"ねごろ ひでき","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":4,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":1,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0P5","NAME":"石破 茂","PREFEC":31,"DISTRICT":1,"PARTY":1,"PIC":"P_20210617SNSA0002S","KANA":"いしば しげる","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":4,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000021G1","NAME":"岡田 正和","PREFEC":31,"DISTRICT":1,"PARTY":4,"PIC":"P_20210917SNSA0010S","KANA":"おかだ まさかず","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004H9","NAME":"赤沢 亮正","PREFEC":31,"DISTRICT":2,"PARTY":1,"PIC":"P_20211011SNSA0026S","KANA":"あかざわ りょうせい","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":6,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ3TG","NAME":"湯原 俊二","PREFEC":31,"DISTRICT":2,"PARTY":2,"PIC":"P_20210921SNSA0006S","KANA":"ゆはら しゅんじ","AGE":58,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":4,"Q6_9":4,"Q6_10":1,"Q6_11":5,"Q6_12":5,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":5,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000011RK","NAME":"亀井 亜紀子","PREFEC":32,"DISTRICT":1,"PARTY":2,"PIC":"P_20210817SNSA0003S","KANA":"かめい あきこ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":2,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"ZZZZZ0PB","NAME":"細田 博之","PREFEC":32,"DISTRICT":1,"PARTY":1,"PIC":"P_20210728SNSA0025S","KANA":"ほそだ ひろゆき","AGE":77,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LOJ","NAME":"亀井 彰子","PREFEC":32,"DISTRICT":1,"PARTY":12,"PIC":"P_20211016SNSA0001S","KANA":"かめい あきこ","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0PG","NAME":"向瀬 慎一","PREFEC":32,"DISTRICT":2,"PARTY":4,"PIC":"P_20200914SNSA0004S","KANA":"むこせ しんいち","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000ASH","NAME":"山本 誉","PREFEC":32,"DISTRICT":2,"PARTY":2,"PIC":"P_20210908SNSA0005S","KANA":"やまもと ほまる","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":7,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001T9Z","NAME":"高見 康裕","PREFEC":32,"DISTRICT":2,"PARTY":1,"PIC":"P_20210908SNSA0006S","KANA":"たかみ やすひろ","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":1,"Q7_5":4,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0PJ","NAME":"逢沢 一郎","PREFEC":33,"DISTRICT":1,"PARTY":1,"PIC":"P_20211007SNSA0038S","KANA":"あいさわ いちろう","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":5,"Q6_8":3,"Q6_9":5,"Q6_10":2,"Q6_11":5,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000016Z6","NAME":"余江 雪央","PREFEC":33,"DISTRICT":1,"PARTY":4,"PIC":"P_20211004SNSA0022S","KANA":"よえ ゆきお","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002G8S","NAME":"原田 謙介","PREFEC":33,"DISTRICT":1,"PARTY":2,"PIC":"P_20211007SNSA0039S","KANA":"はらだ けんすけ","AGE":35,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001NH3","NAME":"山下 貴司","PREFEC":33,"DISTRICT":2,"PARTY":1,"PIC":"P_20211015SNSA0003S","KANA":"やました たかし","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0PL","NAME":"津村 啓介","PREFEC":33,"DISTRICT":2,"PARTY":2,"PIC":"P_20211013SNSA0011S","KANA":"つむら けいすけ","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":5,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":1,"Q6_13":5,"Q6_14":1,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":2,"Q7_6":5,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004OJ","NAME":"阿部 俊子","PREFEC":33,"DISTRICT":3,"PARTY":1,"PIC":"P_20211001SNSA0004S","KANA":"あべ としこ","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002731","NAME":"平沼 正二郎","PREFEC":33,"DISTRICT":3,"PARTY":12,"PIC":"P_20210910SNSA0004S","KANA":"ひらぬま しょうじろう","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":8,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":1,"Q6_14":2,"Q6_15":5,"Q6_16":3,"Q6_17":5,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"00002KUU","NAME":"森本 栄","PREFEC":33,"DISTRICT":3,"PARTY":2,"PIC":"P_20210916SNSA0015S","KANA":"もりもと さかえ","AGE":73,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":5,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":5,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0PM","NAME":"尾崎 宏子","PREFEC":33,"DISTRICT":3,"PARTY":4,"PIC":"P_20210913SNSA0007S","KANA":"おざき ひろこ","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004KC","NAME":"橋本 岳","PREFEC":33,"DISTRICT":4,"PARTY":1,"PIC":"P_20210922SNSA0011S","KANA":"はしもと がく","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":7,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0PR","NAME":"柚木 道義","PREFEC":33,"DISTRICT":4,"PARTY":2,"PIC":"P_20211012SNSA0021S","KANA":"ゆのき みちよし","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001QI1","NAME":"中川 智晴","PREFEC":33,"DISTRICT":4,"PARTY":12,"PIC":"P_20211013SNSA0032S","KANA":"なかがわ ともはる","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":3,"Q6_8":1,"Q6_9":3,"Q6_10":1,"Q6_11":3,"Q6_12":1,"Q6_13":1,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":5,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ02J","NAME":"加藤 勝信","PREFEC":33,"DISTRICT":5,"PARTY":1,"PIC":"P_20211011SNSA0012S","KANA":"かとう かつのぶ","AGE":65,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":99,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0PN","NAME":"美見 芳明","PREFEC":33,"DISTRICT":5,"PARTY":4,"PIC":"P_20211012SNSA0030S","KANA":"みいみ よしあき","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LBQ","NAME":"はた ともこ","PREFEC":33,"DISTRICT":5,"PARTY":2,"PIC":"P_20211004SNSA0024S","KANA":"はた ともこ","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":5,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LLW","NAME":"上出 圭一","PREFEC":34,"DISTRICT":1,"PARTY":11,"PIC":"P_20211012SNSA0017S","KANA":"かみで けいいち","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":4,"Q6_5":3,"Q6_6":2,"Q6_7":4,"Q6_8":4,"Q6_9":2,"Q6_10":4,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":5,"Q7_7":1,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0PY","NAME":"岸田 文雄","PREFEC":34,"DISTRICT":1,"PARTY":1,"PIC":"P_20210825SNSA0004S","KANA":"きしだ ふみお","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0Q4","NAME":"大西 理","PREFEC":34,"DISTRICT":1,"PARTY":4,"PIC":"P_20210825SNSA0003S","KANA":"おおにし おさむ","AGE":55,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L07","NAME":"有田 優子","PREFEC":34,"DISTRICT":1,"PARTY":7,"PIC":"P_20210830SNSA0005S","KANA":"ありた ゆうこ","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0PZ","NAME":"平口 洋","PREFEC":34,"DISTRICT":2,"PARTY":1,"PIC":"P_20210901SNSA0003S","KANA":"ひらぐち ひろし","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L2E","NAME":"大井 赤亥","PREFEC":34,"DISTRICT":2,"PARTY":2,"PIC":"P_20210831SNSA0006S","KANA":"おおい あかい","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":1,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002K6B","NAME":"大山 宏","PREFEC":34,"DISTRICT":3,"PARTY":12,"PIC":"P_20211006SNSA0021S","KANA":"おおやま ひろし","AGE":73,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L9L","NAME":"矢島 秀平","PREFEC":34,"DISTRICT":3,"PARTY":9,"PIC":"P_20210916SNSA0019S","KANA":"やじま しゅうへい","AGE":29,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":1,"Q6_9":3,"Q6_10":5,"Q6_11":4,"Q6_12":5,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":1,"Q7_3":1,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ02R","NAME":"斉藤 鉄夫","PREFEC":34,"DISTRICT":3,"PARTY":3,"PIC":"P_20211006SNSA0020S","KANA":"さいとう てつお","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000021UY","NAME":"玉田 憲勲","PREFEC":34,"DISTRICT":3,"PARTY":12,"PIC":"P_20211016SNSA0012S","KANA":"たまだ のりたか","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":7,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":5,"Q6_8":5,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002L9K","NAME":"ライアン 真由美","PREFEC":34,"DISTRICT":3,"PARTY":2,"PIC":"P_20210916SNSA0018S","KANA":"らいあん まゆみ","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001HFQ","NAME":"瀬木 寛親","PREFEC":34,"DISTRICT":3,"PARTY":5,"PIC":"P_20211016SNSA0011S","KANA":"せぎ ひろちか","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0Q7","NAME":"空本 誠喜","PREFEC":34,"DISTRICT":4,"PARTY":5,"PIC":"P_20211005SNSA0023S","KANA":"そらもと せいき","AGE":57,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001O61","NAME":"新谷 正義","PREFEC":34,"DISTRICT":4,"PARTY":1,"PIC":"P_20211005SNSA0022S","KANA":"しんたに まさよし","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000009RL","NAME":"中川 俊直","PREFEC":34,"DISTRICT":4,"PARTY":12,"PIC":"P_20211013SNSA0028S","KANA":"なかがわ としなお","AGE":51,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027D8","NAME":"上野 寛治","PREFEC":34,"DISTRICT":4,"PARTY":2,"PIC":"P_20211005SNSA0007S","KANA":"うえの かんじ","AGE":39,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":4,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":3,"Q7_6":1,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002L2Z","NAME":"野村 功次郎","PREFEC":34,"DISTRICT":5,"PARTY":2,"PIC":"P_20210901SNSA0007S","KANA":"のむら こうじろう","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":8,"Q2_3":3,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000008F","NAME":"寺田 稔","PREFEC":34,"DISTRICT":5,"PARTY":1,"PIC":"P_20210901SNSA0005S","KANA":"てらだ みのる","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0QH","NAME":"佐藤 公治","PREFEC":34,"DISTRICT":6,"PARTY":2,"PIC":"P_20210902SNSA0001S","KANA":"さとう こうじ","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ402","NAME":"小島 敏文","PREFEC":34,"DISTRICT":6,"PARTY":1,"PIC":"P_20210902SNSA0002S","KANA":"こじま としふみ","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":4,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000017W","NAME":"佐藤 広典","PREFEC":34,"DISTRICT":7,"PARTY":2,"PIC":"P_20210824SNSA0008S","KANA":"さとう ひろのり","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":4,"Q2_3":3,"Q6_1":4,"Q6_2":4,"Q6_3":2,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L02","NAME":"橋本 加代","PREFEC":34,"DISTRICT":7,"PARTY":12,"PIC":"P_20210824SNSA0012S","KANA":"はしもと かよ","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":1,"Q6_11":2,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"000013MP","NAME":"村井 明美","PREFEC":34,"DISTRICT":7,"PARTY":4,"PIC":"P_20210824SNSA0013S","KANA":"むらい あけみ","AGE":73,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MMO","NAME":"小林 史明","PREFEC":34,"DISTRICT":7,"PARTY":1,"PIC":"P_20210827SNSA0009S","KANA":"こばやし ふみあき","AGE":38,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001V8V","NAME":"大内 一也","PREFEC":35,"DISTRICT":1,"PARTY":2,"PIC":"P_20210727SNSA0001S","KANA":"おおうち かずや","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000274C","NAME":"高村 正大","PREFEC":35,"DISTRICT":1,"PARTY":1,"PIC":"P_20210727SNSA0003S","KANA":"こうむら まさひろ","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00001GUP","NAME":"松田 一志","PREFEC":35,"DISTRICT":2,"PARTY":4,"PIC":"P_20210906SNSA0017S","KANA":"まつだ かずし","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":5,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ14O","NAME":"岸 信夫","PREFEC":35,"DISTRICT":2,"PARTY":1,"PIC":"P_20210906SNSA0016S","KANA":"きし のぶお","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZFUX","NAME":"坂本 史子","PREFEC":35,"DISTRICT":3,"PARTY":2,"PIC":"P_20210916SNSA0023S","KANA":"さかもと ふみこ","AGE":66,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ14L","NAME":"林 芳正","PREFEC":35,"DISTRICT":3,"PARTY":1,"PIC":"P_20210916SNSA0024S","KANA":"はやし よしまさ","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0QV","NAME":"安倍 晋三","PREFEC":35,"DISTRICT":4,"PARTY":1,"PIC":"P_20210910SNSA0008S","KANA":"あべ しんぞう","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002J3U","NAME":"竹村 克司","PREFEC":35,"DISTRICT":4,"PARTY":10,"PIC":"P_20210908SNSA0010S","KANA":"たけむら かつし","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027HD","NAME":"大野 頼子","PREFEC":35,"DISTRICT":4,"PARTY":12,"PIC":"P_20211015SNSA0029S","KANA":"おおの よりこ","AGE":47,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":4,"Q6_3":5,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":4,"Q6_11":3,"Q6_12":1,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":2,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0R4","NAME":"仁木 博文","PREFEC":36,"DISTRICT":1,"PARTY":12,"PIC":"P_20210726SNSA0010S","KANA":"にき ひろぶみ","AGE":55,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":1,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0R3","NAME":"後藤田 正純","PREFEC":36,"DISTRICT":1,"PARTY":1,"PIC":"P_20210719SNSA0002S","KANA":"ごとうだ まさずみ","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000014UQ","NAME":"吉田 知代","PREFEC":36,"DISTRICT":1,"PARTY":5,"PIC":"P_20211005SNSA0017S","KANA":"よしだ ともよ","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002CD2","NAME":"佐藤 行俊","PREFEC":36,"DISTRICT":1,"PARTY":12,"PIC":"P_20211006SNSA0027S","KANA":"さとう ゆきとし","AGE":73,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":8,"Q2_2":7,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":1,"Q6_7":5,"Q6_8":5,"Q6_9":5,"Q6_10":5,"Q6_11":1,"Q6_12":1,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":5,"Q7_5":1,"Q7_6":5,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000028G8","NAME":"中野 真由美","PREFEC":36,"DISTRICT":2,"PARTY":2,"PIC":"P_20210712SNSA0010S","KANA":"なかの まゆみ","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":7,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":5,"Q6_8":2,"Q6_9":3,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":4,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ14W","NAME":"久保 孝之","PREFEC":36,"DISTRICT":2,"PARTY":4,"PIC":"P_20210721SNSA0007S","KANA":"くぼ たかゆき","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0R1","NAME":"山口 俊一","PREFEC":36,"DISTRICT":2,"PARTY":1,"PIC":"P_20210712SNSA0009S","KANA":"やまぐち しゅんいち","AGE":71,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0R6","NAME":"小川 淳也","PREFEC":37,"DISTRICT":1,"PARTY":2,"PIC":"P_20211015SNSA0009S","KANA":"おがわ じゅんや","AGE":50,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":7,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001A9P","NAME":"町川 順子","PREFEC":37,"DISTRICT":1,"PARTY":5,"PIC":"P_20211015SNSA0036S","KANA":"まちかわ じゅんこ","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":5,"Q2_3":6,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0R5","NAME":"平井 卓也","PREFEC":37,"DISTRICT":1,"PARTY":1,"PIC":"P_20210726SNSA0016S","KANA":"ひらい たくや","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000004CT","NAME":"玉木 雄一郎","PREFEC":37,"DISTRICT":2,"PARTY":6,"PIC":"P_20210726SNSA0002S","KANA":"たまき ゆういちろう","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001NK2","NAME":"瀬戸 隆一","PREFEC":37,"DISTRICT":2,"PARTY":1,"PIC":"P_20210730SNSA0016S","KANA":"せと たかかず","AGE":56,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NPC","NAME":"大野 敬太郎","PREFEC":37,"DISTRICT":3,"PARTY":1,"PIC":"P_20210730SNSA0033S","KANA":"おおの けいたろう","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZE0D","NAME":"尾崎 淳一郎","PREFEC":37,"DISTRICT":3,"PARTY":4,"PIC":"P_20210729SNSA0011S","KANA":"おざき じゅんいちろう","AGE":70,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000011J4","NAME":"友近 聡朗","PREFEC":38,"DISTRICT":1,"PARTY":2,"PIC":"P_20210728SNSA0010S","KANA":"ともちか としろう","AGE":46,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWC","NAME":"塩崎 彰久","PREFEC":38,"DISTRICT":1,"PARTY":1,"PIC":"P_20210728SNSA0013S","KANA":"しおざき あきひさ","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":4,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001QZ9","NAME":"石井 智恵","PREFEC":38,"DISTRICT":2,"PARTY":6,"PIC":"P_20210716SNSA0015S","KANA":"いしい ともえ","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":5,"Q2_2":4,"Q2_3":2,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002IUS","NAME":"片岡 朗","PREFEC":38,"DISTRICT":2,"PARTY":4,"PIC":"P_20201006SNSA0009S","KANA":"かたおか ろう","AGE":62,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0RM","NAME":"村上 誠一郎","PREFEC":38,"DISTRICT":2,"PARTY":1,"PIC":"P_20210709SNSA0006S","KANA":"むらかみ せいいちろう","AGE":69,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":1,"Q6_7":3,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":5,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013GQ","NAME":"白石 洋一","PREFEC":38,"DISTRICT":3,"PARTY":2,"PIC":"P_20210905SNSA0004S","KANA":"しらいし よういち","AGE":58,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":5,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":2,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ46F","NAME":"井原 巧","PREFEC":38,"DISTRICT":3,"PARTY":1,"PIC":"P_20210905SNSA0005S","KANA":"いはら たくみ","AGE":57,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KUY","NAME":"長谷川 淳二","PREFEC":38,"DISTRICT":4,"PARTY":1,"PIC":"P_20210719SNSA0003S","KANA":"はせがわ じゅんじ","AGE":53,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NHG","NAME":"西井 直人","PREFEC":38,"DISTRICT":4,"PARTY":4,"PIC":"P_20211013SNSA0015S","KANA":"にしい なおひと","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":4,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000015VD","NAME":"桜内 文城","PREFEC":38,"DISTRICT":4,"PARTY":12,"PIC":"P_20210719SNSA0004S","KANA":"さくらうち ふみき","AGE":56,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":3,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002LQO","NAME":"前田 龍夫","PREFEC":38,"DISTRICT":4,"PARTY":12,"PIC":"","KANA":"まえだ たつお","AGE":67,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013A0","NAME":"藤島 利久","PREFEC":38,"DISTRICT":4,"PARTY":12,"PIC":"P_20211008SNSA0008S","KANA":"ふじしま としひさ","AGE":59,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":4,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":5,"Q7_3":4,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZE8C","NAME":"武内 則男","PREFEC":39,"DISTRICT":1,"PARTY":2,"PIC":"P_20210926SNSA0002S","KANA":"たけうち のりお","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001HF4","NAME":"中島 康治","PREFEC":39,"DISTRICT":1,"PARTY":9,"PIC":"P_20211001SNSA0013S","KANA":"なかじま やすはる","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":5,"Q6_12":5,"Q6_13":1,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":1,"Q7_3":4,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ44X","NAME":"川田 永二","PREFEC":39,"DISTRICT":1,"PARTY":12,"PIC":"P_20211015SNSA0027S","KANA":"かわだ えいじ","AGE":86,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0S1","NAME":"中谷 元","PREFEC":39,"DISTRICT":1,"PARTY":1,"PIC":"P_20210927SNSA0011S","KANA":"なかたに げん","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":2,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"0000136L","NAME":"尾崎 正直","PREFEC":39,"DISTRICT":2,"PARTY":1,"PIC":"P_20211004SNSA0004S","KANA":"おざき まさなお","AGE":54,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002DHJ","NAME":"広田 晋一郎","PREFEC":39,"DISTRICT":2,"PARTY":9,"PIC":"P_20210913SNSA0006S","KANA":"ひろた しんいちろう","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":5,"Q6_13":1,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ15E","NAME":"広田 一","PREFEC":39,"DISTRICT":2,"PARTY":2,"PIC":"P_20210715SNSA0003S","KANA":"ひろた はじめ","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002CUB","NAME":"木村 拓史","PREFEC":40,"DISTRICT":1,"PARTY":4,"PIC":"P_20210726SNSA0025S","KANA":"きむら たくじ","AGE":35,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":99,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":99,"Q6_13":99,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":99,"Q7_7":99,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002J3C","NAME":"坪田 晋","PREFEC":40,"DISTRICT":1,"PARTY":2,"PIC":"P_20201106SNSA0001S","KANA":"つぼた すすむ","AGE":37,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013FO","NAME":"山本 剛正","PREFEC":40,"DISTRICT":1,"PARTY":5,"PIC":"P_20210827SNSA0010S","KANA":"やまもと ごうせい","AGE":49,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":5,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ49J","NAME":"井上 貴博","PREFEC":40,"DISTRICT":1,"PARTY":1,"PIC":"P_20210830SNSA0001S","KANA":"いのうえ たかひろ","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":5,"Q7_6":3,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001TAE","NAME":"新開 崇司","PREFEC":40,"DISTRICT":2,"PARTY":5,"PIC":"P_20210712SNSA0006S","KANA":"しんかい たかし","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ49Q","NAME":"鬼木 誠","PREFEC":40,"DISTRICT":2,"PARTY":1,"PIC":"P_20210712SNSA0005S","KANA":"おにき まこと","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000004GX","NAME":"稲富 修二","PREFEC":40,"DISTRICT":2,"PARTY":2,"PIC":"P_20210801SNSA0001S","KANA":"いなとみ しゅうじ","AGE":51,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001NLW","NAME":"古賀 篤","PREFEC":40,"DISTRICT":3,"PARTY":1,"PIC":"P_20211011SNSA0009S","KANA":"こが あつし","AGE":49,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000045T","NAME":"山内 康一","PREFEC":40,"DISTRICT":3,"PARTY":2,"PIC":"P_20210827SNSA0011S","KANA":"やまうち こういち","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":4,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021F0","NAME":"竹内 信昭","PREFEC":40,"DISTRICT":4,"PARTY":7,"PIC":"P_20201015SNSA0003S","KANA":"たけうち のぶあき","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MLM","NAME":"宮内 秀樹","PREFEC":40,"DISTRICT":4,"PARTY":1,"PIC":"P_20210628SNSA0001S","KANA":"みやうち ひでき","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":5,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":2,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002IRH","NAME":"森本 慎太郎","PREFEC":40,"DISTRICT":4,"PARTY":2,"PIC":"P_20200925SNSA0002S","KANA":"もりもと しんたろう","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":5,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":5,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000001BI","NAME":"阿部 弘樹","PREFEC":40,"DISTRICT":4,"PARTY":5,"PIC":"P_20210928SNSA0009S","KANA":"あべ ひろき","AGE":59,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":5,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":5,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001CAV","NAME":"堤 かなめ","PREFEC":40,"DISTRICT":5,"PARTY":2,"PIC":"P_20210727SNSA0034S","KANA":"つつみ かなめ","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":7,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0SK","NAME":"原田 義昭","PREFEC":40,"DISTRICT":5,"PARTY":1,"PIC":"P_20211011SNSA0011S","KANA":"はらだ よしあき","AGE":77,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":2,"Q6_14":1,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001PLF","NAME":"鳩山 二郎","PREFEC":40,"DISTRICT":6,"PARTY":1,"PIC":"P_20210916SNSA0021S","KANA":"はとやま じろう","AGE":42,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":5,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L8S","NAME":"河野 一弘","PREFEC":40,"DISTRICT":6,"PARTY":4,"PIC":"P_20210915SNSA0041S","KANA":"かわの かずひろ","AGE":49,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002G6M","NAME":"田辺 徹","PREFEC":40,"DISTRICT":6,"PARTY":2,"PIC":"P_20211009SNSA0006S","KANA":"たなべ とおる","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":2,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LNJ","NAME":"組坂 善昭","PREFEC":40,"DISTRICT":6,"PARTY":12,"PIC":"P_20211014SNSA0027S","KANA":"くみさか よしあき","AGE":74,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":2,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002EMK","NAME":"熊丸 英治","PREFEC":40,"DISTRICT":6,"PARTY":9,"PIC":"P_20210915SNSA0042S","KANA":"くままる えいじ","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":5,"Q6_5":1,"Q6_6":2,"Q6_7":2,"Q6_8":4,"Q6_9":5,"Q6_10":4,"Q6_11":3,"Q6_12":1,"Q6_13":5,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O0X","NAME":"藤丸 敏","PREFEC":40,"DISTRICT":7,"PARTY":1,"PIC":"P_20210917SNSA0019S","KANA":"ふじまる さとし","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":3,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LA8","NAME":"青木 剛志","PREFEC":40,"DISTRICT":7,"PARTY":2,"PIC":"P_20210917SNSA0015S","KANA":"あおき つよし","AGE":50,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":2,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RU4","NAME":"河野 祥子","PREFEC":40,"DISTRICT":8,"PARTY":4,"PIC":"P_20210730SNSA0038S","KANA":"かわの しょうこ","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0SV","NAME":"麻生 太郎","PREFEC":40,"DISTRICT":8,"PARTY":1,"PIC":"P_20211004SNSA0019S","KANA":"あそう たろう","AGE":81,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":4,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0SX","NAME":"大島 九州男","PREFEC":40,"DISTRICT":8,"PARTY":10,"PIC":"P_20210729SNSA0015S","KANA":"おおしま くすお","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000047P","NAME":"真島 省三","PREFEC":40,"DISTRICT":9,"PARTY":4,"PIC":"P_20210730SNSA0075S","KANA":"まじま しょうぞう","AGE":58,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":4,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0SY","NAME":"三原 朝彦","PREFEC":40,"DISTRICT":9,"PARTY":1,"PIC":"P_20210730SNSA0076S","KANA":"みはら あさひこ","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000139N","NAME":"緒方 林太郎","PREFEC":40,"DISTRICT":9,"PARTY":12,"PIC":"P_20210730SNSA0074S","KANA":"おがた りんたろう","AGE":48,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":6,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":4,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":5,"Q7_7":5,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0T1","NAME":"城井 崇","PREFEC":40,"DISTRICT":10,"PARTY":2,"PIC":"P_20210727SNSA0008S","KANA":"きい たかし","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"0000279I","NAME":"西田 主税","PREFEC":40,"DISTRICT":10,"PARTY":5,"PIC":"P_20210727SNSA0009S","KANA":"にしだ ちから","AGE":59,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":4,"Q7_1":3,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0T6","NAME":"山本 幸三","PREFEC":40,"DISTRICT":10,"PARTY":1,"PIC":"P_20210727SNSA0010S","KANA":"やまもと こうぞう","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":5,"Q7_5":5,"Q7_6":1,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LPE","NAME":"大西 啓雅","PREFEC":40,"DISTRICT":10,"PARTY":12,"PIC":"P_20211019SNSA0010S","KANA":"おおにし ひろまさ","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KX1","NAME":"志岐 玲子","PREFEC":40,"DISTRICT":11,"PARTY":7,"PIC":"P_20210914SNSA0005S","KANA":"しき れいこ","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":5,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0T5","NAME":"武田 良太","PREFEC":40,"DISTRICT":11,"PARTY":1,"PIC":"P_20211004SNSA0033S","KANA":"たけだ りょうた","AGE":53,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000271W","NAME":"村上 智信","PREFEC":40,"DISTRICT":11,"PARTY":12,"PIC":"P_20210730SNSA0057S","KANA":"むらかみ とものぶ","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":5,"Q6_7":5,"Q6_8":1,"Q6_9":3,"Q6_10":5,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":4,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":5,"Q7_7":1,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ4CR","NAME":"岩田 和親","PREFEC":41,"DISTRICT":1,"PARTY":1,"PIC":"P_20210730SNSA0073S","KANA":"いわた かずちか","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":99,"Q6_17":99,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0T9","NAME":"原口 一博","PREFEC":41,"DISTRICT":1,"PARTY":2,"PIC":"P_20210929SNSA0009S","KANA":"はらぐち かずひろ","AGE":62,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000046F","NAME":"大串 博志","PREFEC":41,"DISTRICT":2,"PARTY":2,"PIC":"P_20210804SNSA0007S","KANA":"おおぐし ひろし","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":2,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1H0","NAME":"古川 康","PREFEC":41,"DISTRICT":2,"PARTY":1,"PIC":"P_20210730SNSA0072S","KANA":"ふるかわ やすし","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWX","NAME":"初村 滝一郎","PREFEC":42,"DISTRICT":1,"PARTY":1,"PIC":"P_20210730SNSA0043S","KANA":"はつむら たきいちろう","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":3,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000021M2","NAME":"西岡 秀子","PREFEC":42,"DISTRICT":1,"PARTY":6,"PIC":"P_20210730SNSA0021S","KANA":"にしおか ひでこ","AGE":57,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002CWD","NAME":"安江 綾子","PREFEC":42,"DISTRICT":1,"PARTY":4,"PIC":"P_20210730SNSA0036S","KANA":"やすえ あやこ","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027IN","NAME":"松平 浩一","PREFEC":42,"DISTRICT":2,"PARTY":2,"PIC":"P_20210730SNSA0080S","KANA":"まつだいら こういち","AGE":47,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":4,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L8Q","NAME":"加藤 竜祥","PREFEC":42,"DISTRICT":2,"PARTY":1,"PIC":"P_20210915SNSA0026S","KANA":"かとう りゅうしょう","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000007JU","NAME":"山田 博司","PREFEC":42,"DISTRICT":3,"PARTY":12,"PIC":"P_20210902SNSA0013S","KANA":"やまだ ひろし","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0TM","NAME":"谷川 弥一","PREFEC":42,"DISTRICT":3,"PARTY":1,"PIC":"P_20210730SNSA0028S","KANA":"たにがわ やいち","AGE":80,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":2,"Q6_7":1,"Q6_8":4,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":3,"Q7_5":5,"Q7_6":5,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KWW","NAME":"山田 勝彦","PREFEC":42,"DISTRICT":3,"PARTY":2,"PIC":"P_20210730SNSA0026S","KANA":"やまだ かつひこ","AGE":42,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":3,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":4,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":5,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LMV","NAME":"石本 啓之","PREFEC":42,"DISTRICT":3,"PARTY":11,"PIC":"P_20211015SNSA0037S","KANA":"いしもと ひろゆき","AGE":52,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ4EN","NAME":"末次 精一","PREFEC":42,"DISTRICT":4,"PARTY":2,"PIC":"P_20210930SNSA0014S","KANA":"すえつぐ せいいち","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":2,"Q6_1":4,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":3,"Q6_10":1,"Q6_11":3,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0TP","NAME":"北村 誠吾","PREFEC":42,"DISTRICT":4,"PARTY":1,"PIC":"P_20210929SNSA0003S","KANA":"きたむら せいご","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":8,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001TID","NAME":"萩原 活","PREFEC":42,"DISTRICT":4,"PARTY":12,"PIC":"P_20211014SNSA0021S","KANA":"はぎわら ひろし","AGE":61,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000010MI","NAME":"田中 隆治","PREFEC":42,"DISTRICT":4,"PARTY":12,"PIC":"P_20211014SNSA0019S","KANA":"たなか たかはる","AGE":78,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":5,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ4GB","NAME":"濱田 大造","PREFEC":43,"DISTRICT":1,"PARTY":2,"PIC":"P_20210930SNSA0008S","KANA":"はまだ だいぞう","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000468","NAME":"木原 稔","PREFEC":43,"DISTRICT":1,"PARTY":1,"PIC":"P_20210921SNSA0019S","KANA":"きはら みのる","AGE":52,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":1,"Q6_2":99,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":5,"Q6_12":1,"Q6_13":3,"Q6_14":3,"Q6_15":5,"Q6_16":5,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":99,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ035","NAME":"野田 毅","PREFEC":43,"DISTRICT":2,"PARTY":1,"PIC":"P_20210924SNSA0015S","KANA":"のだ たけし","AGE":80,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"000023DN","NAME":"西野 太亮","PREFEC":43,"DISTRICT":2,"PARTY":12,"PIC":"P_20210921SNSA0020S","KANA":"にしの だいすけ","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000004AM","NAME":"橋田 芳昭","PREFEC":43,"DISTRICT":2,"PARTY":4,"PIC":"P_20211015SNSA0008S","KANA":"はしだ よしあき","AGE":66,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L7R","NAME":"本間 明子","PREFEC":43,"DISTRICT":3,"PARTY":9,"PIC":"P_20210921SNSA0021S","KANA":"ほんま あきこ","AGE":40,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":5,"Q2_3":6,"Q6_1":1,"Q6_2":4,"Q6_3":4,"Q6_4":4,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":5,"Q6_11":2,"Q6_12":4,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":2,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0TX","NAME":"坂本 哲志","PREFEC":43,"DISTRICT":3,"PARTY":1,"PIC":"P_20211002SNSA0002S","KANA":"さかもと てつし","AGE":70,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002IRG","NAME":"馬場 功世","PREFEC":43,"DISTRICT":3,"PARTY":7,"PIC":"P_20211002SNSA0003S","KANA":"ばば こうせい","AGE":70,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0U6","NAME":"金子 恭之","PREFEC":43,"DISTRICT":4,"PARTY":1,"PIC":"P_20210921SNSA0016S","KANA":"かねこ やすし","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000006R4","NAME":"矢上 雅義","PREFEC":43,"DISTRICT":4,"PARTY":2,"PIC":"P_20210921SNSA0017S","KANA":"やがみ まさよし","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LNG","NAME":"西宮 重貴","PREFEC":44,"DISTRICT":1,"PARTY":12,"PIC":"P_20211017SNSA0040S","KANA":"にしみや しげき","AGE":43,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":7,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":4,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L5O","NAME":"野中 美咲","PREFEC":44,"DISTRICT":1,"PARTY":9,"PIC":"P_20210906SNSA0007S","KANA":"のなか みさき","AGE":25,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":6,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":5,"Q6_7":4,"Q6_8":3,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":4,"Q7_2":3,"Q7_3":2,"Q7_4":3,"Q7_5":5,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002D83","NAME":"山下 魁","PREFEC":44,"DISTRICT":1,"PARTY":4,"PIC":"P_20210730SNSA0022S","KANA":"やました かい","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002ITL","NAME":"高橋 舞子","PREFEC":44,"DISTRICT":1,"PARTY":1,"PIC":"P_20200930SNSA0001S","KANA":"たかはし まいこ","AGE":33,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0U9","NAME":"吉良 州司","PREFEC":44,"DISTRICT":1,"PARTY":12,"PIC":"P_20210730SNSA0027S","KANA":"きら しゅうじ","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":4,"Q6_8":5,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":5,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"ZZZZZ0UB","NAME":"衛藤 征士郎","PREFEC":44,"DISTRICT":2,"PARTY":1,"PIC":"P_20210730SNSA0030S","KANA":"えとう せいしろう","AGE":80,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":1,"Q6_2":1,"Q6_3":5,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":3,"Q6_9":5,"Q6_10":2,"Q6_11":5,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":5,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":4,"Q7_4":2,"Q7_5":5,"Q7_6":5,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O1T","NAME":"吉川 元","PREFEC":44,"DISTRICT":2,"PARTY":2,"PIC":"P_20210730SNSA0031S","KANA":"よしかわ はじめ","AGE":55,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0UD","NAME":"横光 克彦","PREFEC":44,"DISTRICT":3,"PARTY":2,"PIC":"P_20210730SNSA0024S","KANA":"よこみつ かつひこ","AGE":77,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0UF","NAME":"岩屋 毅","PREFEC":44,"DISTRICT":3,"PARTY":1,"PIC":"P_20210620SNSA0005S","KANA":"いわや たけし","AGE":64,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":1,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":1,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000O68","NAME":"武井 俊輔","PREFEC":45,"DISTRICT":1,"PARTY":1,"PIC":"P_20211006SNSA0018S","KANA":"たけい しゅんすけ","AGE":46,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":1,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":1,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001ICZ","NAME":"脇谷 のりこ","PREFEC":45,"DISTRICT":1,"PARTY":12,"PIC":"P_20211006SNSA0032S","KANA":"わきたに のりこ","AGE":64,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001CDC","NAME":"渡辺 創","PREFEC":45,"DISTRICT":1,"PARTY":2,"PIC":"P_20211006SNSA0019S","KANA":"わたなべ そう","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":7,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004JZ","NAME":"外山 斎","PREFEC":45,"DISTRICT":1,"PARTY":5,"PIC":"P_20211012SNSA0026S","KANA":"とやま いつき","AGE":45,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":4,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0UM","NAME":"江藤 拓","PREFEC":45,"DISTRICT":2,"PARTY":1,"PIC":"P_20211006SNSA0012S","KANA":"えとう たく","AGE":61,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KX2","NAME":"長友 慎治","PREFEC":45,"DISTRICT":2,"PARTY":6,"PIC":"P_20211006SNSA0011S","KANA":"ながとも しんじ","AGE":44,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":5,"Q6_1":1,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":1,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000007VY","NAME":"松本 隆","PREFEC":45,"DISTRICT":3,"PARTY":4,"PIC":"P_20200910SNSA0002S","KANA":"まつもと たかし","AGE":60,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0UO","NAME":"古川 禎久","PREFEC":45,"DISTRICT":3,"PARTY":1,"PIC":"P_20210829SNSA0002S","KANA":"ふるかわ よしひさ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":5,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":5,"Q6_17":3,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":5,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002KWA","NAME":"重黒木 優平","PREFEC":45,"DISTRICT":3,"PARTY":9,"PIC":"P_20210801SNSA0003S","KANA":"じゅうくろき ゆうへい","AGE":34,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":4,"Q6_4":3,"Q6_5":3,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0UR","NAME":"川内 博史","PREFEC":46,"DISTRICT":1,"PARTY":2,"PIC":"P_20210713SNSA0003S","KANA":"かわうち ひろし","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RKG","NAME":"宮路 拓馬","PREFEC":46,"DISTRICT":1,"PARTY":1,"PIC":"P_20210715SNSA0002S","KANA":"みやじ たくま","AGE":41,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ4M3","NAME":"松崎 真琴","PREFEC":46,"DISTRICT":2,"PARTY":4,"PIC":"P_20210118SNSA0003S","KANA":"まつざき まこと","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ4NY","NAME":"金子 万寿夫","PREFEC":46,"DISTRICT":2,"PARTY":1,"PIC":"P_20210713SNSA0004S","KANA":"かねこ ますお","AGE":74,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000021UV","NAME":"三反園 訓","PREFEC":46,"DISTRICT":2,"PARTY":12,"PIC":"P_20210908SNSA0008S","KANA":"みたぞの さとし","AGE":63,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004F4","NAME":"小里 泰弘","PREFEC":46,"DISTRICT":3,"PARTY":1,"PIC":"P_20210713SNSA0005S","KANA":"おざと やすひろ","AGE":63,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":6,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"0000045D","NAME":"野間 健","PREFEC":46,"DISTRICT":3,"PARTY":2,"PIC":"P_20210718SNSA0001S","KANA":"のま たけし","AGE":63,"INCUMB":2,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":1,"Q7_5":3,"Q7_6":2,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000A1C","NAME":"米永 淳子","PREFEC":46,"DISTRICT":4,"PARTY":7,"PIC":"P_20210924SNSA0011S","KANA":"よねなが あつこ","AGE":58,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L6J","NAME":"宮川 直輝","PREFEC":46,"DISTRICT":4,"PARTY":9,"PIC":"P_20210908SNSA0007S","KANA":"みやがわ なおき","AGE":48,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000008E","NAME":"森山 裕","PREFEC":46,"DISTRICT":4,"PARTY":1,"PIC":"P_20211005SNSA0024S","KANA":"もりやま ひろし","AGE":76,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":3,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0V7","NAME":"赤嶺 政賢","PREFEC":47,"DISTRICT":1,"PARTY":4,"PIC":"P_20210730SNSA0012S","KANA":"あかみね せいけん","AGE":73,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0VG","NAME":"国場 幸之助","PREFEC":47,"DISTRICT":1,"PARTY":1,"PIC":"P_20210806SNSA0009S","KANA":"こくば こうのすけ","AGE":48,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0V8","NAME":"下地 幹郎","PREFEC":47,"DISTRICT":1,"PARTY":12,"PIC":"P_20210730SNSA0013S","KANA":"しもじ みきお","AGE":60,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MM1","NAME":"宮崎 政久","PREFEC":47,"DISTRICT":2,"PARTY":1,"PIC":"P_20210730SNSA0014S","KANA":"みやざき まさひさ","AGE":56,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":4,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002L77","NAME":"中村 幸也","PREFEC":47,"DISTRICT":2,"PARTY":9,"PIC":"P_20210910SNSA0010S","KANA":"なかむら ゆきや","AGE":41,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":4,"Q2_2":3,"Q2_3":5,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":5,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"00002KWV","NAME":"新垣 邦男","PREFEC":47,"DISTRICT":2,"PARTY":7,"PIC":"P_20210730SNSA0020S","KANA":"あらかき くにお","AGE":65,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":7,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":2,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002ID1","NAME":"山川 泰博","PREFEC":47,"DISTRICT":2,"PARTY":5,"PIC":"P_20210913SNSO0003S","KANA":"やまかわ やすひろ","AGE":51,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002F6G","NAME":"屋良 朝博","PREFEC":47,"DISTRICT":3,"PARTY":2,"PIC":"P_20210730SNSA0069S","KANA":"やら ともひろ","AGE":59,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000Z8A","NAME":"島尻 安伊子","PREFEC":47,"DISTRICT":3,"PARTY":1,"PIC":"P_20210730SNSA0067S","KANA":"しまじり あいこ","AGE":56,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":4,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0VJ","NAME":"西銘 恒三郎","PREFEC":47,"DISTRICT":4,"PARTY":1,"PIC":"P_20210730SNSA0071S","KANA":"にしめ こうさぶろう","AGE":67,"INCUMB":3,"RESULT":0,"PR":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002KX3","NAME":"金城 徹","PREFEC":47,"DISTRICT":4,"PARTY":2,"PIC":"P_20210730SNSA0086S","KANA":"きんじょう とおる","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66}];
var dat3 = [{"ID":"00001O26","NAME":"鈴木 貴子","PR":1,"PRBLOCK":51,"PARTY":1,"PIC":"P_20211004SNSO0011S","KANA":"すずき たかこ","AGE":35,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":1,"Q6_1":1,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000C4Z","NAME":"渡辺 孝一","PR":1,"PRBLOCK":51,"PARTY":1,"PIC":"P_20211004SNSO0009S","KANA":"わたなべ こういち","AGE":63,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002K5P","NAME":"鶴羽 佳子","PR":1,"PRBLOCK":51,"PARTY":1,"PIC":"P_20211016SNSO0009S","KANA":"つるは よしこ","AGE":53,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002K8A","NAME":"長友 隆典","PR":1,"PRBLOCK":51,"PARTY":1,"PIC":"P_20211017SNSO0034S","KANA":"ながとも たかのり","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":1,"Q6_3":3,"Q6_4":4,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":4,"Q6_12":1,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":5,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ1HC","NAME":"佐藤 英道","PR":1,"PRBLOCK":51,"PARTY":3,"PIC":"P_20210902SNSO0007S","KANA":"さとう ひでみち","AGE":61,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIL","NAME":"荒瀬 正昭","PR":1,"PRBLOCK":51,"PARTY":3,"PIC":"P_20211011SNSO0020S","KANA":"あらせ まさあき","AGE":43,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GB2","NAME":"原谷 那美","PR":1,"PRBLOCK":51,"PARTY":2,"PIC":"P_20211018SNSO0019S","KANA":"はらや なみ","AGE":37,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LPG","NAME":"秋元 恭兵","PR":1,"PRBLOCK":51,"PARTY":2,"PIC":"P_20211018SNSO0020S","KANA":"あきもと きょうへい","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LP8","NAME":"田中 勝一","PR":1,"PRBLOCK":51,"PARTY":2,"PIC":"P_20211018SNSO0021S","KANA":"たなか しょういち","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000011L8","NAME":"畠山 和也","PR":1,"PRBLOCK":51,"PARTY":4,"PIC":"P_20210915SNSO0016S","KANA":"はたやま かずや","AGE":50,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ4PG","NAME":"伊藤 理智子","PR":1,"PRBLOCK":51,"PARTY":4,"PIC":"P_20210804SNSA0002S","KANA":"いとう りちこ","AGE":60,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":3,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000011DH","NAME":"山崎 摩耶","PR":1,"PRBLOCK":51,"PARTY":6,"PIC":"P_20210915SNSO0015S","KANA":"やまざき まや","AGE":74,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KYK","NAME":"門別 芳夫","PR":1,"PRBLOCK":51,"PARTY":10,"PIC":"P_20210816SNSO0013S","KANA":"もんべつ よしお","AGE":60,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":3,"Q2_3":5,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":99,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000026UO","NAME":"豊巻 絹子","PR":1,"PRBLOCK":51,"PARTY":7,"PIC":"P_20210903SNSO0004S","KANA":"とよまき きぬこ","AGE":66,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001A44","NAME":"佐野 秀光","PR":1,"PRBLOCK":51,"PARTY":11,"PIC":"P_20211018SNSO0023S","KANA":"さの ひでみつ","AGE":51,"INCUMB":1,"RESULT":0,"Q2_1":6,"Q2_2":99,"Q2_3":99,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021NZ","NAME":"中村 治","PR":1,"PRBLOCK":51,"PARTY":11,"PIC":"P_20211018SNSO0024S","KANA":"なかむら おさむ","AGE":68,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001A1V","NAME":"津島 淳","PR":1,"PRBLOCK":52,"PARTY":1,"PIC":"P_20210720SNSO0011S","KANA":"つしま じゅん","AGE":55,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":4,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RVJ","NAME":"前川 恵","PR":1,"PRBLOCK":52,"PARTY":1,"PIC":"P_20211018SNSO0005S","KANA":"まえかわ めぐみ","AGE":46,"INCUMB":2,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LP7","NAME":"入野田 博","PR":1,"PRBLOCK":52,"PARTY":1,"PIC":"P_20211017SNSO0027S","KANA":"いりのだ ひろし","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1QF","NAME":"庄子 賢一","PR":1,"PRBLOCK":52,"PARTY":3,"PIC":"P_20210729SNSO0018S","KANA":"しょうじ けんいち","AGE":58,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L89","NAME":"佐々木 雅文","PR":1,"PRBLOCK":52,"PARTY":3,"PIC":"P_20210914SNSO0013S","KANA":"ささき まさふみ","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIO","NAME":"曽根 周作","PR":1,"PRBLOCK":52,"PARTY":3,"PIC":"P_20211008SNSO0015S","KANA":"そね しゅうさく","AGE":31,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":5,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LA6","NAME":"佐野 利恵","PR":1,"PRBLOCK":52,"PARTY":2,"PIC":"P_20210917SNSA0013S","KANA":"さの りえ","AGE":31,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":2,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001DPG","NAME":"鳥居 作弥","PR":1,"PRBLOCK":52,"PARTY":2,"PIC":"P_20210730SNSA0045S","KANA":"とりい さくや","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":3,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":2,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1R9","NAME":"内海 太","PR":1,"PRBLOCK":52,"PARTY":2,"PIC":"P_20211018SNSO0015S","KANA":"うつみ ふとし","AGE":74,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":5,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ00J","NAME":"高橋 千鶴子","PR":1,"PRBLOCK":52,"PARTY":4,"PIC":"P_20210729SNSO0019S","KANA":"たかはし ちづこ","AGE":62,"INCUMB":3,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001U3J","NAME":"藤本 友里","PR":1,"PRBLOCK":52,"PARTY":4,"PIC":"P_20210907SNSO0013S","KANA":"ふじもと ゆり","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1XR","NAME":"渡部 勝博","PR":1,"PRBLOCK":52,"PARTY":6,"PIC":"P_20210924SNSO0009S","KANA":"わたなべ かつひろ","AGE":61,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":1},{"ID":"00002L15","NAME":"渡辺 理明","PR":1,"PRBLOCK":52,"PARTY":10,"PIC":"P_20210827SNSO0007S","KANA":"わたなべ まさあき","AGE":51,"INCUMB":1,"RESULT":0,"Q2_1":5,"Q2_2":4,"Q2_3":1,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":5,"Q6_5":5,"Q6_6":1,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":3,"Q6_13":1,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ05C","NAME":"久保 孝喜","PR":1,"PRBLOCK":52,"PARTY":7,"PIC":"P_20210921SNSO0012S","KANA":"くぼ こうき","AGE":67,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":5,"Q6_8":5,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LND","NAME":"尾身 朝子","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20211019SNSO0006S","KANA":"おみ あさこ","AGE":60,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":1,"Q6_3":3,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":99,"Q6_8":1,"Q6_9":3,"Q6_10":99,"Q6_11":99,"Q6_12":3,"Q6_13":99,"Q6_14":1,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":1,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":5,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LP0","NAME":"河村 建一","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20211017SNSO0009S","KANA":"かわむら けんいち","AGE":45,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ27I","NAME":"神山 佐市","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20200929SNSA0002S","KANA":"かみやま さいち","AGE":67,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002CWT","NAME":"西川 鎮央","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20210928SNSA0008S","KANA":"にしかわ やすお","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001CLB","NAME":"上野 宏史","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20211018SNSO0022S","KANA":"うえの ひろし","AGE":50,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":5,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":5,"Q7_6":2,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000004UX","NAME":"佐藤 明男","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20211017SNSO0003S","KANA":"さとう あきお","AGE":69,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":1,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":2,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":1,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ28K","NAME":"鈴木 聖二","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20211014SNSO0016S","KANA":"すずき せいじ","AGE":66,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":8,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":4,"Q7_5":5,"Q7_6":4,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LP2","NAME":"小川 雅幸","PR":1,"PRBLOCK":53,"PARTY":1,"PIC":"P_20211017SNSO0012S","KANA":"おがわ まさゆき","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":99,"Q2_3":99,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":5,"Q6_11":5,"Q6_12":3,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ00U","NAME":"石井 啓一","PR":1,"PRBLOCK":53,"PARTY":3,"PIC":"P_20211007SNSO0044S","KANA":"いしい けいいち","AGE":63,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ5J5","NAME":"輿水 恵一","PR":1,"PRBLOCK":53,"PARTY":3,"PIC":"P_20210915SNSO0005S","KANA":"こしみず けいいち","AGE":59,"INCUMB":2,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ23R","NAME":"福重 隆浩","PR":1,"PRBLOCK":53,"PARTY":3,"PIC":"P_20210901SNSO0002S","KANA":"ふくしげ たかひろ","AGE":59,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00001O3Y","NAME":"村上 知己","PR":1,"PRBLOCK":53,"PARTY":3,"PIC":"P_20211012SNSO0006S","KANA":"むらかみ ともみ","AGE":56,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":5,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000027GA","NAME":"黒川 敦彦","PR":1,"PRBLOCK":53,"PARTY":9,"PIC":"P_20211013SNSO0022S","KANA":"くろかわ あつひこ","AGE":43,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":1,"Q6_3":4,"Q6_4":3,"Q6_5":4,"Q6_6":4,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":4,"Q6_14":4,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001MOB","NAME":"石塚 貞通","PR":1,"PRBLOCK":53,"PARTY":2,"PIC":"P_20211017SNSO0011S","KANA":"いしづか さだみち","AGE":54,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":5,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":4,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001DFV","NAME":"船山 幸雄","PR":1,"PRBLOCK":53,"PARTY":2,"PIC":"P_20211006SNSO0016S","KANA":"ふなやま ゆきお","AGE":67,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ7H3","NAME":"高杉 徹","PR":1,"PRBLOCK":53,"PARTY":2,"PIC":"P_20211018SNSO0018S","KANA":"たかすぎ とおる","AGE":68,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ097","NAME":"塩川 鉄也","PR":1,"PRBLOCK":53,"PARTY":4,"PIC":"P_20210917SNSO0009S","KANA":"しおかわ てつや","AGE":59,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":1,"Q7_6":99,"Q7_7":99,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NHE","NAME":"梅村 早江子","PR":1,"PRBLOCK":53,"PARTY":4,"PIC":"P_20210915SNSO0006S","KANA":"うめむら さえこ","AGE":57,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001F54","NAME":"田島 剛","PR":1,"PRBLOCK":53,"PARTY":10,"PIC":"P_20210414SNSA0012S","KANA":"たじま つよし","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":5,"Q2_2":4,"Q2_3":2,"Q6_1":3,"Q6_2":4,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000026YI","NAME":"池田 万佐代","PR":1,"PRBLOCK":53,"PARTY":7,"PIC":"P_20210812SNSO0005S","KANA":"いけだ まさよ","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O65","NAME":"出畑 実","PR":1,"PRBLOCK":54,"PARTY":1,"PIC":"P_20210914SNSO0015S","KANA":"でばた みのる","AGE":71,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":5,"Q6_12":2,"Q6_13":5,"Q6_14":1,"Q6_15":4,"Q6_16":4,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LPN","NAME":"高橋 恭介","PR":1,"PRBLOCK":54,"PARTY":1,"PIC":"P_20211018SNSO0011S","KANA":"たかはし きょうすけ","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":4,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O64","NAME":"文月 涼","PR":1,"PRBLOCK":54,"PARTY":1,"PIC":"P_20211014SNSO0007S","KANA":"ふづき りょう","AGE":54,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":6,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":4,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LOR","NAME":"望月 忠彦","PR":1,"PRBLOCK":54,"PARTY":1,"PIC":"P_20211017SNSO0017S","KANA":"もちづき ただひこ","AGE":59,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LOM","NAME":"高木 昭彦","PR":1,"PRBLOCK":54,"PARTY":1,"PIC":"P_20211016SNSO0005S","KANA":"たかぎ あきひこ","AGE":54,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LQB","NAME":"及川 博","PR":1,"PRBLOCK":54,"PARTY":1,"PIC":"P_20211018SNSO0049S","KANA":"おいかわ ひろし","AGE":64,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ014","NAME":"古屋 範子","PR":1,"PRBLOCK":54,"PARTY":3,"PIC":"P_20210925SNSO0001S","KANA":"ふるや のりこ","AGE":65,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ8QX","NAME":"角田 秀穂","PR":1,"PRBLOCK":54,"PARTY":3,"PIC":"P_20210914SNSO0014S","KANA":"つのだ ひでお","AGE":60,"INCUMB":2,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":4,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0E6","NAME":"上田 勇","PR":1,"PRBLOCK":54,"PARTY":3,"PIC":"P_20210925SNSO0002S","KANA":"うえだ いさむ","AGE":63,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":4,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":5,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":1,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LIT","NAME":"江端 功一","PR":1,"PRBLOCK":54,"PARTY":3,"PIC":"P_20211012SNSO0011S","KANA":"えばた こういち","AGE":43,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":4,"Q7_5":2,"Q7_6":4,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RTM","NAME":"井川 泰雄","PR":1,"PRBLOCK":54,"PARTY":3,"PIC":"P_20211008SNSO0021S","KANA":"いかわ やすお","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIA","NAME":"渡辺 敏光","PR":1,"PRBLOCK":54,"PARTY":9,"PIC":"P_20211014SNSO0009S","KANA":"わたなべ としみつ","AGE":37,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004HR","NAME":"小野 次郎","PR":1,"PRBLOCK":54,"PARTY":2,"PIC":"P_20211017SNSO0037S","KANA":"おの じろう","AGE":68,"INCUMB":2,"RESULT":0,"Q2_1":1,"Q2_2":3,"Q2_3":7,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":4,"Q6_6":3,"Q6_7":4,"Q6_8":4,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":4,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"000013I0","NAME":"金子 健一","PR":1,"PRBLOCK":54,"PARTY":2,"PIC":"P_20211016SNSO0002S","KANA":"かねこ けんいち","AGE":63,"INCUMB":2,"RESULT":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":1,"Q7_6":2,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ018","NAME":"志位 和夫","PR":1,"PRBLOCK":54,"PARTY":4,"PIC":"P_20211013SNSO0003S","KANA":"しい かずお","AGE":67,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000013TB","NAME":"斉藤 和子","PR":1,"PRBLOCK":54,"PARTY":4,"PIC":"P_20210824SNSA0002S","KANA":"さいとう かずこ","AGE":47,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RMX","NAME":"沼上 徳光","PR":1,"PRBLOCK":54,"PARTY":4,"PIC":"P_20210925SNSO0004S","KANA":"ぬまかみ とくみつ","AGE":35,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":3,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LQ7","NAME":"長谷 康人","PR":1,"PRBLOCK":54,"PARTY":6,"PIC":"P_20211018SNSO0040S","KANA":"はせ やすひと","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":2,"Q6_12":3,"Q6_13":2,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002120","NAME":"木下 隼","PR":1,"PRBLOCK":54,"PARTY":10,"PIC":"P_20211014SNSO0015S","KANA":"きのした はやと","AGE":39,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":1,"Q2_3":5,"Q6_1":5,"Q6_2":1,"Q6_3":1,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":1,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":4,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ2GL","NAME":"高木 啓","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20210914SNSO0004S","KANA":"たかぎ けい","AGE":56,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":99,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":3,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":1,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LNC","NAME":"伊藤 智加","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20211014SNSO0006S","KANA":"いとう ともか","AGE":58,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LML","NAME":"松野 未佳","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20211013SNSO0018S","KANA":"まつの みか","AGE":26,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":3,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NX9","NAME":"小松 裕","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20211018SNSO0026S","KANA":"こまつ ゆたか","AGE":59,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":1,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00000YO1","NAME":"西田 譲","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20211017SNSO0020S","KANA":"にしだ ゆずる","AGE":46,"INCUMB":2,"RESULT":0,"Q2_1":3,"Q2_2":6,"Q2_3":2,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NX5","NAME":"和泉 武彦","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20211019SNSO0001S","KANA":"いずみ たけひこ","AGE":53,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000003AQ","NAME":"崎山 知尚","PR":1,"PRBLOCK":55,"PARTY":1,"PIC":"P_20211019SNSO0005S","KANA":"さきやま ちしょう","AGE":56,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":1,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ01F","NAME":"高木 陽介","PR":1,"PRBLOCK":55,"PARTY":3,"PIC":"P_20210913SNSO0010S","KANA":"たかぎ ようすけ","AGE":61,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L8M","NAME":"河西 宏一","PR":1,"PRBLOCK":55,"PARTY":3,"PIC":"P_20210915SNSO0012S","KANA":"かさい こういち","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002GJ0","NAME":"藤井 伸城","PR":1,"PRBLOCK":55,"PARTY":3,"PIC":"P_20211012SNSO0013S","KANA":"ふじい のぶしろ","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":1,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIM","NAME":"大沼 伸貴","PR":1,"PRBLOCK":55,"PARTY":3,"PIC":"P_20211012SNSO0014S","KANA":"おおぬま のぶたか","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":4,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001F4K","NAME":"高松 智之","PR":1,"PRBLOCK":55,"PARTY":2,"PIC":"P_20211018SNSO0001S","KANA":"たかまつ さとし","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":4,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ01C","NAME":"川島 智太郎","PR":1,"PRBLOCK":55,"PARTY":2,"PIC":"P_20211018SNSO0002S","KANA":"かわしま ともたろう","AGE":57,"INCUMB":2,"RESULT":0,"Q2_1":5,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":5,"Q6_11":5,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O0E","NAME":"北出 美翔","PR":1,"PRBLOCK":55,"PARTY":2,"PIC":"P_20211017SNSO0038S","KANA":"きたで みか","AGE":35,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":7,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":3,"Q6_13":3,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":1,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ1BI","NAME":"笠井 亮","PR":1,"PRBLOCK":55,"PARTY":4,"PIC":"P_20210915SNSO0025S","KANA":"かさい あきら","AGE":69,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":2,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RTP","NAME":"坂井 和歌子","PR":1,"PRBLOCK":55,"PARTY":4,"PIC":"P_20210916SNSO0008S","KANA":"さかい わかこ","AGE":44,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000025J1","NAME":"細野 真理","PR":1,"PRBLOCK":55,"PARTY":4,"PIC":"P_20210709SNSA0001S","KANA":"ほその まり","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":5,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"0000271C","NAME":"小堤 東","PR":1,"PRBLOCK":55,"PARTY":4,"PIC":"P_20211006SNSA0004S","KANA":"こづつみ あづま","AGE":32,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":4,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LNP","NAME":"竹内 淳太郎","PR":1,"PRBLOCK":55,"PARTY":6,"PIC":"P_20211015SNSO0012S","KANA":"たけうち じゅんたろう","AGE":54,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":1,"Q7_7":5,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O7F","NAME":"山本 太郎","PR":1,"PRBLOCK":55,"PARTY":10,"PIC":"P_20211018SNSO0030S","KANA":"やまもと たろう","AGE":46,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GJJ","NAME":"渡辺 照子","PR":1,"PRBLOCK":55,"PARTY":10,"PIC":"P_20210730SNSA0049S","KANA":"わたなべ てるこ","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001G7Z","NAME":"石崎 英幸","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211006SNSO0009S","KANA":"いしざき ひでゆき","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":5,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":1,"Q6_14":3,"Q6_15":5,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":1,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001KLY","NAME":"鈴木 一郎","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211006SNSO0024S","KANA":"すずき いちろう","AGE":68,"INCUMB":1,"RESULT":0,"Q2_1":5,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":5,"Q6_4":1,"Q6_5":4,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":1,"Q6_14":2,"Q6_15":3,"Q6_16":2,"Q6_17":1,"Q7_1":4,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":2,"Q7_6":2,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LH4","NAME":"吹田 英駿","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211006SNSO0025S","KANA":"すいた ひでとし","AGE":25,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":3,"Q2_3":7,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":4,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":4,"Q6_13":2,"Q6_14":2,"Q6_15":4,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LIB","NAME":"小林 明子","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211007SNSO0010S","KANA":"こばやし あきこ","AGE":53,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":1,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":3,"Q6_13":4,"Q6_14":5,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002CN8","NAME":"中村 和弘","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211006SNSO0035S","KANA":"なかむら かずひろ","AGE":55,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":7,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":3,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":1,"Q6_12":5,"Q6_13":5,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":4,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":1,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"000025LN","NAME":"岡村 幹雄","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211008SNSO0022S","KANA":"おかむら みきお","AGE":64,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":5,"Q6_1":1,"Q6_2":3,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":5,"Q6_13":1,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":1,"Q7_2":1,"Q7_3":5,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002DW1","NAME":"堀切 笹美","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211008SNSO0013S","KANA":"ほりきり ささみ","AGE":46,"INCUMB":1,"RESULT":0,"Q2_1":7,"Q2_2":5,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":5,"Q6_5":1,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":1,"Q6_12":5,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":5,"Q6_17":5,"Q7_1":2,"Q7_2":1,"Q7_3":4,"Q7_4":1,"Q7_5":5,"Q7_6":1,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":1,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LHF","NAME":"先崎 玲","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211016SNSO0017S","KANA":"せんざき れい","AGE":64,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LOK","NAME":"清水 三雄","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211016SNSO0003S","KANA":"しみず みつお","AGE":80,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":3,"Q2_3":8,"Q6_1":5,"Q6_2":1,"Q6_3":5,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":5,"Q6_8":1,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":1,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":5,"Q7_5":1,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LP3","NAME":"ゆっこママ ","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211017SNSO0014S","KANA":"ゆっこまま ","AGE":35,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LPJ","NAME":"橋本 浩二","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211018SNSO0006S","KANA":"はしもと こうじ","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":4,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":4,"Q6_12":4,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":2,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LPL","NAME":"森岡 匠","PR":1,"PRBLOCK":55,"PARTY":11,"PIC":"P_20211018SNSO0008S","KANA":"もりおか たくみ","AGE":46,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":1,"Q6_15":2,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":4,"Q7_5":5,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000004F6","NAME":"鷲尾 英一郎","PR":1,"PRBLOCK":56,"PARTY":1,"PIC":"P_20211007SNSA0016S","KANA":"わしお えいいちろう","AGE":44,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":8,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":2,"Q6_17":2,"Q7_1":1,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":1,"SQ8_1":99,"SQ8_2":99,"SQ8_3":99,"SQ8_4":99,"SQ8_5":99,"SQ8_6":99,"SQ8_7":99,"SQ8_8":99,"SQ8_9":99,"SQ8_10":99,"SQ8_11":99,"SQ8_12":99,"SQ8_13":99,"SQ8_14":99,"SQ8_15":99,"SQ8_16":99},{"ID":"ZZZZZ0GV","NAME":"山本 拓","PR":1,"PRBLOCK":56,"PARTY":1,"PIC":"P_20211013SNSO0012S","KANA":"やまもと たく","AGE":69,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":6,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":4,"Q6_13":3,"Q6_14":5,"Q6_15":5,"Q6_16":5,"Q6_17":3,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":5,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00001RUA","NAME":"佐藤 俊","PR":1,"PRBLOCK":56,"PARTY":1,"PIC":"P_20211015SNSO0032S","KANA":"さとう しゅん","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":2,"Q6_7":2,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":4,"Q6_12":4,"Q6_13":3,"Q6_14":1,"Q6_15":5,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":4,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LO6","NAME":"工藤 昌克","PR":1,"PRBLOCK":56,"PARTY":1,"PIC":"P_20211017SNSO0026S","KANA":"くどう まさかつ","AGE":45,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LOW","NAME":"滝沢 圭隆","PR":1,"PRBLOCK":56,"PARTY":1,"PIC":"P_20211017SNSO0002S","KANA":"たきざわ けいりゅう","AGE":54,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LQD","NAME":"近藤 真衣","PR":1,"PRBLOCK":56,"PARTY":1,"PIC":"P_20211019SNSO0004S","KANA":"こんどう まい","AGE":25,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001END","NAME":"中川 宏昌","PR":1,"PRBLOCK":56,"PARTY":3,"PIC":"P_20210922SNSO0010S","KANA":"なかがわ ひろまさ","AGE":51,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":5,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LIS","NAME":"小松 実","PR":1,"PRBLOCK":56,"PARTY":3,"PIC":"P_20211013SNSO0017S","KANA":"こまつ みのる","AGE":56,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":4,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":4,"Q6_12":1,"Q6_13":2,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":2,"Q7_4":2,"Q7_5":5,"Q7_6":4,"Q7_7":2,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LOQ","NAME":"石本 伸二","PR":1,"PRBLOCK":56,"PARTY":2,"PIC":"P_20211018SNSO0004S","KANA":"いしもと しんじ","AGE":60,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MLY","NAME":"藤野 保史","PR":1,"PRBLOCK":56,"PARTY":4,"PIC":"P_20210915SNSO0037S","KANA":"ふじの やすふみ","AGE":51,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":99,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0GR","NAME":"金元 幸枝","PR":1,"PRBLOCK":56,"PARTY":4,"PIC":"P_20210810SNSA0001S","KANA":"かねもと ゆきえ","AGE":63,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":1,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GJ8","NAME":"辻村 千尋","PR":1,"PRBLOCK":56,"PARTY":10,"PIC":"P_20210909SNSA0001S","KANA":"つじむら ちひろ","AGE":53,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L83","NAME":"五十田 裕子","PR":1,"PRBLOCK":56,"PARTY":7,"PIC":"P_20210914SNSO0006S","KANA":"いそだ ゆうこ","AGE":60,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":5,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GAV","NAME":"山本 左近","PR":1,"PRBLOCK":57,"PARTY":1,"PIC":"P_20211018SNSO0038S","KANA":"やまもと さこん","AGE":39,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":8,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":5,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":3,"Q6_11":3,"Q6_12":1,"Q6_13":2,"Q6_14":1,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LPO","NAME":"木造 燿子","PR":1,"PRBLOCK":57,"PARTY":1,"PIC":"P_20211018SNSO0012S","KANA":"きつくり ようこ","AGE":29,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":2,"Q6_8":2,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":2,"Q7_2":2,"Q7_3":99,"Q7_4":2,"Q7_5":99,"Q7_6":99,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LP5","NAME":"森 由起子","PR":1,"PRBLOCK":57,"PARTY":1,"PIC":"P_20211017SNSO0035S","KANA":"もり ゆきこ","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":6,"Q2_3":3,"Q6_1":2,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":2,"Q6_6":2,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":5,"Q6_14":1,"Q6_15":4,"Q6_16":2,"Q6_17":4,"Q7_1":1,"Q7_2":2,"Q7_3":2,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":1,"SQ8_10":1,"SQ8_11":1,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LP4","NAME":"松本 忠真","PR":1,"PRBLOCK":57,"PARTY":1,"PIC":"P_20211017SNSO0015S","KANA":"まつもと ただまさ","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LQ4","NAME":"岡本 康宏","PR":1,"PRBLOCK":57,"PARTY":1,"PIC":"P_20211018SNSO0039S","KANA":"おかもと やすひろ","AGE":39,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":2,"Q6_1":2,"Q6_2":99,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":99,"Q6_7":99,"Q6_8":3,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":1,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ01Y","NAME":"大口 善徳","PR":1,"PRBLOCK":57,"PARTY":3,"PIC":"P_20211004SNSO0021S","KANA":"おおぐち よしのり","AGE":66,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00000452","NAME":"伊藤 渉","PR":1,"PRBLOCK":57,"PARTY":3,"PIC":"P_20210907SNSO0005S","KANA":"いとう わたる","AGE":51,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":1,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":4,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000FX8","NAME":"中川 康洋","PR":1,"PRBLOCK":57,"PARTY":3,"PIC":"P_20210908SNSO0014S","KANA":"なかがわ やすひろ","AGE":53,"INCUMB":2,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001A3F","NAME":"国森 光信","PR":1,"PRBLOCK":57,"PARTY":3,"PIC":"P_20211008SNSO0012S","KANA":"くにもり みつのぶ","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":2,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"000027E1","NAME":"越野 優一","PR":1,"PRBLOCK":57,"PARTY":3,"PIC":"P_20211011SNSO0013S","KANA":"こしの ゆういち","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001ITX","NAME":"芳野 正英","PR":1,"PRBLOCK":57,"PARTY":2,"PIC":"P_20211015SNSO0005S","KANA":"よしの まさひで","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":3,"Q6_9":2,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":4,"Q6_14":4,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZBRC","NAME":"大島 もえ","PR":1,"PRBLOCK":57,"PARTY":2,"PIC":"P_20211018SNSO0025S","KANA":"おおしま もえ","AGE":45,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":1,"Q7_6":3,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000466","NAME":"本村 伸子","PR":1,"PRBLOCK":57,"PARTY":4,"PIC":"P_20210916SNSO0014S","KANA":"もとむら のぶこ","AGE":49,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ118","NAME":"島津 幸広","PR":1,"PRBLOCK":57,"PARTY":4,"PIC":"P_20210918SNSA0003S","KANA":"しまづ ゆきひろ","AGE":65,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002707","NAME":"長内 史子","PR":1,"PRBLOCK":57,"PARTY":4,"PIC":"P_20211005SNSO0001S","KANA":"おさない ふみこ","AGE":33,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000011L9","NAME":"平山 良平","PR":1,"PRBLOCK":57,"PARTY":7,"PIC":"P_20211007SNSO0049S","KANA":"ひらやま りょうへい","AGE":73,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0OT","NAME":"奥野 信亮","PR":1,"PRBLOCK":58,"PARTY":1,"PIC":"P_20211017SNSO0028S","KANA":"おくの しんすけ","AGE":77,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":5,"Q6_16":5,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":1,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ554","NAME":"柳本 顕","PR":1,"PRBLOCK":58,"PARTY":1,"PIC":"P_20211016SNSA0016S","KANA":"やなぎもと あきら","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":6,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":2,"Q6_10":3,"Q6_11":3,"Q6_12":4,"Q6_13":5,"Q6_14":3,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001RVI","NAME":"湯峯 理之","PR":1,"PRBLOCK":58,"PARTY":1,"PIC":"P_20211017SNSO0024S","KANA":"ゆみね ただゆき","AGE":61,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LQC","NAME":"野村 広志","PR":1,"PRBLOCK":58,"PARTY":1,"PIC":"P_20211018SNSO0047S","KANA":"のむら ひろし","AGE":38,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000004NG","NAME":"竹内 譲","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211007SNSO0042S","KANA":"たけうち ゆずる","AGE":63,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1AP","NAME":"浮島 智子","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0004S","KANA":"うきしま ともこ","AGE":58,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ1B1","NAME":"鰐淵 洋子","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0002S","KANA":"わにぶち ようこ","AGE":49,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":2,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001NVB","NAME":"浜村 進","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0021S","KANA":"はまむら すすむ","AGE":46,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":4,"Q6_10":5,"Q6_11":4,"Q6_12":5,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":4,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O53","NAME":"田丸 義高","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0005S","KANA":"たまる よしたか","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":1,"Q2_3":6,"Q6_1":2,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001PQM","NAME":"鷲岡 秀明","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0007S","KANA":"わしおか ひであき","AGE":56,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001O3S","NAME":"田中 博之","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0006S","KANA":"たなか ひろゆき","AGE":63,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":2,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LIP","NAME":"井上 幸作","PR":1,"PRBLOCK":58,"PARTY":3,"PIC":"P_20211011SNSO0008S","KANA":"いのうえ こうさく","AGE":48,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":1,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":3,"Q7_3":2,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002CDT","NAME":"笹田 能美","PR":1,"PRBLOCK":58,"PARTY":2,"PIC":"P_20211018SNSO0029S","KANA":"ささだ よしみ","AGE":56,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":6,"Q6_1":5,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":3,"Q6_12":1,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":4,"Q7_2":4,"Q7_3":5,"Q7_4":5,"Q7_5":2,"Q7_6":2,"Q7_7":4,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000004V4","NAME":"豊田 潤多郎","PR":1,"PRBLOCK":58,"PARTY":2,"PIC":"P_20211017SNSO0021S","KANA":"とよだ じゅんたろう","AGE":72,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":3,"Q6_7":4,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":1,"Q7_6":4,"Q7_7":1,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000005CW","NAME":"武山 彩子","PR":1,"PRBLOCK":58,"PARTY":4,"PIC":"P_20210727SNSO0047S","KANA":"たけやま さいこ","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":3,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002DE2","NAME":"西田 佐枝子","PR":1,"PRBLOCK":58,"PARTY":4,"PIC":"P_20210927SNSO0019S","KANA":"にしだ さえこ","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":4,"Q2_3":2,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002KVP","NAME":"八幡 愛","PR":1,"PRBLOCK":58,"PARTY":10,"PIC":"P_20210806SNSA0003S","KANA":"やはた あい","AGE":34,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001TXN","NAME":"石橋 林太郎","PR":1,"PRBLOCK":59,"PARTY":1,"PIC":"P_20211006SNSO0034S","KANA":"いしばし りんたろう","AGE":43,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CCU","NAME":"高階 恵美子","PR":1,"PRBLOCK":59,"PARTY":1,"PIC":"P_20211015SNSO0018S","KANA":"たかがい えみこ","AGE":57,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001ML8","NAME":"杉田 水脈","PR":1,"PRBLOCK":59,"PARTY":1,"PIC":"P_20211007SNSO0009S","KANA":"すぎた みお","AGE":54,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":2,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":4,"Q6_11":4,"Q6_12":4,"Q6_13":2,"Q6_14":1,"Q6_15":5,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":5,"Q7_6":2,"Q7_7":99,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":1},{"ID":"00001PM9","NAME":"畦元 将吾","PR":1,"PRBLOCK":59,"PARTY":1,"PIC":"P_20211005SNSO0021S","KANA":"あぜもと しょうご","AGE":63,"INCUMB":3,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":3,"Q6_2":3,"Q6_3":3,"Q6_4":3,"Q6_5":3,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001EED","NAME":"小林 孝一郎","PR":1,"PRBLOCK":59,"PARTY":1,"PIC":"P_20210927SNSO0008S","KANA":"こばやし こういちろう","AGE":44,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":8,"Q6_1":3,"Q6_2":2,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":3,"Q6_16":3,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000027IP","NAME":"徳村 純一郎","PR":1,"PRBLOCK":59,"PARTY":1,"PIC":"P_20211013SNSO0019S","KANA":"とくむら じゅんいちろう","AGE":67,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":1,"Q6_4":4,"Q6_5":1,"Q6_6":2,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":5,"Q6_17":4,"Q7_1":1,"Q7_2":1,"Q7_3":2,"Q7_4":3,"Q7_5":4,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":0,"SQ8_2":1,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LI2","NAME":"平林 晃","PR":1,"PRBLOCK":59,"PARTY":3,"PIC":"P_20211007SNSO0007S","KANA":"ひらばやし あきら","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":2,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RUI","NAME":"日下 正喜","PR":1,"PRBLOCK":59,"PARTY":3,"PIC":"P_20210916SNSO0016S","KANA":"くさか まさき","AGE":55,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":4,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LIN","NAME":"長谷川 裕輝","PR":1,"PRBLOCK":59,"PARTY":3,"PIC":"P_20211011SNSO0022S","KANA":"はせがわ ゆうき","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":4,"Q6_11":4,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":4,"Q7_3":2,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O87","NAME":"喜多 義典","PR":1,"PRBLOCK":59,"PARTY":5,"PIC":"P_20211018SNSO0042S","KANA":"きた よしのり","AGE":54,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ408","NAME":"加藤 寿彦","PR":1,"PRBLOCK":59,"PARTY":2,"PIC":"P_20211017SNSO0013S","KANA":"かとう としひこ","AGE":74,"INCUMB":1,"RESULT":0,"Q2_1":7,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":5,"Q6_8":2,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":5,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":1,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ3VT","NAME":"姫井 由美子","PR":1,"PRBLOCK":59,"PARTY":2,"PIC":"P_20211017SNSO0030S","KANA":"ひめい ゆみこ","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":2,"Q2_3":5,"Q6_1":2,"Q6_2":4,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":3,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":3,"Q7_4":3,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001CK3","NAME":"大平 喜信","PR":1,"PRBLOCK":59,"PARTY":4,"PIC":"P_20211006SNSO0028S","KANA":"おおひら よしのぶ","AGE":43,"INCUMB":2,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":2,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GFW","NAME":"住寄 聡美","PR":1,"PRBLOCK":59,"PARTY":4,"PIC":"P_20210927SNSO0004S","KANA":"すみより さとみ","AGE":38,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0N4","NAME":"樽井 良和","PR":1,"PRBLOCK":59,"PARTY":6,"PIC":"P_20210730SNSA0050S","KANA":"たるい よしかず","AGE":54,"INCUMB":2,"RESULT":0,"Q2_1":4,"Q2_2":7,"Q2_3":2,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":3,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":4,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":4,"Q7_6":2,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"ZZZZZ0S4","NAME":"山本 有二","PR":1,"PRBLOCK":60,"PARTY":1,"PIC":"P_20210720SNSO0006S","KANA":"やまもと ゆうじ","AGE":69,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":1,"Q6_4":3,"Q6_5":3,"Q6_6":4,"Q6_7":3,"Q6_8":3,"Q6_9":3,"Q6_10":4,"Q6_11":4,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":3,"Q6_16":3,"Q6_17":3,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":4,"Q7_5":4,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ42H","NAME":"福山 守","PR":1,"PRBLOCK":60,"PARTY":1,"PIC":"P_20210714SNSA0004S","KANA":"ふくやま まもる","AGE":68,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":1,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":5,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":2,"Q7_5":5,"Q7_6":4,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"ZZZZZ0RX","NAME":"福井 照","PR":1,"PRBLOCK":60,"PARTY":1,"PIC":"P_20210715SNSO0005S","KANA":"ふくい てる","AGE":67,"INCUMB":3,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027IT","NAME":"二川 弘康","PR":1,"PRBLOCK":60,"PARTY":1,"PIC":"P_20211013SNSO0029S","KANA":"ふたがわ ひろやす","AGE":47,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":3,"Q6_2":2,"Q6_3":2,"Q6_4":1,"Q6_5":1,"Q6_6":4,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":3,"Q6_17":3,"Q7_1":1,"Q7_2":3,"Q7_3":2,"Q7_4":2,"Q7_5":3,"Q7_6":4,"Q7_7":1,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027IW","NAME":"井桜 康司","PR":1,"PRBLOCK":60,"PARTY":1,"PIC":"P_20211014SNSO0014S","KANA":"いざくら やすし","AGE":65,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":4,"Q2_3":7,"Q6_1":2,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":1,"Q6_6":3,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":1,"Q7_3":3,"Q7_4":1,"Q7_5":4,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002DHI","NAME":"山崎 正恭","PR":1,"PRBLOCK":60,"PARTY":3,"PIC":"P_20210831SNSO0002S","KANA":"やまさき まさやす","AGE":50,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":4,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":3,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":3,"Q7_7":5,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021W5","NAME":"坂本 道応","PR":1,"PRBLOCK":60,"PARTY":3,"PIC":"P_20211017SNSO0022S","KANA":"さかもと みちお","AGE":42,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RW4","NAME":"佐藤 暁","PR":1,"PRBLOCK":60,"PARTY":5,"PIC":"P_20211018SNSO0045S","KANA":"さとう あきら","AGE":60,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":8,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":3,"Q6_5":2,"Q6_6":3,"Q6_7":4,"Q6_8":2,"Q6_9":1,"Q6_10":3,"Q6_11":5,"Q6_12":2,"Q6_13":3,"Q6_14":1,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":4,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":1,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":1},{"ID":"00002LOO","NAME":"長山 雅一","PR":1,"PRBLOCK":60,"PARTY":2,"PIC":"P_20211017SNSO0006S","KANA":"ながやま まさかず","AGE":33,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002GDT","NAME":"小山田 経子","PR":1,"PRBLOCK":60,"PARTY":2,"PIC":"P_20211018SNSO0010S","KANA":"おやまだ つねこ","AGE":43,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":4,"Q6_6":4,"Q6_7":2,"Q6_8":1,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":2,"Q6_14":4,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":3,"Q7_2":2,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":2,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ43X","NAME":"白川 容子","PR":1,"PRBLOCK":60,"PARTY":4,"PIC":"P_20210729SNSO0012S","KANA":"しらかわ ようこ","AGE":55,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":5,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L9M","NAME":"中根 耕作","PR":1,"PRBLOCK":60,"PARTY":4,"PIC":"P_20210916SNSO0020S","KANA":"なかね こうさく","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":1,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":4,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":4,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002L4K","NAME":"小泉 敦","PR":1,"PRBLOCK":60,"PARTY":10,"PIC":"P_20210902SNSO0009S","KANA":"こいずみ あつし","AGE":39,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":4,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":3,"Q7_4":1,"Q7_5":1,"Q7_6":1,"Q7_7":4,"Q8":4,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000007RG","NAME":"三野 ハル子","PR":1,"PRBLOCK":60,"PARTY":7,"PIC":"P_20211004SNSO0023S","KANA":"みの はるこ","AGE":76,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":5,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":2,"Q6_8":5,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":5,"Q7_3":5,"Q7_4":2,"Q7_5":1,"Q7_6":5,"Q7_7":5,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"ZZZZZ0TB","NAME":"今村 雅弘","PR":1,"PRBLOCK":61,"PARTY":1,"PIC":"P_20210921SNSO0018S","KANA":"いまむら まさひろ","AGE":74,"INCUMB":3,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000027HZ","NAME":"保岡 宏武","PR":1,"PRBLOCK":61,"PARTY":1,"PIC":"P_20210713SNSA0007S","KANA":"やすおか ひろたけ","AGE":48,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":1,"Q6_2":2,"Q6_3":1,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001NEV","NAME":"河野 正美","PR":1,"PRBLOCK":61,"PARTY":1,"PIC":"P_20211018SNSO0016S","KANA":"かわの まさみ","AGE":60,"INCUMB":2,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":6,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":2,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":2,"Q7_6":4,"Q7_7":3,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":1,"SQ8_12":1,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LPB","NAME":"新 義明","PR":1,"PRBLOCK":61,"PARTY":1,"PIC":"P_20211017SNSO0039S","KANA":"しん よしあき","AGE":68,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":2,"Q6_3":2,"Q6_4":2,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":1,"Q6_11":2,"Q6_12":1,"Q6_13":2,"Q6_14":2,"Q6_15":3,"Q6_16":4,"Q6_17":3,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":2,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":1,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002LP6","NAME":"田畑 隆治","PR":1,"PRBLOCK":61,"PARTY":1,"PIC":"P_20211017SNSO0025S","KANA":"たばた りゅうじ","AGE":62,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":2,"Q6_2":2,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":1,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":1,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001A5K","NAME":"浜地 雅一","PR":1,"PRBLOCK":61,"PARTY":3,"PIC":"P_20211004SNSO0031S","KANA":"はまち まさかず","AGE":51,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":3,"Q6_3":1,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":1,"Q6_8":1,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":3,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001RUD","NAME":"吉田 宣弘","PR":1,"PRBLOCK":61,"PARTY":3,"PIC":"P_20210922SNSO0009S","KANA":"よしだ のぶひろ","AGE":53,"INCUMB":3,"RESULT":0,"Q2_1":2,"Q2_2":99,"Q2_3":99,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":3,"Q6_6":3,"Q6_7":2,"Q6_8":3,"Q6_9":3,"Q6_10":2,"Q6_11":3,"Q6_12":3,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":5,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"000021PK","NAME":"金城 泰邦","PR":1,"PRBLOCK":61,"PARTY":3,"PIC":"P_20211005SNSO0018S","KANA":"きんじょう やすくに","AGE":52,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":3,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":1,"Q6_9":3,"Q6_10":3,"Q6_11":3,"Q6_12":1,"Q6_13":3,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":1,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":2,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"000027HC","NAME":"吉田 久美子","PR":1,"PRBLOCK":61,"PARTY":3,"PIC":"P_20210919SNSO0003S","KANA":"よしだ くみこ","AGE":58,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":3,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":3,"Q6_7":3,"Q6_8":3,"Q6_9":4,"Q6_10":3,"Q6_11":3,"Q6_12":2,"Q6_13":4,"Q6_14":3,"Q6_15":2,"Q6_16":2,"Q6_17":2,"Q7_1":3,"Q7_2":4,"Q7_3":4,"Q7_4":3,"Q7_5":3,"Q7_6":4,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001PQD","NAME":"窪田 哲也","PR":1,"PRBLOCK":61,"PARTY":3,"PIC":"P_20211012SNSO0028S","KANA":"くぼた てつや","AGE":55,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":4,"Q6_1":2,"Q6_2":4,"Q6_3":2,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":5,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":4,"Q6_14":2,"Q6_15":4,"Q6_16":4,"Q6_17":2,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":4,"Q7_5":4,"Q7_6":1,"Q7_7":4,"Q8":2,"SQ8_1":1,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":1,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00001O3H","NAME":"中山 英一","PR":1,"PRBLOCK":61,"PARTY":3,"PIC":"P_20211012SNSO0027S","KANA":"なかやま えいいち","AGE":45,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":3,"Q2_3":1,"Q6_1":2,"Q6_2":4,"Q6_3":3,"Q6_4":1,"Q6_5":2,"Q6_6":4,"Q6_7":2,"Q6_8":2,"Q6_9":3,"Q6_10":2,"Q6_11":2,"Q6_12":2,"Q6_13":3,"Q6_14":2,"Q6_15":2,"Q6_16":2,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":3,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":3,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":0,"SQ8_4":0,"SQ8_5":0,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":0,"SQ8_16":0},{"ID":"00002IG1","NAME":"斉藤 健一郎","PR":1,"PRBLOCK":61,"PARTY":9,"PIC":"P_20211004SNSO0002S","KANA":"さいとう けんいちろう","AGE":40,"INCUMB":1,"RESULT":0,"Q2_1":2,"Q2_2":4,"Q2_3":3,"Q6_1":1,"Q6_2":2,"Q6_3":3,"Q6_4":4,"Q6_5":5,"Q6_6":4,"Q6_7":4,"Q6_8":1,"Q6_9":1,"Q6_10":5,"Q6_11":5,"Q6_12":1,"Q6_13":1,"Q6_14":1,"Q6_15":2,"Q6_16":3,"Q6_17":2,"Q7_1":1,"Q7_2":1,"Q7_3":1,"Q7_4":5,"Q7_5":5,"Q7_6":1,"Q7_7":1,"Q8":1,"SQ8_1":1,"SQ8_2":1,"SQ8_3":0,"SQ8_4":1,"SQ8_5":0,"SQ8_6":0,"SQ8_7":0,"SQ8_8":0,"SQ8_9":0,"SQ8_10":0,"SQ8_11":0,"SQ8_12":0,"SQ8_13":0,"SQ8_14":1,"SQ8_15":0,"SQ8_16":0},{"ID":"00001U09","NAME":"出口 慎太郎","PR":1,"PRBLOCK":61,"PARTY":2,"PIC":"P_20211017SNSO0019S","KANA":"でぐち しんたろう","AGE":39,"INCUMB":1,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":3,"Q6_1":2,"Q6_2":3,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":3,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":3,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":3,"Q6_17":1,"Q7_1":2,"Q7_2":2,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00001MHO","NAME":"大川 富洋","PR":1,"PRBLOCK":61,"PARTY":2,"PIC":"P_20211017SNSO0029S","KANA":"おおかわ とみひろ","AGE":39,"INCUMB":1,"RESULT":0,"Q2_1":4,"Q2_2":5,"Q2_3":2,"Q6_1":3,"Q6_2":5,"Q6_3":4,"Q6_4":1,"Q6_5":5,"Q6_6":4,"Q6_7":1,"Q6_8":1,"Q6_9":2,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":4,"Q6_15":1,"Q6_16":2,"Q6_17":2,"Q7_1":4,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":3,"Q7_6":3,"Q7_7":4,"Q8":2,"SQ8_1":0,"SQ8_2":0,"SQ8_3":1,"SQ8_4":1,"SQ8_5":1,"SQ8_6":0,"SQ8_7":1,"SQ8_8":0,"SQ8_9":1,"SQ8_10":0,"SQ8_11":1,"SQ8_12":0,"SQ8_13":0,"SQ8_14":0,"SQ8_15":1,"SQ8_16":0},{"ID":"00002LPK","NAME":"川西 義人","PR":1,"PRBLOCK":61,"PARTY":2,"PIC":"P_20211018SNSO0007S","KANA":"かわにし よしと","AGE":48,"INCUMB":1,"RESULT":0,"Q2_1":3,"Q2_2":2,"Q2_3":1,"Q6_1":1,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":3,"Q6_9":1,"Q6_10":1,"Q6_11":2,"Q6_12":3,"Q6_13":3,"Q6_14":3,"Q6_15":1,"Q6_16":1,"Q6_17":2,"Q7_1":3,"Q7_2":3,"Q7_3":4,"Q7_4":3,"Q7_5":2,"Q7_6":3,"Q7_7":3,"Q8":3,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00000476","NAME":"田村 貴昭","PR":1,"PRBLOCK":61,"PARTY":4,"PIC":"P_20210917SNSO0007S","KANA":"たむら たかあき","AGE":60,"INCUMB":3,"RESULT":0,"Q2_1":1,"Q2_2":2,"Q2_3":4,"Q6_1":5,"Q6_2":5,"Q6_3":5,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":1,"Q6_8":2,"Q6_9":1,"Q6_10":1,"Q6_11":1,"Q6_12":2,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":1,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":5,"Q7_4":1,"Q7_5":1,"Q7_6":3,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66},{"ID":"00002LNI","NAME":"前野 真実子","PR":1,"PRBLOCK":61,"PARTY":6,"PIC":"P_20211014SNSO0026S","KANA":"まえの まみこ","AGE":37,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66}];
var docid = '14ZZS0Us2tz8OIlOgBR0WsEg_p6IT7KMm4djZicS73tc'
var ss = SpreadsheetApp.openById(docid);
var sheet = ss.getSheets()[0];
var sheet2 = ss.getSheets()[1];
var sheet3 = ss.getSheets()[2];
/**
dat2: 小選挙区
{"ID":"00002KX3","NAME":"金城 徹","PREFEC":47,"DISTRICT":4,"PARTY":2,"PIC":"P_20210730SNSA0086S","KANA":"きんじょう とおる","AGE":68,"INCUMB":1,"RESULT":0,"PR":0,"Q2_1":2,"Q2_2":4,"Q2_3":1,"Q6_1":4,"Q6_2":5,"Q6_3":3,"Q6_4":1,"Q6_5":5,"Q6_6":5,"Q6_7":3,"Q6_8":2,"Q6_9":1,"Q6_10":2,"Q6_11":2,"Q6_12":3,"Q6_13":5,"Q6_14":5,"Q6_15":1,"Q6_16":2,"Q6_17":1,"Q7_1":5,"Q7_2":3,"Q7_3":4,"Q7_4":2,"Q7_5":2,"Q7_6":2,"Q7_7":3,"Q8":5,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66}
dat3: 比例
{"ID":"00002LNI","NAME":"前野 真実子","PR":1,"PRBLOCK":61,"PARTY":6,"PIC":"P_20211014SNSO0026S","KANA":"まえの まみこ","AGE":37,"INCUMB":1,"RESULT":0,"Q2_1":99,"Q2_2":99,"Q2_3":99,"Q6_1":99,"Q6_2":99,"Q6_3":99,"Q6_4":99,"Q6_5":99,"Q6_6":99,"Q6_7":99,"Q6_8":99,"Q6_9":99,"Q6_10":99,"Q6_11":99,"Q6_12":99,"Q6_13":99,"Q6_14":99,"Q6_15":99,"Q6_16":99,"Q6_17":99,"Q7_1":99,"Q7_2":99,"Q7_3":99,"Q7_4":99,"Q7_5":99,"Q7_6":99,"Q7_7":99,"Q8":99,"SQ8_1":66,"SQ8_2":66,"SQ8_3":66,"SQ8_4":66,"SQ8_5":66,"SQ8_6":66,"SQ8_7":66,"SQ8_8":66,"SQ8_9":66,"SQ8_10":66,"SQ8_11":66,"SQ8_12":66,"SQ8_13":66,"SQ8_14":66,"SQ8_15":66,"SQ8_16":66}
*/
// var source = 'dat1';
var source = 'dat1_party';
//var source = 'dat2';
//var source = 'dat2_1';
// var source = 'dat3';
if(source=='dat1'|source=='dat1_party'){var json=dat1}
if(source=='dat2'){var json = dat2}else if(source=='dat2_1'){var json = dat2_1}else if(source=='dat3'){var json = dat3};
if(source=='dat1'){
for (var i=0; i<json.Question.length; i++){
sheet2.appendRow([
json.Question[i].Q,
json.Question[i].VIEW,
json.Question[i].TYPE,
json.Question[i].GENRE,
json.Question[i].TITLE,
json.Question[i].HTML,
])
}
}
if(source=='dat1_party'){
for (var i=0; i<json.PartyData.length; i++){
sheet3.appendRow([
json.PartyData[i].name,
json.PartyData[i].class,
json.PartyData[i].longName,
json.PartyData[i].no,
])
}
}
if(source=='dat2'|source=='dat2_1'){
for (var i=0; i < json.length; i++){
sheet.appendRow([
"id_"+String(json[i].ID),
json[i].NAME,
json[i].KANA,
json[i].AGE,
json[i].PIC,
json[i].PARTY,
json[i].PREFEC,//dat2
json[i].DISTRICT,//dat2
'NA',//json[i].PRBLOCK,//dat3
json[i].Q2_1,
json[i].Q2_2,
json[i].Q2_3,
json[i].Q6_1,
json[i].Q6_2,
json[i].Q6_3,
json[i].Q6_4,
json[i].Q6_5,
json[i].Q6_6,
json[i].Q6_7,
json[i].Q6_8,
json[i].Q6_9,
json[i].Q6_10,
json[i].Q6_11,
json[i].Q6_12,
json[i].Q6_13,
json[i].Q6_14,
json[i].Q6_15,
json[i].Q6_16,
json[i].Q6_17,
json[i].Q7_1,
json[i].Q7_2,
json[i].Q7_3,
json[i].Q7_4,
json[i].Q7_5,
json[i].Q7_6,
json[i].Q7_7,
json[i].Q8,
json[i].SQ8_1,
json[i].SQ8_2,
json[i].SQ8_3,
json[i].SQ8_4,
json[i].SQ8_5,
json[i].SQ8_6,
json[i].SQ8_7,
json[i].SQ8_8,
json[i].SQ8_9,
json[i].SQ8_10,
json[i].SQ8_11,
json[i].SQ8_12,
json[i].SQ8_13,
json[i].SQ8_14,
json[i].SQ8_15,
json[i].SQ8_16
]);
};
}else if(source=='dat3'){
for (var i=0; i < json.length; i++){
sheet.appendRow([
"id_"+String(json[i].ID),
json[i].NAME,
json[i].KANA,
json[i].AGE,
json[i].PIC,
json[i].PARTY,
'NA',//json[i].PREFEC,//dat2
'NA',//json[i].DISTRICT,//dat2
json[i].PRBLOCK,//dat3
json[i].Q2_1,
json[i].Q2_2,
json[i].Q2_3,
json[i].Q6_1,
json[i].Q6_2,
json[i].Q6_3,
json[i].Q6_4,
json[i].Q6_5,
json[i].Q6_6,
json[i].Q6_7,
json[i].Q6_8,
json[i].Q6_9,
json[i].Q6_10,
json[i].Q6_11,
json[i].Q6_12,
json[i].Q6_13,
json[i].Q6_14,
json[i].Q6_15,
json[i].Q6_16,
json[i].Q6_17,
json[i].Q7_1,
json[i].Q7_2,
json[i].Q7_3,
json[i].Q7_4,
json[i].Q7_5,
json[i].Q7_6,
json[i].Q7_7,
json[i].Q8,
json[i].SQ8_1,
json[i].SQ8_2,
json[i].SQ8_3,
json[i].SQ8_4,
json[i].SQ8_5,
json[i].SQ8_6,
json[i].SQ8_7,
json[i].SQ8_8,
json[i].SQ8_9,
json[i].SQ8_10,
json[i].SQ8_11,
json[i].SQ8_12,
json[i].SQ8_13,
json[i].SQ8_14,
json[i].SQ8_15,
json[i].SQ8_16
]);
};
}
} | 3,263.723958 | 254,827 | 0.603707 |
b76327729e7570b32ee02920c8165dc4f9b08e18 | 1,283 | js | JavaScript | chrome-ext/js/app/services/generics/date-time.service.js | liorzoue/ext-jeedom | 588f5d0e28f1129d58a4f9c1c2e3e27f75665f0a | [
"MIT"
] | null | null | null | chrome-ext/js/app/services/generics/date-time.service.js | liorzoue/ext-jeedom | 588f5d0e28f1129d58a4f9c1c2e3e27f75665f0a | [
"MIT"
] | null | null | null | chrome-ext/js/app/services/generics/date-time.service.js | liorzoue/ext-jeedom | 588f5d0e28f1129d58a4f9c1c2e3e27f75665f0a | [
"MIT"
] | null | null | null | JeedomApp.factory('myDateTime', [ function(){
this.heures = 0;
this.minutes = 0;
var dateToString = function () {
return (this.heures<10?'0':'')+this.heures+'h'+(this.minutes<10?'0':'')+this.minutes;
};
var stringToDate = function (h) {
if(h) {
this.heures = parseInt(h.split('h')[0], 10);
this.minutes = parseInt(h.split('h')[1], 10);
} else {
this.heures = (new Date()).getHours();
this.minutes = (new Date()).getMinutes();
}
return dateToString();
};
var addMinutes = function (t) {
this.minutes += t;
if (this.minutes > 59) {
this.minutes -= 60;
addHeures(1);
}
return dateToString();
};
var addHeures = function (t) {
this.heures += t;
if (this.heures >= 24) { this.heures -= 24; }
return dateToString();
}
var dateDiff = function (timeDebut, timeFin) {
stringToDate(timeDebut);
var h1 = this.heures;
var m1 = this.minutes;
stringToDate(timeFin);
var h2 = this.heures;
var m2 = this.minutes;
var diff = -(m1-60*(h2-h1))+m2;
if (diff < 0) diff = 0;
return diff + 'm';
};
return {
addMinutesToDate: function(time, min) {
stringToDate(time);
addMinutes(min);
return dateToString();
},
dateDiff: function (timeDebut, timeFin) {
return dateDiff(timeDebut, timeFin);
}
};
}]); | 20.365079 | 87 | 0.610288 |
b763df72ffe308c2e75ff57d58dd76e5785bddea | 1,289 | js | JavaScript | TrayNotifier/installers/windows/createWindowsInstallerStage.js | UMPH-Devs/Dashboard | 5f9ff1a4f7abf94bc4b41b5d9561d16f7383ac79 | [
"MIT"
] | null | null | null | TrayNotifier/installers/windows/createWindowsInstallerStage.js | UMPH-Devs/Dashboard | 5f9ff1a4f7abf94bc4b41b5d9561d16f7383ac79 | [
"MIT"
] | null | null | null | TrayNotifier/installers/windows/createWindowsInstallerStage.js | UMPH-Devs/Dashboard | 5f9ff1a4f7abf94bc4b41b5d9561d16f7383ac79 | [
"MIT"
] | null | null | null | const createWindowsInstaller = require('electron-winstaller').createWindowsInstaller
const path = require('path')
const url = require('url')
getInstallerConfig().then(createWindowsInstaller).catch(error => {
console.error(error.message || error)
process.exit(1)
})
function getInstallerConfig () {
console.log('creating windows installer')
const rootPath = path.join('./')
console.log('rootPath: ' + rootPath)
const outPath = path.join(rootPath, 'release-builds', 'stage')
console.log('outPath: ' + outPath)
var iconPath = path.join(rootPath, 'images', 'green_icon.ico')
console.log('iconPath: ' + iconPath)
// console.log(__dirname + "/../" + iconPath);
const iconUrl = url.format({
pathname: path.join('file:///', __dirname, '/../../', iconPath)
})
console.log('iconUrl: ' + iconUrl)
return Promise.resolve({
appDirectory: path.join(outPath, '/Dashboard Notifier-win32-ia32/'),
authors: 'Lee Jones',
noMsi: true,
outputDirectory: path.join(outPath, 'windows-installer-stage'),
title: 'Dashboard Notifier STG',
name: 'umphdashboardtraynotifierstg',
exe: 'Dashboard Notifier STG.exe',
setupExe: 'Dashboard Notifier Installer.exe',
setupIcon: iconPath,
iconUrl: iconUrl
})
}
| 34.837838 | 85 | 0.670287 |
b76507bd47973478c3ee7017a1e673c41e420f7f | 60 | js | JavaScript | test/index.js | njam3/bigwheel | 3260f7bc91d35ca9846ce646ded657276a851147 | [
"MIT"
] | null | null | null | test/index.js | njam3/bigwheel | 3260f7bc91d35ca9846ce646ded657276a851147 | [
"MIT"
] | null | null | null | test/index.js | njam3/bigwheel | 3260f7bc91d35ca9846ce646ded657276a851147 | [
"MIT"
] | null | null | null | var framework = require( './framework' );
framework.init(); | 20 | 41 | 0.683333 |
b76544166ebef33ae2863794c6c1fa1fb58b1793 | 1,873 | js | JavaScript | src/components/form-controls/components/text-input.js | prashanthr/swan-react | 9e64d95c8e4ff5dc67948377abf65c59a0c38bfa | [
"MIT"
] | null | null | null | src/components/form-controls/components/text-input.js | prashanthr/swan-react | 9e64d95c8e4ff5dc67948377abf65c59a0c38bfa | [
"MIT"
] | 2 | 2020-10-16T12:49:51.000Z | 2021-01-28T19:23:35.000Z | src/components/form-controls/components/text-input.js | prashanthr/swan-react | 9e64d95c8e4ff5dc67948377abf65c59a0c38bfa | [
"MIT"
] | null | null | null | import React from 'react'
import PropTypes from 'prop-types'
import Form from './form'
const TextInput = ({
id,
name,
elRef,
formRef,
formId,
formName,
formClassName,
onFormChange,
onFormSubmit,
className,
defaultValue,
value,
placeholder,
onChange,
onBlur,
onKeyUp,
onKeyDown,
elementOnly,
autoFocus
}) => {
const inputEl = (
<input
ref={elRef}
className={className}
type='text'
placeholder={placeholder}
id={id}
name={name}
defaultValue={defaultValue}
value={value}
onBlur={onBlur}
onChange={onChange}
onKeyUp={onKeyUp}
onKeyDown={onKeyDown}
autoFocus={autoFocus}
/>
)
return !elementOnly
? <Form elRef={formRef} id={formId} name={formName} className={formClassName} onChange={onFormChange} onSubmit={onFormSubmit}>
{inputEl}
</Form>
: inputEl
}
TextInput.defaultProps = {
className: '',
placeholder: '',
elementOnly: false,
onBlur: () => {},
onChange: () => {},
onKeyUp: () => {},
onKeyDown: () => {}
}
TextInput.propTypes = {
id: PropTypes.string,
name: PropTypes.string,
elRef: PropTypes.oneOfType([
PropTypes.func,
PropTypes.shape({ current: PropTypes.instanceOf(Element) })
]),
formRef: PropTypes.oneOfType([
PropTypes.func,
PropTypes.shape({ current: PropTypes.instanceOf(Element) })
]),
formId: PropTypes.string,
formName: PropTypes.string,
formClassName: PropTypes.string,
className: PropTypes.string,
placeholder: PropTypes.string,
value: PropTypes.string,
defaultValue: PropTypes.string,
elementOnly: PropTypes.bool,
autoFocus: PropTypes.bool,
onBlur: PropTypes.func,
onChange: PropTypes.func,
onKeyUp: PropTypes.func,
onKeyDown: PropTypes.func,
onFormSubmit: PropTypes.func,
onFormChange: PropTypes.func
}
export default TextInput
| 20.811111 | 130 | 0.664175 |
b765601da73f4c9c7ccdb33beabdbaf5cb45da55 | 1,633 | js | JavaScript | crates/swc/tests/tsc-references/scopeResolutionIdentifiers_es5.1.normal.js | mengxy/swc | bcc3ae86ae0732979f9fbfef370ae729ba9af080 | [
"Apache-2.0"
] | 1 | 2021-11-26T15:13:42.000Z | 2021-11-26T15:13:42.000Z | crates/swc/tests/tsc-references/scopeResolutionIdentifiers_es5.1.normal.js | Austaras/swc | 4a4e72f424efe11cc2e2edc1a4f305799f26f7b8 | [
"Apache-2.0"
] | 1 | 2021-12-11T06:34:27.000Z | 2021-12-11T06:34:27.000Z | crates/swc/tests/tsc-references/scopeResolutionIdentifiers_es5.1.normal.js | Austaras/swc | 4a4e72f424efe11cc2e2edc1a4f305799f26f7b8 | [
"Apache-2.0"
] | 1 | 2022-01-27T02:43:48.000Z | 2022-01-27T02:43:48.000Z | function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for(var i = 0; i < props.length; i++){
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
// EveryType used in a nested scope of a different EveryType with the same name, type of the identifier is the one defined in the inner scope
var s;
var M1;
(function(M11) {
var s1;
var n = s1;
var n;
M11.s = s1;
})(M1 || (M1 = {}));
var M2;
(function(M2) {
var s2;
var n = s2;
var n;
})(M2 || (M2 = {}));
function fn() {
var s3;
var n = s3;
var n;
}
var C = /*#__PURE__*/ function() {
"use strict";
function C() {
_classCallCheck(this, C);
this.n = this.s;
}
_createClass(C, [
{
key: "x",
value: function x() {
var p = this.n;
var p;
}
}
]);
return C;
}();
var M3;
(function(M3) {
var s4;
var M4;
(function(M4) {
var n = s4;
var n;
})(M4 || (M4 = {}));
})(M3 || (M3 = {}));
| 24.742424 | 141 | 0.564605 |