mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
Load survey responses from sftp folder
This commit is contained in:
parent
6f986ff8a1
commit
380048f5cd
34 changed files with 128 additions and 146158 deletions
|
|
@ -3,7 +3,8 @@
|
|||
class AcademicYear < ActiveRecord::Base
|
||||
def self.find_by_date(date)
|
||||
year = parse_year_range(date:)
|
||||
AcademicYear.find_by_range("#{year.start}-#{year.end.to_s[2, 3]}")
|
||||
range = "#{year.start}-#{year.end.to_s[2, 3]}"
|
||||
academic_years[range]
|
||||
end
|
||||
|
||||
def formatted_range
|
||||
|
|
@ -11,6 +12,8 @@ class AcademicYear < ActiveRecord::Base
|
|||
"#{years.first} – 20#{years.second}"
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def self.parse_year_range(date:)
|
||||
year = date.year
|
||||
if date.month > 6
|
||||
|
|
@ -19,6 +22,13 @@ class AcademicYear < ActiveRecord::Base
|
|||
AcademicYearRange.new(year - 1, year)
|
||||
end
|
||||
end
|
||||
|
||||
def self.academic_years
|
||||
@@academic_years ||= AcademicYear.all.map { |academic_year| [academic_year.range, academic_year] }.to_h
|
||||
end
|
||||
|
||||
private_class_method :academic_years
|
||||
private_class_method :parse_year_range
|
||||
end
|
||||
|
||||
AcademicYearRange = Struct.new(:start, :end)
|
||||
|
|
|
|||
28
app/services/sftp/directory.rb
Normal file
28
app/services/sftp/directory.rb
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
require 'net/sftp'
|
||||
require 'uri'
|
||||
require 'csv'
|
||||
|
||||
module Sftp
|
||||
class Directory
|
||||
def self.open(path: '/data/survey_responses/', &block)
|
||||
sftptogo_url = ENV['SFTPTOGO_URL']
|
||||
puts sftptogo_url
|
||||
uri = URI.parse(sftptogo_url)
|
||||
Net::SFTP.start(uri.host, uri.user, password: uri.password) do |sftp|
|
||||
sftp.dir.foreach(path) do |entry|
|
||||
filename = entry.name
|
||||
puts filename
|
||||
|
||||
sftp.file.open(filepath(path:, filename:), 'r', &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def self.filepath(path:, filename:)
|
||||
path += '/' unless path.end_with?('/')
|
||||
"#{path}#{filename}"
|
||||
end
|
||||
|
||||
private_class_method :filepath
|
||||
end
|
||||
end
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
require 'net/sftp'
|
||||
require 'uri'
|
||||
require 'csv'
|
||||
|
||||
module Sftp
|
||||
class Downloader
|
||||
def initialize
|
||||
sftptogo_url = ENV['SFTPTOGO_URL']
|
||||
uri = URI.parse(sftptogo_url)
|
||||
Net::SFTP.start(uri.host, uri.user, password: uri.password) do |sftp|
|
||||
# download a file or directory from the remote host
|
||||
# open and read from a pseudo-IO for a remote file
|
||||
# sftp.file.open('/mciea/data/canary.csv', 'r') do |f|
|
||||
# CSV.parse(f.read) do |row|
|
||||
# puts row
|
||||
# end
|
||||
# end
|
||||
|
||||
# list the entries in a directory
|
||||
sftp.dir.foreach('/mciea/data/') do |entry|
|
||||
puts entry.longname
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
33
app/services/sftp/race_loader.rb
Normal file
33
app/services/sftp/race_loader.rb
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
require 'net/sftp'
|
||||
require 'uri'
|
||||
require 'csv'
|
||||
|
||||
module Sftp
|
||||
class RaceLoader
|
||||
def self.load_data(path: '/data/survey_responses/')
|
||||
SurveyItemResponse.update_all(student_id: nil)
|
||||
StudentRace.delete_all
|
||||
Student.delete_all
|
||||
|
||||
sftptogo_url = ENV['SFTPTOGO_URL']
|
||||
uri = URI.parse(sftptogo_url)
|
||||
Net::SFTP.start(uri.host, uri.user, password: uri.password) do |sftp|
|
||||
sftp.dir.foreach(path) do |entry|
|
||||
filename = entry.name
|
||||
puts filename
|
||||
|
||||
sftp.file.open(filepath(path:, filename:), 'r') do |f|
|
||||
StudentLoader.from_file(file: f, rules: [Rule::SkipNonLowellSchools])
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def self.filepath(path:, filename:)
|
||||
path += '/' unless path.end_with?('/')
|
||||
"#{path}#{filename}"
|
||||
end
|
||||
|
||||
private_class_method :filepath
|
||||
end
|
||||
end
|
||||
|
|
@ -19,6 +19,25 @@ class StudentLoader
|
|||
end
|
||||
end
|
||||
|
||||
def self.from_file(file:, rules: [])
|
||||
headers = file.gets
|
||||
|
||||
survey_item_responses = []
|
||||
until file.eof?
|
||||
line = file.gets
|
||||
next unless line.present?
|
||||
|
||||
CSV.parse(line, headers:).map do |row|
|
||||
next if rules.any? do |rule|
|
||||
rule.new(row: SurveyItemValues.new(row:, headers:, genders: nil, survey_items: nil)).skip_row?
|
||||
end
|
||||
|
||||
process_row(row:)
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
def self.process_row(row:)
|
||||
races = process_races(codes: race_codes(row:))
|
||||
response_id = row['ResponseId'] || row['Responseid'] || row['ResponseID'] ||
|
||||
|
|
|
|||
|
|
@ -53,7 +53,11 @@ class SurveyItemValues
|
|||
end
|
||||
|
||||
def school
|
||||
@school ||= School.includes(:district).find_by_dese_id(dese_id)
|
||||
@school ||= schools[dese_id]
|
||||
end
|
||||
|
||||
def schools
|
||||
@@schools ||= School.all.map { |school| [school.dese_id, school] }.to_h
|
||||
end
|
||||
|
||||
def grade
|
||||
|
|
|
|||
|
|
@ -20,6 +20,25 @@ class SurveyResponsesDataLoader
|
|||
end
|
||||
end
|
||||
|
||||
def self.from_file(file:, rules: [])
|
||||
headers = file.gets
|
||||
genders_hash = genders
|
||||
all_survey_items = survey_items(headers:)
|
||||
|
||||
survey_item_responses = []
|
||||
until file.eof?
|
||||
line = file.gets
|
||||
next unless line.present?
|
||||
|
||||
CSV.parse(line, headers:).map do |row|
|
||||
survey_item_responses << process_row(row: SurveyItemValues.new(row:, headers:, genders: genders_hash, survey_items: all_survey_items),
|
||||
rules:)
|
||||
end
|
||||
|
||||
end
|
||||
SurveyItemResponse.import survey_item_responses.compact.flatten, batch_size: 1000
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def self.process_row(row:, rules:)
|
||||
|
|
|
|||
|
|
@ -1,30 +0,0 @@
|
|||
StartDate,EndDate,Status,IPAddress,Progress,Duration (in seconds),Finished,RecordedDate,ResponseId,RecipientLastName,RecipientFirstName,RecipientEmail,ExternalReference,LocationLatitude,LocationLongitude,DistributionChannel,UserLanguage,Please select your school in Boston.,DESE ID,Please select your school in Attleboro.,Please select your school in Lowell.,Please select your school in Revere.,Please select your school in Somerville.,Please select your school in Winchester.,Please select your district.,t-prep-q1,t-prep-q2,t-prep-q3,t-pcom-q1,t-pcom-q2,t-pcom-q3,t-pcom-q4,t-pcom-q5,t-qupd-q3,t-qupd-q2,t-qupd-q1,t-qupd-q4,t-coll-q1,t-coll-q2,t-coll-q3,t-prtr-q1,t-prtr-q2,t-prtr-q3,t-inle-q1,t-inle-q2,t-inle-q3,t-pvic-q1,t-pvic-q2,t-pvic-q3,t-psup-q1,t-psup-q2,t-psup-q3,t-psup-q4,t-reso-q1,t-reso-q2,t-reso-q3,t-reso-q4,t-reso-q5,t-sust-q1,t-sust-q2,t-sust-q3,t-sust-q4,t-curv-q1,t-curv-q2,t-curv-q3,t-curv-q4,t-cure-q1,t-cure-q2,t-cure-q3,t-cure-q4,t-peng-q1,t-peng-q2,t-peng-q3,t-peng-q4,t-ceng-q1,t-ceng-q2,t-ceng-q3,t-ceng-q4,t-sach-q1,t-sach-q2,t-sach-q3,t-psol-q1,t-psol-q2,t-psol-q3,t-expa-q2,t-expa-q3,t-phya-q2,t-phya-q3,Q82,Q83,Q81,Q83_1,Q84_1,Q85
|
||||
4/24/17 9:24,4/24/17 9:38,IP Address,216.163.221.103,100,888,TRUE,2017-04-24T9:38:50,R_3RyeuHvp4M2BEBo,,,029948@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,5,4,4,5,4,1,1,,,,5,,5,5,5,5,5,4,5,4,3,4,4,4,3,3,,,,5,3,3,,,,3,3,3,3,4,4,4,4,2,3,,1,4,,4,3,4,1,1,,,,1,1,2,1,3,4,,3,3,I am a resource room teacher. These questions were difficult to answer. I see students for 45 minute periods. This survey is suited for a full time classroom teacher.
|
||||
4/13/17 14:26,4/13/17 14:47,IP Address,216.163.221.103,100,1265,TRUE,2017-04-13T14:47:42,R_1EhsiTfbHsOkWZU,,,038475@boston.k12.ma.us,,42.34240723,-71.08779907,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,4,5,5,4,5,4,5,4,5,5,5,5,3,4,3,5,5,5,2,2,4,3,3,4,3,4,4,5,4,4,5,4,4,5,5,3,4,3,5,5,5,5,4,3,3,5,5,4,4,5,4,4,5,5,5,5,2,2,1,1,4,4,,7,7,
|
||||
4/24/17 14:03,4/24/17 14:24,IP Address,216.163.221.103,100,1254,TRUE,2017-04-24T14:24:51,R_3Ebv6RgNKghyng3,,,047180@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,5,5,5,4,2,4,4,5,4,4,4,4,4,4,3,3,4,3,3,2,3,3,4,3,3,3,3,2,5,,4,2,3,3,4,4,3,4,5,4,5,4,3,2,2,1,5,4,5,4,4,2,2,3,2,2,1,1,3,3,3,4,,5,3,
|
||||
5/9/17 17:02,5/10/17 15:09,IP Address,216.163.221.103,100,79616,TRUE,2017-05-10T15:9:20,R_udE8Pic2gigiV0Z,,,048370@boston.k12.ma.us,,42.30589294,-71.08589935,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,3,3,5,3,2,4,4,4,5,4,2,4,5,5,5,4,4,5,,3,2,3,2,3,2,5,4,3,2,3,4,1,3,3,4,3,2,3,4,1,4,4,2,1,1,1,3,3,1,2,4,,1,3,4,3,1,2,1,2,4,3,,7,3,
|
||||
5/15/17 14:17,5/15/17 14:23,IP Address,216.163.221.103,100,413,TRUE,2017-05-15T14:23:55,R_w0irQu9NONrLTqh,,,076869@boston.k12.ma.us,,42.34509277,-71.09929657,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,4,4,5,4,4,4,5,4,5,4,4,5,4,4,4,3,4,3,3,3,3,3,3,3,3,4,5,4,4,4,3,3,3,3,4,4,4,4,4,4,5,5,3,3,3,3,5,5,3,5,4,2,3,3,3,3,1,2,3,3,4,3,,9,7,
|
||||
4/13/17 15:05,4/13/17 15:11,IP Address,216.163.221.103,26,376,FALSE,2017-04-20T15:11:22,R_Xk2aEiNVNqu3GyB,,,082792@boston.k12.ma.us,,,,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,,,,2,2,2,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1,2,1,,,,,3,2,1,,,,1,1,,,,,,,,
|
||||
4/25/17 10:14,4/25/17 10:26,IP Address,216.163.221.103,100,721,TRUE,2017-04-25T10:26:17,R_rokma5eFDg45hUB,,,087799@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,4,4,2,4,2,2,2,2,2,2,4,3,1,1,1,1,1,1,1,3,3,3,3,3,3,3,1,2,2,3,1,4,1,3,3,2,2,2,2,2,3,2,3,2,1,1,1,3,2,2,2,3,1,1,2,3,2,3,2,4,4,3,2,,7,6,
|
||||
4/25/17 19:05,4/27/17 11:58,IP Address,216.163.221.103,100,147148,TRUE,2017-04-27T11:58:19,R_1EciRzBtRkVXs5c,,,097128@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,3,2,5,,1,3,2,1,2,2,2,2,1,1,1,1,1,1,5,5,1,3,3,2,1,1,2,1,5,4,1,5,2,1,4,4,3,4,4,4,5,4,2,1,1,1,3,2,1,1,,,1,3,3,4,1,3,3,3,3,1,,7,7,
|
||||
4/23/17 15:43,4/23/17 15:52,IP Address,71.235.181.94,100,576,TRUE,2017-04-23T15:52:56,R_OwyUJAfbiwDgMHT,,,097146@boston.k12.ma.us,,42.165802,-70.95059967,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,4,4,4,4,4,2,4,4,4,4,4,3,4,4,4,4,4,4,4,3,3,3,3,3,3,3,2,1,1,3,3,3,3,2,2,3,2,3,2,3,4,4,4,3,1,1,1,3,3,2,3,4,3,2,3,4,3,2,2,3,3,3,3,,8,6,
|
||||
4/27/17 11:17,4/27/17 11:46,IP Address,216.163.221.103,100,1736,TRUE,2017-04-27T11:46:28,R_1mOctlIIRx3ex38,,,097574@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,2,2,5,1,4,1,1,1,1,5,5,5,1,1,1,1,1,1,5,5,1,1,1,1,1,1,3,1,3,1,1,4,1,1,1,1,1,1,5,5,5,5,2,1,1,1,4,2,2,2,5,1,1,1,1,1,2,2,2,2,3,1,"This has been an extremely difficult school year. I do not feel comfortable approaching or supported by my principal. His interactions with students are unproductive, intimidating and aggressive. He does not respect students with special needs and treats them very aggressively. ",6,,
|
||||
4/24/17 13:59,4/24/17 14:26,IP Address,216.163.221.103,100,1643,TRUE,2017-04-24T14:26:42,R_2TtIspvckP9ugYT,,,098328@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,4,4,4,3,1,2,2,2,2,5,5,5,3,3,3,4,3,2,3,3,3,3,3,4,3,1,2,1,3,3,3,2,2,3,4,3,3,3,5,4,4,5,2,1,2,1,4,2,2,2,3,2,2,1,2,3,1,1,3,3,4,3,"There were no questions about evaluations, evaluators, or the evaluation process. ",3,3,This survey did not seem as thorough as previous teacher climate surveys. The layout of these questions was weird as well. It wasn't easy to read/follow
|
||||
4/26/17 8:46,4/26/17 17:12,IP Address,216.163.221.103,100,30372,TRUE,2017-04-26T17:12:59,R_242z09eGKy0r2nZ,,,099629@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,3,4,3,4,4,3,1,1,2,2,2,2,4,2,3,3,4,3,3,3,2,4,4,2,2,2,2,2,2,3,3,3,2,2,2,3,2,3,4,3,4,3,3,3,5,2,1,2,2,2,2,2,2,3,2,3,3,2,3,1,1,3,3,4,4,,8,8,
|
||||
4/18/17 17:41,4/18/17 18:00,IP Address,24.60.194.140,100,1113,TRUE,2017-04-18T18:0:27,R_2En8KnxbSd6HlvO,,,101427@boston.k12.ma.us,,42.23890686,-71.08100128,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,4,2,3,4,4,1,5,4,4,2,4,3,4,4,4,4,4,4,4,4,3,2,2,4,2,2,2,2,2,3,3,4,4,3,3,4,4,4,4,5,5,4,5,3,1,2,2,5,4,3,5,4,4,4,3,2,2,4,4,2,2,3,3,,5,4,
|
||||
4/24/17 18:49,4/24/17 18:56,IP Address,173.170.183.95,100,458,TRUE,2017-04-24T18:56:53,R_4V3ywfule3hVVPH,,,110590@boston.k12.ma.us,,28.19110107,-81.60679626,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,5,5,5,5,4,5,4,3,3,1,5,5,5,2,1,3,4,5,3,3,3,4,3,3,3,3,1,3,3,3,3,2,2,3,3,5,2,3,2,5,5,5,5,2,2,2,3,4,4,4,4,5,3,2,5,5,5,3,4,3,3,3,3,,9,4,
|
||||
4/24/17 21:23,4/24/17 21:32,IP Address,209.6.178.52,100,546,TRUE,2017-04-24T21:32:16,R_23azRdZzVHP73qI,,,114636@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,5,4,5,5,5,4,2,5,5,4,5,4,3,4,4,4,5,4,4,4,4,4,3,3,3,3,3,3,2,2,4,3,4,1,3,3,4,5,3,4,4,4,4,5,2,1,2,1,4,3,1,3,4,2,2,3,3,4,2,3,3,3,3,3,,7,7,
|
||||
4/13/17 16:08,4/13/17 17:32,IP Address,73.234.82.28,100,4999,TRUE,2017-04-13T17:32:7,R_27x7KLciQ1qf5EE,,,125107@boston.k12.ma.us,,42.24290466,-71.00980377,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,5,4,,4,3,3,2,3,3,3,3,,,,5,4,4,,,,,2,3,3,3,3,3,3,2,3,3,3,3,2,3,3,,4,3,4,3,3,4,4,,,3,,4,4,,4,3,2,2,,,,1,2,2,2,3,3,The teachers at my school are especially hard-working and dedicated to meeting students' academic and social-emotional needs.,7,5,
|
||||
5/15/17 11:11,5/15/17 11:28,IP Address,216.163.221.103,100,1017,TRUE,2017-05-15T11:28:47,R_1fg7vGl3OabtKwO,,,125135@boston.k12.ma.us,,42.34509277,-71.09929657,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,4,4,4,2,4,1,1,1,4,3,2,4,1,4,1,1,2,3,3,1,2,3,1,2,2,2,2,2,2,3,3,2,4,3,4,3,4,4,4,5,3,4,4,3,3,1,1,2,4,3,3,3,5,4,4,3,4,4,1,1,3,4,3,4,,7,7,
|
||||
4/26/17 18:37,4/26/17 18:50,IP Address,74.104.124.200,100,781,TRUE,2017-04-26T18:50:33,R_2a8jICnxExSI2JX,,,129944@boston.k12.ma.us,,42.16960144,-71.06060028,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,3,2,2,4,4,1,1,2,2,3,4,1,1,2,1,3,2,2,2,3,2,2,3,3,2,2,2,1,1,4,2,2,1,4,1,3,4,4,3,4,4,4,4,2,1,2,2,2,2,2,2,4,3,3,3,4,3,3,4,4,4,3,3,,6,5,
|
||||
5/15/17 9:16,5/15/17 9:27,IP Address,216.163.221.103,100,659,TRUE,2017-05-15T9:27:50,R_Xht4BoZHlVhKrvz,,,130042@boston.k12.ma.us,,42.34509277,-71.09929657,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,4,3,2,2,2,1,1,3,4,3,2,2,2,1,1,1,1,1,2,2,4,4,2,2,2,2,2,1,2,2,3,2,2,2,3,1,2,2,1,2,3,4,4,5,3,2,2,1,2,1,1,1,2,1,1,2,2,2,1,1,3,3,3,2,Our climate was significantly better under our last principal and has declined since the change in leadership of this school. ,9,5,
|
||||
4/24/17 15:09,4/24/17 15:33,IP Address,216.163.221.103,100,1436,TRUE,2017-04-24T15:33:17,R_ZgaZiFIjC0fgNBD,,,130696@boston.k12.ma.us,,42.2532959,-71.12930298,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,5,4,5,5,4,1,2,2,3,2,5,5,5,4,4,3,4,4,2,3,3,2,3,3,3,2,3,3,2,4,2,2,2,2,2,5,4,4,3,4,5,4,5,2,1,2,1,3,3,2,3,2,2,2,2,2,2,1,1,3,3,3,3,,7,5,
|
||||
4/25/17 19:29,4/25/17 21:02,IP Address,73.119.62.167,100,5587,TRUE,2017-04-25T21:2:30,R_1OPSpvfIlvM9mvr,,,131794@boston.k12.ma.us,,42.2848053,-71.07409668,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,4,4,2,4,1,1,3,3,2,1,3,3,2,1,5,3,2,1,1,5,5,1,2,2,3,2,2,1,1,3,2,1,1,1,1,5,2,3,1,5,5,4,5,5,1,2,1,,,,3,2,4,1,3,3,5,1,1,2,3,3,1,,,,
|
||||
5/15/17 9:54,5/15/17 10:05,IP Address,216.163.221.103,100,630,TRUE,2017-05-15T10:5:17,R_0PLekNasKQUdGPT,,,136696@boston.k12.ma.us,,42.34509277,-71.09929657,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,4,3,4,2,4,2,4,1,1,1,1,4,3,2,2,2,4,4,4,2,3,3,2,2,3,3,2,3,3,2,3,3,2,3,3,4,3,4,3,3,2,2,2,2,3,2,2,2,5,4,4,3,3,2,2,3,3,3,3,3,3,,3,3,My school is closing this year.,5,5,Please provide a section for N/A. Not all teachers are homeroom teachers who see the same set of students all day.
|
||||
5/15/17 10:20,5/15/17 10:35,IP Address,73.47.186.250,100,908,TRUE,2017-05-15T10:35:58,R_re8t2eMlFZ2Hm8x,,,139304@boston.k12.ma.us,,42.28300476,-71.12090302,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,4,4,4,3,4,3,1,3,2,3,3,3,2,3,2,3,3,3,2,2,3,3,3,4,4,4,3,2,2,2,3,2,3,1,2,3,4,3,4,4,4,4,4,4,2,2,1,1,3,3,2,3,5,4,4,4,4,4,2,3,2,3,4,2,,6,4,
|
||||
5/11/17 9:45,5/11/17 9:56,IP Address,216.163.221.103,100,610,TRUE,2017-05-11T9:56:1,R_2YbODih4Ymqtahq,,,143213@boston.k12.ma.us,,42.30589294,-71.08589935,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,3,2,,3,2,3,1,3,2,2,3,,3,1,1,1,2,2,2,3,,,4,3,3,2,3,3,2,3,3,4,2,3,,2,,,4,4,4,3,4,2,,,,4,4,,,3,3,3,3,3,3,2,2,,,3,3,,7,6,
|
||||
5/3/17 17:00,5/3/17 17:19,IP Address,107.77.225.113,100,1137,TRUE,2017-05-03T17:19:21,R_uxCtStfBaADP4Rj,,,143563@boston.k12.ma.us,,40.76109314,-73.93190002,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,3,3,2,2,2,2,1,2,2,1,2,2,3,3,1,2,2,1,2,3,4,3,2,3,3,3,2,2,2,2,2,2,4,3,4,4,3,3,2,2,3,3,4,4,3,2,1,1,3,2,2,3,2,2,2,4,4,4,1,2,2,3,3,3,,8,8,
|
||||
5/9/17 17:31,5/9/17 17:40,IP Address,209.6.251.30,100,549,TRUE,2017-05-09T17:40:18,R_2eX9GLGyXFtFosV,,,143756@boston.k12.ma.us,,42.27929688,-71.16570282,email,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,4,2,2,4,2,1,2,3,3,3,4,5,3,1,1,2,1,1,1,3,3,2,2,4,2,2,2,1,1,2,3,2,2,2,2,4,3,3,3,5,4,4,5,3,3,2,2,3,2,3,2,5,3,3,4,4,3,3,4,4,5,3,2,,6,5,
|
||||
4/24/17 15:04,4/24/17 15:11,IP Address,216.163.221.103,93,448,FALSE,2017-05-01T15:11:39,R_2TLeBf5gu9clpGm,,,,,,,anonymous,EN,Mattahunt Elementary,00350226,,,,,,Boston,4,4,4,2,2,5,1,1,1,1,1,1,3,3,2,2,2,1,1,2,2,4,4,2,2,2,2,2,1,1,1,3,1,1,1,3,1,2,3,1,2,4,4,4,4,2,1,1,1,2,3,1,3,2,1,1,1,2,2,2,2,3,4,4,2,,,,
|
||||
5/10/17 9:50,5/10/17 9:58,IP Address,216.163.221.103,100,502,TRUE,2017-05-10T9:58:29,R_3gNnHuqwEJDm04e,,,,,42.30589294,-71.08589935,anonymous,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,4,4,4,5,5,4,1,2,2,2,2,4,4,4,2,2,2,3,3,2,4,3,2,3,3,3,2,2,3,2,3,2,3,2,2,2,5,4,3,4,4,4,4,4,2,1,2,1,3,3,3,4,3,2,2,3,3,4,1,1,3,3,4,3,,7,7,
|
||||
5/9/17 10:42,5/9/17 11:22,IP Address,216.163.221.103,100,2413,TRUE,2017-05-09T11:22:35,R_063264dFSkiTIYN,,,,,42.30589294,-71.08589935,anonymous,EN,Mattahunt Elementary,00350226,,,,,,Boston,5,5,5,4,5,2,5,1,3,4,5,2,4,1,5,3,5,4,4,4,3,4,5,1,3,4,1,1,1,4,1,4,3,4,1,4,5,4,4,3,4,1,3,4,4,2,1,4,2,4,4,5,4,2,3,1,3,2,5,1,1,3,4,3,4,"As a turnaround school, I feel that the school did not get all of the support that it needed in terms of supplies and support for students with social and emotional difficulties. Teachers were asked to work under extremely difficult circumstances and so moral was lower than in other years.",9,,"The survey does not ask about district support for a school. District personnel came out in September, but there should have been a better attempt to help us secure jobs. Instead, we were left to struggle interviewing during school hours so that students had to miss instructional time."
|
||||
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,79 +0,0 @@
|
|||
Start Date,End Date,Response Type,IP Address,Progress,Duration (in seconds),Finished,Recorded Date,Response ID,Recipient Last Name,Recipient First Name,Recipient Email,External Data Reference,Location Latitude,Location Longitude,Distribution Channel,User Language,What district is your school in?,Please select your school in Attleboro.,DESE ID,Please select your school in Boston.,Please select your school in Lowell.,Please select your school in Milford.,Please select your school in Revere.,Please select your school in Somerville.,Please select your school in Winchester.,What is your student ID number?,What grade are you in?,s-emsa-q1,s-emsa-q2,s-emsa-q3,s-tint-q1,s-tint-q2,s-tint-q3,s-tint-q4,s-tint-q5,s-acpr-q1,s-acpr-q2,s-acpr-q3,s-acpr-q4,s-cure-q1,s-cure-q2,s-cure-q3,s-cure-q4,s-sten-q1,s-sten-q2,s-sten-q3,s-sper-q1,s-sper-q2,s-sper-q3,s-sper-q4,s-civp-q1,s-civp-q2,s-civp-q3,s-civp-q4,s-grmi-q1,s-grmi-q2,s-grmi-q3,s-grmi-q4,s-appa-q1,s-appa-q2,s-appa-q3,s-peff-q1,s-peff-q2,s-peff-q3,s-peff-q4,s-peff-q5,s-peff-q6,s-sbel-q1,s-sbel-q2,s-sbel-q3,s-sbel-q4,s-sbel-q5,s-phys-q1,s-phys-q2,s-phys-q3,s-phys-q4,s-vale-q1,s-vale-q2,s-vale-q3,s-vale-q4,s-acst-q1,s-acst-q2,s-acst-q3,s-sust-q1,s-sust-q2,s-grit-q1,s-grit-q2,s-grit-q3,s-grit-q4,s-expa-q1,s-poaf-q1,s-poaf-q2,s-poaf-q3,s-poaf-q4,s-tint-q1,s-tint-q2,s-tint-q3,s-tint-q4,s-tint-q5,s-acpr-q1,s-acpr-q2,s-acpr-q3,s-acpr-q4,s-peff-q1,s-peff-q2,s-peff-q3,s-peff-q4,s-peff-q5,s-peff-q6,Q90,Q90_3_TEXT,Q91,Q91_7_TEXT,Q_Language,MathTeacher,ScienceTeacher,SocialTeacher,EnglishTeacher,,,,,,,,
|
||||
5/30/18 13:28,5/30/18 13:34,IP Address,216.163.221.198,100,368,TRUE,2018-05-30T13:34:41,R_3P5moOCuYe81zFS,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,3687,11th,3,4,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,,,,,,,,,,3,3,3,3,4,3,3,3,3,3,4,3,4,3,4,3,3,3,2,3,3,3,3,3,3,3,4,3,4,3,3,3,,,,,3,4,3,3,4,4,2,6,1,,3,,21,,,,,,EN,,,,English teacher
|
||||
4/6/18 10:23,4/6/18 10:31,IP Address,216.163.221.198,95,454,FALSE,2018-04-07T10:45:31,R_29gg2NGVg7jxRvS,,,,,,,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,3314,11th,2,2,2,,,,,,,,,,3,4,3,5,,,,,,,,1,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4,5,5,3,1,1,3,3,5,5,5,4,,,,,,,,,,,,,,,,,,,H-CRE,,,pwofesè syans sosyal,
|
||||
5/30/18 13:15,5/30/18 13:24,IP Address,216.163.221.198,100,536,TRUE,2018-05-30T13:24:40,R_2AGQYzCEL9ELd7J,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,2683,11th,,,,,,,,,,,,,4,4,5,4,3,3,3,,,,,4,5,5,5,,,,,,,,,,,,,,4,5,4,5,4,1,1,5,1,5,3,5,3,2,1,3,5,5,5,5,4,5,3,4,5,4,4,,,,,,,,,,5,4,4,4,4,5,6,6,2,,2,,10,,,,,,EN,Math teacher,,,
|
||||
6/4/18 10:32,6/4/18 10:41,IP Address,216.163.221.198,100,541,TRUE,2018-06-04T10:41:52,R_1hzLYYddtgjcN4c,,,,,42.30589294,-71.08589935,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,9083,11th,,,,,,,,,,,,,4,3,3,4,1,3,4,,,,,1,4,1,4,,,,,,,,,,,,,,3,4,5,4,4,5,1,4,1,3,3,4,5,5,5,5,4,4,4,4,2,4,3,2,4,3,4,,,,,,,,,,2,5,3,1,4,2,6,6,2,,3,,23,,,,,,EN,,,,English teacher
|
||||
5/30/18 11:34,5/30/18 11:45,IP Address,216.163.221.198,100,632,TRUE,2018-05-30T11:45:20,R_brOPag21kbWJE1H,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,699,11th,4,4,1,,,,,,,,,,3,2,2,3,3,4,4,2,1,1,1,2,3,3,3,2,3,3,3,2,1,1,,,,,,,3,1,3,4,2,,,,,,,,,,,,,,,,,,,,,,,4,4,5,,4,4,4,4,4,4,4,4,3,4,4,6,7,1,,3,,22,,,,,,PT-BR,,,Professor de Estudos Sociais,
|
||||
5/30/18 14:06,5/30/18 14:17,IP Address,216.163.221.198,100,668,TRUE,2018-05-30T14:17:56,R_cMAtkBaN1SOeUQV,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,3911,11th,,,,,,,,,,,,,,,,,,,,1,3,2,2,,,,,,,,,1,1,3,,,,,,,3,2,3,5,5,4,2,2,5,,,2,1,3,4,2,2,1,,1,,2,2,2,3,3,2,,,,,,4,3,2,2,4,3,2,3,2,3,1,2,2,,3,,23,,,,,,EN,Math teacher,,,
|
||||
5/30/18 11:35,5/30/18 11:46,IP Address,216.163.221.198,100,684,TRUE,2018-05-30T11:46:40,R_3MS6T1EiEpN1iyC,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,8129,11th,3,4,1,,,,,,,,,,1,3,5,5,4,3,4,4,4,3,3,1,4,4,4,3,4,2,1,1,1,1,,,,,,,,,,,,,,,,,,,,,,,1,4,4,5,5,4,3,4,4,3,4,3,1,1,5,3,4,4,4,4,,,,,,,6,6,1,,4,,1,,,,,,ES,maestro de matemáticas,,,
|
||||
4/5/18 12:23,4/5/18 12:35,IP Address,216.163.221.198,91,691,FALSE,2018-04-06T12:36:30,R_pzaNMngxbOFYIcp,,,,,,,anonymous,SOM,Boston,,00350548,Boston Adult Technical Academy,,,,,,4041,11th,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,SOM,,,,macalinkaaga Ingiriisida
|
||||
5/31/18 10:51,5/31/18 11:03,IP Address,216.163.221.198,100,737,TRUE,2018-05-31T11:3:55,R_3PjEwgN4fA4vjon,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,9959,11th,1,1,1,,,,,,,,,,4,4,3,4,5,5,3,4,3,5,4,3,5,4,4,3,3,2,3,2,2,2,,,,,,,,,,,,,,,,,,,,,,,1,4,4,5,3,4,2,5,3,4,4,4,4,1,4,3,5,4,4,5,,,,,,,6,6,1,,3,,22,,,,,,EN,,,,English teacher
|
||||
5/30/18 13:13,5/30/18 13:27,IP Address,216.163.221.198,100,818,TRUE,2018-05-30T13:27:19,R_1pXNTzkbHNGelu4,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,2829,11th,5,5,2,,,,,,,,,,1,3,3,4,3,3,4,3,3,1,3,3,4,3,3,5,3,3,3,3,3,3,,,,,,,3,4,4,4,3,,,,,,,,,,,,,,,,,,,,,,,1,1,3,3,3,4,4,4,4,2,4,3,3,4,4,6,7,2,,4,,1,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/30/18 11:37,5/30/18 11:51,IP Address,216.163.221.198,100,821,TRUE,2018-05-30T11:51:30,R_3e3rL5A2EmLCblu,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,5233,11th,3,4,1,,,,,,,,,,,,,,,,,,,,,,,,,3,2,4,,,,,,,,,,,4,3,4,3,3,1,1,4,1,4,4,4,3,3,3,5,5,4,1,2,3,3,3,4,4,5,2,5,2,4,4,4,,,,,4,4,3,4,4,4,7,7,2,,4,,16,,,,,,ES,maestro de matemáticas,,,
|
||||
5/30/18 13:24,5/30/18 13:38,IP Address,216.163.221.198,100,832,TRUE,2018-05-30T13:38:37,R_2fs3IoDb7Qz0ZN1,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,8833,11th,3,3,4,,,,,,,,,,4,4,5,4,4,4,3,5,4,5,4,5,5,4,5,5,4,4,2,4,5,4,,,,,,,,,,,,2,3,4,2,5,5,5,5,5,2,5,,,,,,,,,,,,4,4,5,5,5,5,5,5,5,,,,,,,2,6,2,,3,,19,,,,,,EN,,Science teacher,,
|
||||
5/30/18 13:09,5/30/18 13:23,IP Address,216.163.221.198,100,850,TRUE,2018-05-30T13:23:44,R_2dMZuHQME8eQ9OX,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,3051,11th,4,3,5,,,,,,,,,,4,3,3,3,5,5,5,5,4,4,4,5,5,3,2,4,3,3,4,5,5,5,,,,,,,,,,,,,,,,,,,,,,,3,4,4,5,4,5,4,3,5,2,4,4,2,5,2,3,3,2,4,5,,,,,,,7,6,2,,4,,1,,,,,,EN,,Science teacher,,
|
||||
4/5/18 11:20,4/5/18 11:35,IP Address,216.163.221.198,100,887,TRUE,2018-04-05T11:35:11,R_2rOswp7UyAuJiPF,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,3209,11th,3,3,1,,,,,,,,,,4,4,5,4,4,4,4,4,4,3,4,4,5,5,4,4,4,5,4,3,3,3,,,,,,,4,5,5,5,4,,,,,,,,,,,,,,,,,,,,,,,5,5,5,4,4,5,5,4,5,5,4,5,4,,5,7,7,2,,4,,11,,,peru ,,,ES,,,maestro de estudios sociales,
|
||||
5/8/18 11:07,5/8/18 11:22,IP Address,216.163.221.198,100,898,TRUE,2018-05-08T11:22:19,R_XifnBCDx8T3QOid,,,,,42.2848053,-71.07409668,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,767,11th,2,2,1,,,,,,,,,,,,,,,,,,,,,,,,,5,1,5,1,,,,,,,,,,3,4,4,5,4,3,1,5,2,3,4,4,5,4,1,1,4,5,5,5,5,4,3,3,3,3,4,4,2,4,5,5,,,,,5,5,5,5,5,5,6,6,2,,4,,1,,,,,,EN,Math teacher,,,
|
||||
5/30/18 14:28,5/30/18 14:43,IP Address,216.163.221.198,100,913,TRUE,2018-05-30T14:43:44,R_1IWcWv8P0orB4Es,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,4115,11th,,1,1,,,,,,,,,,3,1,2,3,2,4,2,3,2,5,1,3,4,2,3,2,1,1,1,3,2,1,,,,,,,,,,,,4,2,5,1,3,3,3,4,2,2,2,,,,,,,,,,,,5,4,4,3,4,4,3,4,4,,,,,,,6,6,2,,4,,1,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 15:20,5/30/18 15:36,IP Address,216.163.221.198,100,926,TRUE,2018-05-30T15:36:1,R_3lDMk8or5hS5gJE,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,676,11th,,,,,,,,,,,,,,,,,,,,2,2,2,2,,,,,,,,,4,4,4,,,,,,,4,4,3,4,2,4,1,4,1,5,5,5,5,3,5,5,5,1,1,5,1,5,3,3,3,3,4,,,,,,5,4,4,5,4,3,4,4,4,4,7,7,1,,4,,12,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/30/18 11:37,5/30/18 11:53,IP Address,216.163.221.198,100,939,TRUE,2018-05-30T11:53:19,R_2VF4hK4Saott82i,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,1310,11th,,,,,,,,,,,,,,,,,,,,4,5,5,5,,,,,,,,,5,4,4,,,,,,,2,4,3,3,4,2,1,4,1,5,4,5,4,3,3,4,3,3,4,4,3,3,3,3,1,4,3,,,,,,5,4,4,4,4,3,5,3,5,4,6,6,2,,6,,22,,,,,,PT-BR,,,,Professor de Inglês
|
||||
5/31/18 13:20,5/31/18 13:36,IP Address,216.163.221.198,100,963,TRUE,2018-05-31T13:36:50,R_2QASWA0QyYmKLz0,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,3050,11th,2,2,1,,,,,,,,,,3,3,3,3,3,3,2,4,4,3,2,4,4,4,4,5,2,4,1,4,4,4,,,,,,,2,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,3,3,4,3,4,3,4,4,3,4,3,4,4,4,4,6,6,2,,4,,12,,,,,,EN,,,maestro de estudios sociales,
|
||||
5/8/18 11:03,5/8/18 11:19,IP Address,216.163.221.198,100,1003,TRUE,2018-05-08T11:19:50,R_33p65DCROQSJcNc,,,,,42.2848053,-71.07409668,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,2696,11th,,,,,,,,,,,,,4,3,3,3,4,4,4,,,,,4,4,3,3,,,,,,,,,,,,,,5,4,3,4,4,2,2,4,2,5,5,5,5,2,4,4,3,5,5,5,4,4,2,5,4,4,4,,,,,,,,,,5,5,5,5,5,5,6,6,1,,2,,10,,,,,,EN,,,,English teacher
|
||||
5/31/18 9:24,5/31/18 9:41,IP Address,216.163.221.198,100,1042,TRUE,2018-05-31T9:41:49,R_1LtK7Cyk4CgaiG4,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,1594,11th,,,,,,,,,,,,,4,4,4,4,2,4,4,,,,,4,3,4,5,,,,,,,,,,,,,,4,4,5,3,3,4,2,5,1,5,5,5,5,4,4,5,5,5,3,5,3,5,5,5,4,4,4,,,,,,,,,,3,3,3,3,3,3,7,6,1,,3,,3,,,,,,H-CRE,,pwofesè Syans,,
|
||||
5/31/18 10:35,5/31/18 10:53,IP Address,216.163.221.198,100,1042,TRUE,2018-05-31T10:53:22,R_2CV6aTWh7DuEcLx,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,1236,11th,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,4,3,4,,,,,,,,,,5,5,4,4,5,3,1,5,2,5,4,5,5,5,5,5,5,5,4,4,4,5,5,3,3,5,4,4,3,5,3,4,,,,,4,4,4,3,4,5,6,7,2,,3,,21,,,,,,EN,,Science teacher,,
|
||||
5/31/18 9:29,5/31/18 9:46,IP Address,216.163.221.198,100,1043,TRUE,2018-05-31T9:46:48,R_0AItfaG40vJJrTr,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,1527,11th,,,,,,,,,,,,,,,,,,,,3,4,3,4,,,,,,,,,3,4,4,,,,,,,3,3,5,2,3,2,1,3,2,5,2,3,3,2,4,2,3,4,4,4,3,4,2,3,4,2,5,,,,,,4,5,4,2,4,5,5,5,3,5,6,6,1,,7,,3,,,,,,H-CRE,,,,pwofesè Angle
|
||||
5/30/18 12:34,5/30/18 12:51,IP Address,216.163.221.198,100,1050,TRUE,2018-05-30T12:51:58,R_Wxvj9mKpSUD7FiF,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,1553,11th,1,1,1,,,,,,,,,,5,5,5,5,5,5,4,3,3,4,4,5,5,5,5,4,3,3,1,5,3,4,,,,,,,,,,,,1,1,5,1,5,1,5,4,1,3,5,,,,,,,,,,,,5,4,5,5,5,2,5,4,4,,,,,,,2,2,2,,2,,11,,,,,,EN,Math teacher,,,
|
||||
4/5/18 11:19,4/5/18 11:37,IP Address,216.163.221.198,92,1061,FALSE,2018-04-06T11:37:54,R_WupiyKRq8LWDFtL,,,,,,,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,1236,11th,4,5,3,,,,,,,,,,3,3,2,1,,,,,,,,,,,,,,,,5,3,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,EN,,,,English teacher
|
||||
5/30/18 10:17,5/30/18 10:35,IP Address,216.163.221.198,100,1068,TRUE,2018-05-30T10:35:11,R_3j27LTELHPyG5lz,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,17,11th,3,3,2,,,,,,,,,,,,,,,,,,,,,,,,,4,3,3,3,,,,,,,,,,4,4,3,3,3,3,3,4,3,4,3,4,4,3,4,3,2,2,3,4,4,5,3,3,3,5,4,3,1,3,3,3,,,,,4,3,3,4,4,3,7,7,2,,4,,16,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/14/18 13:58,5/14/18 14:16,IP Address,216.163.221.198,100,1096,TRUE,2018-05-14T14:16:25,R_3emcXKUjvP3BFRv,,,,,42.2848053,-71.07409668,anonymous,CREOLE-CV,Boston,,00350548,Boston Adult Technical Academy,,,,,,1,11th,4,4,1,,,,,,,,,,4,3,3,4,4,2,3,3,2,3,2,3,4,2,4,3,3,2,3,1,3,1,,,,,,,,,,,,,,,,,,,,,,,3,3,4,4,5,4,1,3,3,4,5,2,4,2,4,4,4,4,3,3,,,,,,,6,6,1,,3,,22,,,,,,CREOLE-CV,,,,professor di Ingles
|
||||
6/6/18 14:53,6/6/18 15:12,IP Address,216.163.221.198,100,1096,TRUE,2018-06-06T15:12:13,R_3et22Bm4rl7e55E,,,,,42.30589294,-71.08589935,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,895,11th,,,,,,,,,,,,,,,,,,,,3,3,4,3,,,,,,,,,1,3,3,,,,,,,4,5,4,5,3,1,1,4,1,4,5,4,5,3,3,2,3,3,5,5,5,5,4,5,5,3,4,,,,,,5,5,5,5,5,5,,5,5,5,2,2,1,,3,,3,,,,,,H-CRE,pwofesè Matematik,,,
|
||||
5/30/18 13:55,5/30/18 14:14,IP Address,216.163.221.198,100,1115,TRUE,2018-05-30T14:14:9,R_Amtqfd3vaUpZXUZ,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,4111,11th,3,4,1,,,,,,,,,,2,2,3,3,2,3,2,2,3,2,2,3,3,3,3,4,2,3,2,3,3,3,,,,,,,,,,,,4,2,4,2,4,2,2,4,2,,2,,,,,,,,,,,,5,3,1,4,2,3,3,1,2,,,,,,,2,6,1,,4,,1,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/30/18 13:13,5/30/18 13:32,IP Address,216.163.221.198,100,1128,TRUE,2018-05-30T13:32:4,R_T7OiZXoE8x7eCc1,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,71,11th,4,3,2,,,,,,,,,,3,3,,1,2,,3,,4,,3,2,3,4,3,2,,1,5,2,5,2,,,,,,,1,4,1,2,,,,,,,,,,,,,,,,,,,,,,,,5,4,2,5,4,4,2,3,2,2,3,4,4,3,3,7,6,1,,3,,4,,,,,,EN,,,,English teacher
|
||||
5/31/18 14:39,5/31/18 14:58,IP Address,216.163.221.198,100,1133,TRUE,2018-05-31T14:58:14,R_24MZaGzNsJRTCOI,,,,,42.32269287,-71.08470154,anonymous,SOM,Boston,,00350548,Boston Adult Technical Academy,,,,,,4041,11th,2,1,1,,,,,,,,,,3,4,2,4,4,4,4,3,3,4,1,4,4,4,4,5,5,1,4,2,4,4,,,,,,,,,,,,,,,,,,,,,,,4,4,5,4,5,5,4,1,3,4,4,5,4,5,5,5,5,3,3,5,,,,,,,6,6,2,,7,waxan ahy somali ,21,,,,,,SOM,,,,English teacher
|
||||
5/30/18 14:31,5/30/18 14:50,IP Address,216.163.221.198,100,1136,TRUE,2018-05-30T14:50:33,R_1rAfwkQ2kR3fqFQ,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,3956,11th,,,,,,,,,,,,,4,4,5,5,4,5,4,,,,,5,4,4,4,,,,,,,,,,,,,,4,4,4,4,3,5,1,4,1,5,4,5,5,2,3,4,5,5,3,5,3,5,1,4,5,4,4,,,,,,,,,,5,4,5,4,3,4,7,7,1,,,,22,,,,,,PT-BR,Professor de Matemática,,,
|
||||
5/30/18 14:05,5/30/18 14:24,IP Address,216.163.221.198,100,1154,TRUE,2018-05-30T14:24:53,R_31ZzvUcHkowa31w,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,6024,11th,,,,,,,,,,,,,3,5,5,5,3,3,3,,,,,5,2,5,2,,,,,,,,,,,,,,5,5,2,5,5,1,2,3,1,2,2,2,5,2,2,5,5,5,2,5,2,5,1,2,5,5,2,,,,,,,,,,3,3,2,5,2,5,7,6,2,,3,,23,,,,Republic of Congo,,EN,,,,English teacher
|
||||
5/30/18 13:50,5/30/18 14:10,IP Address,216.163.221.198,100,1179,TRUE,2018-05-30T14:10:18,R_0P2WetjMEQKQD05,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,3438,11th,,,,,,,,,,,,,3,5,3,2,5,4,3,,,,,5,5,4,3,,,,,,,,,,,,,,4,5,5,5,4,2,4,4,4,5,4,5,4,3,2,5,3,5,5,5,3,3,1,3,2,5,4,,,,,,,,,,3,5,5,3,,4,6,6,1,,3,,23,,,,Ethiopia ,,EN,,,Social Studies teacher,
|
||||
4/5/18 11:25,4/5/18 11:45,IP Address,216.163.221.198,100,1190,TRUE,2018-04-05T11:45:47,R_2f1K9cblSfj0O6H,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,1717,11th,3,3,1,,,,,,,,,,2,3,3,3,4,3,3,3,2,2,3,3,3,3,3,5,2,3,1,4,4,1,,,,,,,,,,,,3,1,4,1,2,2,2,2,3,3,3,,,,,,,,,,,,4,2,2,4,4,3,3,4,4,,,,,,,6,6,2,,3,,16,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 13:57,5/30/18 14:17,IP Address,216.163.221.198,100,1196,TRUE,2018-05-30T14:17:49,R_8v3MV6O2sdHssYV,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,4057,11th,,,,,,,,,,,,,,,,,,,,5,4,5,4,,,,,,,,,4,5,4,,,,,,,4,3,3,3,3,5,1,4,1,5,4,5,5,4,5,4,3,3,4,5,4,5,5,5,5,5,5,,,,,,5,4,4,5,3,4,5,4,3,5,6,7,1,,3,,3,,,,,,H-CRE,,pwofesè Syans,,
|
||||
5/31/18 13:09,5/31/18 13:29,IP Address,216.163.221.198,100,1197,TRUE,2018-05-31T13:29:6,R_1FL0kugxKIME7SG,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,991,11th,2,1,1,,,,,,,,,,3,3,3,3,4,4,3,3,3,3,3,4,3,3,3,2,4,4,3,3,5,3,,,,,,,,,,,,3,1,3,1,5,3,4,4,3,4,2,,,,,,,,,,,,4,2,2,3,3,3,2,4,2,,,,,,,2,6,2,,3,,22,,,,,,PT-BR,Professor de Matemática,,,
|
||||
5/31/18 15:06,5/31/18 15:26,IP Address,216.163.221.198,100,1201,TRUE,2018-05-31T15:26:51,R_ThNbMwAapk8vOSZ,,,,,42.32269287,-71.08470154,anonymous,SOM,Boston,,00350548,Boston Adult Technical Academy,,,,,,3944,11th,,,,,,,,,,,,,4,5,5,5,5,5,5,,,,,5,5,4,4,,,,,,,,,,,,,,5,4,5,5,4,1,1,5,1,5,5,4,5,1,5,5,5,5,5,5,5,5,5,5,1,5,5,,,,,,,,,,5,5,5,5,5,5,7,7,1,,1,,21,,,,,,SOM,,,,macalinkaaga Ingiriisida
|
||||
4/5/18 11:19,4/5/18 11:39,IP Address,216.163.221.198,100,1204,TRUE,2018-04-05T11:39:20,R_3paUyVVerb1cd3k,,,,,42.30589294,-71.08589935,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,1511,11th,,,,,,,,,,,,,3,1,4,1,1,2,2,,,,,2,4,3,1,,,,,,,,,,,,,,2,4,3,3,4,3,1,3,2,4,2,4,2,2,1,5,1,3,2,4,1,3,2,1,3,5,4,,,,,,,,,,2,3,2,1,1,3,6,1,2,,3,,23,,,,eritrean,,EN,,,,English teacher
|
||||
4/5/18 12:22,4/5/18 12:43,IP Address,216.163.221.198,100,1217,TRUE,2018-04-05T12:43:13,R_32QSRN0qgkjdHDf,,,,,42.30589294,-71.08589935,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,699,11th,2,2,2,,,,,,,,,,5,4,2,,4,3,3,2,4,1,1,1,3,3,3,2,5,4,3,3,1,3,,,,,,,,,,,,,,,,,,,,,,,2,3,4,4,3,5,1,3,5,4,4,4,3,2,4,1,4,3,4,4,,,,,,,1,2,1,,7,,22,,,,,,PT-BR,Professor de Matemática,,,
|
||||
5/30/18 14:35,5/30/18 14:55,IP Address,216.163.221.198,100,1223,TRUE,2018-05-30T14:55:56,R_Ap2I7qdxajZskuZ,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,9207,11th,2,1,1,,,,,,,,,,2,3,1,3,4,4,2,3,1,1,1,1,4,1,3,4,4,4,2,4,3,3,,,,,,,1,3,5,2,3,,,,,,,,,,,,,,,,,,,,,,,1,2,3,1,3,5,3,3,3,4,4,4,2,5,4,6,1,1,,,,22,,,,,,PT-BR,Math teacher,,,
|
||||
6/4/18 12:00,6/4/18 12:21,IP Address,216.163.221.198,100,1238,TRUE,2018-06-04T12:21:29,R_1MK9LqhTTGMcUQ6,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,2843,11th,1,3,1,,,,,,,,,,4,4,4,3,3,4,2,3,2,5,4,4,4,3,3,3,4,2,3,4,1,1,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,3,5,4,3,4,3,3,5,3,5,4,5,5,4,4,4,,,,,,,6,6,1,,4,,1,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 10:52,5/30/18 11:13,IP Address,216.163.221.198,100,1244,TRUE,2018-05-30T11:13:1,R_2qwIvmuqkeXa4LB,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,4015,11th,1,1,1,,,,,,,,,,4,4,4,4,5,4,5,5,4,4,4,3,4,3,3,5,4,5,3,3,3,5,,,,,,,4,5,4,5,4,,,,,,,,,,,,,,,,,,,,,,,3,4,4,3,4,5,4,4,4,4,4,5,5,5,4,7,7,1,,4,,1,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/30/18 10:38,5/30/18 10:59,IP Address,216.163.221.198,100,1257,TRUE,2018-05-30T10:59:42,R_Y9vAdjkaRa3hJgB,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,8448,11th,5,4,1,,,,,,,,,,4,3,4,4,2,4,1,1,3,3,3,1,5,4,4,4,5,3,1,4,4,4,,,,,,,,,,,,,,,,,,,,,,,2,2,3,4,3,4,2,4,4,4,4,4,2,3,3,4,5,4,4,3,,,,,,,6,6,2,,4,,15,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/30/18 15:21,5/30/18 15:42,IP Address,216.163.221.198,100,1259,TRUE,2018-05-30T15:42:59,R_snGzPCRbff6XUn7,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,1475,11th,3,2,1,,,,,,,,,,4,3,3,4,3,4,3,4,5,4,4,4,3,4,4,4,3,4,3,3,4,4,,,,,,,,,,,,,,,,,,,,,,,1,3,3,5,4,5,2,3,3,5,5,3,3,4,2,2,4,4,4,4,,,,,,,6,7,1,,4,,16,,,,,,ES,maestro de matemáticas,,,
|
||||
5/8/18 11:08,5/8/18 11:29,IP Address,216.163.221.198,100,1282,TRUE,2018-05-08T11:29:28,R_1mXgZiodgWB2bFx,,,,,42.2848053,-71.07409668,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,2897,11th,3,4,3,,,,,,,,,,3,4,3,3,5,4,5,5,5,4,5,4,5,5,4,5,5,4,2,5,4,3,,,,,,,3,3,4,3,3,,,,,,,,,,,,,,,,,,,,,,,5,3,3,4,5,4,4,4,4,4,4,3,3,4,4,6,6,1,,4,,12,,,,,,ES,,,,maestro de Inglés
|
||||
5/30/18 13:03,5/30/18 13:24,IP Address,216.163.221.198,100,1283,TRUE,2018-05-30T13:24:39,R_2cuD7gTtcrs62QN,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,2897,11th,,,,,,,,,,,,,,,,,,,,2,5,4,5,,,,,,,,,4,4,4,,,,,,,3,3,3,3,3,2,2,3,4,4,5,5,5,5,5,5,2,4,4,5,4,5,4,5,5,5,4,,,,,,4,4,5,4,4,4,4,4,4,3,6,6,1,,4,,12,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 13:57,5/30/18 14:18,IP Address,216.163.221.198,100,1293,TRUE,2018-05-30T14:18:45,R_1q1zCyYBxE9qOgM,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,4756,11th,2,2,1,,,,,,,,,,3,3,3,1,5,5,4,4,4,3,4,4,5,5,4,1,5,1,2,5,5,5,,,,,,,,,,,,,,,,,,,,,,,5,3,4,5,5,5,3,3,5,5,5,5,4,5,4,5,5,5,4,5,,,,,,,7,2,2,,3,,22,,,,,,PT-BR,,,,Professor de Inglês
|
||||
5/30/18 14:31,5/30/18 14:53,IP Address,216.163.221.198,100,1293,TRUE,2018-05-30T14:53:29,R_3HojAgH8z2pqSml,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,391,11th,,,,,,,,,,,,,,,,,,,,4,3,4,4,,,,,,,,,4,4,5,,,,,,,5,4,4,5,4,4,1,5,2,5,5,5,5,2,4,5,2,4,3,5,4,5,2,2,4,4,5,,,,,,5,5,4,5,4,5,5,5,5,5,7,6,2,,3,,22,,,,,,PT-BR,,Professor de Ciências,,
|
||||
5/30/18 13:57,5/30/18 14:19,IP Address,216.163.221.198,100,1304,TRUE,2018-05-30T14:19:11,R_1IQNnqyfvNOW4bl,,,,,42.32269287,-71.08470154,anonymous,CREOLE-CV,Boston,,00350548,Boston Adult Technical Academy,,,,,,2181,11th,2,4,2,,,,,,,,,,2,2,2,4,3,4,2,4,4,3,1,4,3,1,3,2,2,2,3,2,4,2,,,,,,,,,,,,,,,,,,,,,,,1,3,3,2,3,4,4,3,4,3,3,3,4,2,3,2,2,3,3,4,,,,,,,6,6,2,,3,,22,,,,,,CREOLE-CV,,,professor di estudus sosiais,
|
||||
4/5/18 11:19,4/5/18 11:43,IP Address,216.163.221.198,100,1440,TRUE,2018-04-05T11:43:54,R_sMaKaAMQnb6fcJ3,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,8448,11th,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,5,5,3,4,,,,,,,,,,4,4,4,3,3,2,1,4,1,4,4,4,5,3,3,4,2,1,3,4,3,4,2,4,4,3,4,2,1,1,3,4,,,,,2,3,2,2,2,3,6,7,2,,4,,15,,,,,,ES,,,,maestro de Inglés
|
||||
5/30/18 11:01,5/30/18 11:25,IP Address,216.163.221.198,100,1441,TRUE,2018-05-30T11:25:10,R_xyHjJtqBPPPVPlT,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,9232,11th,1,1,1,,,,,,,,,,4,5,1,4,3,2,4,3,4,3,4,3,4,1,4,5,1,3,3,2,4,3,,,,,,,4,5,4,3,4,,,,,,,,,,,,,,,,,,,,,,,4,3,4,3,4,5,4,4,4,4,4,3,5,5,4,6,2,2,,3,,3,,,,,,H-CRE,,,,pwofesè Angle
|
||||
5/30/18 10:59,5/30/18 11:24,IP Address,216.163.221.198,100,1485,TRUE,2018-05-30T11:24:26,R_DhN5j5bsYhgRhVn,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,2765,11th,,,,,,,,,,,,,3,4,3,5,5,5,3,,,,,2,5,4,3,,,,,,,,,,,,,,4,5,5,5,5,2,2,5,3,5,2,4,3,5,5,,5,5,5,5,4,5,5,5,5,5,5,,,,,,,,,,4,5,5,4,5,5,7,7,2,,3,,3,,,,,,H-CRE,,,pwofesè syans sosyal,
|
||||
5/30/18 13:54,5/30/18 14:19,IP Address,216.163.221.198,100,1511,TRUE,2018-05-30T14:19:59,R_CfCfrg8Yb32TqSt,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,736,11th,1,1,4,,,,,,,,,,3,3,3,3,3,5,3,3,4,3,5,3,3,1,3,5,3,3,4,1,5,5,,,,,,,,,,,,1,1,5,1,5,4,4,5,1,3,5,,,,,,,,,,,,5,5,5,4,3,4,5,4,1,,,,,,,6,6,1,,3,,3,,,,,,H-CRE,,,,pwofesè Angle
|
||||
5/30/18 13:07,5/30/18 13:32,IP Address,216.163.221.198,100,1535,TRUE,2018-05-30T13:32:38,R_3iyjm4ajni0Bpxu,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,9597,11th,4,4,1,,,,,,,,,,,,,,,,,,,,,,,,,4,3,4,1,,,,,,,,,,4,4,4,4,4,2,1,5,1,5,3,4,5,4,4,5,5,5,1,4,1,5,3,5,5,5,4,5,4,4,5,4,,,,,5,,5,,5,4,7,6,1,,6,,12,,,,,,ES,,,,maestro de Inglés
|
||||
5/30/18 13:54,5/30/18 14:20,IP Address,216.163.221.198,100,1536,TRUE,2018-05-30T14:20:23,R_3JKuWeBOzrkgwIN,,,,,42.32269287,-71.08470154,anonymous,H-CRE,Boston,,00350548,Boston Adult Technical Academy,,,,,,4368,11th,1,1,4,,,,,,,,,,4,5,5,5,2,4,3,4,5,4,3,4,5,5,4,3,2,3,4,1,5,4,,,,,,,3,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,3,1,3,4,4,3,4,3,3,3,3,2,3,,3,6,6,1,,3,,3,,,,,,H-CRE,,pwofesè Syans,,
|
||||
6/6/18 10:04,6/6/18 10:30,IP Address,216.163.221.198,100,1560,TRUE,2018-06-06T10:30:14,R_1jSTlK11Xb5BO6c,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,2625,11th,,,,,,,,,,,,,5,5,5,5,2,4,3,,,,,4,5,4,4,,,,,,,,,,,,,,4,4,5,4,4,1,3,4,,4,4,4,3,1,4,5,3,5,3,4,3,3,2,5,3,5,5,,,,,,,,,,2,4,4,4,4,4,1,7,2,,4,,15,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 14:33,5/30/18 14:59,IP Address,216.163.221.198,100,1589,TRUE,2018-05-30T14:59:32,R_3syTFhc5odfQ87k,,,,,42.32269287,-71.08470154,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,1356,11th,,,,,,,,,,,,,4,2,4,5,4,4,2,,,,,5,5,5,5,,,,,,,,,,,,,,5,5,5,5,5,1,1,5,1,5,4,5,5,2,2,4,3,3,4,5,2,5,1,5,5,5,5,,,,,,,,,,3,4,5,1,4,4,7,7,2,,3,,22,,,,,,PT-BR,,professor di siensias,,
|
||||
5/14/18 13:57,5/14/18 14:24,IP Address,216.163.221.198,100,1608,TRUE,2018-05-14T14:24:35,R_1OC5ATfgWX03xsk,,,,,42.2848053,-71.07409668,anonymous,CREOLE-CV,Boston,,00350548,Boston Adult Technical Academy,,,,,,1788,11th,2,1,1,,,,,,,,,,3,5,4,3,4,5,3,3,5,5,5,4,5,5,4,4,5,5,1,5,3,4,,,,,,,,,,,,,,,,,,,,,,,5,5,5,5,3,5,2,4,1,5,5,5,3,3,5,4,3,5,4,5,,,,,,,2,6,1,,3,,22,,,,,,CREOLE-CV,,,Social Studies teacher,
|
||||
5/30/18 10:39,5/30/18 11:06,IP Address,216.163.221.198,100,1620,TRUE,2018-05-30T11:6:28,R_1QhDPptf04MfZjN,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,8290,11th,,,,,,,,,,,,,4,3,4,2,3,3,4,,,,,4,4,4,5,,,,,,,,,,,,,,2,4,3,4,3,1,,1,1,4,3,5,4,3,2,4,2,1,3,4,2,3,3,3,4,3,4,,,,,,,,,,4,4,4,3,2,3,6,6,2,,4,,15,,,,,,ES,maestro de matemáticas,,,
|
||||
6/1/18 8:59,6/1/18 9:26,IP Address,216.163.221.198,100,1625,TRUE,2018-06-01T9:26:34,R_2QYRq3aFAbT2Vxf,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,1327,11th,2,1,2,,,,,,,,,,4,2,3,4,4,5,3,3,1,4,3,3,4,3,3,2,3,3,2,3,,5,,,,,,,2,3,5,5,3,,,,,,,,,,,,,,,,,,,,,,,3,3,3,5,2,2,4,3,4,4,4,4,2,3,5,6,6,2,,2,,11,,,,,,EN,,,,English teacher
|
||||
5/30/18 10:16,5/30/18 10:44,IP Address,216.163.221.198,100,1714,TRUE,2018-05-30T10:44:59,R_1jIg7CpWb64vga1,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,3229,11th,2,3,1,,,,,,,,,,2,2,2,2,3,4,3,1,2,3,3,4,2,2,2,3,3,3,1,2,2,2,,,,,,,3,3,2,3,3,,,,,,,,,,,,,,,,,,,,,,,4,4,1,4,4,3,2,4,2,4,3,3,4,3,3,1,6,2,,6,,15,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 13:05,5/30/18 13:34,IP Address,216.163.221.198,100,1743,TRUE,2018-05-30T13:34:58,R_Dei1FwjwjSC6NH3,,,,,42.32269287,-71.08470154,anonymous,CREOLE-CV,Boston,,00350548,Boston Adult Technical Academy,,,,,,4168,11th,5,2,1,,,,,,,,,,4,4,3,4,4,5,4,5,3,4,4,4,4,3,4,5,3,3,3,4,4,5,,,,,,,,,,,,2,2,4,2,5,4,4,3,3,5,5,,,,,,,,,,,,4,4,4,5,3,4,4,5,5,,,,,,,6,6,1,,3,,22,,,,,,CREOLE-CV,professor di matematika,,,
|
||||
5/31/18 13:11,5/31/18 13:40,IP Address,216.163.221.198,100,1767,TRUE,2018-05-31T13:40:28,R_3oAvv5mUnxcoNvM,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,9830,11th,3,5,3,,,,,,,,,,,,,,,,,,,,,,,,,2,3,5,4,,,,,,,,,,3,4,4,3,3,4,5,4,5,3,4,3,3,4,3,3,5,5,4,,3,3,5,5,,3,3,3,2,3,4,4,,,,,3,4,4,3,4,4,6,2,2,,3,,23,,,,,,EN,,,,English teacher
|
||||
4/5/18 12:34,4/5/18 13:04,IP Address,216.163.221.198,100,1833,TRUE,2018-04-05T13:4:40,R_22RAg2aYHVTce60,,,,,42.30589294,-71.08589935,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,3956,11th,2,1,1,,,,,,,,,,3,3,4,4,4,4,5,2,4,3,5,5,5,4,4,3,5,5,4,4,5,5,,,,,,,,,,,,4,1,4,1,5,5,5,5,2,4,5,,,,,,,,,,,,5,4,5,5,5,5,5,3,4,,,,,,,6,7,1,,7,cape verde,22,,,,,,PT-BR,,,,professor di Ingles
|
||||
4/5/18 11:21,4/5/18 11:51,IP Address,216.163.221.198,100,1838,TRUE,2018-04-05T11:51:52,R_3PgBgxUhDwzi2fA,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,8290,11th,,,,,,,,,,,,,,,,,,,,2,2,5,5,,,,,,,,,4,4,3,,,,,,,2,3,2,4,2,1,1,2,1,4,4,5,4,3,2,4,3,1,3,5,4,5,3,3,4,4,4,,,,,,2,4,2,5,4,3,2,4,3,4,6,2,2,,4,,15,,,,,,ES,,,,maestro de Inglés
|
||||
5/30/18 11:57,5/30/18 12:29,IP Address,216.163.221.198,100,1942,TRUE,2018-05-30T12:29:53,R_2Bs2NnHQepj0Y4G,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,4613,11th,4,3,1,,,,,,,,,,3,4,4,4,4,4,3,2,3,3,5,5,5,4,4,5,4,4,4,3,4,3,,,,,,,,,,,,,,,,,,,,,,,1,1,3,5,4,5,4,3,3,5,3,4,2,3,4,4,4,4,4,4,,,,,,,6,7,2,,4,,16,,,,,,ES,,maestro de ciencias,,
|
||||
5/30/18 13:48,5/30/18 14:21,IP Address,216.163.221.198,100,1974,TRUE,2018-05-30T14:21:53,R_BtuXZrK7UPVLROV,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,2573,11th,2,4,1,,,,,,,,,,4,1,2,4,4,4,3,1,1,2,2,4,,3,1,,3,,3,5,3,4,,,,,,,,,,,,,,,,,,,,,,,3,2,1,4,3,1,1,,5,,,2,1,1,4,5,4,1,2,2,,,,,,,,,2,,,,15,,,,,,ES,,,,maestro de Inglés
|
||||
4/5/18 12:24,4/5/18 12:58,IP Address,216.163.221.198,100,2064,TRUE,2018-04-05T12:58:56,R_qxVbpdoyfHAsU37,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,676,11th,2,1,1,,,,,,,,,,4,3,4,3,5,5,4,4,2,3,4,4,5,5,4,4,4,3,1,5,4,5,,,,,,,,,,,,,,,,,,,,,,,1,1,3,5,5,5,2,3,4,5,4,5,3,5,5,2,5,5,4,5,,,,,,,7,7,1,,4,,12,,,,,,ES,,,Social Studies teacher,
|
||||
5/30/18 14:38,5/30/18 15:15,IP Address,216.163.221.198,100,2229,TRUE,2018-05-30T15:15:19,R_xAvJ9Vuh5rWC6Ln,,,,,42.32269287,-71.08470154,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,3324,11th,4,4,2,,,,,,,,,,3,4,2,2,3,2,3,3,4,3,5,2,4,5,2,4,2,2,3,2,4,2,,,,,,,,,,,,5,3,4,4,5,2,2,4,4,4,3,,,,,,,,,,,,2,4,2,2,4,3,5,4,4,,,,,,,2,7,2,,3,,3,,,,,,EN,,,,English teacher
|
||||
5/14/18 13:59,5/14/18 14:37,IP Address,216.163.221.198,100,2298,TRUE,2018-05-14T14:37:38,R_81tZSgBLsoWeoOR,,,,,42.2848053,-71.07409668,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,289,11th,2,1,1,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,4,,,,,,,,,,5,4,4,5,4,1,2,4,4,5,5,2,5,2,2,1,5,5,2,5,4,5,2,4,3,5,3,3,2,2,5,5,,,,,3,4,4,4,4,2,6,6,2,,3,,3,,,,,,EN,,Science teacher,,
|
||||
5/9/18 14:02,5/9/18 14:42,IP Address,216.163.221.198,100,2388,TRUE,2018-05-09T14:42:19,R_sSgiWBlAzrG10L7,,,,,42.2848053,-71.07409668,anonymous,EN,Boston,,00350548,Boston Adult Technical Academy,,,,,,381,11th,,,,,,,,,,,,,,,,,,,,4,5,5,5,,,,,,,,,5,5,5,,,,,,,5,5,5,5,5,5,2,5,2,5,5,5,5,3,5,5,5,5,5,5,5,5,3,3,5,5,5,,,,,,5,5,5,5,5,5,5,5,,5,7,7,1,,3,,3,,,,,,EN,,Science teacher,,
|
||||
4/5/18 12:22,4/5/18 13:02,IP Address,216.163.221.198,100,2395,TRUE,2018-04-05T13:2:49,R_2y3E3dyczF7Srfn,,,,,42.30589294,-71.08589935,anonymous,PT-BR,Boston,,00350548,Boston Adult Technical Academy,,,,,,2740,11th,,,,,,,,,,,,,,,,,,,,2,2,4,5,,,,,,,,,3,4,5,,,,,,,1,4,5,5,3,3,1,5,1,5,4,4,4,1,3,5,4,4,1,5,3,1,2,4,4,5,4,,,,,,5,4,5,5,5,5,5,5,5,5,7,7,1,,7,,23,,,,,,PT-BR,,,,Professor de Inglês
|
||||
4/5/18 13:05,4/5/18 13:47,IP Address,216.163.221.198,100,2537,TRUE,2018-04-05T13:47:22,R_3lYPTTCbXWix3zx,,,,,42.30589294,-71.08589935,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,676,11th,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,4,4,2,1,,,,,,,,,,3,4,3,4,4,4,1,5,1,5,5,5,5,3,5,4,1,1,3,5,3,5,2,4,4,5,5,5,4,5,5,5,,,,,5,5,5,5,5,5,7,7,1,,4,,12,,,,,,ES,,,,maestro de Inglés
|
||||
5/30/18 11:56,5/30/18 12:40,IP Address,216.163.221.198,100,2628,TRUE,2018-05-30T12:40:43,R_3rJ6TIq2TqnHENx,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,767,11th,,,,,,,,,,,,,,,,,,,,5,4,4,3,,,,,,,,,3,5,4,,,,,,,4,4,2,4,3,3,1,4,2,,4,4,5,3,1,1,1,4,3,3,4,3,5,4,3,3,4,,,,,,4,4,4,5,4,4,4,4,4,4,7,7,2,,4,,1,,,,,,ES,maestro de matemáticas,,,
|
||||
4/5/18 12:23,4/5/18 13:08,IP Address,216.163.221.198,100,2743,TRUE,2018-04-05T13:9:0,R_241uYsqDn3LmYSn,,,,,42.30589294,-71.08589935,anonymous,CREOLE-CV,Boston,,00350548,Boston Adult Technical Academy,,,,,,3920,11th,,,,,,,,,,,,,2,2,3,2,4,2,1,,,,,2,2,1,1,,,,,,,,,,,,,,3,4,2,5,3,1,1,5,1,4,3,4,2,3,3,5,3,4,1,2,4,4,2,3,5,3,4,,,,,,,,,,4,2,4,4,2,4,6,2,1,,3,,23,,,,,,CREOLE-CV,,,professor di estudus sosiais,
|
||||
5/31/18 12:21,5/31/18 13:07,IP Address,216.163.221.198,100,2745,TRUE,2018-05-31T13:7:5,R_123DMke5FmP7HPV,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,3237,11th,1,1,1,,,,,,,,,,3,4,5,5,3,3,4,5,5,3,4,5,3,3,5,5,5,3,1,4,5,3,,,,,,,,,,,,,,,,,,,,,,,5,5,4,4,4,5,1,5,4,5,5,5,4,5,5,5,5,5,5,5,,,,,,,7,7,1,,4,,16,,,,,,ES,,,maestro de estudios sociales,
|
||||
5/30/18 11:57,5/30/18 13:32,IP Address,216.163.221.198,100,5743,TRUE,2018-05-30T13:32:48,R_2ZIlq4G8NspaEgy,,,,,42.32269287,-71.08470154,anonymous,ES,Boston,,00350548,Boston Adult Technical Academy,,,,,,7264,11th,,,,,,,,,,,,,3,3,4,3,2,3,2,,,,,4,4,4,4,,,,,,,,,,,,,,2,3,4,4,5,2,1,4,2,4,3,3,4,4,5,4,4,3,4,3,4,2,3,3,3,4,4,,,,,,,,,,3,5,5,4,3,5,6,6,1,,4,,1,,,,,,ES,,maestro de ciencias,,
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
StartDate,EndDate,Status,IPAddress,Progress,Duration (in seconds),Finished,RecordedDate,ResponseId,RecipientLastName,RecipientFirstName,RecipientEmail,ExternalReference,LocationLatitude,LocationLongitude,DistributionChannel,UserLanguage,Please select your school in Boston.,What district is your school in?,DESE ID,t-prep-q1,t-prep-q2,t-prep-q3,t-pcom-q1,t-pcom-q2,t-pcom-q3,t-pcom-q4,t-pcom-q5,do not use,t-qupd-q3,t-qupd-q2,t-qupd-q1,t-qupd-q4,t-coll-q1,t-coll-q2,t-coll-q3,t-prtr-q1,t-prtr-q2,t-prtr-q3,do not use ,t-inle-q1,t-inle-q2,t-inle-q3,t-pvic-q1,t-pvic-q2,t-pvic-q3,t-psup-q1,t-psup-q2,t-psup-q3,t-psup-q4,t-acch-q1,t-acch-q2,t-acch-q3,t-reso-q1,t-reso-q2,t-reso-q3,t-reso-q4,t-reso-q5,t-sust-q1,t-sust-q2,t-sust-q3,t-sust-q4,t-curv-q1,t-curv-q2,t-curv-q3,t-curv-q4,t-cure-q1,t-cure-q2,t-cure-q3,t-cure-q4,t-peng-q1,t-peng-q2,t-peng-q3,t-peng-q4,t-ceng-q1,t-ceng-q2,t-ceng-q3,t-ceng-q4,t-sach-q1,t-sach-q2,t-sach-q3,t-psol-q1,t-psol-q2,t-psol-q3,do not use expa,t-expa-q2,t-expa-q3,do not use phya,t-phya-q2,t-phya-q3,,Q131,Q132,Q81,Q83_1,Q84_1,Q85
|
||||
3/27/18 14:16,3/27/18 14:23,IP Address,216.163.221.198,100,397,TRUE,2018-03-27T14:23:16,R_1q2tsPNSVnsvtR3,,,,,42.2736969,-71.08999634,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,4,5,5,5,3,2,5,2,3,2,3,4,4,4,3,3,4,5,4,3,5,2,2,5,5,5,5,4,4,3,3,3,3,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,2,1,1,1,4,4,2,4,5,2,2,4,3,3,2,3,5,1,2,3,,3,3,,4,3,
|
||||
4/27/18 14:33,4/27/18 14:42,IP Address,216.163.221.198,100,550,TRUE,2018-04-27T14:42:35,R_1GD4DPeUhkq9UNe,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,5,5,3,4,5,2,3,2,3,4,4,5,3,3,3,3,4,4,4,3,3,3,4,4,4,4,4,4,4,3,3,3,1,2,5,2,5,3,4,4,4,4,4,5,4,5,2,1,2,2,5,3,2,4,4,2,2,4,4,4,2,2,2,1,1,1,,3,3,,9,9,
|
||||
4/27/18 14:34,4/27/18 14:44,IP Address,216.163.221.198,100,565,TRUE,2018-04-27T14:44:22,R_puf6Ih7VHNZkxLH,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,4,4,5,3,1,3,3,3,3,3,5,5,5,5,5,4,5,3,3,3,3,3,4,3,3,3,3,4,3,3,3,3,3,2,2,4,1,3,3,4,4,3,2,3,3,4,4,3,1,2,1,3,1,2,2,5,2,2,3,3,3,2,2,2,1,1,1,,4,2,,6,6,
|
||||
4/2/18 13:37,4/2/18 13:48,IP Address,216.163.221.198,100,679,TRUE,2018-04-02T13:48:56,R_31afTUWuPGSY3jh,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,5,5,4,4,5,3,2,2,4,5,5,5,5,5,5,5,5,5,5,2,3,5,5,5,5,5,4,5,4,5,3,5,1,5,5,5,5,4,5,5,4,5,4,4,5,5,2,2,1,1,5,3,1,3,5,3,3,3,3,4,2,3,5,1,1,1,,4,4,It's a great place to teach and learn and I am so proud of the successes of our mostly ESL students. They achieve so much more than anyone would have imagined.,9,8,I'm not sure everyone in my school knows about it.
|
||||
4/27/18 14:37,4/27/18 14:48,IP Address,216.163.221.198,100,708,TRUE,2018-04-27T14:48:53,R_3dGnCm8Bj6Uzf6i,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,4,4,4,4,4,,4,,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,3,4,4,4,4,4,4,4,4,4,4,3,4,5,3,5,5,3,3,4,4,3,3,3,4,3,4,4,2,4,4,,4,4,3,3,4,4,4,2,2,2,3,2,2,,3,3,NO,7,5,
|
||||
4/27/18 14:36,4/27/18 14:48,IP Address,216.163.221.198,100,729,TRUE,2018-04-27T14:48:10,R_2z5PEsPPsPQhFjW,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,3,4,4,5,4,4,3,3,2,1,4,1,3,5,3,4,2,5,2,3,1,3,3,3,3,3,4,5,4,3,2,2,4,3,3,3,1,3,3,2,5,5,4,4,3,4,5,5,5,5,2,1,1,2,4,4,1,3,4,3,,4,4,4,2,2,2,1,1,1,,4,3,,7,6,
|
||||
4/27/18 14:31,4/27/18 14:48,IP Address,216.163.221.198,100,1014,TRUE,2018-04-27T14:48:13,R_2fuLZiDsSszqipd,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,4,5,3,2,5,3,1,2,3,5,3,5,3,4,4,4,3,3,4,3,2,4,4,4,5,4,4,3,3,4,4,3,1,3,4,4,3,3,4,4,3,4,4,4,4,5,2,1,1,1,5,4,2,3,4,3,3,4,4,4,2,2,2,1,1,1,,3,3,,6,6,
|
||||
4/27/18 9:24,4/27/18 9:41,IP Address,216.163.221.198,100,1020,TRUE,2018-04-27T9:41:41,R_3iKEqOIUIOGxlGc,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,5,5,4,4,5,4,1,4,3,5,4,5,2,2,1,4,3,4,4,4,4,2,4,3,3,3,3,3,4,3,3,3,2,2,4,1,4,4,4,5,3,4,5,5,5,5,2,1,2,2,3,4,3,3,5,3,2,5,4,5,1,2,2,1,1,1,,4,2,,7,5,Many of the questions were hard to answer because they depended on which class/cohort of students I was referring to: ESL students and native-English speakers have very different challenges and profiles.
|
||||
4/27/18 14:35,4/27/18 14:53,IP Address,216.163.221.198,100,1070,TRUE,2018-04-27T14:53:22,R_O83z2OTA1c4rqQV,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,5,5,4,5,5,4,3,3,4,5,5,4,3,3,4,4,4,4,4,3,3,3,4,4,4,3,3,3,4,3,3,2,1,3,5,1,5,4,4,4,3,3,4,4,4,5,2,1,1,1,4,3,1,3,4,2,2,4,4,4,1,2,3,1,1,1,,3,3,A lot of the grade level content question I answered as below grade level because I teach ESL.,9,6,better than last year. I like the change.
|
||||
4/27/18 14:48,4/27/18 15:11,IP Address,216.163.221.198,100,1431,TRUE,2018-04-27T15:11:56,R_pGZu2Rdlt4wTAGt,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,4,5,4,4,3,3,5,4,4,5,3,4,5,5,4,4,5,5,5,5,2,1,5,5,4,4,4,4,4,4,2,3,4,1,4,4,4,5,4,4,4,4,4,4,4,5,5,4,1,3,3,5,5,3,5,4,4,4,3,4,5,3,3,3,1,1,2,,3,4,"My school has a climate and culture that promotes learning, and the wholesome growth of students, staff and faculty.",8,8,
|
||||
4/27/18 14:32,4/27/18 14:58,IP Address,216.163.221.198,100,1607,TRUE,2018-04-27T14:58:57,R_1jIJiOsIy7BtftT,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,4,5,4,5,4,4,3,3,4,3,4,3,4,4,2,4,4,4,4,5,4,4,5,2,2,5,4,3,4,4,4,4,4,4,4,4,3,4,4,4,3,3,4,4,3,4,3,2,4,3,2,2,2,2,4,3,2,3,3,3,2,3,3,3,3,3,3,3,2,2,,3,4,,6,6,
|
||||
4/4/18 11:05,4/4/18 11:32,IP Address,216.163.221.198,100,1617,TRUE,2018-04-04T11:32:56,R_3PpYH7TOul4SV5R,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,5,5,4,3,5,4,4,3,4,4,4,5,5,5,5,5,5,4,5,2,2,5,5,5,5,5,3,3,3,3,3,3,1,3,4,3,4,3,3,4,3,3,4,4,5,4,2,2,1,1,3,3,2,4,5,3,3,4,4,4,2,2,2,1,1,1,,4,4,"Some of the questions, for example those ref parent involvement should have an ""NA"" choice because our students are adult learners many of whom work and/or live on their own/ are married/etc. That said we still reach out to their significant others for their support as warranted. ",8,7,Too long for busy teachers!
|
||||
4/3/18 9:14,4/3/18 9:42,IP Address,216.163.221.198,100,1668,TRUE,2018-04-03T9:42:23,R_1QcrgUHdtNNLX1r,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,4,4,5,4,4,5,5,4,4,4,5,4,4,4,5,5,4,5,5,5,5,1,1,5,4,5,5,4,5,4,4,3,4,5,2,4,5,3,5,4,4,5,4,5,5,4,4,4,3,2,2,3,5,4,4,4,4,3,3,4,4,4,3,4,5,1,1,5,,3,4,Students are heavily supported to succeed through lesson diversification and placement despite being in a large majority ELL's.,9,7,To many questions miss a I am not sure or N/A for my position answer.
|
||||
4/27/18 14:31,4/27/18 15:00,IP Address,216.163.221.198,100,1770,TRUE,2018-04-27T15:0:56,R_UX9f7KoJcbRDQ1r,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,5,5,5,5,4,1,5,3,3,3,4,5,4,5,3,4,5,4,3,4,4,3,3,4,4,5,4,3,3,2,2,3,3,2,1,2,4,3,4,2,3,4,3,3,3,3,4,5,2,1,1,2,5,4,1,4,3,2,2,2,2,3,2,2,2,1,1,1,,3,3,,7,8,
|
||||
4/27/18 14:35,4/27/18 15:06,IP Address,216.163.221.198,100,1833,TRUE,2018-04-27T15:6:18,R_2z5RC0FmD9CO7I3,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,4,5,4,5,4,5,4,3,4,4,4,4,4,4,5,5,5,5,4,5,5,2,2,4,4,5,5,4,4,4,3,3,3,3,3,4,4,3,5,3,4,3,3,3,3,2,1,4,2,3,2,2,4,3,3,3,4,4,3,4,3,4,1,1,4,1,1,2,,4,4,I believe that BATA is an essential school within the school district because of the unique population of students it serves and how effectively it serves these students. ,7,7,
|
||||
4/27/18 14:34,4/27/18 15:05,IP Address,216.163.221.198,100,1877,TRUE,2018-04-27T15:5:58,R_2xY1yprD9oM8j2N,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,4,3,4,5,5,5,4,,5,3,3,3,3,4,3,4,4,4,4,4,4,4,4,2,1,4,3,4,3,3,4,4,4,3,3,3,1,5,5,3,4,4,4,4,4,4,4,4,4,4,3,3,3,2,4,3,3,4,4,3,3,5,4,4,2,3,4,1,1,1,,3,4,,6,6,
|
||||
4/3/18 12:21,4/3/18 12:57,IP Address,216.163.221.198,35,2198,FALSE,2018-04-10T12:58:0,R_OPPkegCNNawH3K9,,,,,,,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,,,,,,,,,,,,,,,,,2,1,1,5,,,,,,,,,,,,,,3,3,2,2,3,4,1,5,5,4,4,3,4,5,4,4,5,,,,,,,,,,,,5,3,5,,,,1,1,2,,,,,,,
|
||||
4/27/18 10:52,4/27/18 14:59,IP Address,107.77.225.140,100,14782,TRUE,2018-04-27T14:59:5,R_3HMk25uGkmHS2H1,,,,,40.78050232,-73.95120239,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,4,5,5,5,5,3,3,3,4,3,3,3,5,1,5,4,4,4,4,3,3,5,1,1,5,5,5,5,5,3,4,3,3,4,3,2,4,4,4,5,5,3,4,3,4,5,4,5,5,1,1,1,1,5,4,3,4,4,2,3,3,3,4,1,2,2,1,1,1,,4,4,,8,5,
|
||||
4/24/18 14:56,4/27/18 9:50,IP Address,216.163.221.198,100,240839,TRUE,2018-04-27T9:50:48,R_1f7p7wmBE5Ptleh,,,,,42.30589294,-71.08589935,anonymous,EN,Boston Adult Technical Academy,Boston,00350548,5,5,4,5,5,5,3,3,5,2,2,2,3,5,4,3,2,3,3,3,3,2,2,4,4,2,3,3,3,2,1,1,1,2,3,3,1,2,3,2,4,4,3,3,3,4,4,5,4,5,4,1,1,1,3,2,1,2,3,2,2,5,4,4,2,1,2,1,1,1,,3,2,"This year, our school climate has been negatively affected by district-level decision-making, which has been marked by a distinct lack of transparency or communication with stakeholders, from teachers and staff members to students and parents, and even with administration.",7,7,
|
||||
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,22 +0,0 @@
|
|||
StartDate,EndDate,Status,IPAddress,Progress,Duration (in seconds),Finished,RecordedDate,ResponseId,RecipientLastName,RecipientFirstName,RecipientEmail,ExternalReference,LocationLatitude,LocationLongitude,DistributionChannel,UserLanguage,Q121,Q122,Q123,Q124,Q128,Q125,Q126,Q127,Boston School name,DESE ID,t-prep-q1,t-prep-q2,t-prep-q3,t-pcom-q1,t-pcom-q2,t-pcom-q3,t-pcom-q4,t-pcom-q5,t-ieff-q1,t-ieff-q2,t-ieff-q3,t-ieff-q4,t-qupd-q3,t-qupd-q2,t-qupd-q1,t-qupd-q4,t-coll-q1,t-coll-q2,t-coll-q3,t-prtr-q1,t-prtr-q2,t-prtr-q3,t-inle-q1,t-inle-q2,t-inle-q3,t-pvic-q1,t-pvic-q2,t-pvic-q3,t-psup-q1,t-psup-q2,t-psup-q3,t-psup-q4,t-acch-q1,t-acch-q2,t-acch-q3,t-reso-q1,t-reso-q2,t-reso-q3,t-reso-q4,t-reso-q5,t-sust-q1,t-sust-q2,t-sust-q3,t-sust-q4,t-curv-q1,t-curv-q2,t-curv-q3,t-curv-q4,t-cure-q1,t-cure-q2,t-cure-q3,t-cure-q4,t-peng-q1,t-peng-q2,t-peng-q3,t-peng-q4,t-ceng-q1,t-ceng-q2,t-ceng-q3,t-ceng-q4,t-sach-q1,t-sach-q2,t-sach-q3,t-psol-q1,t-psol-q2,t-psol-q3,t-expa-q2,t-expa-q3,t-phya-q2,t-phya-q3,Q81,Q83_1,Q84_1,Q85,,,
|
||||
3/19/19 10:58,3/19/19 11:16,IP Address,216.163.221.198,100,1114,TRUE,2019-03-19T11:16:41,R_sL82bdrNeKBG3JL,,,,,42.27870178,-71.1588974,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,5,4,,4,4,5,5,2,2,3,1,2,2,2,2,3,3,2,2,2,3,3,3,4,2,3,3,5,3,2,3,3,2,2,2,2,2,2,2,3,3,3,2,2,3,2,2,2,3,3,3,4,1,1,1,1,2,2,1,2,2,1,2,3,2,2,3,3,1,1,2,3,,8,6,
|
||||
3/21/19 13:25,3/21/19 13:35,IP Address,216.163.221.198,100,586,TRUE,2019-03-21T13:35:36,R_a63w7TeVFu2k13z,,,124677@boston.k12.ma.us,,42.27870178,-71.1588974,email,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,4,,3,4,5,4,5,5,5,4,4,2,3,3,3,4,4,3,4,3,4,4,4,4,3,3,4,5,5,5,4,3,4,2,4,4,3,3,3,4,3,4,3,4,2,2,3,4,4,3,4,4,1,1,1,4,4,3,4,4,2,2,4,3,3,2,3,1,2,3,3,,6,3,
|
||||
3/21/19 14:17,3/21/19 14:35,IP Address,216.163.221.198,100,1078,TRUE,2019-03-21T14:35:20,R_3imtEQI976Os6Z4,,,,,42.27870178,-71.1588974,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,5,5,,5,5,5,5,5,5,5,4,4,5,4,3,4,5,5,5,5,5,5,5,5,5,2,2,5,5,5,5,5,4,4,3,4,4,5,2,3,4,4,5,4,5,5,4,5,5,5,5,5,3,1,1,1,4,4,2,4,5,3,4,4,4,5,3,4,2,3,4,4,We are really getting good at supporting SLIFE students at gaining literacy and graduating!,9,5,
|
||||
3/22/19 10:16,3/22/19 10:42,IP Address,216.163.221.198,100,1520,TRUE,2019-03-22T10:42:18,R_aWuRvGpahFrSyE9,,,,,42.27870178,-71.1588974,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,4,,4,5,5,5,3,3,5,3,2,3,3,3,1,5,5,4,4,5,4,4,3,3,2,3,4,5,5,5,4,4,4,4,4,4,4,3,2,3,2,3,2,4,4,4,3,4,4,5,5,2,1,1,1,5,5,3,4,5,2,2,4,4,3,1,1,1,1,3,3,My school doesn't do a good job of developing teachers professionally. We rarely get observations and the feedback is not consistent. I would love it if we would plan better to make sure that teachers can develop their practice.,9,5,
|
||||
4/8/19 13:31,4/8/19 13:45,IP Address,216.163.221.198,100,824,TRUE,2019-04-08T13:45:22,R_1FmFeqofsverepv,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,5,5,,5,5,5,5,4,4,5,4,2,4,3,4,2,5,5,4,4,5,4,3,3,2,2,2,4,4,4,4,4,4,4,4,5,5,5,2,2,3,1,3,3,4,5,5,3,5,5,5,5,5,1,1,1,5,3,1,3,5,3,4,4,4,4,2,2,1,1,4,3,"I think that our school works very well together, within our departments. We co-plan daily, and even sit in on each others classes. Official observations however are rare. I don't feel like I get feedback that improves my teaching. ",7,5,
|
||||
4/8/19 17:06,4/8/19 17:16,IP Address,72.74.165.119,100,631,TRUE,2019-04-08T17:16:56,R_De4J6ZgRay10MZb,,,,,42.42799377,-71.0617981,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,5,5,,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,5,2,3,4,5,5,5,5,4,5,3,4,4,4,1,4,5,5,5,4,5,5,4,5,5,5,5,5,4,1,1,1,5,4,2,4,5,4,1,4,4,5,3,5,1,3,4,4,"Our students are overage, and many are parents. Few of their parents participate, because few of our students live with their parents, and many parents are not even in the country.",9,5,
|
||||
4/9/19 12:28,4/9/19 12:42,IP Address,216.163.221.198,100,859,TRUE,2019-04-09T12:42:56,R_9pKtghvuhDdWXW9,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,4,,3,4,4,4,5,5,5,4,4,4,3,4,4,5,4,4,3,3,3,3,3,2,2,2,4,4,4,4,4,3,2,3,4,4,4,1,4,4,2,3,3,4,4,3,3,4,4,4,4,3,1,1,1,5,4,1,4,4,3,4,4,4,3,2,2,1,1,4,3,,,,
|
||||
4/9/19 12:28,4/9/19 12:43,IP Address,216.163.221.198,100,896,TRUE,2019-04-09T12:43:51,R_2f8bsjZlGT0cQYH,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,3,,4,4,4,4,3,4,5,4,4,4,3,4,4,5,4,4,4,2,3,4,3,2,3,3,4,4,4,4,3,3,4,3,3,2,2,1,2,3,1,5,3,4,4,3,4,4,4,3,4,4,1,1,1,4,3,1,3,4,2,2,4,4,4,2,2,1,1,3,3,My answers to the questions about students performing at grade level were affected by the fact that I teach English language learners.,9,3,
|
||||
4/9/19 12:30,4/9/19 12:44,IP Address,216.163.221.198,100,834,TRUE,2019-04-09T12:44:52,R_3IWBziaX8VkE9KM,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,4,,3,5,5,5,3,3,4,3,2,3,4,3,3,3,3,4,2,3,2,4,4,4,3,3,4,4,4,4,3,2,2,3,2,3,1,1,2,4,3,4,1,4,4,3,3,4,5,4,5,4,1,1,1,3,2,1,2,3,2,2,3,4,3,2,2,1,1,3,3,Need clear expectations around seat time and attendance. Need clear expectations around makeup work. Need for more support staff.,7,7,
|
||||
4/9/19 12:35,4/9/19 12:45,IP Address,216.163.221.198,100,582,TRUE,2019-04-09T12:45:7,R_tPwwdaANpkM0bcd,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,4,,4,4,4,4,4,4,5,4,3,3,3,4,3,5,3,4,3,4,3,4,3,2,3,3,4,3,4,4,3,3,4,4,4,4,4,1,2,3,1,4,2,3,4,3,3,4,4,4,4,5,1,1,1,4,3,1,3,3,2,2,4,3,2,2,2,1,1,3,2,We need to consider an attendance requirement for school. We need more support staff to support students with non-academic challenges.,7,5,
|
||||
4/9/19 12:30,4/9/19 12:46,IP Address,216.163.221.198,100,969,TRUE,2019-04-09T12:46:16,R_2YQgyJHapSjx2W3,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,5,,4,4,5,4,5,4,5,4,3,3,3,3,3,4,3,5,4,3,5,3,3,4,2,2,4,4,4,4,3,3,3,3,3,4,3,3,3,4,2,4,3,3,4,2,4,5,5,4,5,4,1,2,1,5,3,2,3,3,3,3,3,3,4,2,3,1,1,4,3,,7,4,
|
||||
4/9/19 12:28,4/9/19 12:49,IP Address,216.163.221.198,100,1232,TRUE,2019-04-09T12:49:21,R_3HI9bV9RM9BqQES,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,5,4,,5,5,5,4,5,5,5,4,5,4,5,5,5,5,5,5,2,4,1,4,4,4,3,3,3,4,4,4,4,2,3,3,3,4,4,1,2,3,1,5,3,4,4,3,3,5,5,5,5,4,1,2,1,5,3,3,4,4,2,2,5,4,4,2,2,2,2,4,2,We have no clear attendance requirement. Students can at any time earn credit up until the day of graduation without attending any classes. This lack of seat-time requirement does not support teaching and learning for many students at our school and we need to address this problem head-on. ,3,5,
|
||||
4/9/19 12:29,4/10/19 9:56,IP Address,216.163.221.198,100,77237,TRUE,2019-04-10T9:56:35,R_roNBPx518p4cS9r,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,5,3,,4,5,5,5,4,5,3,4,2,5,4,4,4,4,2,4,4,4,3,4,4,3,3,3,4,4,4,4,3,3,3,3,4,4,3,1,1,3,1,5,2,3,4,3,3,5,5,4,5,4,1,2,2,5,4,1,5,3,3,2,4,3,3,2,2,1,1,3,3,"I would like to see an established system for students' academic accountability, especially as the issue of attendance is concerned and more support for integrating SE learning in the curriculum.
|
||||
",7,5,
|
||||
4/11/19 2:15,4/12/19 2:54,IP Address,65.96.220.184,100,88727,TRUE,2019-04-12T2:54:10,R_1pAt5X4cCmJUrdH,,,,,42.29040527,-71.07119751,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,4,4,,5,5,5,5,5,5,4,5,2,5,4,4,5,4,4,5,5,5,4,5,5,5,2,2,5,5,5,5,5,4,4,5,3,3,4,2,3,5,4,5,4,5,5,4,4,4,5,4,5,4,1,3,2,5,5,3,5,5,4,4,4,3,5,2,3,1,1,4,4,,7,7,
|
||||
4/23/19 12:04,4/23/19 13:03,IP Address,216.163.221.198,100,3504,TRUE,2019-04-23T13:3:17,R_3iFjPuI1U6erV6z,,,,,42.32530212,-71.0951004,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,4,4,3,,3,4,3,3,5,2,3,2,2,4,4,3,2,3,2,3,3,3,3,3,3,4,2,2,5,3,3,3,3,2,2,2,3,2,3,3,3,3,3,3,3,3,3,2,3,3,3,3,4,3,2,2,1,3,3,3,2,3,3,2,4,2,3,3,3,1,1,3,3,,5,3,
|
||||
4/23/19 11:39,4/23/19 13:27,IP Address,216.163.221.198,100,6487,TRUE,2019-04-23T13:27:38,R_273hWYqRZEUW5nB,,,,,42.32530212,-71.0951004,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,3,4,4,,3,4,4,4,5,5,5,3,4,2,4,3,4,4,3,4,4,3,4,4,4,4,2,2,4,4,5,4,3,4,4,2,4,4,3,3,4,4,3,4,3,4,3,2,3,4,4,4,4,4,1,1,1,4,4,1,4,4,1,1,4,2,3,2,3,1,3,3,3,,5,4,
|
||||
4/29/19 14:45,4/29/19 15:05,IP Address,216.163.220.32,100,1192,TRUE,2019-04-29T15:5:42,R_3lxLTYZsPztKChU,,,,,42.2973938,-71.07219696,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,5,5,,5,5,5,5,5,5,5,4,2,5,5,4,5,5,2,5,5,4,4,4,4,4,1,1,4,4,4,4,4,4,4,4,3,4,4,1,3,4,4,5,5,4,4,4,4,5,5,5,5,5,1,1,1,4,4,2,4,4,3,2,3,3,3,2,3,3,4,3,4,no,8,7,no
|
||||
5/2/19 12:25,5/2/19 12:51,IP Address,216.163.221.198,100,1597,TRUE,2019-05-02T12:51:45,R_268CyGoNbJnIluZ,,,,,42.32530212,-71.0951004,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,4,5,,4,4,5,4,5,5,5,4,3,3,3,3,3,4,3,5,5,4,2,4,4,5,3,3,4,3,3,3,3,3,3,3,3,3,3,1,3,4,3,5,3,3,5,3,4,3,3,5,4,1,2,1,1,4,2,1,3,4,3,3,3,3,2,2,2,1,1,3,3,"Our school is for 18- 22 year olds (young adults) , many of whom are on their own and are themselves parents. Thus parental involvement in student affairs tends to be much lower than at other schools.",7,7,"Specify what you mean by cultural identities. How broad/limited is this category?
|
||||
Also not sure what you mean by ""How confident are you at integrating cultural diversity into your lesson content?""(My paraphrase of the question). I may feel confident to do so but might be limited by resources."
|
||||
3/21/19 13:37,3/21/19 23:06,IP Address,173.48.90.15,66,34125,FALSE,2019-03-29T2:31:8,R_1ouMWymPcZfVJlH,,,,,,,anonymous,EN,Boston,,,,,,,,Boston Adult Technical Academy,00350548,5,5,5,,5,,,,4,5,5,5,5,4,4,4,5,4,5,4,5,4,4,5,5,5,1,2,5,4,4,5,5,4,3,4,,,,,,,,,,4,4,3,3,3,3,4,5,3,1,1,1,,,,,,,,5,4,,3,3,3,3,,,,,,
|
||||
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,530 +0,0 @@
|
|||
StartDate,EndDate,Status,Progress,Duration (in seconds),Finished,RecordedDate,ResponseId,LocationLatitude,LocationLongitude,DistributionChannel,UserLanguage,District,DESE ID,t-prep-q1,t-prep-q2,t-prep-q3,t-pcom-q1,t-pcom-q2,t-pcom-q3,t-pcom-q4,t-pcom-q5,t-ieff-q1,t-ieff-q2,t-ieff-q3,t-ieff-q4,t-qupd-q3,t-qupd-q2,t-qupd-q1,t-qupd-q4,t-coll-q1,t-coll-q2,t-coll-q3,t-prtr-q1,t-prtr-q2,t-prtr-q3,t-inle-q1,t-inle-q2,t-inle-q3,t-pvic-q1,t-pvic-q2,t-pvic-q3,t-psup-q1,t-psup-q2,t-psup-q3,t-psup-q4,t-acch-q1,t-acch-q2,t-acch-q3,t-reso-q1,t-reso-q2,t-reso-q3,t-reso-q4,t-reso-q5,t-sust-q1,t-sust-q2,t-sust-q3,t-sust-q4,t-curv-q1,t-curv-q2,t-curv-q3,t-curv-q4,t-cure-q1,t-cure-q2,t-cure-q3,t-cure-q4,t-peng-q1,t-peng-q2,t-peng-q3,t-peng-q4,t-ceng-q1,t-ceng-q2,t-ceng-q3,t-ceng-q4,t-sach-q1,t-sach-q2,t-sach-q3,t-psol-q1,t-psol-q2,t-psol-q3,t-expa-q2,t-expa-q3,t-phya-q2,t-phya-q3,
|
||||
4/6/2022 17:34:00,4/10/2022 15:47:00,0,100,339174,1,2022-04-10T15:47:0,R_1l3MFX0OwrCmhuG,42.15100098,-71.646698,anonymous,EN,1,160505,5,5,5,2,5,5,4,4,5,5,5,4,5,5,1,1,1,1,3,4,1,4,5,5,4,5,5,5,3,1,4,3,1,4,1,1,1,1,1,,5,2,4,4,2,5,1,4,4,5,5,4,5,1,1,1,5,5,1,3,1,1,1,4,3,4,3,5,3,3,
|
||||
4/13/2022 16:07:00,4/13/2022 16:16:00,0,36,514,0,2022-04-20T16:17:0,R_XHfz112mwJG0MnL,,,anonymous,EN,1,160050,5,5,5,,,,,,,,,,,,,,1,1,1,,,,,,,4,5,4,,,,,1,2,,,,,,,,,,,,,,,,,,,5,3,2,1,,,,,,,,3,4,2,,,,,
|
||||
4/6/2022 14:10:00,4/6/2022 14:43:00,0,100,1987,1,2022-04-06T14:43:0,R_3jTItYjjuh6lU5i,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,5,2,5,1,1,5,5,5,5,1,1,2,1,3,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,3,2,4,1,1,1,,1,4,1,5,3,4,,5,,4,5,5,5,5,2,2,1,2,3,1,2,,,,1,2,1,2,3,2,2,
|
||||
4/27/2022 9:59:00,4/27/2022 10:54:00,0,100,3309,1,2022-04-27T10:54:0,R_3PbOhE1LKlN6NNU,42.3611,-71.0518,anonymous,EN,1,160050,,,,5,5,5,5,,,,,,1,1,1,1,4,5,5,1,1,1,1,2,1,4,5,4,2,2,2,2,4,4,4,,3,3,3,4,,,,,,,,,,,,,,,,,3,2,4,3,,,,2,2,4,,,,,
|
||||
4/13/2022 16:06:00,4/13/2022 16:15:00,0,100,521,1,2022-04-13T16:15:0,R_2WN26orS960GjzJ,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,5,5,5,5,2,5,5,5,5,1,1,1,2,3,5,1,3,2,3,3,3,3,5,5,4,4,4,3,3,4,4,4,2,2,2,1,5,5,2,2,3,4,,1,,5,4,4,4,5,4,3,3,1,3,2,4,,,,1,1,1,2,2,1,2,
|
||||
4/13/2022 16:05:00,4/13/2022 16:13:00,0,100,444,1,2022-04-13T16:13:0,R_yXeHaBI0UvKhM9r,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,2,2,3,2,2,5,5,5,5,1,3,1,1,2,2,2,2,2,2,1,2,1,3,4,3,5,5,4,3,4,4,1,2,5,5,2,4,5,3,5,5,3,,3,,5,4,4,4,5,3,3,2,1,4,2,2,,,,4,3,1,2,3,5,5,
|
||||
4/13/2022 15:45:00,4/13/2022 15:52:00,0,100,425,1,2022-04-13T15:52:0,R_xEPwwZQU36LexqN,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,3,4,5,5,,,,,,4,2,1,2,,,,3,3,2,,,,4,5,1,3,4,3,2,,,,1,1,1,2,4,4,1,4,2,,,,,,,,,5,4,4,5,5,5,4,5,,,,,,,3,2,3,3,
|
||||
4/6/2022 11:24:00,4/6/2022 11:38:00,0,100,826,1,2022-04-06T11:38:0,R_zUS3sAD8upOu4MN,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,5,2,,,,,,1,1,1,1,,,,1,1,1,,,,1,1,1,3,3,4,3,,,,2,2,3,1,3,4,1,4,4,,,,,,,,,5,3,3,3,3,3,2,3,,,,,,,4,5,3,4,
|
||||
4/6/2022 7:25:00,4/6/2022 7:34:00,0,100,582,1,2022-04-06T7:34:0,R_3P4uZdnRXAosivK,41.9261,-71.3011,anonymous,EN,1,160505,4,5,5,5,5,5,3,1,5,4,4,5,1,2,1,1,2,1,4,1,1,1,1,1,1,2,2,2,1,1,2,1,2,2,2,2,2,1,1,2,4,1,3,3,4,4,4,4,3,3,3,4,5,2,2,2,3,2,2,2,2,2,2,3,3,2,4,5,3,5,
|
||||
4/6/2022 14:51:00,4/6/2022 15:05:00,0,100,829,1,2022-04-06T15:5:0,R_2CWKyhSr1IKJebt,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,2,4,2,5,5,5,5,5,5,4,5,5,1,4,2,3,2,3,3,3,1,5,5,1,3,4,3,3,3,2,2,1,2,3,3,4,3,4,4,2,5,,5,,2,2,2,2,3,3,3,2,2,3,3,4,,,,1,2,1,1,1,2,2,
|
||||
4/6/2022 15:24:00,4/6/2022 15:35:00,0,100,694,1,2022-04-06T15:35:0,R_22VyNs8qy5YbpOg,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,4,1,5,5,5,5,5,1,1,2,1,4,3,2,1,1,2,1,1,1,2,2,3,4,3,3,3,3,3,3,2,1,1,3,1,5,1,4,3,4,4,4,4,2,2,2,2,3,4,4,3,4,4,3,3,3,3,3,5,3,3,3,5,5,4,
|
||||
4/6/2022 7:44:00,4/6/2022 8:06:00,0,100,1302,1,2022-04-06T8:6:0,R_2t4ocyMimbCLkaV,41.9261,-71.3011,anonymous,EN,1,160505,3,4,3,2,2,4,1,1,5,5,5,2,1,2,2,1,2,2,2,1,1,1,2,2,1,5,5,5,2,1,4,3,1,1,2,1,2,2,4,4,2,5,5,4,1,3,1,2,4,3,2,2,1,2,2,1,4,3,,3,3,1,1,4,2,2,2,4,3,4,
|
||||
4/6/2022 7:30:00,4/6/2022 7:43:00,0,100,794,1,2022-04-06T7:43:0,R_1I6DGP7jDdAeKn1,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,2,2,4,2,2,5,5,5,5,2,2,4,3,3,2,2,2,2,3,1,1,1,2,2,1,2,2,2,2,2,1,4,1,1,1,4,1,2,1,1,1,3,5,3,3,5,4,4,5,4,2,2,2,1,1,1,2,2,3,3,3,3,3,4,4,4,4,
|
||||
3/30/2022 15:09:00,3/30/2022 15:17:00,0,100,447,1,2022-03-30T15:17:0,R_1lahwcbSOXZV47Q,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,3,2,5,4,2,5,5,5,5,2,3,2,2,4,3,4,2,2,2,2,2,2,3,3,1,2,2,2,1,4,3,5,4,2,4,4,4,5,1,4,4,4,4,4,4,2,1,2,1,5,2,2,1,2,2,1,3,1,1,1,4,4,4,3,3,3,3,
|
||||
4/13/2022 16:18:00,4/13/2022 16:32:00,0,100,820,1,2022-04-13T16:32:0,R_9AnvP0C3osB2DM5,41.9261,-71.3011,anonymous,EN,1,160050,3,5,4,5,5,2,1,1,5,4,3,3,2,2,3,2,4,2,2,1,1,1,1,1,1,4,5,3,2,2,2,2,2,3,2,1,2,1,2,2,4,5,1,1,4,,5,,2,3,4,4,5,3,3,1,2,1,2,1,,,,3,3,4,2,3,4,3,
|
||||
4/6/2022 9:45:00,4/6/2022 10:13:00,0,100,1675,1,2022-04-06T10:13:0,R_1pPOmLSkBBsFIbo,41.6669,-72.7726,anonymous,EN,1,160505,5,5,5,3,2,4,3,1,3,4,4,3,2,2,1,1,3,2,2,2,1,2,1,2,1,2,2,2,3,1,3,1,3,4,2,2,1,1,1,1,4,1,1,4,,,,,3,3,2,5,5,5,3,1,3,1,1,2,,,,2,1,1,1,1,4,4,
|
||||
4/13/2022 16:06:00,4/13/2022 16:19:00,0,100,779,1,2022-04-13T16:19:0,R_YPSY89cJrFwmNhL,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,1,2,4,1,1,4,4,5,4,2,1,1,1,2,2,1,1,1,1,1,1,1,3,5,2,4,4,3,3,1,1,1,1,2,1,2,3,3,2,1,1,2,,4,,3,2,2,3,5,2,2,1,1,1,1,1,,,,1,2,1,3,3,3,3,
|
||||
4/6/2022 14:27:00,4/6/2022 15:06:00,0,100,2346,1,2022-04-06T15:6:0,R_2wi4uLeAWGt0EH9,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,4,4,2,5,5,5,5,2,2,3,2,3,3,4,1,1,1,1,2,1,3,3,4,4,3,4,3,3,3,3,2,1,1,2,3,2,1,2,4,4,4,4,4,3,2,1,1,4,4,3,4,1,3,2,3,3,5,4,3,5,5,3,5,3,5,
|
||||
4/6/2022 7:23:00,4/6/2022 7:37:00,0,100,858,1,2022-04-06T7:37:0,R_10OVrKCV8ksACw5,41.9261,-71.3011,anonymous,EN,1,160505,3,3,3,4,4,5,3,2,3,2,3,3,1,1,1,1,2,2,4,3,1,1,3,3,1,1,2,1,2,4,2,2,2,2,4,1,1,1,1,1,4,1,3,2,2,2,5,2,3,3,3,5,5,5,3,5,1,1,1,3,2,2,2,3,3,3,1,5,1,5,
|
||||
4/6/2022 14:40:00,4/6/2022 14:52:00,0,100,710,1,2022-04-06T14:52:0,R_DCV7ufmmxi1rOXT,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,2,3,1,4,4,4,4,1,2,1,1,1,2,1,3,2,3,2,2,1,5,5,3,3,3,3,3,3,3,3,2,1,2,1,1,2,1,4,4,4,,4,,3,4,3,4,5,1,2,1,4,3,3,3,,,,5,2,1,1,3,3,4,
|
||||
4/13/2022 16:05:00,4/13/2022 16:17:00,0,100,685,1,2022-04-13T16:17:0,R_d0TQ2M0q1XflU1X,41.9261,-71.3011,anonymous,EN,1,160050,3,4,4,2,2,4,2,1,4,4,2,4,1,3,3,1,1,1,1,1,1,1,1,1,1,3,4,4,4,4,3,2,1,1,1,1,2,1,2,3,4,1,3,1,3,,2,,4,3,5,3,5,3,1,1,2,1,1,1,,,,4,3,4,3,3,4,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:33:00,0,100,676,1,2022-04-13T16:33:0,R_279d65QqxtB54Ev,41.9261,-71.3011,anonymous,EN,1,160045,5,5,4,2,2,1,1,1,5,4,4,4,2,2,3,3,1,1,2,5,5,5,2,2,1,4,5,4,3,3,3,3,1,3,1,3,2,1,3,2,3,4,2,4,5,5,5,4,4,4,4,3,5,3,2,1,4,3,1,2,3,3,3,2,4,4,3,3,3,3,
|
||||
3/30/2022 15:09:00,3/30/2022 21:26:00,0,100,22597,1,2022-03-30T21:26:0,R_A0Sotd7rO9Qv6db,42.05900574,-71.11229706,anonymous,EN,1,160315,5,5,5,5,5,5,5,2,4,5,5,5,4,4,2,2,5,2,4,5,5,5,5,5,5,2,2,1,2,2,2,2,4,3,4,3,3,5,3,3,4,1,4,3,4,5,5,5,2,2,3,4,5,2,2,2,4,4,3,2,1,2,2,3,3,3,3,3,3,3,
|
||||
4/12/2022 18:56:00,4/13/2022 13:30:00,0,100,66804,1,2022-04-13T13:30:0,R_2ykBjcfZRdaAlad,41.9261,-71.3011,anonymous,EN,1,160515,4,4,5,5,5,4,4,,,,,,4,3,4,5,,,,5,5,5,,,,5,5,5,3,3,4,4,,,,3,3,2,5,3,5,2,5,5,,,,,,,,,2,1,1,1,3,3,4,3,,,,,,,2,2,2,3,
|
||||
4/27/2022 13:08:00,4/27/2022 13:18:00,0,100,631,1,2022-04-27T13:18:0,R_1OZbtKaG1h487jj,41.9261,-71.3011,anonymous,EN,1,160050,5,5,4,3,3,5,3,1,5,5,5,5,2,1,2,2,2,2,5,1,1,1,1,1,1,3,3,3,4,4,4,3,4,3,4,4,3,4,5,4,4,2,4,3,5,5,5,5,4,4,4,5,5,3,3,1,4,3,4,4,3,3,3,2,4,4,3,4,4,4,
|
||||
4/13/2022 16:06:00,4/13/2022 16:19:00,0,100,795,1,2022-04-13T16:19:0,R_sjRmTtTwNVbe8gx,41.9261,-71.3011,anonymous,EN,1,160050,3,3,5,1,2,4,3,2,3,3,3,3,3,3,3,,1,2,1,2,1,3,1,1,1,5,5,4,4,5,5,4,3,2,4,2,2,2,3,3,5,4,5,5,3,,3,,4,4,4,5,5,3,3,1,2,3,1,3,,,,3,4,4,4,4,5,5,
|
||||
4/6/2022 8:40:00,4/6/2022 8:49:00,0,100,556,1,2022-04-06T8:49:0,R_2P4OXEWdedbNqbF,42.3498,-71.0765,anonymous,EN,1,160505,5,5,5,3,3,5,3,,,,,,2,2,1,1,,,,3,3,3,,,,3,3,3,3,3,3,3,,,,2,1,1,1,1,3,1,2,1,,,,,,,,,5,1,3,1,2,2,2,2,,,,,,,1,1,1,1,
|
||||
3/30/2022 14:33:00,3/30/2022 14:40:00,0,100,428,1,2022-03-30T14:40:0,R_22CUuZuNjDC2SNb,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,3,4,5,1,,,,,,1,3,1,2,,,,3,4,4,,,,4,4,3,3,3,2,3,,,,1,1,2,2,4,4,1,2,1,,,,,,,,,5,3,3,1,2,3,2,3,,,,,,,2,2,2,2,
|
||||
4/27/2022 13:22:00,4/27/2022 13:30:00,0,100,509,1,2022-04-27T13:30:0,R_2sYYgWojAyzoii8,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,5,5,5,5,1,5,5,5,4,3,3,4,3,4,3,5,1,1,1,3,3,1,4,5,3,5,5,4,4,5,5,3,3,3,4,3,3,5,1,1,1,5,4,5,4,4,3,4,4,3,4,4,1,5,5,3,4,3,3,3,3,4,4,3,3,3,4,
|
||||
4/6/2022 10:17:00,4/6/2022 10:29:00,0,100,763,1,2022-04-06T10:29:0,R_1E6de87QFdsmbwM,41.8307,-71.3982,anonymous,EN,1,160515,5,5,5,5,5,4,5,,,,,,4,4,5,5,,,,5,4,5,,,,3,4,4,3,3,4,4,,,,4,3,3,4,2,4,3,4,4,,,,,,,,,2,1,1,1,3,5,1,3,,,,,,,2,2,2,3,
|
||||
4/6/2022 14:44:00,4/6/2022 15:01:00,0,100,1047,1,2022-04-06T15:1:0,R_28ZCnc6N3enEnTv,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,3,4,2,5,4,5,4,1,1,1,1,3,1,1,1,1,1,1,1,1,3,,3,2,3,3,3,1,2,1,4,3,3,3,3,2,1,3,3,1,4,1,2,3,3,3,3,4,2,,,3,3,,,1,1,1,2,2,2,,,,,
|
||||
4/13/2022 15:45:00,4/13/2022 16:17:00,0,100,1890,1,2022-04-13T16:17:0,R_ApWRo2ECUsCy8U1,41.9261,-71.3011,anonymous,EN,1,160035,5,5,4,4,4,4,3,2,5,5,5,5,3,5,3,3,3,2,3,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,4,5,5,5,4,2,1,2,2,4,4,4,4,5,4,5,5,2,4,2,1,5,3,2,5,1,1,1,4,4,4,2,3,3,3,
|
||||
4/27/2022 8:50:00,4/27/2022 9:19:00,0,100,1746,1,2022-04-27T9:19:0,R_27vqdieTNASRyQr,41.9261,-71.3011,anonymous,EN,1,160050,4,4,4,5,5,5,2,1,4,3,4,3,3,2,2,3,3,2,4,1,1,1,1,1,2,3,4,2,2,4,4,1,1,2,1,3,4,4,2,4,3,1,2,2,,,,,5,2,2,5,1,3,3,4,4,4,3,2,,,,1,2,1,2,2,3,3,
|
||||
4/6/2022 20:20:00,4/6/2022 20:37:00,0,100,1021,1,2022-04-06T20:37:0,R_2Bmp9ZmpUg26C4H,42.0713,-71.478,anonymous,EN,1,160515,3,3,4,5,5,5,5,,,,,,3,4,4,4,,,,5,5,5,,,,4,4,4,3,3,4,4,,,,3,3,2,2,2,3,1,3,3,,,,,,,,,1,,,,2,2,,2,,,,,,,1,3,1,2,"Why do these final questions have doubles of some numbers? (5 5, 5 5, and 3 3 7 7). Also, some of the questions were truly not applicable to how our small, alternative school runs, so having an N/A button or similar might be helpful in some cases."
|
||||
4/26/2022 21:43:00,4/26/2022 21:58:00,0,100,897,1,2022-04-26T21:58:0,R_2dgdYRWrGcLZpgJ,41.9261,-71.3011,anonymous,EN,1,160050,5,5,4,5,5,5,4,2,4,3,4,5,1,1,2,1,4,4,4,1,1,1,1,2,1,2,2,3,4,4,4,4,4,4,4,2,2,3,3,4,5,1,3,3,1,3,4,4,3,4,4,4,4,3,3,1,4,4,5,4,3,3,3,2,3,3,2,3,3,3,
|
||||
4/6/2022 14:37:00,4/6/2022 14:57:00,0,100,1214,1,2022-04-06T14:57:0,R_1j8L88lrHAR2F9U,41.7505,-71.2089,anonymous,EN,1,160505,4,4,4,4,4,2,4,1,4,3,4,4,2,1,4,1,2,1,2,5,5,5,5,5,5,5,5,5,2,2,4,4,3,3,3,3,4,3,3,2,4,2,2,2,3,2,3,4,2,2,4,3,3,1,1,1,4,3,2,2,3,3,3,4,2,2,4,5,4,5,
|
||||
4/6/2022 7:25:00,4/6/2022 7:39:00,0,100,838,1,2022-04-06T7:39:0,R_31zxoJbZxQYii83,41.9261,-71.3011,anonymous,EN,1,160505,3,3,4,3,3,4,2,2,3,4,2,3,4,2,4,3,2,1,2,4,2,4,1,1,1,3,4,2,2,4,3,1,2,2,3,2,2,3,2,2,1,1,2,1,3,,2,,5,5,5,5,5,1,1,1,2,2,1,1,,,,3,2,3,4,5,3,4,
|
||||
4/6/2022 14:48:00,4/6/2022 15:00:00,0,100,686,1,2022-04-06T15:0:0,R_3kFxVd9rTXdR4pu,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,3,5,3,,,,,,2,1,1,1,,,,4,3,4,,,,3,3,2,4,3,4,3,,,,4,4,4,4,3,3,1,4,1,,,,,,,,,5,3,2,1,3,3,2,2,,,,,,,4,5,3,4,This survey has very little to do with my role as a support staff. Stop asking me about questions my teaching
|
||||
3/30/2022 15:09:00,3/30/2022 15:19:00,0,100,603,1,2022-03-30T15:19:0,R_3lYYA9roJ7Lj3oU,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,5,2,2,5,3,,,,,,1,2,2,1,,,,5,5,4,,,,3,2,1,3,3,3,2,,,,2,3,3,1,1,2,1,2,2,,,,,,,,,5,3,3,2,3,4,3,4,,,,,,,2,3,2,3,
|
||||
4/6/2022 14:39:00,4/6/2022 14:49:00,0,100,600,1,2022-04-06T14:49:0,R_DPkLQRFVGswZhzH,42.3498,-71.0765,anonymous,EN,1,160505,5,5,5,4,4,4,3,1,5,5,5,5,4,5,5,5,2,2,4,1,1,1,1,1,1,3,3,3,4,4,4,4,4,3,3,4,2,1,2,3,3,2,2,2,3,4,4,4,3,3,4,4,3,3,4,2,3,3,3,3,3,4,3,4,4,4,5,5,4,5,
|
||||
4/6/2022 13:39:00,4/6/2022 14:01:00,0,100,1338,1,2022-04-06T14:1:0,R_3qQnw5ZZq2ZqOlt,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,2,4,4,2,4,4,5,4,1,2,1,2,1,5,4,3,5,5,2,2,3,4,3,4,4,4,4,4,4,4,4,3,3,5,5,1,3,5,5,4,3,,4,,3,3,4,4,5,1,1,1,4,4,2,4,,,,3,3,2,3,3,3,4,
|
||||
4/27/2022 10:40:00,4/27/2022 10:54:00,0,100,786,1,2022-04-27T10:54:0,R_20UN3mPt2fzCBFu,41.9261,-71.3011,anonymous,EN,1,160050,2,2,4,2,2,4,2,2,3,3,3,3,2,4,2,2,1,2,2,1,1,2,1,1,1,3,3,4,5,5,5,5,3,3,3,2,4,3,2,3,4,1,2,2,,,,,4,4,4,5,5,2,1,2,2,2,2,3,,,,4,2,2,3,5,3,5,I think it was hard to answer questiuons about of the teachers collaborate when im in a complete sub seperate classroom and have no idea how the other teachers interact. Maybe if you made a survey for genereal education and then sub seperate
|
||||
4/6/2022 14:53:00,4/6/2022 15:07:00,0,100,868,1,2022-04-06T15:7:0,R_cZyfP4quoKUiSTD,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,3,3,1,5,4,5,4,4,2,3,2,3,3,4,3,1,4,1,1,1,3,3,4,3,3,4,4,4,2,3,3,2,5,3,3,3,2,4,4,5,4,4,1,2,2,1,3,3,3,3,2,3,2,2,3,5,4,4,3,5,5,4,5,5,5,
|
||||
4/6/2022 14:47:00,4/6/2022 14:58:00,0,100,671,1,2022-04-06T14:58:0,R_1dgagL8VaEuhBXm,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,3,2,4,1,,,,,,1,2,2,1,,,,1,1,2,,,,1,1,2,4,3,4,3,,,,2,3,3,2,2,2,1,3,3,,,,,,,,,5,3,2,1,3,3,2,3,,,,,,,4,4,4,4,Too broad a category. Some teach. Some do not. many different roles.
|
||||
4/13/2022 16:05:00,4/13/2022 16:24:00,0,100,1093,1,2022-04-13T16:24:0,R_0CWhbHOaDTYd40V,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,4,3,5,3,3,4,4,5,4,1,3,2,4,3,5,5,1,1,1,1,2,1,5,5,3,4,4,3,3,3,3,4,2,2,2,3,4,4,4,3,4,1,,4,,4,4,4,4,5,3,3,1,3,4,3,4,,,,4,3,2,5,5,3,3,
|
||||
4/13/2022 14:00:00,4/14/2022 8:00:00,0,100,64796,1,2022-04-14T8:0:0,R_3MLhumNwPXtTgIl,41.9739,-71.3284,anonymous,EN,1,160315,5,5,5,2,2,2,2,2,5,4,5,5,3,4,2,1,2,3,4,2,1,,4,4,2,5,5,3,3,2,2,2,3,3,3,3,3,3,3,2,5,3,5,5,3,,4,,3,4,4,4,1,2,2,2,5,3,2,3,,,,3,3,2,3,3,1,1,
|
||||
4/27/2022 9:10:00,4/27/2022 9:28:00,0,82,1063,0,2022-05-04T9:43:0,R_2CBaJq0tW96mwyx,,,anonymous,EN,1,160050,,,,,,1,,1,4,4,5,,3,2,2,1,,,,1,1,1,1,,1,,,3,3,3,3,2,3,,2,,,,,,5,1,3,3,,,,,,,,,1,3,,,4,4,,,,,,3,3,3,3,3,4,4,
|
||||
4/6/2022 7:33:00,4/6/2022 7:38:00,0,100,323,1,2022-04-06T7:38:0,R_23aAKwMyJaHAtPj,41.9261,-71.3011,anonymous,EN,1,160505,3,4,4,2,2,,1,1,3,4,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,4,5,4,5,2,2,2,1,1,1,1,1,3,3,3,3,3,3,3,5,1,5,
|
||||
4/6/2022 14:25:00,4/6/2022 14:50:00,0,100,1498,1,2022-04-06T14:50:0,R_AhzYs1EKSl6uXdv,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,4,4,3,2,5,5,4,4,1,2,1,2,4,4,4,1,1,1,3,3,1,2,2,1,2,2,3,2,3,3,3,3,3,4,4,1,2,2,2,3,3,,2,,3,3,3,4,5,1,1,1,2,3,3,3,,,,1,2,2,3,4,3,3,
|
||||
4/14/2022 13:59:00,4/14/2022 14:19:00,0,100,1202,1,2022-04-14T14:19:0,R_RQCX2BaIPQfWAY9,41.9261,-71.3011,anonymous,EN,1,160035,4,5,5,4,3,3,4,1,4,3,3,4,1,1,1,1,3,1,1,1,1,1,1,1,2,2,4,1,1,2,3,2,1,3,1,3,2,1,3,3,5,1,3,3,,,,,4,2,2,4,1,2,2,1,3,2,1,2,,,,2,2,1,3,3,3,3,
|
||||
4/6/2022 14:42:00,4/6/2022 15:04:00,0,100,1323,1,2022-04-06T15:4:0,R_1oAyoSEhlKmlaHi,41.9261,-71.3011,anonymous,EN,1,160505,4,,5,5,4,3,4,4,4,4,5,3,4,3,,4,3,3,3,2,2,3,1,1,2,1,1,4,3,3,3,1,3,3,2,4,4,4,3,4,4,1,4,5,,,,,5,5,5,5,5,2,3,2,4,4,2,1,,,,2,3,3,4,4,4,3,
|
||||
4/6/2022 11:11:00,4/6/2022 11:54:00,0,100,2546,1,2022-04-06T11:54:0,R_1SRLaem7tTriOYx,41.9261,-71.3011,anonymous,EN,1,160505,5,5,2,2,4,4,2,2,5,4,5,2,1,2,1,1,2,1,2,2,2,1,1,1,2,3,3,1,2,2,2,1,1,1,1,1,1,1,3,4,1,2,3,1,1,1,1,1,2,2,2,3,4,2,2,,4,3,,4,2,1,2,2,2,1,,,,,
|
||||
4/1/2022 7:18:00,4/1/2022 7:38:00,0,100,1170,1,2022-04-01T7:38:0,R_9v2uxTVtW0R4iJj,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,5,3,3,5,4,4,5,4,4,4,1,1,1,1,5,3,3,5,5,4,4,4,4,3,3,2,2,3,2,1,2,1,3,2,2,1,4,4,4,1,3,2,3,3,3,3,4,3,3,4,4,2,2,2,3,3,3,4,1,2,2,4,4,4,3,3,1,3,
|
||||
4/7/2022 4:40:00,4/7/2022 4:52:00,0,100,694,1,2022-04-07T4:52:0,R_9TPBWxdo4HfFoZj,42.0648,-71.2504,anonymous,EN,1,160505,5,5,5,3,3,5,4,3,5,4,5,4,5,3,5,4,5,2,4,4,5,3,2,2,1,3,3,2,2,2,2,1,3,3,3,4,2,2,3,2,5,1,4,3,4,4,4,4,2,3,3,4,2,2,2,1,1,3,1,3,3,3,3,2,3,3,2,2,2,2,
|
||||
4/24/2022 16:44:00,4/24/2022 16:59:00,0,100,919,1,2022-04-24T16:59:0,R_yWpVMqg2mzsuoSt,41.8515,-71.2545,anonymous,EN,1,160040,3,1,2,4,2,4,3,1,3,2,1,3,3,3,2,1,5,2,4,4,4,4,4,4,4,5,5,4,4,4,5,4,1,3,1,3,3,2,3,4,4,2,2,2,,,,,3,3,3,3,1,2,2,1,3,2,1,2,,,,1,1,1,3,3,2,3,Many questions are not appropriate for me to answer. There should be a choice for 'not applicable'. Having to choose an answer affects the value of your survey results.
|
||||
4/26/2022 8:29:00,4/26/2022 10:55:00,0,100,8771,1,2022-04-26T10:55:0,R_12bUPEXgt890wsj,41.9261,-71.3011,anonymous,EN,1,160040,5,4,4,5,5,4,4,1,4,3,4,4,1,1,3,2,5,4,5,1,4,1,1,1,1,5,5,4,3,4,3,3,4,4,3,3,4,4,3,3,4,2,4,4,3,4,4,4,4,4,4,3,5,4,3,2,4,3,1,2,1,3,3,4,3,3,3,4,4,4,
|
||||
4/27/2022 9:33:00,4/27/2022 9:49:00,0,100,963,1,2022-04-27T9:49:0,R_2sdwVjCa8vcZs31,41.9261,-71.3011,anonymous,EN,1,160050,4,3,4,3,2,4,3,1,4,4,4,3,1,1,1,1,4,3,2,1,1,1,1,1,1,5,5,2,2,2,1,1,1,3,1,1,3,3,1,2,1,1,2,2,,,,,3,3,3,3,3,1,1,1,2,2,1,2,,,,2,2,3,3,3,4,4,A lot of the questions don't apply to my duties or my role as a paraprofessional. There needs to be a N/A category.
|
||||
4/14/2022 13:51:00,4/14/2022 14:20:00,0,100,1752,1,2022-04-14T14:20:0,R_dolozACGwMgOGTn,41.9261,-71.3011,anonymous,EN,1,160035,4,4,4,3,4,3,1,1,4,5,3,3,1,1,1,1,4,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,1,2,2,3,2,2,1,1,5,1,1,4,,,,,1,1,3,3,1,2,1,1,4,3,2,2,,,,2,1,1,3,3,3,4,Mostly geared to teachers.
|
||||
4/13/2022 16:05:00,4/13/2022 16:16:00,0,92,660,0,2022-04-20T16:24:0,R_9Y87dUEvwGTRMvT,,,anonymous,EN,1,160050,4,4,4,4,2,5,2,3,4,4,4,3,2,2,1,3,4,2,3,2,1,2,2,1,1,5,5,5,4,4,4,4,2,3,3,2,1,3,3,4,3,2,2,2,2,,2,,1,1,1,3,3,2,2,2,4,3,2,3,,,,1,1,1,1,2,2,3,
|
||||
4/6/2022 14:50:00,4/6/2022 15:06:00,0,100,1004,1,2022-04-06T15:6:0,R_3NFoQFYFg6uGQBl,41.9261,-71.3011,anonymous,EN,1,160505,2,3,4,2,2,2,1,1,4,4,4,3,4,4,4,2,2,1,2,4,4,4,4,4,4,3,3,3,3,1,2,3,2,2,4,2,3,4,1,2,3,4,4,4,3,,4,,4,3,4,4,5,3,5,1,1,3,2,2,,,,1,1,1,4,4,4,5,
|
||||
4/14/2022 10:52:00,4/14/2022 11:14:00,0,100,1327,1,2022-04-14T11:14:0,R_rpDlizCWvp9Qif7,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,4,5,5,5,3,5,5,5,5,5,4,3,4,5,5,4,5,4,3,5,5,5,3,3,4,4,5,3,3,4,4,5,3,4,5,4,5,5,4,4,5,,,,,5,5,5,5,1,1,1,1,4,4,5,5,,,,3,5,4,2,2,2,3,
|
||||
4/12/2022 12:06:00,4/12/2022 12:31:00,0,100,1506,1,2022-04-12T12:31:0,R_bl1lpLTyl4XZMpH,41.92610168,-71.30110168,anonymous,EN,1,160515,5,5,5,5,5,4,5,,,,,,5,5,5,5,,,,5,5,5,,,,4,4,4,4,4,4,4,,,,3,3,4,2,2,5,5,5,5,,,,,,,,,4,2,2,2,2,3,2,3,,,,,,,2,3,2,3,
|
||||
4/27/2022 9:54:00,4/27/2022 10:04:00,0,100,556,1,2022-04-27T10:4:0,R_2ZOLHZlbokGcHKj,41.9261,-71.3011,anonymous,EN,1,160050,4,5,5,4,5,5,4,2,5,5,4,5,4,4,4,3,4,2,4,1,4,1,1,3,3,5,5,4,3,3,3,3,3,3,4,3,2,3,4,4,5,2,4,5,4,,4,,4,3,4,5,5,2,3,1,3,4,4,4,,,,2,2,1,2,3,4,5,
|
||||
4/13/2022 16:06:00,4/13/2022 16:22:00,0,100,944,1,2022-04-13T16:22:0,R_2YxNKV32BeyDkvi,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,5,4,4,4,1,4,4,5,4,3,4,3,1,3,2,4,1,1,1,1,2,1,3,3,3,4,4,3,3,3,3,3,3,2,2,2,3,2,1,2,2,4,4,4,4,3,4,5,4,5,5,2,1,3,3,2,3,2,2,2,3,4,3,3,3,4,4,
|
||||
4/12/2022 10:26:00,4/12/2022 10:38:00,0,100,727,1,2022-04-12T10:38:0,R_2pMIOOmItBkBKok,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,5,4,5,5,2,4,4,4,5,2,2,3,2,3,3,3,5,5,4,4,4,5,2,1,3,3,4,3,3,4,3,2,2,3,3,2,3,4,1,2,2,5,5,5,5,5,5,5,5,3,5,4,3,3,3,3,4,1,3,4,5,4,4,4,5,3,4,
|
||||
4/6/2022 15:15:00,4/6/2022 15:27:00,0,100,711,1,2022-04-06T15:27:0,R_3kAn0f0ohVbTnB3,41.9261,-71.3011,anonymous,EN,1,160505,5,5,4,2,2,2,1,1,4,4,4,4,1,3,1,1,2,3,2,1,1,1,3,2,1,4,4,4,3,3,4,3,4,3,4,2,2,2,1,2,3,5,3,3,4,4,4,4,3,3,4,4,1,2,2,1,3,3,2,3,3,3,3,3,3,3,3,5,3,5,
|
||||
4/13/2022 16:06:00,4/13/2022 16:28:00,0,100,1285,1,2022-04-13T16:28:0,R_2BtWXR2QKzbH0by,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,4,3,3,3,4,5,5,4,1,4,2,2,3,3,4,1,1,1,1,1,2,5,5,4,3,3,3,3,4,4,4,3,3,3,3,3,5,2,3,3,4,,4,,4,3,4,4,3,3,2,1,5,5,,4,,,,3,3,3,3,4,4,5,
|
||||
3/30/2022 14:34:00,3/30/2022 14:49:00,0,100,890,1,2022-03-30T14:49:0,R_RfUvMip6eACVvCF,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,2,4,3,4,2,5,5,4,5,2,4,2,2,3,1,3,5,5,5,5,5,3,3,3,3,3,3,3,3,4,4,4,3,3,3,1,2,3,1,3,3,4,3,3,4,5,5,5,5,3,2,2,1,3,4,3,4,1,2,2,3,3,4,4,4,4,4,
|
||||
3/31/2022 14:37:00,4/1/2022 7:31:00,0,100,60836,1,2022-04-01T7:31:0,R_eeZ8PawOBj8Kfdv,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,5,2,2,2,3,1,5,4,5,4,1,3,1,2,1,1,1,1,1,2,3,2,2,1,1,1,2,3,2,1,3,3,1,2,2,2,2,3,3,2,2,3,4,,,,3,3,3,4,4,3,2,1,5,2,3,3,,,,3,3,4,3,3,3,3,
|
||||
4/6/2022 14:42:00,4/6/2022 14:56:00,0,100,823,1,2022-04-06T14:56:0,R_d1nYo1Z2X2HITAt,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,3,3,3,5,5,5,5,3,2,2,2,4,2,3,2,2,4,2,1,1,2,3,3,3,2,2,2,3,3,3,2,2,1,1,1,2,2,2,4,4,5,4,4,3,4,4,4,5,3,2,1,3,3,2,2,3,3,3,4,3,3,3,5,3,4,
|
||||
4/27/2022 11:17:00,4/27/2022 11:57:00,0,100,2358,1,2022-04-27T11:57:0,R_1Dvcb1N6YN4RkLG,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,2,2,5,4,5,4,4,4,4,4,4,3,2,5,1,4,3,4,2,1,1,2,3,4,3,5,5,5,4,3,4,3,3,3,1,3,1,5,2,3,5,,,,,3,4,4,4,3,4,3,3,5,5,5,5,,,,3,3,3,3,3,4,4,
|
||||
4/13/2022 10:37:00,4/13/2022 10:51:00,0,100,825,1,2022-04-13T10:51:0,R_2X7mimbrXzjmZ94,41.8363,-72.5596,anonymous,EN,1,160001,5,4,4,4,2,3,2,1,5,5,5,4,1,1,3,4,2,1,3,4,4,4,4,3,4,4,5,4,4,4,4,4,2,2,2,1,2,3,2,2,3,5,3,3,3,2,4,2,3,3,3,3,5,2,2,1,5,5,1,3,3,3,4,3,3,4,3,3,3,4,
|
||||
4/6/2022 7:29:00,4/6/2022 9:28:00,0,100,7154,1,2022-04-06T9:28:0,R_2fGVNWPnWEn4Dvb,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,4,1,3,5,5,4,4,1,1,2,2,3,2,2,4,3,4,3,4,3,3,3,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,2,2,4,3,3,3,4,4,5,5,5,4,2,1,3,2,1,2,2,3,3,5,4,4,3,3,3,4,
|
||||
4/6/2022 11:07:00,4/6/2022 11:23:00,0,100,965,1,2022-04-06T11:23:0,R_wWTwpQmvRTjS9EZ,41.8515,-71.2545,anonymous,EN,1,160505,4,5,5,2,2,5,2,1,5,5,5,4,1,4,1,1,4,2,4,5,3,4,4,4,4,3,3,4,5,5,4,4,4,3,3,3,2,4,4,4,4,4,5,5,4,4,5,4,4,3,4,4,3,3,2,1,5,4,3,4,5,5,5,5,5,4,4,5,4,5,
|
||||
4/13/2022 5:54:00,4/13/2022 6:16:00,0,100,1303,1,2022-04-13T6:16:0,R_u31i2hAxFC6FIIh,41.9261,-71.3011,anonymous,EN,1,160001,5,3,5,5,4,5,3,,,,,,3,4,5,2,,,,2,3,2,,,,3,2,3,3,4,3,3,,,,3,3,3,2,3,4,1,2,2,,,,,,,,,5,2,1,1,2,2,1,3,,,,,,,2,3,3,4,Add DAILY as an answer to how often we contact parents
|
||||
4/13/2022 16:05:58,4/13/2022 16:22:11,0,100,973,1,2022-04-13T16:22:12,R_sHTU3TnoahV8ZMZ,41.9261,-71.3011,anonymous,EN,1,160050,4,4,5,4,4,3,3,2,3,4,4,3,3,4,4,2,4,2,3,3,4,4,1,1,2,5,5,4,4,4,4,4,2,4,2,3,2,3,2,3,5,2,5,5,3,,4,,4,4,3,5,5,2,2,1,3,3,1,2,,,,3,3,1,3,3,1,2,"I do not know the answers to questions about the practices of regular classroom teachers (such as "" how much do they collaborate?""
|
||||
To make it more relevant for ELL teachers questions could include: do you have enough support, materials, communication with classroom teachers, time with students"
|
||||
4/6/2022 7:30:00,4/6/2022 7:42:00,0,100,703,1,2022-04-06T7:42:0,R_3lJHxTiwCZ3Ncer,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,3,1,2,4,3,4,3,2,4,3,1,3,3,2,1,2,1,1,1,1,3,3,3,4,4,3,3,2,2,4,2,1,1,2,4,3,1,4,3,3,4,2,4,4,4,4,4,5,3,3,1,2,2,2,2,2,2,2,4,2,4,3,4,3,4,
|
||||
4/6/2022 14:47:00,4/6/2022 15:00:00,0,100,789,1,2022-04-06T15:0:0,R_1hEDLFSpjTYmcvh,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,3,2,5,4,1,4,4,4,3,2,1,1,1,3,3,3,2,2,2,1,1,1,3,3,3,3,3,3,3,3,2,4,2,2,2,2,2,3,1,3,3,,,,,2,3,3,5,2,2,2,1,2,2,1,2,,,,1,3,3,4,5,4,5,It is very difficult to answer questions about teaching in a classroom - I work in a very different role.
|
||||
4/13/2022 17:50:00,4/13/2022 18:02:00,0,100,696,1,2022-04-13T18:2:0,R_1lyQfifnTCHxv7f,42.3364,-71.0326,anonymous,EN,1,160050,5,5,5,4,3,5,2,2,5,4,4,4,1,2,1,1,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,4,3,3,2,4,5,3,3,4,3,,4,,4,3,3,4,5,2,2,3,3,2,2,2,,,,3,4,3,3,3,3,3,
|
||||
4/13/2022 15:44:00,4/13/2022 15:52:00,0,100,436,1,2022-04-13T15:52:0,R_28FzCmxXfgC9jMV,41.9261,-71.3011,anonymous,EN,1,160035,5,5,4,2,2,4,2,1,5,5,5,5,2,2,2,2,4,5,2,2,1,2,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,1,2,4,4,4,3,3,3,3,3,5,4,3,2,2,3,3,1,3,1,1,1,3,3,3,2,3,3,4,
|
||||
4/6/2022 14:58:00,4/6/2022 15:07:00,0,100,535,1,2022-04-06T15:7:0,R_1Q9qhqaUoTZhi27,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,4,3,4,2,3,5,5,5,5,3,3,4,4,3,3,3,2,2,3,1,1,1,2,2,3,3,3,3,3,3,3,4,2,1,1,1,1,3,1,3,1,4,4,4,3,4,3,3,4,3,3,3,1,3,2,2,3,2,3,3,3,3,3,1,4,1,4,
|
||||
4/27/2022 19:46:00,4/27/2022 20:20:00,0,100,2061,1,2022-04-27T20:20:0,R_1KoFLnOy9iEPzuV,41.9261,-71.3011,anonymous,EN,1,160320,2,2,4,4,5,1,4,1,5,5,3,4,1,4,5,2,2,1,2,5,5,5,5,4,5,3,3,4,3,3,3,3,2,3,2,2,3,3,2,4,2,1,3,3,3,4,4,4,2,3,4,4,4,3,2,1,3,3,4,4,2,2,2,3,2,2,3,3,3,3,
|
||||
4/6/2022 7:40:00,4/6/2022 8:15:00,0,100,2071,1,2022-04-06T8:15:0,R_1l5e4QMefvBKSz4,41.9261,-71.3011,anonymous,EN,1,160505,5,5,4,3,2,5,3,1,4,4,4,3,3,4,2,3,3,1,3,1,1,4,2,2,1,3,3,2,2,2,3,2,2,2,1,1,2,3,1,1,5,1,3,3,3,4,2,3,2,1,2,3,3,3,2,1,3,3,1,3,1,2,2,3,3,3,4,5,3,4,
|
||||
4/28/2022 22:09:00,4/28/2022 22:21:00,0,100,731,1,2022-04-28T22:21:0,R_2V7uFP2jiufgJHz,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,5,5,5,4,1,4,4,4,4,3,4,5,5,5,5,5,5,4,5,5,5,5,4,5,4,4,5,5,4,,5,,5,3,3,3,5,5,2,4,4,5,5,5,5,5,3,3,4,4,4,2,1,4,3,2,2,3,3,3,1,3,3,2,3,3,3,
|
||||
4/6/2022 14:37:00,4/6/2022 14:48:00,0,100,629,1,2022-04-06T14:48:0,R_3rZfFpAa3nwDwo1,41.8501,-72.4649,anonymous,EN,1,160505,5,5,5,4,4,5,4,1,5,5,5,5,3,3,4,4,3,2,4,2,2,3,2,2,1,4,4,2,2,3,2,2,3,3,3,2,2,3,2,2,4,3,4,4,3,4,4,4,4,4,4,5,5,2,2,2,,,,,1,2,2,3,3,3,4,4,4,4,
|
||||
4/13/2022 16:10:00,4/13/2022 16:21:00,0,100,702,1,2022-04-13T16:21:0,R_3HiQYCck0xVhl9A,41.9261,-71.3011,anonymous,EN,1,160050,5,3,4,2,2,2,1,1,4,4,4,4,2,3,2,1,1,1,1,2,1,5,2,2,2,3,4,4,4,2,3,3,3,3,3,3,5,5,5,4,2,1,2,2,5,4,4,3,4,3,3,3,4,3,2,1,4,4,3,3,2,3,3,3,3,3,3,3,4,4,
|
||||
3/30/2022 14:40:00,3/30/2022 14:55:00,0,100,898,1,2022-03-30T14:55:0,R_bkLxhozq7FPxnq1,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,5,5,5,5,1,5,5,5,5,2,4,3,4,4,3,5,4,4,4,5,5,4,4,4,4,4,5,4,4,5,5,4,3,4,2,2,2,4,4,4,4,3,4,5,4,2,2,2,4,5,3,2,1,2,4,4,4,2,3,2,2,2,3,4,4,3,4,
|
||||
4/6/2022 14:35:00,4/6/2022 14:54:00,0,100,1098,1,2022-04-06T14:54:0,R_3O7dnO6Y5hFOmbp,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,3,4,4,3,1,4,4,5,4,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3,3,3,3,3,3,3,3,4,2,2,2,1,2,3,2,2,2,3,,3,,4,4,3,4,5,3,,,1,2,1,2,,,,3,3,3,3,5,3,4,
|
||||
4/6/2022 12:57:00,4/6/2022 13:28:00,0,100,1831,1,2022-04-06T13:28:0,R_3Jme9dCbAHH2qp1,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,4,2,2,2,4,3,3,4,5,3,1,3,3,2,1,2,4,4,3,3,3,3,3,3,4,4,4,3,3,3,2,3,2,3,4,2,3,1,1,1,1,3,,3,,2,2,4,4,2,4,2,1,4,3,2,4,,,,4,2,5,4,5,4,5,I had no knowledge of some questions. Particularly related to parent involvement.
|
||||
4/6/2022 8:04:00,4/6/2022 8:21:00,0,91,994,0,2022-04-13T8:21:0,R_1LIi5XsEXlMq5qb,,,anonymous,EN,1,160505,4,3,4,4,,3,,,4,3,2,,2,1,1,2,4,3,4,2,1,2,,,1,3,,,3,3,4,3,3,3,4,3,1,1,1,2,,,,,,,,,,,,,1,1,1,,3,3,3,3,,,,1,1,1,1,1,,,
|
||||
4/12/2022 10:07:00,4/12/2022 10:26:00,0,100,1092,1,2022-04-12T10:26:0,R_3KK4wr7ngc0IJV1,41.97390747,-71.32839966,anonymous,EN,1,160315,4,4,4,2,2,2,3,,4,4,4,,,2,2,1,5,4,4,,1,2,,,,2,2,2,2,2,2,2,,,1,,,1,,,4,1,2,3,,,,,1,1,2,2,,2,2,1,5,4,,,,,,2,2,2,3,3,3,3,
|
||||
4/13/2022 16:06:00,4/13/2022 16:21:00,0,100,918,1,2022-04-13T16:21:0,R_1CkaNq8WBg2LOdI,41.9261,-71.3011,anonymous,EN,1,160050,4,5,4,4,2,2,1,1,4,4,3,4,3,4,4,3,1,1,2,2,1,,2,2,1,4,4,4,5,4,4,4,3,3,3,2,2,2,2,3,2,1,2,2,3,,4,,4,3,4,4,5,3,1,1,3,3,2,3,,,,3,4,2,2,3,3,3,
|
||||
3/30/2022 14:39:00,3/30/2022 15:13:00,0,100,2026,1,2022-03-30T15:13:0,R_1gA3BzvsLDULvEa,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,3,3,5,2,,,,,,2,2,2,2,,,,4,3,4,,,,3,3,4,3,4,4,3,,,,3,2,2,1,1,4,2,3,3,,,,,,,,,5,3,2,3,1,3,3,3,,,,,,,5,5,5,5,
|
||||
4/6/2022 7:55:00,4/6/2022 8:32:00,0,100,2211,1,2022-04-06T8:32:0,R_2xMfzgpJ9UjxcVf,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,2,2,5,1,2,4,4,4,4,2,2,2,2,3,2,3,1,2,1,1,1,1,1,1,1,2,3,3,2,2,2,2,3,3,2,2,2,1,1,2,2,3,2,3,2,4,4,4,5,2,2,2,1,2,2,2,2,3,3,3,4,3,4,3,4,3,4,
|
||||
4/6/2022 7:34:00,4/6/2022 7:49:00,0,100,937,1,2022-04-06T7:49:0,R_51GXbZHQTh6Fn5D,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,4,3,5,1,,,,,,2,3,1,2,,,,2,1,1,,,,3,3,3,3,3,3,2,,,,3,2,3,2,4,4,2,4,4,,,,,,,,,5,3,3,2,3,3,2,3,,,,,,,4,5,3,5,
|
||||
4/6/2022 14:28:00,4/6/2022 14:51:00,0,100,1396,1,2022-04-06T14:51:0,R_3feCOLk79WWaHFb,42.2904,-71.0712,anonymous,EN,1,160505,5,5,5,4,3,5,4,2,5,5,5,4,3,3,2,1,4,5,5,2,2,3,4,4,2,2,2,3,4,4,3,3,3,3,4,2,2,3,3,1,4,1,5,5,3,4,5,5,4,4,4,4,5,3,3,2,2,3,2,4,3,3,4,3,3,4,3,3,3,5,
|
||||
4/6/2022 14:56:00,4/6/2022 15:07:00,0,100,645,1,2022-04-06T15:7:0,R_26b6aaUX21igYit,41.9261,-71.3011,anonymous,EN,1,160505,5,5,4,3,3,5,3,2,4,4,5,5,2,5,3,4,3,4,2,2,2,4,2,1,1,3,4,4,4,4,3,3,3,3,4,2,1,1,1,2,3,1,3,3,3,3,4,4,3,4,4,5,3,3,3,1,3,3,2,3,2,3,2,4,2,3,4,5,3,4,
|
||||
4/27/2022 9:25:00,4/27/2022 9:44:00,0,100,1124,1,2022-04-27T9:44:0,R_1mWtXJQdRvPutGV,41.9261,-71.3011,anonymous,EN,1,160050,4,4,3,4,3,2,1,1,5,4,3,5,2,2,2,1,2,1,1,1,1,1,1,1,1,3,3,2,3,2,2,2,3,2,1,2,3,4,3,4,2,1,1,2,3,4,3,3,4,4,3,3,1,2,2,2,2,2,1,2,2,4,3,1,2,1,3,4,3,4,
|
||||
4/24/2022 13:14:00,4/24/2022 13:22:00,0,100,499,1,2022-04-24T13:22:0,R_2CPSl4cMYEJ5MCj,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,5,5,3,5,2,5,5,5,5,2,2,2,2,4,3,5,3,4,3,4,4,3,3,4,4,4,4,5,5,3,4,2,5,3,4,2,2,5,2,3,3,,,,,3,3,4,4,5,3,2,1,3,2,2,2,,,,4,4,4,3,3,3,3,
|
||||
4/13/2022 16:05:00,4/13/2022 16:11:00,0,100,314,1,2022-04-13T16:11:0,R_3EaT2qBRSjopiwt,41.9261,-71.3011,anonymous,EN,1,160050,3,4,3,5,4,5,3,2,4,4,4,3,3,4,4,3,4,3,4,1,1,1,1,1,1,,,,3,4,3,3,4,4,3,3,2,4,2,2,3,1,1,4,3,,3,,4,3,4,4,5,,,,,,,,,,,4,4,4,3,3,4,4,
|
||||
4/13/2022 16:05:00,4/13/2022 16:27:00,0,100,1295,1,2022-04-13T16:27:0,R_3rM0wFMApmrRY99,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,3,2,3,2,1,5,4,3,4,2,3,5,3,3,1,1,2,4,2,1,1,1,3,4,2,4,4,3,3,3,4,2,2,2,3,2,4,3,1,2,3,4,4,3,3,5,5,4,5,4,3,2,2,3,3,2,3,3,3,3,3,3,4,3,3,3,4,
|
||||
4/6/2022 10:06:00,4/6/2022 10:20:00,0,100,842,1,2022-04-06T10:20:0,R_D0EaE40mNMKfS81,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,3,5,4,2,5,5,5,5,3,3,2,3,2,3,2,3,3,4,1,1,1,3,3,3,4,4,4,3,3,2,2,1,1,2,1,4,3,3,3,4,4,4,4,4,3,3,3,3,5,4,3,4,4,5,2,4,2,3,3,3,3,4,4,4,3,4,
|
||||
3/30/2022 9:35:00,3/31/2022 6:34:00,0,100,75528,1,2022-03-31T6:34:0,R_2CvPFjQ0RneKZAT,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,4,2,2,2,2,2,5,4,3,5,2,1,2,2,3,5,2,3,3,4,2,3,2,1,1,2,1,1,2,1,1,2,1,2,2,2,3,3,2,1,2,2,2,3,2,2,3,3,3,3,5,1,1,1,1,1,1,1,2,2,1,2,3,2,3,3,3,3,
|
||||
4/6/2022 14:55:00,4/6/2022 15:07:00,0,100,683,1,2022-04-06T15:7:0,R_1IxV8UND9hZLAgC,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,2,3,2,4,3,4,4,1,3,1,2,1,4,1,1,4,4,1,1,1,3,3,4,4,4,4,4,3,3,3,3,3,2,3,5,4,4,3,3,4,3,4,4,2,2,1,2,4,3,3,1,3,3,2,4,3,3,3,3,3,4,3,4,2,3,
|
||||
4/13/2022 16:22:00,4/13/2022 16:31:00,0,100,576,1,2022-04-13T16:31:0,R_2EzvtZgdGu17iQq,41.9261,-71.3011,anonymous,EN,1,160001,5,4,5,2,2,5,2,1,4,4,4,4,2,2,2,2,2,2,3,2,2,2,3,3,3,5,5,4,4,4,4,4,3,3,3,2,3,3,3,3,4,4,4,4,4,,4,,4,4,5,5,5,1,2,1,4,3,2,3,,,,3,3,3,2,2,2,2,
|
||||
4/13/2022 15:45:00,4/13/2022 15:56:00,0,100,662,1,2022-04-13T15:56:0,R_25TnA3oeb7iaymi,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,3,4,2,1,2,5,4,4,4,3,4,4,5,4,1,5,4,3,3,2,2,2,4,5,4,4,4,4,3,3,4,3,3,3,3,2,5,5,2,4,4,4,,4,,3,4,5,5,5,2,2,1,3,3,2,3,,,,2,4,4,3,4,3,4,
|
||||
4/13/2022 22:10:00,4/13/2022 22:18:00,0,100,473,1,2022-04-13T22:18:0,R_4NOVDuhHXOT2m3f,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,5,5,3,4,,,,,,4,2,3,3,,,,5,5,5,,,,4,4,4,5,5,5,4,,,,4,4,3,1,3,4,3,4,4,,,,,,,,,4,4,2,1,2,4,2,3,,,,,,,3,3,3,3,
|
||||
4/13/2022 16:23:00,4/13/2022 16:40:00,0,100,1004,1,2022-04-13T16:40:0,R_9WZbPJcX1QBqG0p,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,3,3,4,4,1,4,4,4,4,2,4,2,2,1,1,3,3,4,5,3,2,2,4,4,4,3,2,3,3,3,3,1,4,3,2,3,4,1,1,2,2,4,4,3,4,4,4,4,3,5,3,2,2,4,3,2,4,3,2,3,3,4,5,3,3,4,5,
|
||||
4/13/2022 15:45:00,4/13/2022 15:54:00,0,100,532,1,2022-04-13T15:54:0,R_1gT37uvOVLGlv7N,41.9261,-71.3011,anonymous,EN,1,160035,5,4,4,3,3,3,1,1,4,4,2,4,1,1,2,2,2,5,3,1,1,1,1,1,1,3,3,2,2,2,2,3,2,2,1,2,3,3,2,2,3,3,1,3,1,1,1,1,3,3,4,4,5,2,2,1,3,3,2,3,1,1,2,2,3,3,2,2,2,3,
|
||||
4/7/2022 8:40:00,4/7/2022 9:01:00,0,100,1284,1,2022-04-07T9:1:0,R_PUr1W2MjEQZzCOl,41.9832,-70.9773,anonymous,EN,1,160505,5,4,5,4,4,5,4,,4,3,5,5,4,5,4,3,,,3,5,4,4,5,5,4,,,3,4,4,4,3,4,5,,2,2,2,2,2,5,3,5,5,,,,,,,,4,,,,,,4,,4,,,,2,2,1,4,5,5,5,Paraprofessionals provide a wide range of supports outside the classroom including assisting students with mobility issues & with personal care and in some classes taking students out in the community. All the survey questions related to instruction inside the classroom inside the building.
|
||||
4/13/2022 16:07:00,4/13/2022 16:18:00,0,73,648,0,2022-04-20T16:18:0,R_1hF3SAXlGYq9Tcb,,,anonymous,EN,1,160050,5,4,4,4,4,5,3,2,2,3,3,4,2,4,3,3,,,,2,3,2,2,2,2,3,4,4,4,3,4,3,,,,2,2,1,3,4,3,1,2,2,,,,,,,,,5,2,2,2,,,,,,,,1,3,2,,1,1,2,
|
||||
4/6/2022 14:45:00,4/7/2022 10:05:00,0,100,69592,1,2022-04-07T10:5:0,R_viso4QfO70Kg9tT,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,3,3,4,4,3,4,4,4,4,1,3,3,1,3,3,4,2,1,2,2,2,2,3,3,4,4,4,4,3,3,3,3,1,1,1,2,2,5,2,3,4,4,,4,,4,4,4,5,5,3,3,2,3,3,3,3,,,,2,2,2,2,3,3,5,
|
||||
4/13/2022 16:06:00,4/13/2022 16:14:00,0,100,483,1,2022-04-13T16:14:0,R_2pMEeQWpamxpPew,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,5,4,3,4,1,5,5,5,5,3,3,3,3,3,1,3,3,3,3,2,2,2,4,4,3,4,4,4,3,4,4,3,3,4,2,4,3,3,2,1,1,4,4,4,4,3,3,4,5,4,2,1,1,4,4,2,3,3,3,3,4,3,5,3,3,3,3,
|
||||
4/14/2022 7:50:00,4/14/2022 8:05:00,0,100,907,1,2022-04-14T8:5:0,R_3iIO99VV1H8EmLY,41.9261,-71.3011,anonymous,EN,1,160050,5,5,4,4,2,5,3,4,5,4,5,5,2,2,2,1,4,4,4,2,4,1,2,2,1,3,3,1,3,3,2,2,4,3,3,2,3,2,3,4,4,2,2,2,4,4,4,4,4,3,3,3,4,5,4,2,3,3,3,4,2,2,3,3,3,4,4,5,3,4,
|
||||
3/30/2022 14:35:00,3/30/2022 14:51:00,0,100,965,1,2022-03-30T14:51:0,R_Dfd1KJhtfqbcw6J,41.88600159,-71.34570313,anonymous,EN,1,160305,5,4,4,4,2,4,3,1,4,4,3,3,2,3,2,1,4,1,4,3,3,3,3,3,2,,,2,2,2,2,2,,2,2,3,2,2,2,3,1,1,1,1,4,4,3,4,1,1,3,2,5,,,1,2,3,,,1,2,1,2,2,1,2,2,3,3,
|
||||
3/30/2022 14:50:00,3/30/2022 15:16:00,0,100,1552,1,2022-03-30T15:16:0,R_2dFRkw3eTrtMvne,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,,,1,,2,4,4,4,4,1,,1,,1,,1,,,,3,,2,3,3,4,4,4,4,3,3,3,3,4,3,2,5,4,,2,,,4,,,,3,3,3,4,2,,,,,,,,3,3,3,,,,3,3,3,3,
|
||||
4/14/2022 13:19:00,4/14/2022 13:34:00,0,100,908,1,2022-04-14T13:34:0,R_2R84EVSGqkNIrH0,41.9261,-71.3011,anonymous,EN,1,160515,4,3,5,5,5,4,4,,,,,,3,2,3,3,,,,4,4,4,,,,3,3,4,4,4,3,3,,,,2,2,3,2,3,4,2,3,3,,,,,,,,,1,1,1,1,1,3,2,3,,,,,,,2,3,2,3,
|
||||
4/10/2022 20:23:00,4/10/2022 20:38:00,0,100,888,1,2022-04-10T20:38:0,R_wMpD4ow0TFgMtAR,41.92610168,-71.30110168,anonymous,EN,1,160505,4,,4,2,4,5,4,5,4,4,4,3,3,3,2,3,3,2,4,4,4,4,4,4,3,4,5,4,3,3,3,1,3,3,3,3,2,2,3,3,4,2,5,5,,,,,3,3,1,3,5,2,1,1,3,3,2,3,,,,2,1,1,3,4,2,3,
|
||||
4/27/2022 10:51:00,4/27/2022 10:59:00,0,100,521,1,2022-04-27T10:59:0,R_3Pcvcry793JKORf,41.9261,-71.3011,anonymous,EN,1,160050,4,5,3,5,4,3,5,2,5,5,4,4,2,5,5,5,4,3,4,2,2,2,2,3,2,3,4,2,3,4,3,3,3,4,4,3,3,5,5,5,5,1,4,3,4,4,4,5,4,5,5,5,5,4,2,1,5,5,3,4,3,3,3,4,3,4,3,3,4,4,
|
||||
4/13/2022 15:44:00,4/13/2022 15:57:00,0,100,758,1,2022-04-13T15:57:0,R_22WUer8mEvXB7QB,41.9261,-71.3011,anonymous,EN,1,160035,5,4,5,2,3,4,4,1,4,4,3,3,4,2,4,2,4,5,4,3,4,3,2,4,4,2,1,2,2,2,2,2,2,3,2,2,5,4,1,5,3,1,2,3,2,4,4,2,3,3,4,4,5,3,2,2,2,2,3,2,1,2,2,3,3,3,3,3,3,3,
|
||||
4/27/2022 8:49:00,4/27/2022 9:13:00,0,100,1419,1,2022-04-27T9:13:0,R_3PyL2cYSCvSVPWa,41.9261,-71.3011,anonymous,EN,1,160050,4,4,4,4,4,3,3,1,4,3,5,4,3,4,3,2,3,2,4,1,1,1,2,1,1,3,3,3,4,4,3,3,4,4,3,4,4,4,2,3,4,2,4,3,,,,,1,1,1,4,1,3,3,1,4,4,3,3,,,,3,3,4,3,3,3,3,
|
||||
4/6/2022 14:38:00,4/6/2022 14:58:00,0,100,1214,1,2022-04-06T14:58:0,R_1Q3OieDWgha3Ioq,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,2,3,2,2,4,5,4,4,3,2,2,1,3,3,2,2,2,2,3,2,2,1,4,4,3,2,1,3,2,2,1,3,3,3,4,4,4,3,3,4,4,1,4,1,4,2,2,3,2,3,3,3,1,4,3,4,4,2,2,2,3,2,1,3,5,2,3,
|
||||
4/13/2022 16:07:00,4/13/2022 16:17:00,0,100,579,1,2022-04-13T16:17:0,R_31ZYykyW4Hj39SG,42.0215,-71.2188,anonymous,EN,1,160050,5,5,5,2,2,3,3,1,5,5,5,5,2,2,2,2,4,4,4,1,1,1,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,3,2,3,3,4,,4,,4,4,4,4,5,4,3,1,3,4,3,3,,,,3,3,2,4,4,4,4,
|
||||
4/13/2022 16:05:00,4/13/2022 16:15:00,0,100,577,1,2022-04-13T16:15:0,R_21t75zq9cn3o3ha,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,2,2,5,4,2,4,4,4,3,2,1,2,2,3,1,2,4,4,3,4,,4,3,2,3,3,4,3,3,3,3,2,2,2,1,2,4,3,1,1,1,4,3,4,3,4,4,4,4,5,2,2,2,4,3,2,4,2,4,2,3,3,4,2,2,3,4,
|
||||
4/13/2022 15:44:00,4/13/2022 16:01:00,0,100,969,1,2022-04-13T16:1:0,R_2aJPOkkLoAO7ayp,41.9261,-71.3011,anonymous,EN,1,160035,5,5,4,2,2,5,2,1,4,4,4,4,1,2,1,1,4,1,3,1,2,1,1,1,3,2,3,3,2,3,2,2,2,3,3,1,2,2,2,3,2,2,3,3,3,3,4,3,4,2,5,3,3,4,3,1,3,3,2,3,1,2,2,3,2,2,2,3,2,3,
|
||||
4/13/2022 16:05:00,4/13/2022 16:14:00,0,100,541,1,2022-04-13T16:14:0,R_24cMUM4EJkwx3L5,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,3,2,3,1,1,4,4,5,4,2,3,4,3,3,1,1,2,3,2,2,2,2,3,4,3,3,4,3,2,2,4,2,2,3,2,4,4,4,2,2,3,4,4,4,3,4,3,3,4,5,2,1,1,4,4,3,3,2,3,2,2,4,4,3,3,4,4,
|
||||
4/1/2022 16:02:00,4/1/2022 16:21:00,0,100,1187,1,2022-04-01T16:21:0,R_9HregQ0Y6jxSZNv,42.10940552,-71.17590332,anonymous,EN,1,160315,5,5,5,5,5,4,4,3,5,4,5,4,2,3,3,3,4,4,3,5,4,5,4,5,3,3,3,2,4,3,3,3,4,5,3,3,3,4,2,3,4,1,2,5,5,5,4,4,5,5,5,5,5,2,1,1,5,4,3,3,3,3,4,3,4,4,3,4,3,4,
|
||||
4/13/2022 16:05:00,4/13/2022 16:18:00,0,100,772,1,2022-04-13T16:18:0,R_1OZDcjNRg4pJta2,41.9261,-71.3011,anonymous,EN,1,160050,5,5,4,2,2,3,3,1,5,3,4,5,1,2,2,1,2,4,4,3,3,2,2,3,3,5,5,4,4,3,4,3,3,3,3,2,1,2,2,3,3,1,2,3,4,4,4,4,5,5,4,4,2,3,3,2,3,3,3,3,2,3,3,4,4,3,2,2,3,3,
|
||||
4/13/2022 15:45:00,4/13/2022 16:04:00,0,100,1152,1,2022-04-13T16:4:0,R_1q4VXeYMstrQi47,41.9261,-71.3011,anonymous,EN,1,160035,5,5,4,4,4,5,3,1,5,4,3,5,2,4,3,3,1,2,3,4,4,4,3,3,2,3,3,4,4,4,4,3,2,3,2,2,2,2,1,4,4,1,3,3,5,3,5,3,3,3,4,4,4,3,2,1,5,3,2,3,3,3,3,2,4,4,2,2,3,4,
|
||||
4/13/2022 16:07:00,4/13/2022 16:19:00,0,100,685,1,2022-04-13T16:19:0,R_3I5KzJZuoa6IKfp,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,4,5,4,1,4,4,5,4,4,3,3,2,3,2,3,3,4,4,2,3,2,1,5,4,4,3,3,4,4,4,3,3,3,3,3,4,2,1,3,1,3,,3,,4,4,5,4,5,2,2,1,4,4,3,3,,,,3,3,3,2,2,3,3,
|
||||
4/13/2022 15:45:00,4/13/2022 17:42:00,0,100,7044,1,2022-04-13T17:42:0,R_2E134f74MLbdFQ3,41.9082,-71.1031,anonymous,EN,1,160035,5,3,4,4,3,5,3,2,4,4,4,4,2,2,4,3,4,4,3,4,4,5,4,4,4,4,5,3,3,3,3,3,3,3,3,2,5,4,1,2,3,3,2,3,5,3,4,3,4,4,4,5,5,1,1,1,4,3,2,2,1,2,2,3,4,3,2,3,2,3,
|
||||
4/12/2022 8:28:00,4/12/2022 8:35:00,0,100,391,1,2022-04-12T8:35:0,R_vqolae7fuv3sYSd,42.80099487,-71.3085022,anonymous,EN,1,160320,5,4,5,4,4,5,4,5,4,3,4,4,4,3,4,4,3,4,3,5,4,3,3,3,3,3,3,3,3,3,3,2,2,1,1,4,3,2,3,4,3,2,1,2,3,4,2,2,2,2,2,1,4,3,3,3,2,1,2,1,2,2,2,3,2,2,4,5,3,3,
|
||||
3/30/2022 14:33:00,3/30/2022 14:43:00,0,100,625,1,2022-03-30T14:43:0,R_3HAmYs8fGhXEY93,41.88600159,-71.34570313,anonymous,EN,1,160305,4,5,5,4,4,4,4,1,5,4,3,5,2,3,2,2,4,4,4,4,4,4,4,2,1,3,4,3,2,3,2,2,2,2,2,4,4,3,4,4,3,3,3,3,2,4,2,3,4,4,3,3,4,3,3,1,2,4,2,2,1,1,2,2,2,4,3,3,1,3,
|
||||
4/6/2022 14:43:00,4/6/2022 14:56:00,0,100,773,1,2022-04-06T14:56:0,R_Z4E1JuBNMrIK4x3,41.9261,-71.3011,anonymous,EN,1,160505,3,5,3,4,2,5,2,5,4,3,4,2,3,2,2,3,4,1,1,3,3,2,2,2,1,2,2,2,2,2,1,1,3,2,2,2,2,3,2,3,2,1,2,2,3,4,3,4,2,2,2,4,2,3,3,1,3,3,2,3,3,2,2,1,1,2,4,5,2,5,
|
||||
4/29/2022 14:36:00,4/29/2022 14:58:00,0,100,1319,1,2022-04-29T14:58:0,R_2Y8QahmaAZE3aJQ,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,3,4,2,3,1,5,4,4,4,1,1,1,2,1,2,4,1,1,2,2,2,2,4,4,4,3,3,4,3,3,3,3,2,3,2,1,3,3,1,1,2,3,3,4,4,3,3,3,3,3,3,2,3,2,2,2,2,2,3,4,2,3,3,3,3,3,3,
|
||||
4/13/2022 17:34:00,4/13/2022 18:32:00,0,100,3518,1,2022-04-13T18:32:0,R_31mgYiqQPCiqK3L,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,4,3,3,2,1,4,3,5,3,1,2,3,2,4,3,4,3,3,1,3,4,3,4,4,4,4,3,4,3,3,4,1,3,3,3,2,4,4,2,5,3,,,,,2,3,4,4,1,4,3,2,4,3,,3,,,,1,2,1,3,3,4,4,
|
||||
4/26/2022 6:12:00,4/26/2022 6:28:00,0,100,915,1,2022-04-26T6:28:0,R_qyy2LkRREeZ30RP,41.9261,-71.3011,anonymous,EN,1,160040,5,4,4,5,5,3,4,2,4,4,4,4,2,4,4,3,4,2,1,4,5,4,4,4,4,4,5,4,4,4,4,3,4,4,3,3,3,3,3,4,3,1,1,1,5,4,4,3,3,4,5,4,4,4,3,1,3,3,3,4,3,4,3,1,4,3,2,2,2,2,
|
||||
4/13/2022 15:44:00,4/13/2022 16:01:00,0,100,981,1,2022-04-13T16:1:0,R_b88bBqWFfr75XCV,41.9261,-71.3011,anonymous,EN,1,160035,5,3,4,2,2,4,3,2,4,4,4,5,1,3,2,2,3,5,3,3,4,4,2,2,4,3,3,4,4,4,4,4,2,4,3,2,2,1,1,4,4,2,3,4,2,2,5,2,3,3,3,3,5,2,2,2,4,4,2,3,5,4,4,2,4,4,3,3,4,5,
|
||||
4/27/2022 10:35:00,4/27/2022 10:48:00,0,100,757,1,2022-04-27T10:48:0,R_294akB1syeHtDty,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,4,3,3,5,5,4,5,5,3,3,3,2,3,3,4,4,4,4,3,3,3,3,3,4,4,4,5,5,3,3,3,5,5,4,5,5,5,2,4,4,,,,,4,5,3,5,5,3,3,1,4,4,3,3,,,,1,2,1,3,3,3,3,Make it more applicable to the Early Learning Center.
|
||||
4/14/2022 11:49:00,4/14/2022 12:20:00,0,100,1851,1,2022-04-14T12:20:0,R_WomLjs4cDMgZZzX,41.9261,-71.3011,anonymous,EN,1,160001,5,4,5,3,4,5,1,1,5,4,5,5,4,4,4,4,3,2,3,5,5,5,5,5,5,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,3,5,5,,,,,4,3,3,3,2,3,2,2,5,5,3,5,,,,3,3,3,2,2,3,3,
|
||||
4/13/2022 16:06:00,4/13/2022 16:18:00,0,100,722,1,2022-04-13T16:18:0,R_R3uuKQndJCrYMkp,41.9261,-71.3011,anonymous,EN,1,160050,5,4,4,4,2,5,3,2,4,4,4,4,2,2,2,2,3,2,3,2,1,3,1,1,2,3,3,3,4,4,3,3,3,3,3,3,3,3,2,3,4,1,1,2,,,,,3,3,3,4,5,3,3,1,3,3,2,3,,,,3,3,1,2,2,5,5,
|
||||
4/6/2022 14:52:00,4/6/2022 15:07:00,0,100,878,1,2022-04-06T15:7:0,R_qUsDRYJpZanKinD,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,3,2,3,1,5,5,4,5,2,2,1,2,2,1,2,4,4,4,4,4,1,4,3,4,4,4,4,4,4,3,3,3,3,2,2,1,3,3,3,2,3,4,4,4,3,2,2,3,2,3,2,2,2,3,2,3,3,3,3,4,3,4,3,4,3,4,
|
||||
4/6/2022 14:43:00,4/6/2022 14:55:00,0,100,723,1,2022-04-06T14:55:0,R_10vFzhapyYNZsTI,42.3562,-71.0631,anonymous,EN,1,160505,5,4,4,2,2,5,4,5,3,3,4,5,2,4,2,2,2,1,3,3,1,1,3,3,1,2,2,2,2,4,3,2,3,2,3,2,2,2,1,1,3,3,2,2,3,4,3,3,3,4,5,4,3,3,3,2,3,3,3,3,3,3,4,3,4,5,2,4,2,4,
|
||||
3/30/2022 11:30:00,3/30/2022 11:53:00,0,100,1392,1,2022-03-30T11:53:0,R_WBBDT4Y9keK7HdT,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,2,2,5,3,4,5,5,5,5,3,3,4,3,2,2,3,5,5,5,5,4,5,3,3,3,3,3,4,3,4,4,2,4,3,4,5,4,,,,,4,,4,,1,3,3,5,5,2,2,2,4,5,4,4,,,,3,4,4,3,3,3,3,
|
||||
4/6/2022 16:13:00,4/6/2022 16:23:00,0,100,613,1,2022-04-06T16:23:0,R_2XnYZMotrMQrmzJ,41.5382,-72.8008,anonymous,EN,1,160505,5,5,5,2,2,3,4,2,5,5,5,5,1,2,2,1,3,3,5,3,3,3,3,4,3,4,4,4,3,4,3,3,4,4,4,3,3,4,4,4,5,4,5,5,4,,4,,4,4,4,3,4,1,3,1,4,4,2,4,,,,3,3,3,3,4,3,4,
|
||||
4/12/2022 15:06:00,4/12/2022 15:17:00,0,72,659,0,2022-04-19T15:31:0,R_CZFH93o7ZLmo1B7,,,anonymous,EN,1,160315,3,2,3,,,,,,2,4,4,1,3,3,3,3,3,2,3,,,,3,4,1,2,2,1,2,3,3,1,3,3,3,,,,,,,,,,,,,,1,1,1,5,5,1,2,1,2,2,1,2,,,,,,,3,3,3,3,
|
||||
4/6/2022 14:41:00,4/6/2022 14:53:00,0,100,753,1,2022-04-06T14:53:0,R_1ohU3WZMUNhc8Qc,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,5,3,1,4,4,3,4,1,2,2,2,3,3,3,4,3,5,1,4,1,4,4,4,2,3,3,3,2,2,3,3,2,3,2,3,3,3,3,3,3,4,3,3,4,4,3,3,5,1,2,2,3,3,2,4,2,2,2,5,4,4,4,4,3,3,
|
||||
4/14/2022 13:53:00,4/14/2022 14:13:00,0,100,1202,1,2022-04-14T14:13:0,R_27gplwSEX7tSnjc,41.9261,-71.3011,anonymous,EN,1,160035,4,4,4,4,4,3,5,1,3,4,4,3,4,4,3,5,3,3,4,3,3,2,4,5,4,4,4,3,2,2,3,2,4,3,4,4,4,3,4,4,5,5,4,5,,,,,3,2,3,5,1,1,1,1,3,3,4,3,,,,4,4,4,4,5,3,3,
|
||||
4/27/2022 14:46:00,4/27/2022 14:57:00,0,29,712,0,2022-05-04T19:23:0,R_eD79Z86Z0QOTasF,,,anonymous,EN,1,160050,,,,4,4,5,3,2,,,,,,,,,,,,,,,,,,,,,3,4,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3,3,2,2,,,
|
||||
4/6/2022 7:25:00,4/6/2022 9:08:00,0,100,6186,1,2022-04-06T9:8:0,R_VRmhmCjNalxC2hb,41.9261,-71.3011,anonymous,EN,1,160505,4,5,4,2,2,4,3,2,4,4,4,3,2,3,2,1,2,2,3,3,1,1,2,2,1,3,4,3,3,2,3,3,3,2,4,2,2,3,2,2,3,1,2,3,,,,,2,3,4,4,5,2,2,1,3,2,3,3,,,,2,3,2,4,5,4,5,Most academic supports are not empowered to alter the curriculum; we are simply expected to assist students with the assignments they already have (and sometimes lend emotional support in lieu of available counselors) rather than create new content ourselves. The other questions were fine.
|
||||
4/13/2022 16:22:00,4/13/2022 16:32:00,0,100,633,1,2022-04-13T16:32:0,R_1pQeGt0HkHG8sAV,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,4,3,4,2,4,3,4,3,2,2,2,3,3,1,4,4,5,5,4,3,2,5,5,4,4,4,4,4,3,3,3,4,4,1,3,3,2,3,3,3,3,3,4,3,4,4,3,4,4,2,2,1,4,4,4,4,3,2,2,1,3,4,2,2,2,2,
|
||||
4/13/2022 16:07:00,4/13/2022 16:25:00,0,100,1103,1,2022-04-13T16:25:0,R_3elCTRhaOAl2CD2,41.9261,-71.3011,anonymous,EN,1,160050,5,5,4,3,3,3,2,1,4,5,5,4,2,4,4,2,3,3,3,2,1,2,1,2,2,3,3,2,3,3,2,2,3,3,3,1,2,2,3,5,3,2,2,1,3,3,3,2,3,3,4,4,5,2,2,1,3,2,2,2,3,2,3,3,4,4,4,4,3,3,
|
||||
3/30/2022 12:39:00,3/30/2022 12:51:00,0,100,758,1,2022-03-30T12:51:0,R_3PbpXztEaJI591H,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,4,4,3,3,1,4,4,4,4,2,2,2,3,3,4,3,4,4,4,4,4,4,2,3,2,3,4,3,2,3,3,3,3,5,4,1,4,4,1,2,4,4,4,3,4,2,1,1,2,3,3,3,1,4,3,3,3,1,2,2,3,3,3,3,4,3,4,
|
||||
4/13/2022 15:45:00,4/13/2022 15:53:00,0,100,527,1,2022-04-13T15:53:0,R_1odmsR6dMNfG913,41.9261,-71.3011,anonymous,EN,1,160035,5,4,4,4,4,5,4,3,4,4,4,4,3,4,5,4,5,2,5,5,4,5,5,5,5,3,3,2,2,3,2,2,4,4,3,3,5,3,3,3,5,3,3,3,4,3,3,4,3,3,5,5,5,3,4,1,5,4,2,3,1,3,2,3,4,4,5,5,3,3,
|
||||
4/6/2022 14:41:00,4/6/2022 14:52:00,0,100,671,1,2022-04-06T14:53:0,R_1g5rJOJRgqeGXXB,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,4,4,4,3,5,5,5,3,3,3,3,3,2,4,4,4,2,2,3,3,3,3,3,3,3,3,3,3,1,3,2,2,2,4,3,1,3,2,4,3,3,3,3,3,2,1,3,3,4,3,3,1,3,3,2,3,2,2,2,3,3,5,2,5,5,5,
|
||||
4/13/2022 15:44:00,4/13/2022 15:54:00,0,100,589,1,2022-04-13T15:54:0,R_2WZnUvBjqlnBRcW,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,2,2,3,1,3,5,4,5,4,2,3,3,2,4,2,1,2,3,2,2,3,2,3,3,4,4,3,4,3,2,3,2,4,4,3,2,3,4,3,4,4,,,,,4,4,4,4,5,3,3,2,5,4,2,3,,,,4,4,1,3,3,3,3,
|
||||
4/7/2022 8:36:00,4/7/2022 8:45:00,0,100,538,1,2022-04-07T8:45:0,R_qJBswEifri8aoc9,40.6627,-73.9138,anonymous,EN,1,160505,5,5,4,4,4,2,2,1,4,3,4,2,1,2,1,3,1,2,2,3,3,1,3,3,2,4,4,3,3,3,3,3,4,2,4,3,3,3,2,3,4,1,3,4,4,2,2,2,3,2,2,3,4,3,2,1,3,3,3,4,2,3,2,2,2,2,4,5,3,5,
|
||||
3/30/2022 15:11:00,3/30/2022 15:20:00,0,100,530,1,2022-03-30T15:20:0,R_1FwUXinfk4jAQjg,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,4,3,4,1,,,,,,2,2,3,3,,,,5,4,4,,,,3,3,2,3,3,4,3,,,,3,3,3,2,3,3,1,4,4,,,,,,,,,5,3,2,1,2,2,1,2,,,,,,,4,4,4,4,
|
||||
4/6/2022 14:42:00,4/6/2022 14:52:00,0,100,581,1,2022-04-06T14:52:0,R_1cTFK7TD0TrLrIm,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,2,4,2,1,3,3,3,3,2,1,2,3,3,4,3,1,3,1,1,1,1,2,2,2,2,2,2,1,1,1,3,3,2,1,3,2,2,3,1,1,2,2,3,1,3,3,4,4,2,4,3,1,3,3,3,2,3,3,3,1,2,2,3,5,3,5,
|
||||
4/13/2022 18:40:00,4/13/2022 19:00:00,0,100,1167,1,2022-04-13T19:0:0,R_8qQkyv0zMJnFyNj,42.0774,-71.0446,anonymous,EN,1,160050,5,5,5,4,4,4,3,2,5,5,5,5,3,4,3,3,4,4,4,3,4,3,3,3,3,5,5,5,4,4,4,4,4,3,3,2,3,3,5,5,5,2,5,5,3,4,4,4,3,3,3,3,3,3,2,2,5,4,3,4,1,1,1,3,3,3,3,4,3,4,
|
||||
4/13/2022 16:06:00,4/13/2022 16:15:00,0,100,587,1,2022-04-13T16:15:0,R_tGSI3sWNI2UcN5D,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,4,3,4,3,2,4,5,5,4,3,4,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,4,4,3,3,4,3,4,5,4,1,2,3,1,1,2,,,,,3,3,4,3,5,3,2,2,4,5,3,4,,,,2,3,2,3,3,3,3,
|
||||
4/13/2022 16:05:00,4/13/2022 16:17:00,0,100,716,1,2022-04-13T16:17:0,R_2ze7TwCJHZIzRrq,41.9261,-71.3011,anonymous,EN,1,160050,3,5,5,3,2,5,4,3,5,4,4,4,2,2,2,3,3,3,2,2,2,3,3,2,3,5,5,4,4,4,4,2,3,4,3,3,4,2,3,4,4,3,4,2,4,,4,,4,2,4,2,5,3,2,2,2,3,3,4,,,,1,4,1,2,2,3,3,
|
||||
3/30/2022 15:11:00,3/31/2022 8:28:00,0,100,62227,1,2022-03-31T8:28:0,R_12PfFIcuYidLThJ,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,2,2,4,2,1,4,4,4,4,2,3,1,3,2,2,1,3,3,4,4,3,2,2,2,2,2,2,2,2,4,3,3,3,3,3,4,3,4,3,4,4,,,,,2,3,3,3,5,2,2,1,3,3,2,3,,,,2,2,1,2,2,2,2,
|
||||
4/12/2022 8:51:00,4/12/2022 10:13:00,0,100,4956,1,2022-04-12T10:13:0,R_3I4wMOmS7FWpQ8J,42.80099487,-71.3085022,anonymous,EN,1,160320,4,4,4,4,4,4,3,2,5,4,4,4,2,1,1,1,4,3,4,5,4,4,4,4,4,3,3,4,4,3,4,4,3,3,3,4,4,2,4,5,4,2,3,3,,,,,2,2,2,4,1,2,3,3,5,4,4,4,,,,2,3,1,3,3,3,4,
|
||||
4/12/2022 8:09:00,4/12/2022 8:23:00,0,100,864,1,2022-04-12T8:23:0,R_AC07cheB0xItwnT,41.97390747,-71.32839966,anonymous,EN,1,160315,4,4,4,5,5,5,4,2,4,4,5,5,3,3,2,3,4,5,4,5,5,5,5,5,5,2,3,3,3,3,3,2,4,4,4,3,4,4,3,4,5,2,5,5,,,,,4,4,4,4,1,2,2,2,3,3,3,4,,,,2,3,3,3,4,3,4,"Not all of the questions are relevant to non-teaching staff. We are being pulled to complete sub work as there is a shortage of additional people to cover when teachers are out. Because of this, we do not have additional time to assist in helping with students who need additional help."
|
||||
3/30/2022 14:34:00,3/30/2022 15:24:00,0,100,2964,1,2022-03-30T15:24:0,R_1gGXokfp7PreumW,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,5,4,3,5,1,4,4,4,3,3,5,3,3,4,3,5,5,4,5,4,3,3,3,4,3,3,3,3,2,3,3,3,5,4,3,3,5,4,2,4,2,4,3,4,3,1,2,4,3,5,2,3,1,3,3,2,2,3,3,3,4,3,2,3,4,2,3,
|
||||
4/13/2022 16:05:00,4/13/2022 16:14:00,0,100,492,1,2022-04-13T16:14:0,R_115sMJXtlXF6Tpu,41.9261,-71.3011,anonymous,EN,1,160050,3,3,4,5,5,3,4,1,3,3,2,3,3,3,3,2,4,3,4,2,2,3,2,3,2,3,4,2,3,3,3,2,2,2,3,3,3,4,4,4,2,1,1,1,5,,2,,2,1,2,3,1,3,2,2,4,3,2,4,,,,3,3,2,5,5,3,3,
|
||||
3/30/2022 14:38:00,3/30/2022 14:51:00,0,100,793,1,2022-03-30T14:51:0,R_30oh5dOgVKaYe0i,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,4,2,2,3,1,5,5,4,5,4,4,4,4,2,2,1,3,4,4,4,4,2,3,3,3,2,4,5,3,3,3,4,3,2,3,3,2,3,4,2,3,3,3,4,3,3,2,3,4,4,5,3,3,1,2,4,3,5,2,2,2,4,3,5,4,4,4,4,
|
||||
4/27/2022 9:16:00,4/27/2022 9:25:00,0,100,544,1,2022-04-27T9:25:0,R_2YsUEHno78bPosH,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,5,5,5,4,3,5,5,5,5,2,3,3,3,4,5,5,5,5,5,4,5,5,3,3,4,5,4,4,3,4,4,3,3,5,5,1,5,4,3,4,4,4,,,,3,3,3,3,3,,,,4,4,4,5,,,,3,3,1,2,3,3,3,
|
||||
4/13/2022 15:45:00,4/13/2022 15:57:00,0,100,745,1,2022-04-13T15:57:0,R_1q2FgA7pUSW2GFZ,41.9261,-71.3011,anonymous,EN,1,160035,5,3,4,4,2,1,1,1,4,4,3,3,2,3,3,2,2,1,2,3,4,4,3,3,3,4,4,3,3,3,3,3,2,2,1,1,3,3,1,2,3,1,1,3,4,2,2,2,2,2,4,4,3,2,2,1,2,3,1,2,1,2,1,1,2,1,3,3,3,3,
|
||||
4/6/2022 14:47:00,4/6/2022 15:01:00,0,100,832,1,2022-04-06T15:1:0,R_6RqMEQnNzzdVLod,41.9261,-71.3011,anonymous,EN,1,160505,4,5,5,3,3,3,2,1,4,5,5,3,2,2,2,1,2,1,2,2,2,3,2,2,2,4,3,3,3,3,3,3,3,3,4,1,2,2,2,3,3,1,3,4,2,2,2,2,2,2,3,3,4,1,2,2,2,2,2,2,2,2,2,3,2,4,4,5,3,4,
|
||||
3/30/2022 14:57:00,3/30/2022 15:07:00,0,100,622,1,2022-03-30T15:7:0,R_DIFK7epfjBE9HsB,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,4,3,5,4,2,5,5,5,4,2,2,2,3,3,3,3,5,5,5,5,4,3,4,4,1,3,4,2,1,3,4,3,3,3,3,2,3,3,2,3,3,3,3,4,4,3,3,3,3,3,2,3,1,5,5,3,4,3,3,3,3,3,3,3,3,3,3,
|
||||
4/27/2022 14:30:00,4/27/2022 14:47:00,0,100,1023,1,2022-04-27T14:47:0,R_2flX3RLxNLjDy5G,42.801,-71.3085,anonymous,EN,1,160320,5,5,5,4,4,4,3,2,4,4,4,4,2,1,2,2,2,2,2,5,5,4,3,3,3,3,3,2,3,3,3,3,3,3,2,2,2,2,2,3,4,1,2,2,3,,3,,4,4,3,4,4,2,2,1,2,2,2,2,,,,3,3,3,3,3,3,5,
|
||||
4/11/2022 11:07:00,4/11/2022 11:26:00,0,100,1165,1,2022-04-11T11:26:0,R_3njvhYb5ac35W9h,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,4,3,3,3,2,5,5,5,5,4,4,4,4,3,2,2,4,4,4,5,4,4,3,3,3,4,4,3,4,2,5,2,4,4,4,3,4,4,3,3,3,,,,,3,3,3,5,3,4,3,1,4,5,3,4,,,,2,2,1,2,2,3,3,
|
||||
4/27/2022 14:32:00,4/27/2022 16:53:00,0,100,8476,1,2022-04-27T16:53:0,R_O0CHaCSsCkOPbUZ,42.801,-71.3085,anonymous,EN,1,160320,5,5,5,5,5,4,4,2,5,5,5,4,3,4,4,4,5,2,4,5,5,5,4,4,4,3,3,3,4,4,4,4,4,4,4,5,5,4,4,5,5,3,4,3,5,5,4,4,2,1,5,2,5,4,3,2,3,4,2,3,2,3,3,2,3,5,3,3,3,3,
|
||||
4/13/2022 16:12:00,4/13/2022 16:23:00,0,100,654,1,2022-04-13T16:23:0,R_263eJL2w4sey735,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,3,3,3,1,5,4,4,5,3,4,3,2,3,3,2,2,2,2,2,3,2,3,3,4,4,4,4,4,2,2,2,2,3,3,4,2,2,1,2,2,4,3,4,3,3,3,4,3,5,3,2,2,4,4,3,4,4,4,4,3,4,3,2,3,5,5,
|
||||
4/13/2022 15:52:00,4/13/2022 16:00:00,0,100,525,1,2022-04-13T16:0:0,R_2diRtC8zjxNFvAU,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,4,2,5,4,,,,,,3,4,4,2,,,,4,3,3,,,,4,5,4,5,4,5,4,,,,2,3,2,3,2,5,3,4,4,,,,,,,,,4,3,3,2,4,3,3,2,,,,,,,2,3,2,3,
|
||||
4/13/2022 15:44:00,4/13/2022 16:01:00,0,100,987,1,2022-04-13T16:1:0,R_RrVgQC2rW9ZclMZ,41.9261,-71.3011,anonymous,EN,1,160035,5,4,4,4,2,2,2,1,4,4,5,4,2,1,2,2,4,1,4,3,2,2,2,2,1,3,4,3,3,,3,3,4,3,3,3,3,3,2,3,5,3,3,3,4,,4,,3,2,4,4,5,2,2,1,3,2,2,2,,,,2,2,3,3,3,3,3,
|
||||
4/13/2022 16:28:00,4/13/2022 16:40:00,0,100,714,1,2022-04-13T16:40:0,R_qDj5ZG6XfxiydcR,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,4,2,3,1,5,5,4,5,2,3,3,3,1,2,4,3,5,5,3,3,2,4,4,4,4,5,4,4,3,4,3,3,5,3,3,3,3,2,2,3,4,4,4,4,4,3,2,4,5,4,3,1,3,3,2,3,2,3,3,4,3,4,3,3,3,3,
|
||||
4/6/2022 14:47:00,4/6/2022 14:59:00,0,100,737,1,2022-04-06T14:59:0,R_3FKl7VYSZYAzJPR,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,2,2,4,2,2,4,3,2,3,3,2,1,2,3,3,3,3,2,3,2,2,1,3,3,2,2,3,3,2,3,3,4,1,1,1,1,4,4,1,2,2,,,,,3,3,3,2,4,2,2,1,2,2,2,2,,,,2,3,3,3,5,4,5,Don't ask questions regarding teaching to staff who do not teach
|
||||
4/6/2022 14:48:00,4/6/2022 15:04:00,0,100,954,1,2022-04-06T15:4:0,R_3MFZZMBthjS1x6g,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,2,2,2,2,2,4,2,5,5,1,2,2,3,3,2,2,3,2,3,2,1,1,3,2,3,3,3,3,3,3,3,3,2,2,1,1,1,2,1,3,3,3,4,3,2,2,2,3,5,3,2,2,1,2,2,2,2,4,3,3,4,2,3,3,3,3,5,
|
||||
4/6/2022 13:59:00,4/6/2022 14:08:00,0,100,527,1,2022-04-06T14:8:0,R_1P7Panky3oVYmhj,41.9261,-71.3011,anonymous,EN,1,160505,4,2,4,2,2,3,2,,,,,,2,3,2,1,,,,3,3,3,,,,3,3,2,2,3,2,2,,,,2,3,2,1,5,4,2,3,4,,,,,,,,,5,,3,,3,2,2,2,,,,,,,1,4,3,5,
|
||||
4/6/2022 13:39:00,4/6/2022 13:52:00,0,100,786,1,2022-04-06T13:52:0,R_3Gs6dalZvMSovDv,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,5,5,5,4,,,,,,3,3,3,4,,,,5,4,5,,,,3,3,3,3,3,3,3,,,,3,3,4,3,2,4,4,5,5,,,,,,,,,2,3,1,1,4,5,4,3,,,,,,,3,5,4,4,
|
||||
4/6/2022 14:41:00,4/6/2022 14:57:00,0,100,944,1,2022-04-06T14:57:0,R_20YExlHgBb6jw77,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,3,2,4,2,4,3,4,4,1,2,1,4,3,2,2,4,3,4,1,1,1,3,3,4,3,3,4,4,2,3,3,3,3,2,1,2,4,2,2,2,3,3,4,3,3,3,3,4,2,4,4,2,3,4,3,4,3,3,3,2,2,3,3,4,4,5,
|
||||
4/12/2022 8:26:00,4/12/2022 8:47:00,0,100,1287,1,2022-04-12T8:47:0,R_2QLE55URgsi0ERx,41.97390747,-71.32839966,anonymous,EN,1,160315,5,4,4,4,4,4,1,2,4,3,5,4,3,2,2,2,4,2,4,4,3,2,3,4,3,3,3,4,4,4,5,4,3,3,2,2,2,1,2,5,4,2,3,2,,,,,3,2,3,3,1,4,3,2,4,4,3,3,,,,2,3,3,3,4,4,5,
|
||||
4/12/2022 13:38:00,4/12/2022 13:56:00,0,100,1100,1,2022-04-12T13:56:0,R_UW6ztLpMJLyaaFX,42.80099487,-71.3085022,anonymous,EN,1,160320,4,4,5,5,4,4,3,2,4,4,5,4,1,3,1,1,3,2,5,5,5,5,3,3,3,3,4,4,4,4,4,4,3,4,3,2,3,3,3,4,4,3,4,4,3,,4,,4,3,3,4,3,3,2,1,4,3,1,3,,,,2,3,4,3,3,3,3,
|
||||
3/30/2022 15:06:00,3/30/2022 15:26:00,0,100,1163,1,2022-03-30T15:26:0,R_2TvmIbVUWkVHQqS,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,5,4,5,4,1,4,5,5,4,4,4,3,5,4,5,4,4,5,5,5,4,3,3,3,2,3,3,3,3,5,4,4,3,4,4,3,2,5,1,4,4,4,3,5,4,3,4,5,4,5,2,2,1,3,3,2,4,3,3,3,3,4,4,4,5,3,3,
|
||||
4/13/2022 11:02:00,4/13/2022 11:09:00,0,100,432,1,2022-04-13T11:9:0,R_2wAjQyqiW18K3OU,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,4,4,5,4,2,4,4,2,4,4,4,4,4,3,2,4,5,5,5,5,4,5,3,3,4,4,4,4,4,3,4,2,3,3,3,1,5,5,1,3,4,4,3,4,3,4,3,4,5,2,2,2,1,3,3,3,4,3,3,3,4,4,3,3,3,3,3,
|
||||
4/13/2022 16:05:00,4/13/2022 16:23:00,0,100,1036,1,2022-04-13T16:23:0,R_vxhDhBR8CnNR5ux,41.9261,-71.3011,anonymous,EN,1,160050,5,5,4,5,5,4,3,4,4,4,4,5,3,3,3,3,3,3,5,2,3,3,2,2,2,4,5,4,5,5,4,3,4,4,3,3,4,3,3,5,4,1,1,3,5,4,4,4,5,5,4,5,5,4,3,1,4,5,4,5,3,4,4,4,4,4,3,4,4,4,
|
||||
4/13/2022 15:51:00,4/13/2022 15:59:00,0,100,503,1,2022-04-13T15:59:0,R_1ln0NyhPxHwje4H,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,3,5,3,1,4,4,4,4,2,3,3,2,5,2,3,2,2,2,3,3,3,4,5,4,3,4,3,3,2,2,2,4,4,3,3,3,5,1,2,2,4,4,4,4,3,3,3,4,5,2,2,1,3,3,2,3,3,3,3,3,4,3,4,4,3,3,
|
||||
4/27/2022 9:46:00,4/27/2022 9:53:00,0,100,453,1,2022-04-27T9:53:0,R_2dYD5t10NZtP3Zu,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,5,5,3,5,2,5,4,4,4,3,4,4,4,3,3,3,4,3,3,3,3,3,3,3,3,4,4,3,3,3,3,3,4,4,5,5,5,4,2,2,2,,,,,2,2,4,5,5,3,3,1,3,3,2,3,,,,1,4,4,3,3,3,3,
|
||||
4/6/2022 14:44:00,4/6/2022 14:58:00,0,100,856,1,2022-04-06T14:58:0,R_1P1rCiYPof3w54S,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,2,4,3,3,3,3,3,4,3,2,3,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,3,1,2,2,3,2,3,4,1,2,5,4,3,5,3,3,2,2,2,2,2,2,1,2,3,2,2,2,3,3,4,4,
|
||||
4/6/2022 14:41:00,4/6/2022 14:57:00,0,100,927,1,2022-04-06T14:57:0,R_sUxSYbeiUMbDMOJ,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,2,5,1,,,,,,1,4,1,1,,,,4,2,2,,,,3,3,3,3,3,3,3,,,,3,2,2,3,3,3,1,3,3,,,,,,,,,3,3,3,2,3,2,3,4,,,,,,,4,4,3,5,Don't include questions asking about my role as a teacher.
|
||||
4/6/2022 8:24:00,4/6/2022 10:01:00,0,100,5802,1,2022-04-06T10:1:0,R_1jrfqAbr95LClej,41.9261,-71.3011,anonymous,EN,1,160505,3,4,4,3,3,5,4,2,3,3,4,3,2,3,3,4,1,4,3,5,5,5,5,5,4,3,3,3,3,4,3,2,3,2,2,2,1,2,3,1,4,1,3,4,3,4,3,3,3,4,3,5,5,3,3,2,4,4,3,3,3,3,3,3,4,4,4,5,3,4,
|
||||
4/11/2022 10:00:00,4/11/2022 10:42:00,0,100,2528,1,2022-04-11T10:42:0,R_roriw5BIHHyaYmd,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,4,3,4,4,2,4,4,4,4,3,5,4,4,4,4,4,5,4,4,5,5,5,5,5,5,4,4,4,3,5,5,5,2,1,2,4,5,4,4,5,4,5,,5,,5,3,5,5,2,3,3,1,4,4,4,4,,,,3,3,3,3,4,5,5,
|
||||
4/12/2022 13:35:00,4/12/2022 13:54:00,0,100,1141,1,2022-04-12T13:54:0,R_3IbixiHxjjgBCXK,41.97390747,-71.32839966,anonymous,EN,1,160315,4,4,4,2,1,2,3,1,4,3,4,3,2,2,1,1,2,2,1,4,3,2,2,2,2,1,2,2,1,2,2,2,3,2,1,3,3,4,2,2,2,2,3,5,,,,,4,2,2,2,1,2,3,1,2,3,2,3,,,,2,1,1,3,4,3,4,
|
||||
4/13/2022 13:14:00,4/13/2022 13:22:00,0,100,489,1,2022-04-13T13:22:0,R_21HXC7C056EoFwI,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,4,3,5,3,1,5,4,4,3,3,4,4,3,3,2,3,5,5,5,5,4,5,4,4,3,4,4,3,3,3,4,2,3,2,3,3,2,4,2,4,5,4,4,4,5,3,4,4,4,5,3,2,3,3,3,2,3,3,2,3,4,4,4,5,5,5,5,
|
||||
4/12/2022 14:42:00,4/12/2022 14:47:00,0,100,322,1,2022-04-12T14:47:0,R_2P6GlkmsDMZIYcH,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,5,5,5,5,,,,,,3,2,2,3,,,,5,5,5,,,,3,4,4,3,3,4,4,,,,2,2,3,3,5,4,2,4,3,,,,,,,,,5,3,3,3,4,4,3,3,,,,,,,3,4,4,4,
|
||||
4/6/2022 14:52:00,4/6/2022 14:59:00,0,100,393,1,2022-04-06T14:59:0,R_3Gkex2Lj4bzv5yM,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,3,4,3,,,,,,3,3,3,3,,,,1,1,1,,,,2,2,3,3,3,3,3,,,,3,2,2,2,2,4,2,2,4,,,,,,,,,4,3,2,1,3,2,2,3,,,,,,,3,5,2,5,"As socio-emotional support staff, I generally do not know what classroom environments are like in terms of students helping each other learn, amount of physical and creative activities, etc. so those answers might not be totally accurate. I most often hear about major issues."
|
||||
4/6/2022 7:41:00,4/6/2022 8:30:00,0,100,2936,1,2022-04-06T8:30:0,R_1FLGTueWX7iy5BI,41.9261,-71.3011,anonymous,EN,1,160505,5,3,5,2,2,3,1,,,,,,2,2,2,1,,,,3,3,4,,,,3,3,3,3,2,3,3,,,,2,2,2,1,3,4,2,2,4,,,,,,,,,2,2,2,1,2,2,2,2,,,,,,,1,4,3,1,
|
||||
4/12/2022 13:22:00,4/12/2022 13:37:00,0,100,899,1,2022-04-12T13:37:0,R_2PdOAxgaU4TG77w,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,4,4,5,3,3,4,3,4,4,5,4,4,4,5,2,4,5,5,5,4,4,5,4,2,4,3,3,3,3,3,3,2,4,4,2,3,3,3,1,2,2,5,3,4,3,3,2,2,4,2,4,3,2,4,5,3,4,2,2,3,4,3,4,3,3,3,4,
|
||||
3/30/2022 14:58:00,3/30/2022 15:14:00,0,100,956,1,2022-03-30T15:14:0,R_3NE9roJN349Zlt1,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,5,4,4,4,1,4,4,4,4,2,2,3,2,2,3,5,3,1,5,4,4,3,3,3,3,4,3,3,3,5,5,5,3,3,3,3,3,5,2,4,4,3,4,5,4,3,3,3,3,2,4,4,2,3,5,5,5,3,3,3,3,3,3,3,3,3,3,
|
||||
4/3/2022 10:08:00,4/3/2022 10:18:00,0,100,588,1,2022-04-03T10:18:0,R_41UmTmz1I1oTmZH,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,3,3,3,4,3,5,5,5,5,4,4,2,,,,,,3,4,3,4,3,4,3,4,4,2,4,4,,,,3,3,4,4,4,5,4,5,5,5,,3,,4,3,3,4,5,3,2,3,4,4,3,4,,,,1,2,1,4,5,4,4,
|
||||
4/13/2022 16:08:00,4/13/2022 16:19:00,0,100,632,1,2022-04-13T16:19:0,R_73TVyPgGYcCcseJ,41.3186,-72.9302,anonymous,EN,1,160050,4,4,4,4,3,5,4,,,,,,4,4,4,3,,,,3,4,4,,,,3,3,4,4,4,4,3,,,,3,5,4,2,5,2,1,4,2,,,,,,,,,5,3,2,1,3,4,2,3,,,,,,,3,3,4,5,"Should include questions about student and mental health, safety and well being "
|
||||
4/12/2022 8:37:00,4/12/2022 8:43:00,0,93,384,0,2022-04-19T8:43:0,R_1PUgQLqPQ9aT7BI,,,anonymous,EN,1,160320,5,4,5,5,5,5,4,2,5,5,3,4,3,4,2,2,4,5,5,5,5,5,4,4,4,3,3,4,4,4,4,4,3,3,3,3,3,2,4,4,4,2,3,3,5,4,5,3,3,3,3,4,5,2,2,1,2,3,2,3,3,3,3,3,4,4,3,3,3,3,
|
||||
4/27/2022 10:23:00,4/27/2022 10:38:00,0,100,899,1,2022-04-27T10:38:0,R_41JnpaQeZ37plaV,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,4,4,4,4,2,4,4,4,4,3,3,3,3,4,3,4,3,3,2,2,3,2,5,5,4,4,3,4,3,3,3,3,2,3,3,3,4,3,2,2,2,,,,,3,3,3,3,1,1,1,1,3,3,3,3,,,,3,3,3,1,1,2,3,
|
||||
4/24/2022 19:38:00,4/24/2022 19:49:00,0,100,667,1,2022-04-24T19:49:0,R_3qxNnW3rZCYjFkA,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,5,5,5,3,1,4,4,4,3,3,3,4,4,4,2,3,4,4,4,3,2,2,4,4,3,5,5,4,4,3,4,2,2,2,1,2,4,4,3,4,4,4,3,4,3,3,3,3,5,5,5,3,4,4,2,2,3,2,3,3,3,3,3,3,3,3,3,
|
||||
3/30/2022 14:32:00,3/30/2022 14:48:00,0,100,991,1,2022-03-30T14:48:0,R_3Ea2Nf8rBjW0CXr,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,4,3,5,2,1,4,4,4,5,3,3,3,4,5,3,4,5,4,4,4,4,4,3,3,3,2,2,3,2,4,4,3,4,4,4,5,5,4,1,2,3,3,4,4,4,4,3,3,5,3,3,3,1,3,3,2,3,3,3,3,3,2,3,2,3,4,4,
|
||||
4/6/2022 14:53:00,4/6/2022 15:03:00,0,100,608,1,2022-04-06T15:3:0,R_1kSscSQ14Vhreon,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,5,5,5,5,3,5,5,5,5,3,2,1,5,4,4,4,3,4,3,4,4,4,5,5,4,4,4,4,4,3,3,3,5,5,5,5,2,,,,,3,,3,,5,3,3,1,2,3,3,3,3,4,4,4,,,,5,4,5,4,4,4,4,
|
||||
4/27/2022 11:53:00,4/27/2022 12:06:00,0,100,769,1,2022-04-27T12:6:0,R_3ffv6r1hoh3vvKA,42.3562,-71.0631,anonymous,EN,1,160050,5,5,5,5,5,5,3,5,4,4,4,4,2,4,3,4,4,3,4,3,3,3,4,4,2,4,4,4,4,4,4,3,4,4,4,3,3,4,3,4,5,3,3,3,,,,,3,2,1,3,5,3,2,1,3,4,4,4,,,,3,3,1,2,2,3,3,
|
||||
4/26/2022 14:54:00,4/26/2022 15:02:00,0,100,499,1,2022-04-26T15:2:0,R_1Iz2V27qKdw0law,41.9261,-71.3011,anonymous,EN,1,160050,4,4,4,2,2,4,2,2,4,3,3,3,2,2,1,2,2,1,2,1,1,1,1,2,1,2,3,3,3,3,3,3,2,3,2,3,3,3,3,2,4,2,3,4,,,,,2,2,2,3,5,3,2,1,4,5,3,4,,,,2,2,1,2,2,2,2,
|
||||
4/12/2022 10:56:00,4/12/2022 11:13:00,0,100,1017,1,2022-04-12T11:13:0,R_2xA8GiCrxrWJw3M,41.92610168,-71.30110168,anonymous,EN,1,160515,5,5,5,5,4,4,,3,5,5,5,5,3,3,3,4,4,4,4,5,4,5,5,5,5,3,3,4,4,3,4,3,3,4,3,5,3,5,4,4,4,4,4,4,3,3,3,4,5,5,5,5,2,1,3,1,3,3,2,3,4,4,4,4,4,4,2,2,3,3,
|
||||
4/13/2022 16:23:00,4/13/2022 16:34:00,0,100,680,1,2022-04-13T16:34:0,R_2CDQcQgSruEaURb,41.9261,-71.3011,anonymous,EN,1,160045,5,5,4,5,5,5,,3,5,4,4,4,3,,3,3,5,,4,3,3,4,4,4,3,,,,,4,,3,4,3,3,2,4,3,1,3,2,2,2,3,4,1,,,4,4,3,4,4,4,,,5,4,,4,2,,,,3,4,2,3,3,,
|
||||
4/6/2022 14:10:00,4/6/2022 15:00:00,0,100,3002,1,2022-04-06T15:0:0,R_9LbrqHxaQnFGFmF,41.9261,-71.3011,anonymous,EN,1,160505,4,5,4,3,3,4,3,2,5,5,5,4,3,3,3,3,3,3,3,5,5,1,5,,5,,,4,3,3,3,3,3,3,3,3,3,3,2,2,3,3,,,4,4,2,3,2,3,3,5,3,,,3,3,3,3,3,1,1,2,4,4,3,,,,,
|
||||
4/13/2022 14:49:00,4/13/2022 15:00:00,0,100,633,1,2022-04-13T15:0:0,R_rfPCbtjDgIsaQhz,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,2,2,3,4,1,3,4,4,3,1,2,2,2,4,4,5,2,2,2,2,3,2,4,4,3,3,2,3,3,4,3,1,4,3,2,4,2,3,1,3,3,2,4,3,3,3,3,4,4,5,2,2,1,3,3,3,3,1,2,2,2,2,2,1,3,2,3,
|
||||
4/6/2022 14:03:00,4/6/2022 14:57:00,0,100,3205,1,2022-04-06T14:57:0,R_3FRp6ISemIZVZ06,41.7652,-72.7028,anonymous,EN,1,160505,5,4,5,4,4,2,2,2,5,4,3,3,1,2,2,2,2,4,1,4,5,5,3,3,2,3,3,3,4,3,3,4,3,3,3,1,3,2,2,2,3,3,3,3,3,4,3,3,2,2,3,3,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,4,
|
||||
4/26/2022 7:56:00,4/26/2022 8:10:00,0,100,817,1,2022-04-26T8:10:0,R_12QIqmhjxLRv974,41.9261,-71.3011,anonymous,EN,1,160040,4,4,4,4,3,5,1,1,4,4,4,3,4,3,4,3,4,1,3,2,2,4,2,2,1,4,5,3,4,2,3,3,3,4,2,3,3,3,3,4,4,3,3,4,3,4,4,3,3,3,3,4,5,3,2,2,4,3,4,3,2,2,3,1,2,2,2,3,3,5,
|
||||
4/6/2022 14:36:00,4/6/2022 14:57:00,0,100,1205,1,2022-04-06T14:57:0,R_0jONBP36bcQjMR3,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,3,3,2,2,1,4,4,4,4,3,2,1,1,2,1,1,4,4,4,4,4,2,3,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,3,3,4,4,4,4,4,3,4,4,4,2,2,3,2,4,3,2,3,3,3,4,2,2,4,5,5,5,4,
|
||||
4/6/2022 14:35:00,4/6/2022 14:55:00,0,100,1180,1,2022-04-06T14:55:0,R_10Z80Z8gjnlNmzk,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,4,2,4,4,1,4,3,4,3,4,4,4,4,2,2,3,3,3,4,1,1,1,3,3,4,3,4,4,3,3,2,4,3,3,3,3,2,4,3,3,2,4,3,3,4,4,4,4,4,4,3,2,1,2,3,2,3,2,2,2,4,3,4,4,5,4,5,
|
||||
4/13/2022 16:05:00,4/13/2022 16:16:00,0,100,631,1,2022-04-13T16:16:0,R_2aLbgSvNaGaZSpn,41.9261,-71.3011,anonymous,EN,1,160050,4,4,4,2,2,3,2,2,4,4,4,4,3,3,3,3,3,2,2,1,3,1,1,1,1,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,3,1,1,1,4,3,3,3,3,2,3,4,5,2,1,1,2,3,1,3,3,3,3,1,2,1,2,3,3,4,
|
||||
3/30/2022 14:47:00,3/30/2022 15:19:00,0,100,1900,1,2022-03-30T15:19:0,R_sR7LJhfFKDIEChr,41.88600159,-71.34570313,anonymous,EN,1,160305,5,4,4,4,2,3,4,1,4,4,4,4,3,2,2,3,3,1,3,4,4,4,3,3,3,2,3,3,4,4,3,2,2,2,2,2,3,2,1,1,2,3,1,1,3,2,5,3,2,2,3,4,4,3,2,2,1,2,,2,3,3,4,3,3,3,3,3,3,3,
|
||||
4/6/2022 14:07:00,4/6/2022 15:02:00,0,100,3291,1,2022-04-06T15:2:0,R_SQbN6MEf5h7QJqh,41.9261,-71.3011,anonymous,EN,1,160505,4,4,3,2,2,2,4,3,3,3,4,4,2,3,2,3,4,3,3,4,4,4,4,4,2,4,4,4,2,3,4,3,4,2,4,5,4,4,3,2,2,2,1,2,3,5,5,4,3,3,4,5,2,1,2,1,3,3,3,4,3,2,2,4,3,3,4,4,4,4,
|
||||
4/6/2022 14:47:00,4/6/2022 15:01:00,0,100,856,1,2022-04-06T15:1:0,R_1i2MTNeXKZm1ZNJ,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,3,4,2,2,4,5,4,3,2,2,3,2,3,2,3,1,2,2,2,1,1,2,2,2,3,2,3,3,3,2,2,4,2,2,2,2,3,1,3,4,4,,4,,2,2,1,2,4,,,,3,3,2,3,,,,3,3,2,3,5,3,4,
|
||||
4/12/2022 8:33:00,4/12/2022 8:41:00,0,100,468,1,2022-04-12T8:41:0,R_1imR857eXuDLPlU,40.76519775,-73.95880127,anonymous,EN,1,160320,5,5,5,5,5,5,5,2,5,5,5,5,5,5,5,5,5,2,5,5,5,5,5,5,5,3,3,4,4,4,4,4,4,4,4,4,4,4,5,5,5,2,4,5,4,4,5,4,5,4,5,4,5,3,3,1,4,4,2,3,3,3,3,4,4,5,3,3,3,3,
|
||||
4/26/2022 9:00:00,4/26/2022 9:06:00,0,100,350,1,2022-04-26T9:6:0,R_10YIWs8SMlsQZp4,42.801,-71.3085,anonymous,EN,1,160320,5,5,5,4,4,5,3,,,,,,2,2,2,3,,,,5,5,5,,,,4,4,4,3,3,3,3,,,,3,3,2,3,4,3,1,3,3,,,,,,,,,5,3,3,3,3,3,3,3,,,,,,,3,3,3,4,
|
||||
4/6/2022 14:42:00,4/6/2022 14:52:00,0,100,606,1,2022-04-06T14:52:0,R_1dLTSAVMSrNoDWQ,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,2,4,4,1,4,4,4,4,3,2,3,3,4,2,3,2,1,3,2,2,1,4,4,3,3,3,3,3,4,3,4,3,3,2,2,2,3,1,3,2,3,4,4,3,3,3,3,3,5,3,2,1,3,2,3,3,4,3,4,3,4,4,3,4,3,4,
|
||||
3/30/2022 15:10:00,3/30/2022 20:23:00,0,100,18802,1,2022-03-30T20:23:0,R_2axaSQ2Qg9BVWpj,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,4,3,4,4,2,1,5,5,5,4,2,4,3,2,3,3,3,3,2,3,4,4,4,3,3,2,3,4,3,3,4,4,3,4,3,3,3,3,4,1,3,3,4,3,4,4,2,2,3,4,4,2,2,1,3,4,2,4,2,3,2,2,3,4,2,2,3,4,
|
||||
4/6/2022 14:47:00,4/6/2022 15:05:00,0,100,1076,1,2022-04-06T15:5:0,R_yWvklcyPRUWSv1n,41.9261,-71.3011,anonymous,EN,1,160505,5,5,4,3,3,5,2,2,5,4,5,3,4,3,3,3,4,1,3,4,3,3,2,2,2,3,,4,4,4,4,3,2,3,3,3,3,3,2,3,3,2,3,4,4,5,4,4,2,2,4,1,4,4,4,,3,4,3,3,5,4,4,2,3,4,3,4,3,5,
|
||||
4/27/2022 14:37:00,4/27/2022 14:45:00,0,100,496,1,2022-04-27T14:45:0,R_2t5aKAAxEfB7fMa,42.801,-71.3085,anonymous,EN,1,160320,5,5,5,4,4,3,4,1,4,4,3,3,4,4,4,5,3,2,3,5,5,4,4,4,3,3,3,3,3,4,3,3,3,3,3,2,1,2,2,4,4,2,2,3,3,4,3,4,2,2,2,3,1,3,3,1,4,3,2,4,3,3,3,3,3,3,3,4,3,3,
|
||||
4/12/2022 9:04:00,4/12/2022 9:11:00,0,100,445,1,2022-04-12T9:11:0,R_A4BEdb1HKcL1eRb,41.97390747,-71.32839966,anonymous,EN,1,160315,4,4,5,4,3,3,3,1,4,3,5,5,3,3,1,3,3,3,3,3,3,3,3,4,2,3,3,2,2,2,2,1,4,4,4,3,3,3,4,2,4,3,4,4,,,,,4,4,4,4,1,3,3,3,4,4,4,4,,,,3,3,1,3,3,2,2,
|
||||
4/11/2022 10:44:00,4/11/2022 10:55:00,0,100,628,1,2022-04-11T10:55:0,R_3ReY0SBHkdRKsHl,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,3,4,4,4,3,4,4,4,4,4,5,4,4,4,5,4,5,5,4,5,5,5,5,5,5,4,4,4,3,5,5,5,2,2,2,5,5,5,4,4,4,5,,5,,4,3,3,4,3,2,2,1,4,4,4,4,,,,3,3,4,4,5,5,5,
|
||||
3/30/2022 15:07:00,3/30/2022 15:26:00,0,100,1164,1,2022-03-30T15:26:0,R_3NR0UNG1yfYIW5B,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,3,3,4,5,1,5,4,4,4,2,3,4,3,4,3,4,4,5,5,4,4,4,5,5,4,4,4,4,4,4,4,4,4,3,1,3,3,4,2,2,3,4,4,4,4,4,3,4,4,5,3,2,2,2,3,3,3,2,3,3,2,3,4,3,3,3,4,
|
||||
4/28/2022 10:16:00,4/28/2022 10:31:00,0,100,907,1,2022-04-28T10:31:0,R_322PwCdCxTkNHa3,41.9261,-71.3011,anonymous,EN,1,160315,4,3,4,2,2,3,2,2,4,3,,4,4,3,3,3,4,3,4,4,4,4,5,3,3,5,5,2,3,3,3,3,3,3,3,3,4,3,3,4,4,2,3,3,,,,,4,,,,1,3,2,2,5,5,5,4,,,,2,2,2,3,2,2,2,
|
||||
4/6/2022 9:51:00,4/6/2022 10:19:00,0,100,1706,1,2022-04-06T10:19:0,R_1DZjZq8S6Znv47l,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,2,2,3,2,2,4,4,4,3,2,3,2,3,3,2,2,4,3,2,4,4,2,3,3,4,3,2,3,3,4,3,4,3,3,2,2,4,3,3,4,4,,,,,4,4,3,5,1,1,2,1,3,2,3,2,,,,2,3,2,3,4,1,3,
|
||||
4/6/2022 14:07:00,4/6/2022 14:51:00,0,100,2679,1,2022-04-06T14:51:0,R_3ipYL2p1UMMA8IA,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,3,3,5,3,5,4,4,5,4,2,3,4,4,2,4,3,2,1,2,2,2,1,3,3,3,3,3,3,3,4,4,4,4,3,3,3,2,3,3,3,3,4,,4,,3,3,3,3,5,2,2,1,3,3,3,4,,,,2,3,3,4,3,2,3,
|
||||
4/6/2022 14:38:00,4/6/2022 14:51:00,0,100,818,1,2022-04-06T14:51:0,R_1JY16UvaTytV4mm,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,4,3,3,3,1,4,4,4,4,2,3,2,3,2,2,3,4,4,5,4,4,3,2,2,3,2,3,3,3,3,3,3,3,1,3,3,3,3,2,2,2,3,4,4,4,4,3,4,4,2,2,2,1,2,3,2,3,3,3,3,3,3,4,4,5,4,5,
|
||||
4/12/2022 10:18:00,4/12/2022 10:25:00,0,100,409,1,2022-04-12T10:25:0,R_O9EVvoENOIr6Io1,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,4,4,4,5,3,1,4,4,3,4,3,3,4,3,3,4,4,5,5,4,4,4,4,3,2,3,3,3,3,3,3,4,3,3,3,2,3,2,4,2,3,3,4,4,4,4,5,5,5,5,3,2,2,1,4,3,1,3,3,4,4,4,3,3,3,3,3,3,
|
||||
3/30/2022 14:35:00,3/30/2022 15:06:00,0,100,1886,1,2022-03-30T15:6:0,R_3su1mM3yQR6cDFQ,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,4,4,4,,,,,,3,3,4,4,,,,5,5,4,,,,3,2,2,3,3,3,3,,,,3,4,4,4,4,4,3,2,3,,,,,,,,,4,3,1,2,4,3,3,4,,,,,,,1,3,1,3,
|
||||
4/14/2022 13:51:00,4/14/2022 14:03:00,0,100,739,1,2022-04-14T14:3:0,R_1fjyZ0iOk0bi4NS,41.9261,-71.3011,anonymous,EN,1,160035,4,4,5,4,2,4,3,5,4,4,5,5,3,4,2,3,4,2,4,5,5,5,5,5,4,3,3,4,4,4,4,4,4,3,4,4,4,4,3,3,5,3,3,3,,,,,3,4,3,4,1,2,2,1,4,4,3,5,,,,3,4,4,3,3,4,4,
|
||||
4/24/2022 13:59:00,4/24/2022 14:07:00,0,100,491,1,2022-04-24T14:7:0,R_RauPUlU2mClZFQt,41.8879,-70.8887,anonymous,EN,1,160040,5,5,5,5,5,5,5,2,5,4,5,4,2,4,4,4,4,4,5,4,4,4,4,5,4,4,4,4,4,3,3,3,2,3,2,2,3,3,2,4,4,2,3,3,4,3,4,3,4,4,4,5,4,3,3,2,5,4,2,4,2,3,3,3,4,3,2,3,3,3,
|
||||
4/27/2022 8:58:00,4/27/2022 9:04:00,0,100,369,1,2022-04-27T9:4:0,R_9FcUIONftAM3fJT,42.801,-71.3085,anonymous,EN,1,160320,5,4,4,2,2,3,4,,,,,,3,5,3,4,,,,4,4,4,,,,3,3,2,3,2,3,2,,,,4,4,4,3,4,4,2,3,3,,,,,,,,,5,2,2,1,3,3,2,3,,,,,,,2,3,2,3,
|
||||
4/6/2022 10:03:00,4/6/2022 10:37:00,0,100,2035,1,2022-04-06T10:37:0,R_5C4bvGQ9UVgUbzH,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,3,3,3,2,,,,,,3,4,4,3,,,,4,2,3,,,,3,3,3,3,3,3,3,,,,3,4,4,3,5,5,1,5,5,,,,,,,,,5,4,4,2,4,4,2,4,,,,,,,4,4,4,4,
|
||||
3/30/2022 15:09:00,3/30/2022 15:37:00,0,100,1706,1,2022-03-30T15:37:0,R_3fWa7HzTpThe7ji,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,5,4,3,5,4,2,3,4,4,5,3,3,2,3,4,2,3,3,3,5,4,4,2,3,3,3,3,2,3,2,3,3,3,1,2,5,4,3,5,2,4,3,4,,3,,4,4,4,4,5,3,3,2,5,3,2,3,,,,3,3,2,3,3,3,3,
|
||||
4/6/2022 14:52:00,4/6/2022 16:22:00,0,100,5369,1,2022-04-06T16:22:0,R_pMfq9dy1l15ginT,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,2,2,5,3,5,3,4,5,3,5,4,3,4,4,4,3,4,2,3,4,2,2,3,3,2,2,3,3,3,5,3,5,4,3,3,2,3,3,3,4,4,2,,3,,4,4,4,3,5,3,3,2,5,4,2,4,,,,3,2,3,4,5,3,4,
|
||||
4/13/2022 5:58:00,4/13/2022 6:06:00,0,100,485,1,2022-04-13T6:6:0,R_2axbCSI1ah7d61L,41.815,-71.3663,anonymous,EN,1,160001,5,5,5,2,3,3,3,2,4,5,4,4,2,4,4,4,5,3,5,5,5,5,5,5,5,5,5,4,4,5,4,4,5,4,5,3,3,3,3,3,4,3,4,5,5,5,4,4,3,3,3,4,3,3,3,2,5,5,3,5,3,3,3,3,3,4,3,3,5,5,
|
||||
4/13/2022 16:08:00,4/13/2022 16:23:00,0,100,921,1,2022-04-13T16:23:0,R_07BAUfXWDsEPJQd,41.9261,-71.3011,anonymous,EN,1,160050,4,5,4,4,2,4,4,4,4,4,3,3,4,3,3,3,3,2,3,3,3,5,4,4,4,3,3,2,3,3,3,2,3,4,3,2,3,3,2,3,4,1,2,2,4,2,3,2,3,4,4,4,5,3,3,1,4,4,4,3,1,1,1,3,3,2,3,3,3,4,
|
||||
4/12/2022 10:26:00,4/12/2022 10:55:00,0,100,1737,1,2022-04-12T10:55:0,R_1JWyOM6gGxm8aLg,41.97390747,-71.32839966,anonymous,EN,1,160315,4,4,4,2,2,,,,4,,4,4,,,1,,4,3,3,,1,,,,,3,3,3,2,2,3,2,2,2,1,3,3,1,3,2,4,1,2,3,,,,,,,,,,2,2,1,4,,3,2,,,,2,2,2,3,3,3,3,
|
||||
3/30/2022 14:20:00,3/30/2022 14:29:00,0,100,550,1,2022-03-30T14:29:0,R_25RdZyoFNSqFpW4,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,4,4,5,5,1,5,5,5,5,3,3,4,3,5,5,5,4,4,4,4,4,4,3,3,3,4,4,4,3,3,4,3,4,4,4,4,4,3,2,2,2,4,4,4,4,5,5,5,5,5,3,3,3,3,3,3,3,3,3,3,3,4,4,3,3,2,2,
|
||||
4/3/2022 19:48:00,4/3/2022 19:57:00,0,100,546,1,2022-04-03T19:57:0,R_2Cx4ngHdMVXAF9a,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,5,4,4,5,4,3,4,4,4,4,5,5,5,5,5,2,5,5,5,5,5,5,5,3,3,3,4,3,4,3,3,3,3,3,4,4,2,4,5,2,2,2,5,4,3,3,2,3,3,3,4,3,3,2,5,4,3,4,3,3,3,3,3,3,3,4,3,3,
|
||||
4/27/2022 9:16:00,4/27/2022 9:57:00,0,100,2475,1,2022-04-27T9:57:0,R_2X7Lgs1dtSAanJ9,41.9261,-71.3011,anonymous,EN,1,160050,3,3,4,4,4,4,3,1,3,3,4,4,2,3,2,2,4,4,4,4,5,4,3,3,2,5,5,5,5,4,4,4,4,3,4,3,2,3,4,4,5,3,4,4,,,,,3,3,3,3,5,2,3,1,4,3,3,4,,,,2,3,2,3,3,4,4,
|
||||
4/6/2022 14:44:00,4/6/2022 14:58:00,0,65,854,0,2022-04-13T14:58:0,R_OOINT2rOn7g9v1L,,,anonymous,EN,1,160505,5,5,4,4,3,4,3,2,,,,,,,,,,,,4,2,3,1,2,1,,,,3,3,3,3,,,,3,3,2,2,3,3,2,3,2,,,,,,,,,,,,,,,,,3,3,3,4,2,2,,,,,
|
||||
4/25/2022 9:10:00,4/25/2022 9:15:00,0,100,314,1,2022-04-25T9:15:0,R_1gHqsFKms2CUiAt,41.9261,-71.3011,anonymous,EN,1,160040,5,4,5,4,4,5,3,,,,,,2,3,2,3,,,,,3,3,,,,3,3,4,4,4,,4,,,,3,3,5,2,3,4,4,5,4,,,,,,,,,5,4,4,2,4,4,1,3,,,,,,,3,3,4,4,
|
||||
4/27/2022 14:53:00,4/27/2022 14:59:00,0,100,355,1,2022-04-27T14:59:0,R_2tFk13DRKjOCn8t,42.801,-71.3085,anonymous,EN,1,160320,5,4,4,4,4,5,3,1,4,4,4,4,4,3,2,3,5,3,4,5,5,5,4,4,5,3,3,4,4,4,4,3,4,3,3,4,4,4,3,3,4,2,2,3,4,3,3,3,3,3,3,5,5,3,3,1,4,4,2,4,3,3,2,4,4,4,3,4,1,3,
|
||||
4/13/2022 11:44:00,4/13/2022 11:56:00,0,100,720,1,2022-04-13T11:56:0,R_33qf33cBfoQu3R3,41.9261,-71.3011,anonymous,EN,1,160001,5,4,4,5,4,5,4,2,4,4,4,4,3,3,3,3,3,3,4,4,5,5,4,4,4,4,4,3,2,2,3,2,4,4,4,4,3,4,3,4,4,4,3,3,4,4,4,4,3,3,4,4,4,2,2,1,5,5,4,4,1,2,2,2,3,2,3,3,4,4,
|
||||
4/6/2022 13:15:00,4/6/2022 14:44:00,0,100,5330,1,2022-04-06T14:44:0,R_3FVW5nbostpJk3N,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,3,2,4,3,2,4,4,4,4,4,4,4,4,4,1,3,4,5,5,2,2,2,3,3,3,3,3,3,3,3,3,4,3,2,2,2,3,3,1,3,2,4,5,4,4,2,2,2,3,3,5,4,3,4,4,3,4,4,4,3,3,3,4,4,5,4,4,
|
||||
4/24/2022 13:40:00,4/24/2022 14:01:00,0,100,1269,1,2022-04-24T14:1:0,R_2sQHN0soDoZXsPR,40.7961,-73.9513,anonymous,EN,1,160040,4,4,5,4,4,5,4,1,4,4,4,4,1,4,3,2,5,4,5,2,2,2,2,2,2,4,4,4,4,4,4,4,3,3,2,3,3,2,4,4,3,2,3,3,4,3,4,4,3,3,3,2,5,2,2,2,4,4,4,3,3,3,3,3,3,3,3,3,3,3,
|
||||
4/13/2022 16:22:00,4/13/2022 16:37:00,0,100,946,1,2022-04-13T16:37:0,R_6Pf1XzwsLbxGil3,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,3,2,4,2,5,4,4,5,3,2,3,3,3,1,4,4,4,3,4,4,2,3,3,4,4,4,4,3,2,4,3,4,4,4,1,3,4,4,4,2,4,3,3,3,3,4,5,5,5,4,3,2,3,3,3,3,3,2,2,4,4,4,3,3,4,4,
|
||||
3/30/2022 15:10:00,3/30/2022 15:21:00,0,100,653,1,2022-03-30T15:21:0,R_2TLQKqFBgD5mBtQ,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,3,3,4,3,1,5,5,5,5,4,4,4,4,3,2,3,4,4,4,4,3,3,3,3,3,3,3,4,3,3,3,4,3,2,3,2,3,3,2,2,2,3,5,3,3,5,5,5,5,4,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,3,
|
||||
4/11/2022 14:29:00,4/11/2022 14:46:00,0,100,1044,1,2022-04-11T14:46:0,R_2pQVKhEieob1PcS,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,4,4,4,4,5,3,5,5,5,5,4,3,5,4,5,4,5,5,4,5,5,5,5,5,5,4,4,4,4,4,5,5,5,5,4,5,2,4,5,2,3,3,5,4,4,4,4,4,5,5,5,3,3,2,5,5,3,5,3,3,3,2,5,3,2,3,3,4,
|
||||
4/6/2022 14:44:00,4/6/2022 15:00:00,0,100,962,1,2022-04-06T15:0:0,R_1NtwEU9wRk278Qd,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,4,5,4,2,5,5,5,3,2,3,3,3,3,3,3,4,4,4,4,3,3,3,3,3,4,3,3,3,2,2,2,3,2,2,3,3,4,3,3,3,4,4,3,4,5,5,5,5,3,3,3,2,4,4,3,4,2,2,2,3,3,3,2,,3,3,
|
||||
3/30/2022 14:37:00,3/30/2022 15:00:00,0,100,1359,1,2022-03-30T15:0:0,R_12r5iPT1b2mp87n,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,4,5,4,3,3,3,4,3,1,3,3,2,4,4,4,4,3,4,4,4,4,3,3,4,3,4,4,3,4,3,3,3,5,5,4,3,5,2,4,4,,,,,2,1,1,3,1,2,3,3,3,3,5,3,,,,3,3,3,4,4,3,3,
|
||||
4/12/2022 10:09:00,4/12/2022 10:22:00,0,100,801,1,2022-04-12T10:22:0,R_xsW8kWAvCpc54Fb,42.80099487,-71.3085022,anonymous,EN,1,160320,5,4,5,5,4,2,5,1,5,4,5,4,3,4,2,2,3,3,3,5,5,5,4,4,2,4,5,4,3,4,4,3,3,3,3,3,3,3,2,4,3,3,3,3,1,4,4,4,4,3,3,3,2,3,3,2,4,3,3,4,3,3,3,3,3,3,3,3,3,3,
|
||||
4/13/2022 15:45:00,4/13/2022 15:58:00,0,100,793,1,2022-04-13T15:58:0,R_3fW90OgbeQX8e3M,41.9261,-71.3011,anonymous,EN,1,160035,4,4,4,2,2,5,3,2,4,5,5,4,2,4,3,3,3,1,3,3,2,4,3,3,1,3,3,4,5,4,4,4,1,3,2,3,3,4,3,3,4,3,4,4,4,4,3,3,2,2,2,2,5,3,3,2,4,3,2,3,3,3,3,3,4,3,3,3,4,4,
|
||||
4/27/2022 11:40:00,4/27/2022 11:52:00,0,100,755,1,2022-04-27T11:52:0,R_3HH4Tzf3OBvEOwv,41.9261,-71.3011,anonymous,EN,1,160050,4,4,5,4,3,5,3,2,4,3,5,4,4,4,4,3,4,4,4,4,3,3,3,4,4,2,3,3,4,3,4,3,4,4,4,4,4,4,4,5,4,2,3,3,,,,,3,2,2,2,2,3,3,1,4,4,3,4,,,,2,2,1,2,2,3,4,
|
||||
4/26/2022 9:36:00,4/26/2022 10:28:00,0,100,3123,1,2022-04-26T10:28:0,R_8lie9FuHZq0g9KV,42.801,-71.3085,anonymous,EN,1,160320,5,5,4,4,4,3,4,,4,4,4,4,1,2,2,,2,,2,5,5,5,4,4,4,3,3,3,3,4,3,2,3,4,4,3,3,2,3,4,5,2,4,4,4,3,4,4,4,5,3,5,5,3,,2,4,4,4,4,3,3,3,4,3,4,3,3,2,3,
|
||||
4/6/2022 13:44:00,4/6/2022 13:58:00,0,100,831,1,2022-04-06T13:58:0,R_TsUAJ6jktZwgwAp,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,5,4,5,4,3,5,4,5,4,3,4,2,3,4,4,5,4,4,4,3,3,3,3,3,3,3,4,3,3,3,5,3,3,2,3,3,3,4,3,1,1,,,,,4,4,4,4,5,2,2,2,4,4,4,4,,,,3,3,4,4,4,4,4,"All of the students I work with have social emotional challenges, some also have cognitive challenges."
|
||||
4/12/2022 9:19:00,4/12/2022 9:33:00,0,100,793,1,2022-04-12T9:33:0,R_1LiEBYBqpCNzuIn,42.80099487,-71.3085022,anonymous,EN,1,160320,5,4,4,2,3,2,2,1,4,3,2,2,2,2,2,2,3,2,2,5,5,5,3,3,3,3,3,2,2,2,2,2,3,2,2,1,3,2,2,2,2,1,2,2,3,3,2,3,2,2,2,3,3,2,1,1,3,3,3,3,1,1,2,3,3,3,3,3,3,3,
|
||||
4/13/2022 16:22:00,4/13/2022 16:36:00,0,100,857,1,2022-04-13T16:36:0,R_3JjXtpkjlTsX1U9,41.9261,-71.3011,anonymous,EN,1,160045,5,4,5,3,3,5,3,2,4,4,4,5,2,2,3,2,4,2,3,4,4,5,4,4,1,3,4,3,4,4,4,3,4,3,3,2,2,1,2,4,3,2,2,3,4,3,4,3,3,4,4,5,5,3,3,3,3,3,3,4,3,3,3,3,4,3,4,4,3,3,
|
||||
4/6/2022 14:06:00,4/6/2022 14:51:00,0,100,2707,1,2022-04-06T14:51:0,R_5mu6vc25gLhbacp,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,2,2,3,,,,,,3,3,4,3,,,,2,3,2,,,,3,2,2,3,3,4,3,,,,3,2,2,2,3,3,2,3,4,,,,,,,,,5,2,2,1,3,3,2,2,,,,,,,3,5,3,5,
|
||||
4/28/2022 7:57:00,4/29/2022 10:25:00,0,100,95309,1,2022-04-29T10:25:0,R_3hoQ5QWgiQU7KZH,41.9261,-71.3011,anonymous,EN,1,160040,3,4,2,3,3,3,3,1,4,3,4,4,2,1,2,1,2,1,3,2,2,1,1,1,1,4,4,3,3,3,3,3,2,2,1,2,3,4,2,4,4,1,2,2,3,3,3,3,2,2,2,3,3,2,2,,2,2,2,1,2,3,3,1,2,3,,,3,3,
|
||||
4/13/2022 15:39:00,4/13/2022 16:04:00,0,100,1496,1,2022-04-13T16:4:0,R_3qxO29JXFjUjQCg,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,4,5,5,3,2,3,3,4,5,3,3,4,2,3,2,4,3,2,2,4,4,5,3,4,4,4,4,3,4,4,4,3,3,3,3,3,4,3,3,4,4,3,2,3,3,4,4,4,4,5,2,2,2,3,3,2,3,2,3,2,4,3,4,5,5,3,3,
|
||||
4/13/2022 16:07:00,4/13/2022 16:13:00,0,30,375,0,2022-04-20T16:15:0,R_3NP2ruHcK5WQLaH,,,anonymous,EN,1,160050,,,,,,,,,,,,,,,,,2,4,3,,,,,,,,,,2,5,2,2,,,,,,,,,,,,,2,2,3,3,,,,,3,4,2,3,,,,,,,,,,,,,,,
|
||||
4/26/2022 8:56:00,4/26/2022 9:02:00,0,100,407,1,2022-04-26T9:2:0,R_22Ssw4VYrT0HjPm,41.9082,-71.1031,anonymous,EN,1,160320,4,3,4,5,5,5,4,3,3,3,4,3,3,2,4,4,3,2,5,3,2,5,3,3,4,3,3,3,3,4,3,3,3,3,3,4,4,3,3,4,4,2,4,5,,,,,3,3,3,4,1,1,1,2,2,3,3,2,,,,3,3,4,3,3,3,3,
|
||||
4/13/2022 15:45:00,4/13/2022 16:00:00,0,100,900,1,2022-04-13T16:0:0,R_3qPDhrBv74a5FYO,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,4,3,4,1,5,3,4,4,3,3,3,3,4,3,5,4,3,4,4,4,4,4,4,3,4,4,4,3,5,5,4,4,4,3,1,4,3,1,2,2,3,3,4,4,4,3,3,3,2,3,3,2,4,4,3,4,3,3,3,3,3,2,2,3,3,3,
|
||||
4/13/2022 15:44:00,4/13/2022 15:53:00,0,100,540,1,2022-04-13T15:53:0,R_pKKoNZ59mO7pPX3,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,3,5,3,1,5,4,4,5,3,2,3,3,3,2,3,3,3,2,3,2,2,3,3,3,4,3,3,3,3,3,3,4,3,3,3,3,4,2,3,4,5,4,4,4,2,2,3,4,5,3,3,2,3,3,1,4,3,3,3,3,3,3,2,2,3,3,
|
||||
4/13/2022 16:23:00,4/13/2022 16:32:00,0,100,586,1,2022-04-13T16:32:0,R_56KOJpmc8Q5OpZn,41.9261,-71.3011,anonymous,EN,1,160045,5,5,4,2,2,2,3,1,4,4,4,4,4,4,4,4,4,3,3,4,4,4,3,3,2,5,5,4,4,4,4,4,4,4,3,3,3,3,2,3,4,3,2,2,5,4,4,4,2,2,2,3,5,4,3,2,3,4,4,4,3,3,3,3,3,3,2,2,4,4,
|
||||
4/13/2022 16:09:00,4/13/2022 16:20:00,0,100,627,1,2022-04-13T16:20:0,R_xgx9xSzXVNyFoI1,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,5,3,5,3,5,4,4,4,4,4,4,4,4,4,2,4,4,4,4,4,4,4,3,3,4,3,4,3,3,4,4,4,4,5,5,5,2,4,1,3,3,,,,,4,4,4,5,5,4,2,1,3,5,3,4,,,,4,4,3,3,3,5,5,
|
||||
4/25/2022 9:08:00,4/25/2022 9:27:00,0,100,1164,1,2022-04-25T9:27:0,R_33vGhtVssujQ6Ty,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,5,5,3,4,1,4,4,4,4,2,2,2,2,4,4,4,3,3,3,2,2,2,3,3,3,4,4,4,4,4,4,3,2,2,3,2,3,4,2,4,4,3,3,3,3,4,3,3,4,4,4,3,4,5,5,3,5,3,3,3,3,3,3,3,3,3,4,
|
||||
4/6/2022 14:43:00,4/6/2022 14:52:00,0,100,511,1,2022-04-06T14:52:0,R_1NCIsW2zDhfNSlw,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,3,3,3,2,,,,,,2,2,2,2,,,,4,3,3,,,,4,3,3,3,3,3,3,,,,3,2,3,3,2,4,1,3,4,,,,,,,,,5,3,3,,2,2,1,2,,,,,,,4,3,4,5,
|
||||
4/6/2022 14:43:00,4/6/2022 14:59:00,0,100,947,1,2022-04-06T14:59:0,R_pPBuYnEV52RitnX,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,4,3,4,3,,,,,,2,3,3,2,,,,1,2,2,,,,3,3,3,3,3,3,3,,,,2,2,1,2,2,2,1,2,3,,,,,,,,,3,3,3,1,2,2,2,2,,,,,,,2,4,3,4,
|
||||
4/13/2022 15:44:00,4/13/2022 15:54:00,0,100,567,1,2022-04-13T15:54:0,R_2TXIn2zYVcGnwOF,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,4,4,4,2,5,5,5,4,4,5,4,5,5,2,4,5,4,5,5,5,5,3,4,3,4,4,3,3,4,4,3,5,5,4,2,4,5,5,4,4,4,4,3,4,4,4,4,5,5,2,2,2,5,4,5,5,3,3,3,3,4,4,3,3,3,4,
|
||||
4/6/2022 14:03:00,4/6/2022 14:43:00,0,100,2397,1,2022-04-06T14:43:0,R_1P6L45TzhG0Ryis,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,3,4,4,2,4,4,4,4,3,3,4,3,3,1,3,3,3,3,3,3,2,3,3,3,3,4,3,3,4,3,4,2,3,3,2,3,4,2,3,3,4,4,4,4,2,3,3,4,4,3,2,1,3,3,2,3,3,4,4,3,4,4,5,5,1,5,
|
||||
4/13/2022 15:45:00,4/13/2022 15:52:00,0,100,460,1,2022-04-13T15:52:0,R_1LhUBko5Xk6gVU6,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,4,5,4,3,5,4,4,4,4,5,5,5,4,2,4,4,5,4,3,3,2,4,4,3,4,4,4,4,3,4,3,3,3,3,3,4,4,2,3,3,,,,,3,3,4,4,4,3,2,1,3,3,2,3,,,,3,3,3,3,3,2,2,
|
||||
4/25/2022 7:59:00,4/25/2022 8:06:00,0,100,394,1,2022-04-25T8:6:0,R_bKJ71pNqUon94u5,41.9261,-71.3011,anonymous,EN,1,160040,4,3,4,4,4,4,2,1,4,4,4,4,3,3,3,3,5,3,5,2,2,2,2,2,1,5,5,5,4,4,4,4,4,3,3,3,3,2,3,4,4,3,3,3,3,,4,,3,2,3,3,4,4,3,2,3,4,4,4,,,,3,4,3,3,3,2,3,
|
||||
4/13/2022 16:30:00,4/13/2022 16:36:00,0,100,378,1,2022-04-13T16:36:0,R_AFIJ1Qv7vszbmvf,41.9261,-71.3011,anonymous,EN,1,160045,5,4,4,2,2,2,1,2,2,3,3,4,2,2,2,1,2,2,2,2,1,1,3,2,2,5,5,3,3,2,2,2,1,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,4,3,3,4,4,3,3,2,3,3,3,2,2,2,2,2,4,3,2,2,2,3,
|
||||
4/27/2022 14:35:00,4/27/2022 14:47:00,0,100,682,1,2022-04-27T14:47:0,R_1HdAsz61SvjnZYn,42.801,-71.3085,anonymous,EN,1,160320,4,4,4,5,5,4,3,1,4,4,4,4,2,3,3,3,2,3,5,5,5,4,3,3,3,3,3,4,4,4,4,3,3,4,3,3,4,3,3,4,3,2,3,3,3,3,3,4,2,2,4,3,4,,,1,3,4,1,3,3,3,3,3,3,3,2,2,2,2,
|
||||
4/13/2022 16:10:00,4/13/2022 16:22:00,0,100,754,1,2022-04-13T16:22:0,R_sShPeRT2aNnXgKB,41.9261,-71.3011,anonymous,EN,1,160050,3,2,2,2,1,1,3,2,3,3,3,4,2,2,2,2,1,1,1,4,4,4,4,4,3,3,4,1,2,2,2,1,2,1,3,3,2,1,3,3,3,2,3,2,2,3,1,1,2,2,3,3,2,1,2,2,1,3,2,3,1,2,2,1,1,2,2,2,3,3,
|
||||
4/12/2022 8:40:00,4/12/2022 8:47:00,0,100,451,1,2022-04-12T8:47:0,R_2q7X9Cgi6QVYqG0,41.97390747,-71.32839966,anonymous,EN,1,160315,5,3,5,4,4,3,4,2,4,4,3,3,2,2,2,2,4,3,3,4,3,4,4,4,3,3,3,2,3,3,3,2,3,3,3,2,3,3,3,2,3,2,2,2,3,,3,,4,4,4,5,5,1,2,1,4,4,2,4,,,,3,4,4,3,3,3,3,Asking questions based on specific language levels and the support students are receiving.
|
||||
4/12/2022 18:58:00,4/12/2022 19:10:00,0,100,690,1,2022-04-12T19:10:0,R_1P0GXkZruDlNH2a,42.14759827,-71.5318985,anonymous,EN,1,160320,4,4,4,5,4,5,3,1,5,5,5,4,2,4,3,3,5,4,5,5,5,5,3,3,4,3,4,3,4,4,4,3,4,4,3,3,3,3,4,4,4,3,3,4,4,4,4,4,3,3,2,3,5,4,2,3,3,4,2,4,3,3,3,2,3,4,2,3,2,3,
|
||||
4/6/2022 7:43:00,4/6/2022 7:53:00,0,100,564,1,2022-04-06T7:53:0,R_3e9csbfMA38jr75,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,2,3,2,2,4,3,3,3,2,2,2,2,2,2,3,1,1,1,2,2,1,3,3,3,3,3,3,2,3,2,3,1,1,2,2,2,3,1,3,3,4,4,3,3,2,4,3,5,3,2,3,1,2,2,1,2,3,3,3,3,3,3,2,4,2,4,
|
||||
4/13/2022 15:43:00,4/13/2022 16:08:00,0,100,1478,1,2022-04-13T16:8:0,R_1flbyMZlxbbrEOC,41.9261,-71.3011,anonymous,EN,1,160001,5,5,4,2,4,3,4,1,4,3,4,4,2,3,5,4,3,4,4,4,4,4,4,4,2,4,4,3,3,3,3,3,4,4,4,4,2,3,4,5,4,3,3,4,4,5,2,4,5,5,4,4,2,3,3,2,3,3,4,4,2,2,2,3,3,4,2,3,3,3,
|
||||
4/6/2022 14:44:00,4/6/2022 14:57:00,0,100,766,1,2022-04-06T14:57:0,R_cYoBllG2rVO5bIl,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,3,5,3,3,4,4,4,3,3,3,3,3,2,3,4,4,4,4,2,2,1,3,3,4,3,3,3,3,3,3,3,3,2,2,2,2,4,2,4,2,2,,3,,3,2,4,4,5,2,2,1,3,3,2,3,,,,3,3,3,4,5,3,5,
|
||||
4/13/2022 16:23:00,4/13/2022 16:33:00,0,100,607,1,2022-04-13T16:33:0,R_1jHBHDxRvK9WxJ5,41.9261,-71.3011,anonymous,EN,1,160045,5,4,5,5,5,5,3,,,,,,4,5,3,3,,,,5,5,5,,,,4,5,4,4,3,4,4,,,,3,2,5,4,4,5,3,4,5,,,,,,,,,5,3,3,3,3,4,2,4,,,,,,,3,3,4,5,
|
||||
4/27/2022 9:16:00,4/27/2022 9:23:00,0,100,472,1,2022-04-27T9:23:0,R_2U44Gh9QPXzF5xj,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,4,5,4,4,5,5,5,5,4,4,2,3,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,3,3,4,2,5,5,5,5,5,4,,,,4,4,4,4,4,2,2,1,4,4,4,4,,,,4,,,2,3,3,4,
|
||||
4/13/2022 15:46:00,4/13/2022 15:55:00,0,100,567,1,2022-04-13T15:55:0,R_3sv7BTsjJ4kqh1q,41.7522,-71.1492,anonymous,EN,1,160035,5,5,5,5,5,3,4,2,5,5,5,5,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,4,4,4,4,5,5,4,5,5,5,5,4,4,4,4,4,4,,4,,4,3,4,5,5,3,3,1,4,4,3,3,,,,2,3,3,3,3,3,3,
|
||||
4/26/2022 21:44:00,4/26/2022 21:57:00,0,91,823,0,2022-05-04T2:42:0,R_2XaF6KL7QAFcUOM,,,anonymous,EN,1,160050,,,,,,,,1,,,,,1,1,2,1,,,,1,1,1,1,1,1,,,,,,,,1,1,,,,,,,5,,,,,,,,,,,,3,2,1,1,1,1,1,1,,,,,,,,,1,1,
|
||||
4/11/2022 7:15:00,4/11/2022 7:23:00,0,100,511,1,2022-04-11T7:23:0,R_3NPpFNiuW6qQTZr,41.92610168,-71.30110168,anonymous,EN,1,160505,4,5,4,4,3,5,3,3,4,3,4,3,4,3,3,2,4,4,4,3,1,,3,3,1,3,3,3,3,3,3,3,3,2,3,3,3,4,3,,5,2,3,3,,,,,4,4,3,5,2,2,,,3,3,,,,,,4,2,3,3,5,3,5,
|
||||
4/6/2022 14:38:00,4/6/2022 14:45:00,0,100,400,1,2022-04-06T14:45:0,R_2EbHpqlaspvbucG,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,2,2,4,2,3,4,3,5,3,3,3,3,3,4,2,3,3,3,3,2,2,2,3,2,3,4,3,3,3,2,2,2,2,1,2,3,2,2,1,3,3,3,4,3,2,3,3,3,4,3,3,3,2,2,2,1,2,2,2,2,3,3,4,3,5,3,5,
|
||||
3/30/2022 14:36:00,3/30/2022 14:48:00,0,100,702,1,2022-03-30T14:48:0,R_1d77LJHU5LoUO5x,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,2,2,4,3,2,4,4,5,3,3,4,3,3,4,1,3,4,4,5,3,2,3,3,3,3,2,3,3,3,3,2,2,4,3,3,3,3,2,2,4,3,4,4,4,4,5,5,3,4,5,3,2,2,3,3,3,3,3,3,3,4,4,3,3,3,3,3,
|
||||
3/30/2022 14:35:00,3/30/2022 14:46:00,0,100,657,1,2022-03-30T14:46:0,R_3q8rTs85l1QuDIA,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,2,4,1,2,4,3,3,3,2,2,2,2,5,2,4,4,3,4,3,2,3,4,4,3,3,3,3,2,3,2,3,2,4,3,3,4,3,1,1,2,3,4,3,3,2,3,4,4,3,3,3,2,4,4,3,3,2,2,3,1,2,2,3,4,3,4,
|
||||
4/13/2022 16:28:00,4/13/2022 16:36:00,0,100,438,1,2022-04-13T16:36:0,R_2AKjXeJeZOVtOTD,41.9261,-71.3011,anonymous,EN,1,160045,5,4,4,3,3,4,4,,,,,,2,3,2,2,,,,5,5,5,,,,3,3,4,4,4,4,4,,,,3,3,3,3,5,4,3,4,4,,,,,,,,,5,5,4,2,3,3,2,4,,,,,,,3,3,3,4,
|
||||
4/14/2022 13:57:00,4/14/2022 14:33:00,0,100,2190,1,2022-04-14T14:33:0,R_3MfKtYfIih4JPl9,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,5,5,5,4,3,4,4,5,5,4,5,5,4,5,4,5,5,5,5,5,4,5,4,5,4,4,4,4,4,5,4,4,4,4,5,4,5,5,5,4,5,,,,,4,3,3,4,1,3,3,3,5,5,2,4,,,,2,3,4,5,5,3,3,
|
||||
4/13/2022 16:06:00,4/13/2022 16:17:00,0,100,689,1,2022-04-13T16:17:0,R_XzBqKf90hHzSNyx,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,4,3,3,4,1,4,4,4,4,3,2,4,2,2,1,4,2,3,4,3,4,3,3,3,3,3,3,3,3,3,4,2,3,4,4,4,3,4,1,3,4,4,3,4,4,4,4,4,5,5,3,2,2,2,3,3,3,2,3,3,3,4,3,3,3,3,4,
|
||||
4/6/2022 14:06:00,4/6/2022 15:02:00,0,100,3330,1,2022-04-06T15:2:0,R_3kpiBy3SrI0Q6om,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,3,3,2,5,4,5,4,4,4,2,2,3,3,3,4,4,4,4,3,2,4,3,2,2,3,3,2,2,3,2,2,4,4,2,3,3,3,4,4,3,3,4,3,3,3,3,3,5,3,3,3,3,3,3,3,3,3,3,2,3,3,4,5,4,5,
|
||||
4/6/2022 14:42:00,4/6/2022 14:53:00,0,100,711,1,2022-04-06T14:53:0,R_2xLvQGXNLmoYWNb,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,2,2,2,1,2,4,3,3,4,3,2,2,2,3,2,2,2,2,4,1,1,1,3,3,3,3,2,3,3,2,2,2,3,3,3,2,1,2,2,2,2,3,3,3,3,3,3,3,3,2,2,2,1,2,2,2,2,3,3,3,3,2,3,2,4,2,4,
|
||||
4/13/2022 15:45:00,4/13/2022 15:52:00,0,100,440,1,2022-04-13T15:52:0,R_10UXcLx4ypuSo8p,41.9261,-71.3011,anonymous,EN,1,160035,4,5,5,4,3,4,3,2,4,4,4,5,3,2,2,2,3,1,2,4,4,3,4,4,3,3,3,3,4,4,4,3,2,4,2,3,4,4,3,3,4,2,4,4,3,4,3,3,4,3,3,4,5,3,2,1,3,2,3,3,2,3,2,3,4,3,2,3,3,3,
|
||||
3/30/2022 14:42:00,3/30/2022 14:49:00,0,100,412,1,2022-03-30T14:49:0,R_2WSutHFYJF3HipH,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,5,4,4,3,3,2,3,4,2,4,1,1,1,2,3,3,3,3,3,3,3,3,2,3,3,2,3,2,3,2,3,3,2,3,3,3,1,3,2,1,1,2,3,,4,,3,3,3,3,5,3,3,2,4,4,4,4,,,,3,3,3,3,3,3,3,
|
||||
4/12/2022 9:38:00,4/12/2022 9:49:00,0,100,670,1,2022-04-12T9:49:0,R_ABbvygb5lh9SV0t,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,4,4,5,4,1,4,4,4,4,3,3,4,4,3,2,4,5,5,5,5,4,4,4,4,4,4,4,4,4,3,4,3,3,3,3,3,4,4,4,4,4,4,3,3,3,2,2,2,4,5,4,3,2,3,3,3,3,3,3,3,2,4,4,2,2,4,4,
|
||||
4/11/2022 9:31:00,4/11/2022 11:04:00,0,100,5584,1,2022-04-11T11:4:0,R_6E7hdTgvtSMtLYB,41.92610168,-71.30110168,anonymous,EN,1,160505,5,5,5,3,3,3,3,2,4,4,4,3,4,3,3,3,2,2,3,4,2,2,1,1,1,3,3,3,3,3,3,3,3,3,3,4,4,2,2,4,3,2,3,3,3,3,4,3,4,3,4,4,3,2,2,1,2,3,3,2,3,3,3,3,3,2,4,4,4,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:37:00,0,100,877,1,2022-04-13T16:37:0,R_25NkA6JLCuBWmsp,41.9261,-71.3011,anonymous,EN,1,160045,4,3,4,4,4,5,4,1,3,3,3,3,2,3,2,2,4,2,4,4,4,4,2,,3,4,3,4,4,4,3,3,3,4,2,3,3,3,3,3,4,4,4,4,3,,3,,3,3,5,5,2,4,4,3,2,2,2,2,,,,3,3,3,1,2,3,4,
|
||||
4/6/2022 8:00:00,4/6/2022 8:08:00,0,100,487,1,2022-04-06T8:8:0,R_1MRGxfDrdSXI620,41.9261,-71.3011,anonymous,EN,1,160505,1,1,4,3,3,5,3,3,2,4,4,3,1,1,1,2,4,3,4,4,3,4,3,3,1,3,3,4,3,4,4,3,3,3,3,2,2,2,2,3,3,2,3,4,2,2,3,3,4,3,4,4,4,2,2,2,3,3,3,3,3,3,3,3,4,4,3,3,3,3,
|
||||
3/31/2022 7:42:00,3/31/2022 7:49:00,0,100,434,1,2022-03-31T7:49:0,R_2CUQlR9b2AZC63j,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,5,5,5,5,3,5,4,5,5,3,3,4,3,4,4,4,5,5,5,5,5,5,3,3,2,3,3,4,2,4,4,5,4,5,4,3,5,4,2,3,3,4,5,4,4,4,4,4,5,4,3,3,2,4,4,4,3,3,3,3,4,4,5,3,4,3,4,
|
||||
4/14/2022 11:02:00,4/14/2022 11:14:00,0,100,678,1,2022-04-14T11:14:0,R_2xwR7WtddQY31Rv,41.9261,-71.3011,anonymous,EN,1,160001,5,4,5,3,3,5,5,2,3,4,4,4,2,3,3,3,4,3,3,5,5,5,5,5,5,3,4,4,5,5,5,4,5,5,5,3,3,4,3,3,5,5,5,5,,,,,4,4,4,4,3,5,4,4,3,3,3,3,,,,3,4,3,3,4,4,5,
|
||||
3/30/2022 15:07:00,3/30/2022 15:22:00,0,100,932,1,2022-03-30T15:22:0,R_XuqWxx6PJavgSI1,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,3,3,4,3,1,5,5,5,4,4,4,3,3,4,2,3,4,4,4,3,3,2,4,4,4,4,4,4,3,4,4,4,3,3,3,5,4,4,2,4,4,,,,,4,4,4,4,2,3,3,1,3,4,3,4,,,,4,4,4,4,5,3,4,It would be appropriate to add an n/a or I'm not sure response to some questions.
|
||||
3/30/2022 14:38:00,3/30/2022 15:25:00,0,100,2847,1,2022-03-30T15:25:0,R_111tksSZvNX5dtI,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,2,2,5,2,2,4,4,4,4,3,3,3,3,4,1,3,4,3,3,3,3,2,3,3,3,4,4,3,3,3,3,3,3,3,2,2,3,4,1,3,3,4,3,4,4,2,3,3,3,5,3,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,
|
||||
3/30/2022 15:08:00,3/30/2022 15:17:00,0,100,524,1,2022-03-30T15:17:0,R_Z3OC6JWIblAweo9,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,5,4,4,4,4,1,4,4,4,4,2,2,2,3,3,3,3,5,5,5,4,4,4,4,4,3,4,4,4,4,4,4,4,3,4,4,4,4,2,2,2,2,4,,4,,3,3,4,4,5,2,3,2,2,3,3,3,,,,3,3,3,3,4,3,4,
|
||||
4/14/2022 13:54:00,4/14/2022 14:06:00,0,100,706,1,2022-04-14T14:6:0,R_3spuhBib2XqVwFA,41.9261,-71.3011,anonymous,EN,1,160035,4,3,4,2,2,5,3,2,4,3,5,3,3,3,3,2,,,,4,3,4,3,3,3,4,4,3,3,3,3,3,3,3,1,2,4,4,2,4,3,1,4,3,,,,,3,4,5,5,5,3,,,3,3,3,3,,,,2,2,3,3,3,3,3,
|
||||
4/6/2022 14:43:00,4/6/2022 14:57:00,0,100,832,1,2022-04-06T14:57:0,R_22JIUQUUfgoATBV,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,3,3,5,2,2,4,4,4,4,3,2,1,2,2,2,3,3,2,3,3,3,3,3,4,3,3,2,2,2,4,4,4,4,2,2,2,2,3,2,4,3,4,4,4,4,4,4,4,4,3,4,3,5,4,4,3,4,3,2,3,3,3,4,2,4,2,4,
|
||||
4/12/2022 9:43:00,4/12/2022 9:52:00,0,100,543,1,2022-04-12T9:52:0,R_2xLTBF3zl0aoHE6,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,5,4,5,4,5,5,5,5,5,4,4,4,4,4,3,5,5,5,5,5,5,5,4,4,4,5,5,5,4,3,5,3,5,4,4,4,4,5,4,5,5,,,,,3,3,3,4,3,4,4,2,4,4,3,4,,,,3,4,4,2,2,2,3,
|
||||
4/6/2022 15:10:00,4/6/2022 15:32:00,0,100,1300,1,2022-04-06T15:32:0,R_3CTbBUhcXjNYSec,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,3,4,2,3,3,3,4,4,2,3,2,2,2,2,3,3,3,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,2,2,3,3,2,2,1,2,3,,3,,3,4,4,5,5,1,1,1,3,3,2,3,,,,3,3,2,4,4,3,4,
|
||||
3/30/2022 14:45:00,3/30/2022 15:01:00,0,100,920,1,2022-03-30T15:1:0,R_Tkh3gjso3XLcYiR,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,5,4,4,3,4,2,5,4,4,5,3,3,4,4,3,3,4,4,5,4,4,4,4,3,3,2,2,3,4,2,3,4,3,2,3,3,3,4,4,3,3,3,3,3,4,4,3,3,3,4,5,2,2,1,4,4,2,3,2,2,3,3,3,3,3,3,3,3,
|
||||
4/6/2022 10:49:00,4/6/2022 10:55:00,0,100,389,1,2022-04-06T10:55:0,R_3J40ly1c1B7AJOJ,41.9261,-71.3011,anonymous,EN,1,160505,5,5,4,4,3,5,3,3,5,4,5,4,3,4,4,4,3,2,4,4,3,5,4,3,3,3,3,3,2,3,2,2,3,4,3,3,4,4,3,2,4,2,3,3,3,4,4,4,5,3,3,4,5,3,3,2,3,3,2,3,3,3,3,4,3,4,4,5,5,5,
|
||||
4/6/2022 14:48:00,4/6/2022 15:00:00,0,100,755,1,2022-04-06T15:0:0,R_3JDG7wXoaPmN9HW,41.9261,-71.3011,anonymous,EN,1,160505,4,3,4,2,2,3,3,1,3,3,4,3,4,3,2,2,3,1,3,3,3,4,3,2,2,4,4,3,3,3,3,3,4,4,4,3,3,3,2,3,4,3,4,4,4,,4,,3,1,3,4,5,4,3,1,3,4,2,4,,,,3,2,2,4,4,3,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:34:00,0,100,753,1,2022-04-13T16:34:0,R_2ckDk1jzaTEuNZi,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,3,3,3,3,1,4,4,3,4,3,3,3,4,3,2,4,4,5,5,3,2,2,3,3,4,4,4,4,3,3,4,2,2,4,2,2,3,4,1,3,3,3,,3,,4,4,4,4,4,3,3,2,3,3,4,4,,,,4,3,3,3,3,3,3,
|
||||
4/11/2022 11:26:00,4/11/2022 11:35:00,0,100,531,1,2022-04-11T11:35:0,R_2XcErMMxtib3NfN,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,5,5,5,4,2,4,4,4,4,3,4,4,4,4,2,5,4,4,4,5,5,4,3,3,4,4,4,4,4,4,4,4,5,4,4,5,5,4,3,3,4,4,3,4,3,4,3,4,4,5,3,3,2,4,4,2,3,2,2,2,3,4,4,2,3,3,3,
|
||||
4/14/2022 12:58:00,4/14/2022 13:14:00,0,100,965,1,2022-04-14T13:14:0,R_2qlPxU3e7tdpLjw,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,3,5,3,2,5,4,4,4,3,4,2,2,2,3,3,5,4,4,4,3,3,3,3,4,4,4,3,4,4,4,2,3,3,4,3,4,5,4,3,3,,,,,4,3,3,3,3,3,2,2,5,5,4,4,,,,3,3,2,3,4,3,3,
|
||||
4/6/2022 14:43:00,4/6/2022 15:06:00,0,100,1377,1,2022-04-06T15:6:0,R_2781DXVvUAcCwL3,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,4,5,3,2,2,3,3,4,3,3,2,2,3,3,3,3,4,3,2,3,2,1,1,2,4,4,2,2,3,3,4,3,2,2,2,2,4,4,3,3,3,3,3,3,3,3,3,4,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,4,4,
|
||||
4/6/2022 7:24:00,4/6/2022 15:01:00,0,100,27428,1,2022-04-06T15:1:0,R_2ako3n0pvXa7q0s,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,4,3,3,2,4,4,4,4,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,3,3,3,3,3,3,2,4,3,3,3,3,1,3,3,3,3,3,3,3,3,1,1,1,1,3,1,1,1,2,3,3,3,3,3,3,2,2,2,3,4,3,4,
|
||||
4/11/2022 7:24:00,4/11/2022 7:36:00,0,100,722,1,2022-04-11T7:36:0,R_3KCnaQbo4JmmpMf,41.92610168,-71.30110168,anonymous,EN,1,160505,4,4,4,3,4,4,,1,4,4,4,4,,,3,,4,,3,,,,4,3,2,2,3,3,4,4,3,3,,2,4,3,4,3,2,3,4,2,3,4,,,,,4,3,3,4,5,3,1,2,,4,,4,,,,3,3,3,4,5,2,3,
|
||||
4/13/2022 16:58:00,4/13/2022 17:07:00,0,100,538,1,2022-04-13T17:7:0,R_554TNaQp9lFg5y1,41.9261,-71.3011,anonymous,EN,1,160045,5,4,5,4,4,5,4,5,5,5,5,4,4,4,4,3,4,2,4,5,5,5,5,4,4,5,5,5,4,4,4,4,4,4,4,3,3,2,3,5,5,4,4,4,,,,,5,5,4,5,3,5,3,2,5,5,3,5,,,,2,3,4,3,3,4,5,
|
||||
4/14/2022 13:53:00,4/14/2022 14:34:00,0,100,2445,1,2022-04-14T14:34:0,R_bsICXuMKt0KhwGZ,41.9261,-71.3011,anonymous,EN,1,160035,4,5,5,5,4,4,3,2,5,5,5,5,4,5,5,5,5,4,5,4,4,,4,,5,3,3,4,4,5,4,3,,4,4,5,5,4,3,4,4,,5,5,,,,,,,,5,1,4,5,5,4,4,5,5,,,,3,4,4,3,3,,,
|
||||
4/13/2022 16:08:00,4/13/2022 16:19:00,0,100,627,1,2022-04-13T16:19:0,R_09DACNPiGjulnbz,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,3,4,3,2,4,4,4,4,3,4,2,3,4,3,4,4,4,3,4,3,3,3,4,4,5,4,5,4,3,3,3,3,3,3,2,4,5,2,2,3,,,,,3,3,4,4,2,4,2,2,3,4,3,3,,,,2,3,3,2,3,4,5,
|
||||
4/11/2022 11:14:00,4/11/2022 11:29:00,0,100,902,1,2022-04-11T11:29:0,R_3PLSVTCyY94ULge,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,4,4,5,3,5,5,5,5,5,4,5,5,4,4,5,4,4,3,3,4,4,5,5,5,4,3,4,4,4,4,4,4,2,2,2,3,4,4,3,4,5,5,4,4,4,4,4,4,4,5,3,3,2,5,5,4,5,3,3,,3,3,5,5,5,3,3,
|
||||
3/30/2022 14:46:00,3/30/2022 15:12:00,0,100,1539,1,2022-03-30T15:12:0,R_QoejNXM80OxiyUp,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,4,2,3,4,1,5,4,4,4,2,2,3,3,4,3,2,3,4,4,3,4,3,3,3,3,3,3,4,3,3,3,2,3,3,3,4,4,4,1,3,4,4,2,3,3,3,2,2,3,3,3,3,2,4,3,2,3,3,3,3,4,4,4,4,5,3,3,
|
||||
4/13/2022 16:22:00,4/13/2022 16:30:00,0,100,514,1,2022-04-13T16:30:0,R_2WD7kdVTNsZvOCf,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,3,5,5,4,2,5,5,5,5,3,3,3,4,3,3,4,4,5,4,4,3,2,3,4,3,3,4,4,3,4,4,4,4,5,5,5,5,3,2,3,3,3,3,4,4,4,5,5,4,4,,3,5,2,4,4,4,3,3,3,3,4,4,4,4,3,3,
|
||||
4/11/2022 10:51:00,4/11/2022 12:00:00,0,100,4162,1,2022-04-11T12:0:0,R_2xLvGlHdyYmqyiT,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,4,3,4,4,3,2,5,5,4,4,3,3,4,2,4,2,3,4,5,5,4,4,4,3,,4,4,4,4,4,4,4,2,3,2,3,4,4,4,3,4,4,4,4,4,4,3,3,4,4,2,3,3,1,2,3,2,3,3,3,3,3,3,3,2,3,3,4,
|
||||
4/27/2022 9:14:00,4/27/2022 9:34:00,0,100,1241,1,2022-04-27T9:34:0,R_2al8CnMmldwS2Uv,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,4,5,4,2,5,5,5,5,3,3,3,3,3,4,4,2,2,2,3,3,2,3,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,3,3,3,3,1,5,3,2,3,3,4,4,3,3,3,3,3,3,4,5,3,4,
|
||||
4/12/2022 8:19:00,4/12/2022 8:31:00,0,100,739,1,2022-04-12T8:31:0,R_3O2mLznT28OWERH,41.97390747,-71.32839966,anonymous,EN,1,160315,5,4,5,3,3,2,3,3,4,4,4,4,4,4,4,4,5,5,4,5,5,5,4,4,5,5,5,5,3,3,4,4,5,5,5,4,4,4,4,4,5,3,4,4,5,,5,,3,4,4,5,5,3,3,1,5,5,5,5,,,,3,3,4,3,4,3,4,
|
||||
4/13/2022 7:52:00,4/13/2022 8:05:00,0,100,806,1,2022-04-13T8:5:0,R_1GNRpyfrJCUh1xN,42.801,-71.3085,anonymous,EN,1,160320,4,4,5,4,4,4,4,2,4,4,4,4,4,4,4,3,3,3,4,5,5,5,4,3,4,2,2,3,4,4,3,4,3,3,2,4,5,4,4,5,2,1,3,4,3,4,4,4,3,4,3,4,3,4,2,1,4,4,3,3,3,3,3,3,3,4,3,3,3,3,
|
||||
4/6/2022 14:51:00,4/6/2022 15:04:00,0,100,765,1,2022-04-06T15:4:0,R_cMBPy1rSD2XZXGx,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,3,3,3,2,4,4,4,5,3,3,2,3,3,3,3,2,2,3,3,3,3,4,3,4,3,2,4,3,3,3,3,4,2,3,4,3,2,1,2,3,4,4,4,4,3,3,3,3,3,3,3,1,4,4,3,4,3,3,3,3,4,4,3,3,5,5,
|
||||
3/30/2022 15:09:00,3/30/2022 15:19:00,0,80,560,0,2022-04-06T15:19:0,R_2ZVLt8kMHYt1vHM,,,anonymous,EN,1,160315,4,4,4,4,4,4,4,1,4,4,4,3,2,2,2,2,3,3,4,3,4,3,4,4,3,,,,4,2,3,3,3,4,3,2,3,3,3,2,4,2,2,3,3,,3,,3,5,5,5,,,,,4,4,2,3,,,,3,3,4,,,3,3,
|
||||
4/14/2022 12:04:00,4/14/2022 12:17:00,0,100,809,1,2022-04-14T12:17:0,R_10UVXMDiYQ8icXM,41.9261,-71.3011,anonymous,EN,1,160045,4,4,4,5,5,4,3,4,4,4,4,3,5,5,5,5,4,4,5,5,1,5,5,5,5,5,5,4,4,4,4,4,5,4,4,4,4,4,3,4,4,4,5,5,,,,,4,2,3,4,1,4,4,3,4,4,4,4,,,,3,3,4,4,5,4,5,
|
||||
4/27/2022 9:02:00,4/27/2022 9:22:00,0,100,1234,1,2022-04-27T9:22:0,R_3ERmu3jjnckZF57,41.9261,-71.3011,anonymous,EN,1,160050,2,2,3,2,2,2,3,1,3,3,3,2,3,3,3,2,1,2,4,2,2,3,2,3,2,4,5,4,3,4,3,3,3,3,4,3,4,3,4,4,3,2,2,2,,,,,4,3,4,4,1,3,2,1,3,3,3,3,,,,3,3,3,3,3,4,4,
|
||||
3/30/2022 14:38:00,3/30/2022 14:55:00,0,100,999,1,2022-03-30T14:55:0,R_2tihCOSGqowFfeJ,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,2,2,3,2,1,4,4,4,3,3,4,4,4,3,3,3,4,3,3,3,2,2,4,3,3,3,4,3,3,3,2,3,3,3,3,3,4,4,3,3,4,4,,3,,3,3,5,5,5,2,,1,3,3,1,3,,,,3,3,3,2,3,2,3,
|
||||
3/30/2022 15:07:00,3/30/2022 15:28:00,0,100,1290,1,2022-03-30T15:28:0,R_1OIRyYl2mKtR8f9,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,5,5,4,4,4,1,4,4,5,4,4,4,5,4,4,3,4,4,5,4,4,4,4,3,3,4,4,4,3,3,3,3,3,4,4,2,3,4,5,2,4,4,5,4,3,4,4,4,4,4,5,2,2,1,3,3,3,4,3,3,3,3,3,4,3,3,3,3,
|
||||
4/27/2022 11:01:00,4/27/2022 11:32:00,0,100,1863,1,2022-04-27T11:32:0,R_3WQuslB4aIC4T9T,41.9261,-71.3011,anonymous,EN,1,160050,3,2,4,3,3,4,3,2,4,3,4,4,2,3,2,2,3,3,3,3,2,2,3,2,2,4,5,5,4,4,4,4,4,3,3,3,3,3,3,4,5,3,2,3,,,,,2,2,5,4,3,1,3,3,3,3,3,3,,,,3,2,2,3,3,3,4,
|
||||
4/29/2022 11:39:00,4/29/2022 11:58:00,0,100,1102,1,2022-04-29T11:58:0,R_skdTfivSo9b7uff,41.9261,-71.3011,anonymous,EN,1,160040,5,5,5,5,5,5,4,2,4,4,4,4,3,4,3,4,5,3,4,4,4,5,3,4,3,4,4,4,5,5,4,4,2,4,4,2,3,3,3,4,4,3,4,3,4,3,4,3,3,4,4,4,5,4,3,1,5,4,4,4,3,3,2,3,3,3,3,3,3,4,
|
||||
4/25/2022 9:07:00,4/25/2022 9:19:00,0,100,723,1,2022-04-25T9:19:0,R_3WePKKhyeSdKNrj,41.9261,-71.3011,anonymous,EN,1,160040,5,4,4,5,4,4,4,1,4,5,5,5,3,4,3,2,4,3,4,4,5,5,4,4,3,4,4,4,3,3,4,3,4,4,4,2,4,4,3,4,4,2,,4,5,,5,,4,3,5,4,4,4,,2,4,3,,4,,,,4,3,3,3,4,4,5,
|
||||
3/30/2022 14:38:00,3/30/2022 15:14:00,0,100,2171,1,2022-03-30T15:14:0,R_2PdICb0pTYJDJch,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,4,3,5,3,2,5,5,5,4,5,4,5,4,4,5,4,4,4,3,4,3,2,4,4,3,4,4,3,3,4,4,3,2,4,2,3,3,4,3,3,3,4,4,4,3,4,3,5,5,4,3,3,4,3,3,2,3,3,3,3,3,3,3,3,5,3,3,
|
||||
4/6/2022 14:42:00,4/6/2022 14:55:00,0,100,775,1,2022-04-06T14:55:0,R_3fe2XLsdKL2UZAo,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,4,4,2,3,2,5,4,5,4,2,4,2,3,3,1,4,4,3,4,4,3,3,3,4,4,4,3,4,4,3,4,4,3,2,3,3,3,4,1,4,3,4,4,4,3,2,2,2,4,3,4,4,3,4,4,3,4,3,3,3,3,3,3,3,4,3,3,
|
||||
4/6/2022 14:43:00,4/6/2022 14:59:00,0,100,992,1,2022-04-06T14:59:0,R_3n63biMfUgA0l26,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,3,3,3,4,5,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,3,3,3,3,2,2,2,4,4,1,1,3,3,4,,3,,4,4,4,5,5,3,3,1,3,3,2,3,,,,3,3,3,4,4,4,4,
|
||||
3/30/2022 14:44:00,3/31/2022 8:35:00,0,100,64241,1,2022-03-31T8:35:0,R_1CBeRPm5GHkELrM,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,5,3,3,5,4,3,4,4,4,4,4,4,3,4,4,3,4,4,4,4,4,4,3,3,2,2,3,3,2,2,4,3,3,4,4,4,3,4,4,1,3,3,4,4,3,4,4,4,4,5,5,2,2,2,3,5,3,4,3,3,3,3,4,4,3,5,3,3,
|
||||
3/30/2022 14:43:00,3/30/2022 14:56:00,0,100,773,1,2022-03-30T14:56:0,R_1ILPTbc76J3o0Oy,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,5,5,5,5,1,4,3,4,4,2,3,2,2,4,3,4,4,4,4,4,4,2,4,4,4,4,4,4,3,3,3,3,3,4,3,4,4,4,3,3,4,4,4,4,4,3,2,4,2,5,3,3,2,3,5,4,5,3,3,3,3,3,4,3,3,3,3,
|
||||
3/30/2022 14:34:00,3/30/2022 15:16:00,0,100,2501,1,2022-03-30T15:16:0,R_32LqgAs6lN37XB3,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,4,5,3,1,4,4,4,4,2,2,2,2,4,3,4,4,4,5,4,4,3,4,5,4,4,4,4,3,3,3,3,3,3,2,3,3,3,3,3,3,3,4,4,4,2,2,2,2,5,3,3,2,4,4,3,3,3,3,3,2,4,3,3,4,3,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:34:00,0,100,756,1,2022-04-13T16:34:0,R_qJVOAVO4zA92ked,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,4,4,3,1,4,4,4,4,3,2,4,3,3,3,4,4,5,4,4,3,2,5,5,4,4,4,4,4,3,4,3,3,4,3,3,3,4,4,4,4,4,4,4,3,3,3,3,4,5,3,2,3,3,4,1,3,3,2,3,3,4,4,3,4,3,4,
|
||||
3/30/2022 15:04:00,3/30/2022 15:22:00,0,100,1081,1,2022-03-30T15:22:0,R_BJmZBafiYQi0a6R,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,4,4,4,3,1,3,4,3,4,3,4,3,3,4,2,3,4,5,4,4,3,3,3,3,4,4,4,4,3,4,4,4,4,4,3,4,4,4,2,3,3,4,4,4,4,3,3,3,3,4,5,4,2,3,3,3,3,3,3,3,4,4,4,1,3,1,3,
|
||||
3/30/2022 14:38:00,3/30/2022 15:13:00,0,100,2111,1,2022-03-30T15:13:0,R_1BRwhhCHkbWnPT0,41.88600159,-71.34570313,anonymous,EN,1,160305,5,4,4,4,4,4,4,2,5,5,5,4,4,4,4,4,4,3,4,4,3,3,3,4,4,3,3,4,3,4,4,3,3,3,3,3,3,3,4,3,4,2,2,1,4,3,4,3,2,3,4,4,5,2,2,1,3,3,3,4,3,3,3,4,4,4,3,4,3,4,
|
||||
4/6/2022 14:42:00,4/6/2022 14:52:00,0,100,589,1,2022-04-06T14:52:0,R_BGsLegUMFmegsOl,41.9261,-71.3011,anonymous,EN,1,160505,3,3,3,3,3,4,4,3,3,3,4,4,4,4,2,4,3,4,5,3,4,2,3,2,2,3,3,3,2,3,2,2,3,3,4,2,2,3,3,3,5,1,4,5,3,,3,,2,3,3,4,5,2,2,2,3,3,3,4,,,,3,3,4,3,3,3,4,
|
||||
4/14/2022 10:49:00,4/14/2022 10:59:00,0,100,589,1,2022-04-14T10:59:0,R_2TBst2PIkoOZ2ak,41.9261,-71.3011,anonymous,EN,1,160001,4,3,4,4,4,4,3,2,4,4,4,3,4,4,4,4,3,3,3,5,5,5,4,4,4,4,4,3,4,4,4,3,4,4,4,3,3,3,3,4,4,4,5,5,,,,,3,3,3,5,5,4,2,2,4,3,3,4,,,,2,4,2,2,2,2,3,
|
||||
4/27/2022 10:23:00,4/27/2022 10:36:00,0,100,811,1,2022-04-27T10:37:0,R_1gBCzYBVcONIjbj,41.9261,-71.3011,anonymous,EN,1,160050,5,4,5,4,4,5,4,1,4,4,4,3,3,2,2,4,4,3,4,3,3,3,3,3,3,4,4,3,4,4,4,4,4,4,4,3,3,3,2,3,5,2,4,4,,,,,3,3,2,3,5,3,3,3,4,5,3,4,,,,3,3,3,2,3,3,3,NA
|
||||
3/30/2022 14:37:00,3/30/2022 14:44:00,0,100,459,1,2022-03-30T14:44:0,R_3jcESMsNeVD9eOt,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,3,3,3,4,4,4,3,3,4,5,3,3,3,2,5,4,4,3,2,3,3,3,3,3,3,3,2,2,2,2,4,4,4,2,2,2,4,3,3,3,2,2,4,4,4,4,4,5,5,5,5,4,4,4,3,4,3,4,3,3,3,4,4,4,3,3,3,3,
|
||||
4/13/2022 16:07:00,4/13/2022 16:17:00,0,100,560,1,2022-04-13T16:17:0,R_1IlQs2r9E9VBNqx,41.9261,-71.3011,anonymous,EN,1,160050,5,4,4,4,4,3,3,2,4,4,4,4,3,3,3,3,2,3,3,2,3,2,2,2,2,5,5,4,4,3,3,3,3,3,3,4,3,3,3,4,4,2,2,3,3,4,4,4,2,2,2,3,5,3,2,1,3,3,3,3,3,3,3,2,3,2,3,3,3,3,
|
||||
3/30/2022 15:08:00,3/30/2022 15:18:00,0,100,590,1,2022-03-30T15:18:0,R_2ZKs8YKyxOXCxBA,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,4,4,3,3,2,3,4,4,4,3,4,2,3,1,2,4,3,3,3,4,4,2,2,2,3,4,3,3,3,4,2,3,2,3,4,2,3,2,1,2,2,3,,3,,4,3,3,4,5,3,3,3,3,4,3,5,,,,3,4,3,3,3,3,3,
|
||||
4/12/2022 9:12:00,4/12/2022 9:22:00,0,100,609,1,2022-04-12T9:22:0,R_2D21qSvZUxjwfFT,41.66690063,-72.77259827,anonymous,EN,1,160315,3,3,2,3,2,3,3,2,4,4,3,3,3,3,3,2,2,3,2,3,1,2,4,3,2,2,3,2,3,2,3,2,2,3,4,3,3,2,2,4,2,2,3,2,3,,3,,2,1,2,4,1,1,2,2,3,3,2,2,,,,1,2,2,4,4,1,1,
|
||||
3/30/2022 14:53:00,3/30/2022 15:11:00,0,100,1083,1,2022-03-30T15:11:0,R_20ZK8PrqSsQgqyS,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,4,4,4,2,4,2,5,3,4,5,3,2,3,3,3,3,4,3,3,5,3,3,2,4,4,4,4,3,3,3,2,2,2,3,3,2,3,3,3,3,2,2,2,3,4,2,4,3,3,3,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,
|
||||
4/13/2022 15:44:00,4/13/2022 16:03:00,0,100,1132,1,2022-04-13T16:3:0,R_yqJoQ7eDYmIQhdT,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,4,5,4,2,5,5,5,5,3,4,3,3,4,2,4,4,4,4,4,3,3,3,4,3,4,4,4,4,3,3,3,3,2,3,3,3,4,2,3,3,4,,3,,4,4,4,4,4,3,3,1,4,4,3,4,,,,3,3,3,3,3,3,3,
|
||||
4/6/2022 14:41:00,4/6/2022 14:51:00,0,100,601,1,2022-04-06T14:51:0,R_2RPxn4kb1dXHO4c,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,4,5,5,2,4,4,4,4,2,3,3,3,4,3,3,4,4,4,3,3,3,4,4,4,4,4,4,4,3,4,3,3,3,3,3,3,2,2,2,3,3,3,3,3,4,4,4,4,1,1,2,1,3,3,2,3,3,3,3,4,3,3,3,,3,3,
|
||||
3/30/2022 15:06:00,3/30/2022 15:24:00,0,100,1077,1,2022-03-30T15:24:0,R_2X7r8qqV9AhL0ze,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,4,3,4,4,1,4,4,4,4,2,4,4,3,4,3,4,4,5,5,4,4,4,5,5,4,4,4,4,4,4,4,4,4,3,2,3,3,4,2,2,3,4,5,4,4,3,3,4,4,5,3,3,2,3,4,4,4,3,3,3,3,4,4,3,3,3,4,
|
||||
3/30/2022 14:33:00,3/30/2022 14:47:00,0,100,828,1,2022-03-30T14:47:0,R_29tsxXHqDZo4l6o,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,5,4,4,5,3,1,4,4,4,4,3,3,3,3,3,3,4,3,3,3,4,4,3,3,3,3,3,4,3,3,4,4,4,3,3,3,2,2,3,3,3,3,4,4,4,3,3,3,3,3,5,3,3,1,2,3,3,3,1,2,2,4,4,4,3,4,3,3,
|
||||
4/14/2022 13:51:00,4/14/2022 14:03:00,0,100,701,1,2022-04-14T14:3:0,R_sopBro6R3UmZ7vH,41.9261,-71.3011,anonymous,EN,1,160035,4,4,4,5,5,5,5,2,3,3,4,3,4,4,3,3,4,4,4,5,3,5,3,3,4,3,3,4,3,3,4,3,3,3,3,3,3,3,3,4,4,3,4,4,,,,,3,2,2,3,1,3,3,2,4,3,3,3,,,,3,4,3,2,3,2,3,
|
||||
4/6/2022 14:54:00,4/6/2022 15:08:00,0,100,803,1,2022-04-06T15:8:0,R_3r2Htwku6b1W0fF,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,3,3,5,2,4,5,5,4,3,2,3,4,3,3,3,5,4,3,4,3,2,3,3,4,4,4,4,4,5,2,4,4,3,4,3,2,4,4,3,2,4,4,5,5,4,3,4,4,3,4,3,2,4,4,3,5,4,3,3,4,3,4,3,4,3,4,
|
||||
4/13/2022 15:45:00,4/13/2022 15:57:00,0,100,734,1,2022-04-13T15:57:0,R_8itCW2BFkijuJKF,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,4,3,3,1,5,4,4,4,3,3,3,3,4,2,3,4,4,4,4,4,3,3,3,3,4,3,4,4,4,4,4,4,4,4,3,4,4,1,4,4,3,4,4,4,4,3,4,4,2,3,2,2,4,4,3,3,3,3,3,3,3,4,4,5,4,5,
|
||||
4/6/2022 14:53:00,4/6/2022 15:10:00,0,100,1003,1,2022-04-06T15:10:0,R_3HHQYUP02u4ojr4,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,5,3,4,5,4,5,4,4,4,5,4,5,5,5,3,4,4,4,4,4,5,4,2,3,3,3,3,4,3,5,4,5,5,5,4,2,3,5,2,4,4,4,4,5,5,5,4,5,5,4,5,4,4,5,5,5,5,3,3,3,5,5,4,4,4,4,4,
|
||||
4/6/2022 14:44:00,4/6/2022 14:52:00,0,100,501,1,2022-04-06T14:52:0,R_TdS112b4HOASRj3,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,3,4,2,2,4,4,4,4,2,4,4,4,3,3,3,3,2,3,3,3,2,3,3,4,4,3,3,3,2,3,4,2,2,2,2,2,3,1,2,2,4,3,3,3,3,3,3,4,2,2,3,2,3,3,3,3,3,3,3,3,2,3,2,3,2,4,
|
||||
4/25/2022 12:26:00,4/25/2022 12:42:00,0,100,1002,1,2022-04-25T12:42:0,R_0iGaGfrxoEr35T3,41.7522,-71.1492,anonymous,EN,1,160040,4,4,5,4,3,5,4,1,4,5,4,4,4,4,4,3,5,3,4,5,4,4,4,3,3,3,3,3,4,3,4,3,4,3,3,3,4,4,3,4,4,3,3,4,,,,,4,5,5,5,1,3,3,2,4,3,3,3,,,,4,4,4,4,4,4,4,
|
||||
4/27/2022 15:26:00,4/27/2022 15:53:00,0,100,1633,1,2022-04-27T15:53:0,R_1PTQkib0kZUZQyL,41.9261,-71.3011,anonymous,EN,1,160320,3,4,4,4,4,5,5,2,3,3,4,5,3,3,3,3,5,5,5,5,5,5,3,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,3,4,4,3,4,4,,,,,3,3,2,4,2,4,4,2,2,4,3,4,,,,5,5,4,3,4,3,3,
|
||||
4/14/2022 10:52:00,4/14/2022 11:06:00,0,100,808,1,2022-04-14T11:6:0,R_1NgouoPlhT6APhN,41.9261,-71.3011,anonymous,EN,1,160001,,,4,4,4,,3,1,4,4,4,4,2,3,2,2,,,,3,3,3,3,3,2,,,,3,3,4,3,2,3,2,4,3,3,3,3,4,4,4,4,,,,,3,3,2,3,,,,,4,4,,3,,,,1,2,2,2,2,3,3,
|
||||
4/14/2022 10:52:00,4/14/2022 15:09:00,0,100,15395,1,2022-04-14T15:9:0,R_YYL19ou5brd3WkF,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,4,4,4,3,3,4,4,4,4,4,5,3,4,3,3,3,5,5,5,5,5,5,3,4,4,4,4,4,4,4,4,3,4,4,5,3,4,4,3,4,5,4,4,4,4,3,2,3,4,2,4,3,1,5,5,3,4,2,3,2,3,3,4,4,4,4,4,
|
||||
4/29/2022 11:52:00,4/29/2022 12:00:00,0,100,471,1,2022-04-29T12:0:0,R_tEuYgOgHFUbQzpn,41.9261,-71.3011,anonymous,EN,1,160040,5,4,4,5,5,5,5,2,5,5,4,4,4,4,4,5,5,5,5,5,4,5,5,5,3,5,4,4,4,4,3,3,4,4,4,3,3,2,3,4,5,2,3,4,4,4,4,4,4,4,4,5,5,3,3,3,4,4,3,4,3,3,3,4,5,4,3,3,3,4,
|
||||
4/14/2022 12:44:00,4/14/2022 13:04:00,0,100,1239,1,2022-04-14T13:4:0,R_2aS0KnaU9c97Xa5,41.9261,-71.3011,anonymous,EN,1,160045,4,4,4,4,3,3,3,1,3,4,4,3,3,3,3,2,4,3,4,4,4,3,4,3,4,4,4,4,4,3,3,2,3,4,3,3,3,3,3,4,4,3,1,5,,,,,3,3,3,4,1,3,3,3,4,4,3,4,,,,2,3,2,2,2,2,3,
|
||||
3/30/2022 15:08:00,3/30/2022 15:19:00,0,100,625,1,2022-03-30T15:19:0,R_3Ok3Sd6p2ubTvWZ,41.92610168,-71.30110168,anonymous,EN,1,160315,5,5,4,4,4,5,3,5,4,4,5,4,3,3,3,3,4,2,4,4,4,4,3,4,3,2,2,3,5,3,4,3,3,4,4,3,3,4,3,4,4,1,2,3,3,2,3,3,3,3,3,4,4,2,3,3,3,3,3,3,3,2,3,3,3,4,3,4,3,4,
|
||||
4/13/2022 15:57:00,4/13/2022 16:02:00,0,100,333,1,2022-04-13T16:2:0,R_1mOVuXudUzCd0rl,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,5,5,5,4,2,5,5,5,5,3,4,2,2,4,5,5,4,4,4,4,4,4,3,5,4,4,4,4,4,4,4,4,3,2,3,3,4,4,2,4,4,4,4,4,4,4,4,4,4,3,3,3,3,4,4,4,4,3,3,3,3,3,3,3,3,3,3,
|
||||
4/26/2022 11:34:00,4/26/2022 11:41:00,0,100,440,1,2022-04-26T11:41:0,R_12herFAj3xDv8T0,41.9261,-71.3011,anonymous,EN,1,160040,4,5,4,5,4,3,4,3,5,4,4,5,4,4,4,4,4,3,4,4,5,5,3,3,2,5,5,5,5,5,5,5,4,3,5,3,3,2,3,3,4,3,2,3,4,4,4,5,3,4,4,3,4,3,3,3,4,4,3,4,3,3,3,4,3,3,3,4,3,4,
|
||||
4/14/2022 13:55:00,4/14/2022 14:17:00,0,100,1347,1,2022-04-14T14:17:0,R_22tSRMmUixExueR,41.9261,-71.3011,anonymous,EN,1,160035,3,3,2,4,4,3,3,2,3,3,4,4,4,3,3,2,5,5,5,3,2,2,3,3,3,2,3,3,3,3,3,3,3,3,2,2,3,2,2,3,3,1,3,3,,,,,3,3,3,3,3,3,3,2,5,5,3,4,,,,3,3,3,3,4,4,4,
|
||||
4/12/2022 8:54:00,4/12/2022 9:08:00,0,100,840,1,2022-04-12T9:8:0,R_2SvlqDFMEQMoLI7,42.80099487,-71.3085022,anonymous,EN,1,160320,4,4,4,4,4,5,4,2,4,4,4,4,3,2,2,2,3,4,4,5,5,4,4,4,4,3,3,3,3,3,3,2,4,3,3,4,3,3,4,4,4,2,3,3,,,,,4,3,3,4,1,4,4,2,4,4,2,4,,,,3,3,4,3,4,3,4,
|
||||
4/12/2022 8:31:00,4/12/2022 8:42:00,0,100,687,1,2022-04-12T8:42:0,R_w01fQGlgne0LcfD,41.92610168,-71.30110168,anonymous,EN,1,160320,4,4,4,3,2,3,2,1,4,2,1,3,2,2,3,2,3,1,2,3,3,3,3,3,4,3,3,3,3,3,4,3,3,2,3,2,2,1,2,4,4,3,4,3,,,,,2,2,2,3,5,3,3,3,2,2,2,2,,,,3,3,3,3,3,3,3,
|
||||
3/30/2022 14:44:00,3/30/2022 15:15:00,0,100,1880,1,2022-03-30T15:15:0,R_1NyyF0wTdhVtOkK,41.88600159,-71.34570313,anonymous,EN,1,160305,3,3,3,2,2,3,2,4,3,3,3,3,1,2,4,2,4,3,3,3,3,3,2,2,2,3,3,3,3,3,4,2,2,2,2,1,1,1,3,1,4,2,2,2,2,,4,,3,3,3,3,5,2,2,1,3,3,3,3,,,,3,3,3,3,3,3,3,
|
||||
4/3/2022 16:47:00,4/3/2022 17:01:00,0,100,791,1,2022-04-03T17:1:0,R_2Pd6QZwAaeZurYn,41.95109558,-71.41300201,anonymous,EN,1,160315,5,4,5,3,3,5,3,2,4,4,4,4,4,3,3,3,4,3,4,5,4,4,4,4,3,3,4,4,3,3,3,3,3,3,3,3,3,2,2,3,3,1,3,3,4,,3,,4,4,4,4,5,2,2,2,3,3,3,4,,,,2,3,3,3,4,3,3,
|
||||
4/14/2022 10:55:00,4/14/2022 11:13:00,0,100,1057,1,2022-04-14T11:13:0,R_1NwZq37hbd6HhcK,41.9261,-71.3011,anonymous,EN,1,160001,,4,4,3,3,5,2,,4,4,4,3,3,3,3,,,,,3,3,,4,4,4,,,3,3,3,3,2,3,3,2,2,2,2,3,3,3,2,3,3,,,,,2,2,,,1,2,2,2,,,,,,,,2,2,1,3,3,3,3,
|
||||
3/30/2022 15:06:00,3/30/2022 15:19:00,0,100,724,1,2022-03-30T15:19:0,R_2zV18G4maLDJGTG,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,4,4,5,4,3,5,5,5,5,3,5,5,4,5,5,5,5,5,5,4,5,5,4,3,4,4,4,4,4,5,4,4,3,4,3,4,3,5,3,3,3,4,5,5,5,5,5,5,5,5,5,,4,4,5,5,5,3,4,3,3,3,3,3,3,3,3,
|
||||
3/30/2022 15:08:00,3/30/2022 15:51:00,0,100,2600,1,2022-03-30T15:51:0,R_1OxdL2qYfuFtRrN,42.06480408,-71.25039673,anonymous,EN,1,160315,5,5,4,4,3,,3,1,5,4,5,4,3,2,3,4,4,3,2,4,4,4,3,3,2,3,3,4,2,3,3,2,3,3,3,4,4,4,3,3,4,2,3,3,3,3,3,2,3,3,4,4,3,2,3,3,4,4,3,3,2,2,3,3,3,4,2,3,3,3,
|
||||
3/30/2022 14:55:00,3/30/2022 15:09:00,0,100,845,1,2022-03-30T15:9:0,R_10VlJUFn6j3X5qh,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,4,5,4,4,2,4,4,4,4,3,4,3,4,3,3,4,4,5,4,4,4,3,3,3,1,1,2,2,1,3,3,4,3,4,4,3,3,4,3,3,4,3,4,4,3,4,3,3,4,3,3,2,2,3,4,3,4,3,3,3,4,3,4,3,4,3,3,
|
||||
4/6/2022 14:45:00,4/6/2022 14:58:00,0,100,737,1,2022-04-06T14:58:0,R_3M5pjSAXaGlk7nt,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,3,4,3,3,5,5,5,5,5,5,5,5,4,4,4,5,5,5,5,5,5,4,4,3,3,3,3,3,4,4,4,4,3,4,2,3,4,3,4,4,4,4,4,4,3,3,3,4,4,3,3,2,4,4,3,5,3,3,3,4,4,4,4,5,4,5,
|
||||
4/3/2022 23:13:00,4/3/2022 23:30:00,0,100,1028,1,2022-04-03T23:30:0,R_0p2nWZHbNmeRSCJ,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,,4,2,,1,4,3,4,3,3,4,2,3,4,,4,4,3,,,,,3,4,3,3,3,3,3,,,3,2,2,2,2,4,3,2,3,3,,,,,3,3,,4,1,,,1,4,4,,3,,,,3,3,3,3,3,3,3,
|
||||
4/6/2022 14:53:00,4/6/2022 15:15:00,0,100,1314,1,2022-04-06T15:15:0,R_5uRm8Z7UpT9KWNX,41.9261,-71.3011,anonymous,EN,1,160505,3,4,4,3,2,5,3,2,4,4,4,5,2,3,2,2,3,2,2,3,4,4,4,4,3,3,4,3,3,3,3,3,3,3,4,2,2,2,2,1,3,2,3,3,3,3,3,3,3,2,3,3,2,3,3,3,3,3,3,4,3,3,3,3,3,3,4,5,4,5,
|
||||
4/6/2022 13:44:00,4/6/2022 13:59:00,0,100,872,1,2022-04-06T13:59:0,R_1Lbslf9rpzZMvjT,42.3562,-71.0631,anonymous,EN,1,160505,4,2,4,4,4,4,3,1,3,3,3,3,3,3,2,2,4,3,3,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,2,3,3,2,4,4,3,3,3,,,,,3,3,3,3,3,1,2,1,3,3,2,3,,,,2,3,2,3,2,3,,
|
||||
3/30/2022 14:34:00,3/30/2022 15:07:00,0,100,1950,1,2022-03-30T15:7:0,R_2b0PSqs7nvY33Bs,41.88600159,-71.34570313,anonymous,EN,1,160305,5,4,5,5,4,5,4,2,4,4,5,4,3,3,4,3,4,5,5,4,4,5,4,4,4,3,3,4,4,3,3,3,4,3,4,4,4,3,3,3,4,2,3,3,4,3,3,4,4,4,4,4,4,3,2,1,3,3,2,3,3,3,3,3,3,4,3,3,3,3,
|
||||
4/13/2022 16:17:00,4/13/2022 16:25:00,0,100,486,1,2022-04-13T16:25:0,R_1TwCL3682Nu2BrP,41.9261,-71.3011,anonymous,EN,1,160050,4,5,5,3,3,4,4,2,5,4,5,5,5,4,4,4,5,3,5,4,4,4,4,4,3,2,3,3,3,4,3,3,4,4,3,3,5,3,4,5,3,2,2,4,3,4,3,4,4,4,4,4,5,3,3,4,4,3,3,3,3,4,3,3,4,4,4,5,4,5,
|
||||
4/13/2022 16:22:00,4/13/2022 16:34:00,0,100,747,1,2022-04-13T16:34:0,R_12ipJwjJs38sWZV,41.9261,-71.3011,anonymous,EN,1,160045,4,4,4,2,2,3,4,1,4,3,4,3,4,4,4,4,4,2,2,4,4,5,3,3,2,4,4,4,4,4,4,4,4,3,3,3,4,3,3,4,2,3,2,2,4,4,5,4,4,4,4,4,5,4,4,3,2,4,3,4,3,3,4,4,3,3,3,3,3,3,
|
||||
4/27/2022 14:32:00,4/27/2022 14:40:00,0,100,517,1,2022-04-27T14:40:0,R_VIPXJpIYHr5RQaZ,42.801,-71.3085,anonymous,EN,1,160320,4,4,5,4,4,5,4,1,4,4,4,4,3,4,4,3,5,3,4,5,5,5,5,4,5,3,3,4,4,4,4,4,3,3,3,4,3,3,2,4,4,3,4,3,4,4,4,3,3,2,3,3,5,,,,,3,,3,3,3,3,3,3,3,3,3,3,3,
|
||||
4/12/2022 9:08:00,4/12/2022 9:17:00,0,100,516,1,2022-04-12T9:17:0,R_yjQYBQ9ib6CMKsx,40.77850342,-73.9897995,anonymous,EN,1,160315,2,2,2,3,2,4,3,1,3,4,3,2,2,2,1,2,2,2,3,2,1,2,2,3,1,3,1,2,2,2,2,1,2,2,3,2,2,1,3,3,3,1,1,1,,,,,1,1,1,3,2,2,1,2,4,2,2,2,,,,1,2,2,3,3,3,3,Maybe asking what we know about the population we work with.
|
||||
4/13/2022 16:57:00,4/18/2022 6:42:00,0,100,395085,1,2022-04-18T6:42:0,R_1pFs8YkQH4XYRqR,41.9261,-71.3011,anonymous,EN,1,160045,5,4,5,5,4,,3,2,4,4,5,5,4,4,4,4,4,3,5,5,4,5,4,4,4,5,5,4,4,3,4,4,4,5,5,5,5,5,4,5,5,3,4,4,3,4,5,5,5,5,4,5,2,5,5,3,5,3,4,4,3,3,3,4,3,3,3,3,4,4,
|
||||
5/2/2022 2:20:00,5/2/2022 2:30:00,0,100,556,1,2022-05-02T2:30:0,R_6rqLQ55d7zJZAWt,42.0713,-71.478,anonymous,EN,1,160320,5,5,5,3,3,2,4,1,5,5,5,4,4,4,4,4,4,4,4,4,4,3,4,4,4,3,3,4,4,4,4,4,4,4,4,4,4,3,3,4,4,2,3,4,5,4,4,4,2,3,4,4,4,3,3,3,4,3,3,3,3,3,3,3,3,4,2,3,2,3,
|
||||
4/12/2022 12:30:00,4/12/2022 12:46:00,0,100,936,1,2022-04-12T12:46:0,R_Us6F7jOBeGG49tn,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,5,5,5,5,4,5,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,5,3,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,5,,5,5,5,5,1,3,3,5,5,5,5,5,,,,2,4,5,4,4,3,3,
|
||||
4/13/2022 16:28:00,4/13/2022 16:36:00,0,100,504,1,2022-04-13T16:36:0,R_22xhyFkGxow0NYa,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,3,3,4,3,5,5,5,5,5,3,3,2,4,3,3,3,5,5,5,3,3,3,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,2,3,3,,,,,3,3,3,3,4,4,3,2,4,4,3,3,,,,3,3,3,3,4,3,4,
|
||||
4/13/2022 15:44:00,4/13/2022 15:53:00,0,100,508,1,2022-04-13T15:53:0,R_026Vqktt6oZAGWt,41.9261,-71.3011,anonymous,EN,1,160035,4,4,4,3,3,5,4,2,4,4,3,4,3,4,4,4,4,2,4,4,4,4,4,4,3,3,3,3,4,4,3,3,3,3,3,3,2,3,3,3,5,1,2,3,3,3,3,4,2,2,3,4,5,3,2,2,3,3,2,3,3,3,3,3,5,4,3,4,3,4,
|
||||
4/13/2022 16:05:00,4/13/2022 16:32:00,0,100,1610,1,2022-04-13T16:32:0,R_1LBw1vDVWHGXcHN,41.9261,-71.3011,anonymous,EN,1,160050,3,3,4,2,2,2,2,1,3,4,4,4,2,3,3,4,2,2,2,4,4,3,4,3,4,3,4,3,3,4,3,3,4,4,3,3,3,3,3,3,4,2,3,2,4,3,4,4,3,3,4,4,5,3,2,1,3,4,3,4,3,3,3,4,3,4,3,2,3,4,
|
||||
4/11/2022 11:22:00,4/11/2022 12:59:00,0,100,5820,1,2022-04-11T12:59:0,R_2cw0SI82EfFfkql,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,4,4,5,5,4,5,5,5,5,4,4,3,4,4,3,4,5,5,5,5,4,5,4,3,4,4,4,4,4,4,4,4,5,5,4,4,4,5,2,4,5,4,,4,,5,5,5,5,4,4,3,2,4,4,3,4,,,,4,4,4,2,2,5,5,
|
||||
4/27/2022 15:06:00,4/27/2022 15:19:00,0,100,793,1,2022-04-27T15:19:0,R_8ptBhAGTyK71Id3,42.801,-71.3085,anonymous,EN,1,160320,4,4,5,5,5,5,5,4,4,4,4,4,4,3,3,3,5,4,5,5,5,5,5,5,4,3,3,3,4,4,4,4,3,3,4,4,4,4,4,4,5,2,4,4,3,,4,,4,4,4,4,5,3,3,1,3,4,4,4,,,,5,5,4,4,5,4,5,
|
||||
4/12/2022 9:16:00,4/12/2022 9:22:00,0,100,377,1,2022-04-12T9:22:0,R_277LI29LTsQLvsJ,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,4,4,3,3,2,5,5,5,5,3,3,3,3,4,3,4,5,,5,4,4,4,4,4,4,5,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,4,5,5,4,4,4,4,4,5,3,3,3,3,3,2,2,3,3,3,3,4,4,3,3,3,3,
|
||||
4/12/2022 14:02:00,4/12/2022 14:10:00,0,100,482,1,2022-04-12T14:10:0,R_2ScYuVaLfO8RcWv,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,5,4,4,4,3,1,4,4,4,4,2,4,3,3,3,3,3,3,3,4,3,3,3,3,3,4,4,4,4,4,2,3,1,3,4,4,3,3,4,2,3,3,,,,,4,3,3,4,3,4,3,3,4,4,2,3,,,,3,3,3,2,3,3,3,
|
||||
4/27/2022 9:33:00,4/27/2022 12:20:00,0,100,9993,1,2022-04-27T12:20:0,R_2qC4lAhsYBreDpY,41.9261,-71.3011,anonymous,EN,1,160050,4,3,4,3,2,4,2,,,,,,2,2,2,2,,,,2,2,3,,,,3,4,3,4,3,3,3,,,,2,2,2,2,4,3,1,3,3,,,,,,,,,4,3,2,3,3,4,3,3,,,,,,,2,4,3,4,
|
||||
4/11/2022 11:58:00,4/11/2022 13:45:00,0,100,6430,1,2022-04-11T13:45:0,R_1dEbCTETy7DgOkg,41.92610168,-71.30110168,anonymous,EN,1,160001,5,5,4,4,4,5,4,1,5,4,4,4,5,5,5,5,4,3,5,5,4,4,5,5,4,4,4,4,4,4,4,4,4,4,4,3,3,3,4,4,4,4,4,5,4,4,4,4,3,3,4,4,5,4,2,,4,3,2,3,4,3,4,4,3,4,5,5,5,5,
|
||||
4/27/2022 14:54:00,4/27/2022 15:05:00,0,100,655,1,2022-04-27T15:5:0,R_3lrafKxhIs9pNGN,42.801,-71.3085,anonymous,EN,1,160320,5,5,5,5,4,4,4,1,4,4,4,4,4,4,4,4,2,2,3,4,4,4,4,4,4,3,3,4,4,4,4,3,4,4,4,3,4,4,4,4,4,1,3,3,4,4,4,5,4,4,4,4,5,3,3,2,4,4,4,4,3,3,3,3,4,4,3,3,3,3,
|
||||
4/13/2022 16:22:00,4/13/2022 16:33:00,0,100,699,1,2022-04-13T16:33:0,R_zZF1DolmQr85yZX,41.9261,-71.3011,anonymous,EN,1,160045,5,4,4,3,3,2,4,1,4,4,4,4,3,4,3,4,4,4,3,4,4,4,4,4,3,4,4,4,4,3,4,3,4,4,3,2,3,3,3,4,2,2,2,2,3,4,4,4,4,5,5,5,4,4,3,3,4,3,3,4,4,3,3,3,3,2,3,4,3,3,
|
||||
4/13/2022 11:14:00,4/13/2022 11:26:00,0,100,715,1,2022-04-13T11:26:0,R_8ddQw1ytsvDzmdb,41.9261,-71.3011,anonymous,EN,1,160001,5,4,4,5,5,4,3,3,3,3,4,4,4,4,4,4,5,5,5,5,4,4,5,5,5,3,3,4,3,4,3,3,4,4,4,4,5,5,4,4,5,3,4,4,4,4,4,4,3,3,4,5,1,3,3,3,4,3,3,3,3,3,3,3,4,4,3,5,4,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:34:00,0,100,755,1,2022-04-13T16:34:0,R_10SpknaKOm2iuR0,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,4,4,4,1,4,4,4,4,4,4,5,4,4,4,4,5,5,5,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,3,4,3,5,5,4,,5,,4,4,4,4,2,3,3,2,4,4,4,4,,,,4,4,4,2,2,4,4,
|
||||
4/27/2022 10:16:00,4/27/2022 10:29:00,0,100,774,1,2022-04-27T10:29:0,R_b41uO6fH1G5X02d,41.9261,-71.3011,anonymous,EN,1,160050,4,3,4,4,4,2,3,2,4,4,4,4,3,3,2,2,3,2,3,4,3,3,2,2,2,3,3,3,3,3,3,3,2,2,2,2,3,3,3,3,3,1,2,3,,,,,3,3,3,4,1,3,2,1,3,3,2,2,,,,3,3,2,2,2,4,4,
|
||||
4/1/2022 13:48:00,4/4/2022 9:39:00,0,33,244222,0,2022-04-11T9:39:0,R_2wAWs2IbFyHe4gQ,,,anonymous,EN,1,160315,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,2,2,4,4,4,,,,,,3,2,3,3,,,,,3,,3,4,,,,,,,,,,,,,,,,,2,3,
|
||||
4/12/2022 8:59:00,4/12/2022 9:15:00,0,100,974,1,2022-04-12T9:15:0,R_1FA5VDQISt9aUcX,42.80099487,-71.3085022,anonymous,EN,1,160320,5,4,5,4,4,4,4,2,4,4,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,3,4,4,4,4,3,4,3,4,2,3,3,2,4,4,2,4,5,4,,4,,4,4,4,5,4,4,4,2,4,3,1,4,,,,4,4,3,3,3,4,4,
|
||||
4/7/2022 10:42:00,4/7/2022 10:52:00,0,100,598,1,2022-04-07T10:52:0,R_3KTJQCx6oExmZEv,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,5,5,5,4,1,4,4,4,4,4,4,4,5,4,3,3,4,4,5,4,4,3,3,3,4,3,3,3,3,4,3,4,4,4,4,3,4,4,2,3,3,4,,4,,4,4,5,4,5,4,4,5,4,4,4,5,,,,3,4,3,4,4,5,5,
|
||||
4/13/2022 16:22:00,4/13/2022 16:31:00,0,100,550,1,2022-04-13T16:31:0,R_3POEkrya1766qmR,41.9261,-71.3011,anonymous,EN,1,160045,4,5,5,3,3,3,3,2,4,3,3,4,2,3,4,3,3,1,3,4,3,3,3,4,3,4,4,4,3,3,3,3,3,3,2,3,4,4,2,2,2,2,3,3,3,2,4,2,3,4,4,4,4,3,3,1,3,3,2,3,3,3,3,4,3,3,2,2,3,3,
|
||||
4/13/2022 16:22:00,4/13/2022 16:32:00,0,100,593,1,2022-04-13T16:32:0,R_3CO3SgwjdUee3hr,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,4,3,5,3,4,4,5,4,5,4,4,5,4,5,3,4,5,5,5,3,4,3,4,,4,4,4,4,4,4,4,3,4,4,2,3,4,4,4,3,3,,,,,5,4,4,5,5,3,3,2,4,4,2,3,,,,4,4,4,3,3,4,4,
|
||||
4/27/2022 14:31:00,4/27/2022 15:06:00,0,100,2113,1,2022-04-27T15:6:0,R_ZlCjdrMXsHb1Ftf,42.801,-71.3085,anonymous,EN,1,160320,4,4,4,5,5,5,4,4,5,4,4,4,4,5,4,4,5,4,4,5,5,5,5,4,4,3,3,3,3,3,3,3,3,3,3,4,5,4,4,4,4,5,5,5,3,4,4,4,4,4,4,4,4,3,3,2,2,3,3,4,3,3,3,5,3,3,3,3,3,3,
|
||||
3/30/2022 14:36:00,3/30/2022 15:04:00,0,100,1652,1,2022-03-30T15:4:0,R_12lsaf1xrYfat9J,41.88600159,-71.34570313,anonymous,EN,1,160305,5,4,4,4,4,3,3,1,4,3,4,4,2,4,3,3,4,3,3,3,3,4,2,4,2,3,3,4,3,2,4,3,3,4,3,4,3,3,4,3,4,2,3,4,4,4,4,4,3,3,2,4,4,2,2,2,3,3,2,3,2,2,2,3,3,4,3,3,3,4,
|
||||
4/6/2022 13:48:00,4/6/2022 13:58:00,0,100,632,1,2022-04-06T13:58:0,R_qQTP74HwOfYBFzr,41.9261,-71.3011,anonymous,EN,1,160505,4,5,5,4,4,4,4,3,4,4,4,4,4,3,3,3,3,3,4,4,4,4,3,3,4,3,3,3,3,3,3,3,3,3,3,3,3,4,3,4,4,4,3,2,3,,4,,4,4,4,4,4,1,1,1,3,4,3,3,,,,3,3,2,3,4,3,4,
|
||||
4/14/2022 13:52:00,4/14/2022 14:02:00,0,100,604,1,2022-04-14T14:2:0,R_3IbZmw2IZsyFzSZ,41.9261,-71.3011,anonymous,EN,1,160035,3,3,4,4,4,5,4,2,3,4,3,3,1,4,3,3,4,2,3,4,3,3,3,3,2,3,1,3,4,3,4,3,3,3,2,3,4,2,3,3,4,3,3,4,,,,,3,3,3,3,1,3,3,1,3,3,3,4,,,,3,3,3,3,3,3,4,
|
||||
4/24/2022 16:48:00,4/24/2022 17:00:00,0,100,713,1,2022-04-24T17:0:0,R_ysysmvwjrC1bFnj,41.9261,-71.3011,anonymous,EN,1,160040,4,4,4,5,5,5,4,3,4,4,4,4,3,4,3,3,5,2,5,4,4,4,3,3,3,4,4,3,4,4,4,4,2,4,2,4,3,3,3,4,4,4,4,4,,,,,4,4,3,4,1,3,3,3,3,3,3,3,,,,2,4,3,3,3,3,4,
|
||||
4/6/2022 7:31:00,4/6/2022 14:58:00,0,100,26809,1,2022-04-06T14:58:0,R_Rn9QxupnSPOLHah,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,4,5,3,4,5,5,5,4,3,3,3,3,4,4,4,3,3,3,3,3,3,1,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,3,4,3,3,3,3,3,4,4,3,3,3,3,3,3,4,3,4,4,3,3,3,5,4,
|
||||
4/6/2022 14:45:00,4/6/2022 15:01:00,0,100,959,1,2022-04-06T15:1:0,R_2doK3ximRBRm2Rd,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,2,3,3,3,2,4,4,5,3,4,3,3,3,3,3,3,3,2,3,3,3,2,3,3,3,2,2,3,2,2,3,1,2,2,2,3,3,2,2,3,3,3,4,4,4,2,2,3,3,3,2,2,1,3,3,3,3,2,3,2,3,3,3,3,4,3,5,
|
||||
4/13/2022 16:05:00,4/13/2022 16:16:00,0,100,616,1,2022-04-13T16:16:0,R_R3THB90nZ0c49ZT,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,3,4,5,4,2,5,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,4,5,4,4,4,4,4,3,4,3,4,3,4,2,1,2,4,4,4,4,4,4,4,5,5,3,3,4,4,4,4,4,3,4,4,4,4,5,3,3,4,5,
|
||||
4/13/2022 16:22:00,4/13/2022 16:33:00,0,100,634,1,2022-04-13T16:33:0,R_111jZ9GMNqPemJZ,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,5,4,4,4,1,5,4,4,4,3,4,3,3,3,4,5,4,4,5,4,4,3,3,4,3,4,4,4,3,4,4,4,3,3,3,3,4,4,2,2,2,4,4,4,4,4,4,4,4,2,4,3,4,4,4,4,4,3,3,3,3,3,3,4,4,3,4,
|
||||
3/30/2022 14:38:00,3/30/2022 14:54:00,0,100,970,1,2022-03-30T14:54:0,R_2aklm4vjWspLjpj,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,3,3,2,3,3,4,4,3,3,3,4,2,3,4,3,3,4,5,4,4,4,3,3,3,3,3,4,3,3,4,3,4,3,4,4,4,4,2,1,3,2,3,,4,,3,4,4,4,3,2,2,1,4,4,2,3,,,,3,4,3,3,3,3,4,
|
||||
4/25/2022 9:16:00,4/25/2022 9:22:00,0,100,347,1,2022-04-25T9:22:0,R_1i4l9qRnUx1DclF,41.9261,-71.3011,anonymous,EN,1,160040,4,4,5,5,4,4,4,2,4,4,5,4,3,3,2,3,4,3,4,3,3,3,3,3,3,3,4,4,4,4,4,3,4,3,4,3,3,4,2,4,5,2,4,5,4,,4,,3,3,4,4,4,3,3,2,4,3,3,3,,,,4,4,4,2,3,2,3,
|
||||
4/14/2022 12:36:00,4/14/2022 12:44:00,0,100,512,1,2022-04-14T12:44:0,R_2QgO5K6EApSHAqc,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,4,3,4,4,4,3,3,4,4,4,4,2,4,3,3,4,4,4,5,4,4,4,3,3,3,2,3,2,2,4,4,4,3,3,3,4,3,5,4,4,4,3,,3,,4,4,3,4,5,1,3,3,2,3,3,3,,,,3,4,4,4,4,3,3,
|
||||
4/6/2022 14:42:00,4/6/2022 15:00:00,0,100,1098,1,2022-04-06T15:0:0,R_3COsMrbbGH25atz,41.9261,-71.3011,anonymous,EN,1,160505,3,2,4,4,4,3,4,3,4,4,4,3,2,3,3,2,3,3,4,4,3,4,3,3,2,2,2,3,4,3,3,2,4,3,4,2,2,2,2,2,3,1,3,3,4,2,4,3,4,3,3,5,4,3,4,3,3,4,3,3,3,3,3,4,3,3,4,4,4,4,
|
||||
4/6/2022 9:36:00,4/6/2022 9:45:00,0,100,549,1,2022-04-06T9:45:0,R_3MhaadqFGKXi5Kz,41.9261,-71.3011,anonymous,EN,1,160505,5,4,5,4,4,4,4,3,5,4,4,4,,4,,4,5,4,4,5,5,5,5,5,4,,,4,4,4,4,3,4,3,4,3,3,5,5,5,3,2,,,4,,4,,3,4,4,5,5,5,5,5,4,4,4,5,,,,3,2,3,4,5,4,5,
|
||||
4/6/2022 14:43:00,4/6/2022 14:56:00,0,100,741,1,2022-04-06T14:56:0,R_5525ul6d2eK0f0B,41.9261,-71.3011,anonymous,EN,1,160505,4,5,4,5,5,4,4,3,4,5,4,4,3,4,3,3,3,2,4,4,4,4,3,4,4,3,4,4,4,4,4,3,4,3,4,2,3,3,4,3,3,3,3,5,4,3,4,4,4,3,3,3,5,2,2,2,3,4,4,4,3,3,3,4,4,4,4,5,2,3,
|
||||
4/11/2022 11:18:00,4/11/2022 12:13:00,0,100,3291,1,2022-04-11T12:13:0,R_2dhcIYlKpNIVoBf,41.92610168,-71.30110168,anonymous,EN,1,160001,4,4,4,2,2,4,3,1,4,4,4,4,3,4,4,4,3,2,3,3,3,4,4,3,3,4,4,4,3,4,4,4,3,2,3,4,4,3,4,3,4,4,3,3,3,4,4,3,3,3,3,4,5,3,2,3,3,3,2,3,3,3,3,2,4,4,4,5,4,5,
|
||||
4/27/2022 9:31:00,4/27/2022 9:43:00,0,100,714,1,2022-04-27T9:43:0,R_3h0eTNdO9iPhNbt,41.9261,-71.3011,anonymous,EN,1,160050,4,4,4,4,3,4,3,1,4,3,4,4,3,4,2,3,2,3,3,4,4,3,4,3,3,4,4,3,4,4,4,3,3,4,3,4,3,3,3,3,4,2,4,3,,,,,2,2,4,3,4,3,3,2,4,4,3,4,,,,3,2,1,3,3,4,4,
|
||||
4/6/2022 14:42:00,4/6/2022 15:07:00,0,100,1495,1,2022-04-06T15:7:0,R_1gdAp0Gby0BYF8T,42.3562,-71.0631,anonymous,EN,1,160505,3,3,4,4,3,3,3,1,4,3,4,2,2,4,3,3,4,4,4,4,3,4,3,3,2,2,3,2,2,2,3,3,3,4,4,4,3,3,3,3,3,4,4,5,3,4,3,3,3,2,2,3,1,3,3,3,5,3,3,2,3,3,3,3,3,3,2,3,3,3,
|
||||
4/14/2022 20:43:00,4/14/2022 20:50:00,0,100,430,1,2022-04-14T20:50:0,R_2EnME3lWOfMkX4d,41.5964,-71.2565,anonymous,EN,1,160035,5,5,5,5,,,4,,5,4,5,5,4,5,1,4,,,,4,5,4,4,,4,,4,5,5,,5,4,,,,5,5,5,3,4,5,4,5,5,,,,,5,,,5,5,,,,4,5,,4,,,,5,5,,,,,,
|
||||
4/6/2022 14:29:00,4/6/2022 14:46:00,0,100,1028,1,2022-04-06T14:46:0,R_22sKAVP1b8XkONJ,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,4,4,3,2,3,4,4,4,3,3,1,2,2,3,3,3,3,3,2,3,2,,,3,3,2,3,3,2,2,3,4,2,2,4,3,3,3,3,3,3,4,4,3,3,3,3,3,2,2,2,2,3,3,2,3,1,2,2,3,2,2,2,2,3,4,
|
||||
4/28/2022 18:34:00,4/28/2022 18:42:00,0,100,494,1,2022-04-28T18:42:0,R_tEgWxN3jwkDmoKZ,41.9082,-71.1031,anonymous,EN,1,160040,5,4,5,5,4,5,5,3,4,4,4,4,4,3,4,4,5,4,4,4,3,4,4,4,3,5,5,4,4,4,4,3,5,4,3,3,3,2,3,3,3,4,4,4,5,4,4,4,4,4,4,4,5,4,2,2,3,3,3,4,3,3,3,4,4,4,2,3,3,4,
|
||||
4/13/2022 15:46:00,4/13/2022 15:56:00,0,100,611,1,2022-04-13T15:56:0,R_UnkMjyYLqejEW1H,41.9261,-71.3011,anonymous,EN,1,160035,4,5,5,4,3,4,3,1,4,4,4,4,3,4,4,4,3,3,4,3,4,3,3,3,3,4,3,3,4,3,4,3,4,4,3,3,4,3,3,4,4,1,3,3,4,4,4,4,3,3,4,4,5,2,2,2,3,3,3,4,3,3,3,2,3,3,3,3,3,3,
|
||||
4/12/2022 13:50:00,4/13/2022 13:30:00,0,100,85202,1,2022-04-13T13:30:0,R_30d8cXVRgLZQNIw,42.801,-71.3085,anonymous,EN,1,160320,5,4,5,4,4,5,5,5,4,4,5,4,2,2,2,2,4,3,3,4,4,4,4,4,4,3,3,4,3,3,3,2,4,3,3,4,4,4,4,4,4,3,4,4,,,,,3,3,3,3,3,3,3,3,3,3,3,4,,,,3,3,3,3,3,3,3,
|
||||
4/6/2022 14:45:00,4/6/2022 14:58:00,0,100,741,1,2022-04-06T14:58:0,R_1IZDzCP2Ke4VWoy,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,4,4,4,3,4,4,4,4,3,3,3,4,4,3,4,2,4,2,2,3,3,3,3,3,3,4,3,3,4,3,3,3,3,3,3,3,4,1,2,3,4,4,4,4,4,5,4,5,3,3,3,3,3,4,4,4,3,4,3,4,4,4,4,4,3,3,
|
||||
4/6/2022 14:40:00,4/6/2022 14:51:00,0,100,661,1,2022-04-06T14:51:0,R_1n8jMhr05MOeaBS,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,5,5,5,5,3,4,4,4,4,3,3,4,3,3,4,4,4,3,3,3,3,3,3,4,4,3,4,3,3,4,4,4,4,4,4,3,3,4,2,4,4,4,4,4,4,5,5,5,5,5,3,4,4,3,3,3,3,3,3,3,5,4,4,3,3,2,2,
|
||||
4/13/2022 16:06:00,4/13/2022 16:18:00,0,100,759,1,2022-04-13T16:18:0,R_ZpXM8x4cG2BAeIN,41.9261,-71.3011,anonymous,EN,1,160050,5,5,5,4,3,4,4,1,4,4,4,4,4,4,3,3,3,3,4,4,4,4,3,4,3,4,4,4,4,4,4,3,4,4,4,3,3,3,3,4,5,3,5,5,,,,,3,3,4,4,3,3,2,3,4,4,4,3,,,,3,3,2,3,4,3,4,
|
||||
4/6/2022 9:46:00,4/6/2022 9:58:00,0,100,724,1,2022-04-06T9:58:0,R_1OCF4xAQQUQpdrP,41.9261,-71.3011,anonymous,EN,1,160505,1,2,5,5,4,5,4,3,3,4,5,4,5,5,4,4,3,4,4,5,5,4,5,4,3,4,4,4,3,3,4,3,4,4,5,5,4,4,4,4,4,4,4,4,4,,4,,4,4,4,4,5,3,3,3,4,4,4,4,,,,4,3,4,4,5,4,5,
|
||||
4/29/2022 7:40:00,4/29/2022 7:53:00,0,100,793,1,2022-04-29T7:53:0,R_Tw1gmqAnpO1XQwV,41.9261,-71.3011,anonymous,EN,1,160040,5,4,5,5,5,4,4,2,5,4,5,5,3,5,4,4,4,3,4,4,4,4,4,4,4,4,4,4,5,4,4,4,4,5,3,3,4,5,4,4,5,3,3,4,5,4,5,5,4,4,4,5,4,3,2,2,4,3,3,4,4,4,4,4,4,4,3,3,3,3,
|
||||
4/28/2022 22:06:00,4/28/2022 22:18:00,0,100,667,1,2022-04-28T22:18:0,R_RPNxorfIDakPPY5,41.7505,-71.2089,anonymous,EN,1,160040,3,3,4,5,4,5,4,3,4,3,3,3,3,2,2,3,4,4,3,5,5,5,3,3,3,3,3,4,3,3,4,4,4,4,4,3,3,3,3,5,3,3,4,3,3,3,3,3,3,3,3,3,1,3,4,4,3,3,3,3,4,4,4,3,3,4,2,3,3,4,
|
||||
4/6/2022 14:39:00,4/6/2022 14:46:00,0,100,426,1,2022-04-06T14:46:0,R_ebwggYBbH5VZtrX,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,4,4,4,3,3,4,3,3,3,3,3,3,3,2,2,2,3,3,3,3,2,2,3,3,4,3,4,4,3,3,2,2,3,2,2,2,2,3,3,3,3,3,4,4,5,4,4,3,5,3,3,3,3,3,3,3,3,3,3,3,3,4,4,3,3,4,5,
|
||||
4/12/2022 8:28:00,4/12/2022 8:38:00,0,100,577,1,2022-04-12T8:38:0,R_331N73aWYj7eaDP,42.80099487,-71.3085022,anonymous,EN,1,160320,3,4,5,2,2,5,4,2,4,4,4,2,2,4,3,4,2,2,3,4,5,3,3,3,4,3,3,3,3,3,3,3,3,3,3,2,3,3,4,4,3,3,4,4,3,3,4,4,4,3,3,3,4,2,3,3,3,3,2,3,2,2,2,3,3,3,3,3,3,3,
|
||||
4/27/2022 16:04:00,4/27/2022 16:15:00,0,100,682,1,2022-04-27T16:15:0,R_egts8lPldCWjHEt,41.8418,-71.3222,anonymous,EN,1,160050,4,4,4,5,4,2,3,2,4,4,3,4,3,4,3,2,4,4,4,3,2,2,3,3,2,3,3,3,3,4,4,4,3,3,3,2,3,2,2,3,4,2,3,3,4,,4,,3,3,3,4,4,3,3,2,3,3,2,3,,,,2,3,3,2,3,2,3,
|
||||
4/14/2022 13:52:00,4/14/2022 14:09:00,0,100,1014,1,2022-04-14T14:9:0,R_bQx0ImegpjoLdqp,41.9261,-71.3011,anonymous,EN,1,160035,3,3,4,4,3,2,3,2,4,3,3,3,2,4,3,3,1,1,4,4,4,3,3,3,4,3,3,3,3,3,3,3,2,2,3,3,3,3,2,4,3,2,3,3,,,,,2,2,2,3,1,3,2,4,4,3,3,3,,,,3,3,3,2,2,3,4,
|
||||
4/14/2022 10:55:00,4/14/2022 11:08:00,0,100,774,1,2022-04-14T11:8:0,R_ehetffLJDysOdJT,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,,,,,5,4,5,5,1,5,5,3,5,5,5,5,,,,4,4,4,3,3,3,3,
|
||||
4/13/2022 16:23:00,4/13/2022 16:37:00,0,100,859,1,2022-04-13T16:37:0,R_3oRsvvtmnuDsICX,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,5,4,4,5,1,5,4,5,4,4,4,5,5,4,5,5,4,4,5,4,5,4,5,4,4,4,4,4,4,4,5,4,3,3,4,3,4,5,3,4,5,4,5,4,5,4,4,4,5,5,3,3,4,5,4,3,4,4,4,4,3,4,4,4,4,3,3,
|
||||
4/13/2022 16:40:00,4/13/2022 16:47:00,0,100,439,1,2022-04-13T16:47:0,R_2aDg26bgZ3yj8QI,40.7428,-73.9712,anonymous,EN,1,160050,5,4,5,4,3,3,3,,,,,,3,3,3,3,,,,3,3,3,,,,3,4,4,4,3,4,4,,,,3,5,4,3,4,3,3,2,2,,,,,,,,,5,3,3,2,3,4,3,3,,,,,,,3,3,3,3,
|
||||
4/24/2022 13:21:00,4/24/2022 13:35:00,0,100,822,1,2022-04-24T13:35:0,R_3Eo5r5yZ4dS1cB7,41.9261,-71.3011,anonymous,EN,1,160040,4,4,4,3,4,5,2,5,4,4,4,4,3,3,4,3,4,3,4,4,4,4,3,3,3,4,4,4,4,3,4,4,4,4,3,3,3,4,4,4,4,2,4,4,,,,,3,3,4,5,4,4,2,1,3,3,2,3,,,,4,4,3,3,3,4,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:28:00,0,100,407,1,2022-04-13T16:28:0,R_pL7IT7dFfoN9WPT,41.9261,-71.3011,anonymous,EN,1,160045,4,4,4,4,4,3,3,2,4,3,3,3,4,3,4,3,3,2,4,4,4,4,3,3,2,4,4,4,4,3,4,4,3,3,3,3,4,3,2,3,3,2,2,2,3,4,4,4,4,4,3,4,4,3,3,1,3,4,3,4,3,3,3,4,4,3,2,2,2,3,
|
||||
4/12/2022 10:25:00,4/12/2022 10:50:00,0,100,1521,1,2022-04-12T10:50:0,R_111rzf0dF8TdSoK,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,4,4,4,4,5,4,4,4,4,3,2,3,2,4,4,3,5,4,4,4,4,4,4,4,4,4,4,4,3,4,4,3,3,4,4,3,4,3,3,4,4,4,,3,,3,3,3,5,5,4,2,3,4,4,2,4,,,,3,3,3,3,4,3,3,
|
||||
4/24/2022 19:21:00,4/24/2022 19:30:00,0,100,536,1,2022-04-24T19:30:0,R_2Y2R1b8kwOd06sd,42.0215,-71.2188,anonymous,EN,1,160040,4,5,5,5,5,5,3,,4,4,4,3,4,5,4,5,5,,5,4,3,4,4,4,4,5,5,4,4,3,4,3,4,3,3,4,4,4,4,5,5,3,4,4,,,,,3,3,3,5,,,,,5,5,5,4,,,,3,4,3,,,4,5,
|
||||
4/27/2022 12:18:00,4/28/2022 12:06:00,0,100,85687,1,2022-04-28T12:6:0,R_3GCD1UbWXXwZMrv,41.9261,-71.3011,anonymous,EN,1,160040,4,4,4,4,4,5,4,2,4,4,4,4,3,3,4,3,3,3,4,4,4,4,3,3,3,4,4,4,4,4,4,3,4,4,3,3,3,3,3,4,4,2,3,3,4,,4,,3,2,3,4,4,4,3,1,4,4,2,4,,,,2,2,3,3,3,3,4,
|
||||
4/6/2022 7:32:00,4/6/2022 8:09:00,0,100,2259,1,2022-04-06T8:9:0,R_3lEb8yzD4g96lyh,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,4,4,5,4,3,4,3,4,4,4,4,4,4,4,4,4,3,3,4,3,3,3,3,3,4,4,4,4,4,4,3,4,3,2,2,2,2,3,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,4,4,3,3,3,4,4,4,5,4,5,
|
||||
4/13/2022 15:45:00,4/13/2022 15:57:00,0,100,776,1,2022-04-13T15:58:0,R_3JIsHLgYN0iqQIa,41.9261,-71.3011,anonymous,EN,1,160035,5,4,5,4,,4,3,3,4,5,5,4,4,4,4,4,4,4,4,5,5,5,4,4,3,3,3,3,3,3,3,2,3,,3,3,3,4,3,4,4,4,4,4,3,,3,,4,4,4,5,4,3,3,2,4,3,3,3,,,,4,3,3,3,3,3,3,
|
||||
3/30/2022 14:37:00,3/30/2022 15:13:00,0,100,2167,1,2022-03-30T15:13:0,R_1M02VLLx8keqrHE,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,3,4,3,1,4,3,3,4,3,3,3,3,4,3,4,3,2,4,3,3,3,3,3,3,2,2,3,2,3,2,2,3,4,3,4,4,4,2,3,2,4,4,4,4,3,3,3,4,3,4,4,2,3,3,3,4,3,3,3,4,4,3,3,5,3,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:32:00,0,100,602,1,2022-04-13T16:32:0,R_3PF79ElK5d6QAFr,41.9261,-71.3011,anonymous,EN,1,160045,5,4,5,4,3,4,3,2,4,4,4,4,3,3,3,3,3,2,3,5,5,5,3,3,3,4,4,4,4,4,3,3,3,3,3,3,3,3,3,4,4,2,3,3,4,,4,,3,3,3,4,5,3,3,2,3,3,3,3,,,,3,3,3,3,3,3,3,
|
||||
3/30/2022 14:36:00,3/30/2022 14:45:00,0,100,547,1,2022-03-30T14:45:0,R_11jAHr6U78XFypm,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,4,5,4,3,4,3,3,4,2,4,4,3,4,2,3,2,2,4,2,2,3,3,3,3,3,4,4,3,3,3,3,3,3,4,3,5,4,3,4,4,3,3,3,4,4,4,4,5,4,3,3,3,3,3,3,3,2,3,2,4,4,4,3,4,3,3,
|
||||
4/14/2022 13:50:00,4/14/2022 13:58:00,0,100,464,1,2022-04-14T13:58:0,R_WpPpUKuL9XvTU4h,42.801,-71.3085,anonymous,EN,1,160320,3,3,4,3,4,3,3,2,3,4,4,3,3,3,3,3,1,2,4,4,5,4,4,4,3,3,3,3,3,3,3,3,3,3,3,2,4,3,3,4,2,3,2,2,4,,3,,3,4,4,4,3,3,3,1,4,4,3,3,,,,3,4,4,3,3,3,3,
|
||||
4/13/2022 11:10:00,4/13/2022 12:00:00,0,100,2975,1,2022-04-13T12:0:0,R_1GBSWc8z7ObLWVI,41.9261,-71.3011,anonymous,EN,1,160001,5,3,5,3,4,4,4,3,4,5,4,3,3,4,4,4,3,2,4,4,4,4,5,4,4,3,3,3,4,4,3,3,4,3,3,2,3,3,3,3,5,4,4,4,4,,3,,3,3,4,4,5,3,3,3,3,4,4,4,,,,3,3,3,3,4,5,5,
|
||||
3/30/2022 15:10:00,3/30/2022 15:21:00,0,100,672,1,2022-03-30T15:21:0,R_1HjAsn7trzbwJKh,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,4,4,4,4,4,5,4,4,4,2,3,3,3,3,2,4,4,4,4,4,4,4,2,2,2,2,3,3,3,3,4,3,2,3,3,3,3,4,1,3,3,3,2,4,4,3,3,3,3,4,3,3,3,4,4,4,4,3,3,3,3,3,3,3,3,3,3,
|
||||
4/13/2022 10:43:00,4/13/2022 10:52:00,0,100,583,1,2022-04-13T10:52:0,R_29ufLDXCYQMfjv2,41.9261,-71.3011,anonymous,EN,1,160001,4,4,5,5,5,5,5,2,4,5,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,3,3,4,4,4,4,4,4,4,3,3,3,5,3,4,4,4,4,4,5,4,4,4,5,5,4,4,4,4,5,5,5,3,3,3,4,4,4,3,3,3,4,
|
||||
4/14/2022 10:59:00,4/14/2022 11:18:00,0,100,1129,1,2022-04-14T11:18:0,R_1j9u35yfAQIPcwj,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,4,4,4,4,2,4,4,4,4,3,3,4,3,4,4,5,4,3,3,3,3,4,3,4,4,4,4,4,3,4,4,3,4,3,4,3,4,5,3,4,4,,,,,3,3,4,4,5,3,2,1,4,3,3,3,,,,2,3,3,3,3,4,4,
|
||||
4/6/2022 14:42:00,4/6/2022 14:59:00,0,100,974,1,2022-04-06T14:59:0,R_pN2c0NQeAFCVnzP,41.9261,-71.3011,anonymous,EN,1,160505,5,4,4,4,4,5,3,2,4,4,4,4,3,3,2,2,3,3,5,4,4,4,3,3,2,3,3,4,4,4,4,4,3,4,4,2,3,2,3,4,3,2,3,3,4,4,4,4,4,3,4,3,3,3,3,3,4,4,4,4,3,4,3,3,4,4,4,3,3,4,
|
||||
4/29/2022 8:37:00,4/29/2022 12:02:00,0,100,12261,1,2022-04-29T12:2:0,R_1CstLpmy1cez2ud,41.9261,-71.3011,anonymous,EN,1,160040,4,4,4,4,4,5,4,2,4,4,3,4,2,3,3,3,4,3,4,4,4,5,4,4,2,3,3,3,4,4,4,3,4,4,3,3,4,4,3,4,4,2,3,3,3,4,3,3,4,4,4,5,4,4,4,2,3,4,3,4,3,2,2,3,4,3,3,3,3,3,
|
||||
4/25/2022 20:08:00,4/25/2022 20:18:00,0,100,572,1,2022-04-25T20:18:0,R_OCEJvNrDAy9rKZb,41.7522,-71.1492,anonymous,EN,1,160040,4,4,4,4,3,2,3,2,4,4,4,4,3,4,4,3,4,2,3,3,4,4,3,4,2,3,4,4,4,4,4,3,3,3,3,3,3,3,3,3,4,3,3,4,,,,,4,4,4,4,1,3,3,2,4,4,3,4,,,,4,4,4,3,4,4,5,
|
||||
4/10/2022 21:38:00,4/10/2022 21:48:00,0,100,626,1,2022-04-10T21:48:0,R_1FaAaVAksqKyuOM,41.90820313,-71.10310364,anonymous,EN,1,160505,4,3,3,3,3,2,,1,3,4,4,3,2,2,2,3,2,,,3,3,4,3,3,,3,2,3,3,3,3,3,4,3,3,3,3,3,2,3,3,2,3,3,4,4,3,4,2,3,2,3,4,3,3,2,,3,,3,4,,,,3,3,4,5,4,4,
|
||||
4/13/2022 12:27:00,4/13/2022 13:22:00,0,100,3318,1,2022-04-13T13:22:0,R_enCACDT0XywENix,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,5,5,5,3,,,,,,4,3,4,3,,,,4,3,4,,,,4,5,4,4,4,4,4,,,,3,3,3,3,4,4,2,4,3,,,,,,,,,5,4,4,4,4,4,4,4,,,,,,,2,3,3,4,
|
||||
3/30/2022 15:09:00,3/30/2022 15:29:00,0,100,1187,1,2022-03-30T15:29:0,R_9pnePdc9116B9Pr,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,2,2,2,2,1,3,3,3,3,2,2,2,2,3,2,3,4,4,4,3,3,2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,3,4,2,2,2,2,2,3,3,3,3,3,3,2,2,2,1,2,3,2,2,3,3,3,2,2,2,3,3,3,3,
|
||||
3/30/2022 15:07:00,3/30/2022 15:17:00,0,100,559,1,2022-03-30T15:17:0,R_2BnuhIXdRy9qLqN,41.88600159,-71.34570313,anonymous,EN,1,160305,5,5,5,5,5,5,4,,,,,,4,5,4,4,,,,4,4,5,,,,3,3,4,5,5,5,4,,,,3,3,4,4,4,5,3,5,5,,,,,,,,,5,,,,4,5,,5,,,,,,,4,5,5,5,
|
||||
4/12/2022 8:55:00,4/12/2022 9:03:00,0,100,526,1,2022-04-12T9:3:0,R_3ffu046UkfuSRud,41.92610168,-71.30110168,anonymous,EN,1,160315,4,4,4,4,4,5,4,3,4,4,4,4,4,4,4,4,4,4,3,5,5,5,5,5,5,3,3,4,4,3,4,3,4,4,4,4,4,4,3,4,5,3,5,5,4,,4,,4,4,4,5,5,3,3,2,5,5,3,4,,,,4,4,3,3,5,3,4,
|
||||
4/6/2022 14:46:00,4/6/2022 15:01:00,0,100,890,1,2022-04-06T15:1:0,R_UhBssY1SgDxuHYd,41.9261,-71.3011,anonymous,EN,1,160505,4,4,4,4,3,4,3,3,4,4,4,3,3,3,4,4,4,3,3,4,4,5,4,4,3,3,3,4,4,4,4,4,3,3,4,2,2,3,2,3,3,2,4,4,4,4,3,3,4,4,3,4,4,3,3,,3,3,3,3,2,2,2,4,3,4,4,5,3,4,
|
||||
4/27/2022 13:45:00,4/27/2022 13:56:00,0,100,681,1,2022-04-27T13:56:0,R_XtYr5zdK2n8x95f,42.801,-71.3085,anonymous,EN,1,160320,4,5,4,4,4,4,4,3,3,3,4,4,3,3,2,3,4,4,4,5,5,5,4,4,3,3,4,4,4,3,4,3,3,4,3,3,3,4,4,4,4,2,3,3,3,3,4,3,5,5,4,4,3,3,3,2,4,4,3,3,3,3,3,4,3,3,4,4,3,4,
|
||||
4/8/2022 9:06:00,4/8/2022 9:38:00,0,100,1977,1,2022-04-08T9:38:0,R_2WDwLDKDUCQnEE6,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,5,5,5,4,4,5,5,5,5,4,5,3,5,4,3,4,5,5,5,5,5,5,5,5,4,3,4,4,4,5,4,5,4,4,4,3,4,5,3,5,5,4,5,4,5,4,3,4,4,4,3,3,3,5,5,4,5,4,4,4,3,4,4,4,4,4,5,
|
||||
4/6/2022 14:46:00,4/6/2022 15:05:00,0,100,1122,1,2022-04-06T15:5:0,R_1Qi4cKbn3rvVM7s,41.9261,-71.3011,anonymous,EN,1,160505,5,5,5,3,3,4,3,3,4,4,4,4,3,3,3,3,3,4,3,4,3,,3,3,4,3,3,4,4,3,4,3,3,4,4,3,3,3,3,4,3,2,,4,4,4,4,4,5,4,4,5,5,3,,,3,3,3,4,3,3,3,3,4,4,,,3,5,
|
||||
4/13/2022 15:46:00,4/13/2022 15:57:00,0,100,672,1,2022-04-13T15:57:0,R_1gdMoq4TSUL28sg,41.9261,-71.3011,anonymous,EN,1,160035,4,4,4,5,4,5,4,4,4,4,4,4,3,3,3,3,4,4,4,4,4,4,4,4,4,4,5,4,4,4,4,4,4,3,3,3,4,4,3,4,4,4,4,4,4,,3,,4,4,4,3,4,3,2,1,4,3,3,4,,,,3,3,3,3,5,5,5,
|
||||
3/30/2022 14:39:00,3/30/2022 15:05:00,0,100,1533,1,2022-03-30T15:5:0,R_TnMRlgnl5jCh0tP,41.88600159,-71.34570313,anonymous,EN,1,160305,4,5,5,5,5,5,4,5,4,4,5,4,4,5,4,4,4,4,5,4,4,4,4,4,4,4,4,4,4,5,4,4,4,4,4,4,4,4,3,4,5,3,4,4,,,,,2,2,4,4,1,4,4,3,4,4,4,4,,,,4,4,4,4,4,4,4,
|
||||
4/6/2022 10:20:00,4/6/2022 10:49:00,0,26,1752,0,2022-04-13T10:49:0,R_tSvLOrF0tQJZxOF,,,anonymous,EN,1,160505,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,2,2,2,2,1,1,2,,,,,,,,,,,,,,,,,,,,,,,,1,2,3,,,,,
|
||||
4/13/2022 15:55:00,4/13/2022 16:03:00,0,100,479,1,2022-04-13T16:3:0,R_2OJ876acUjLlFxt,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,4,4,4,3,4,4,4,4,4,3,4,3,3,5,3,4,4,4,4,4,4,3,3,3,3,3,3,3,3,4,4,4,3,3,3,3,3,3,2,3,3,4,4,4,4,3,3,3,4,5,3,3,3,4,4,3,4,3,3,3,3,3,3,2,2,3,4,
|
||||
4/12/2022 13:41:00,4/12/2022 13:55:00,0,100,847,1,2022-04-12T13:55:0,R_1eETavD6JPXIYGp,41.97390747,-71.32839966,anonymous,EN,1,160315,5,4,4,4,4,3,4,1,4,4,4,4,3,3,4,3,5,3,4,4,4,4,4,4,4,3,3,3,4,4,4,3,3,3,3,3,3,3,2,3,3,2,3,3,3,4,4,4,4,4,4,5,4,3,3,3,3,4,4,3,3,3,3,4,4,4,3,3,3,3,
|
||||
4/12/2022 8:31:00,4/12/2022 8:47:00,0,100,957,1,2022-04-12T8:47:0,R_2RPbHF477k3BjSI,42.80099487,-71.3085022,anonymous,EN,1,160320,5,4,4,2,3,2,3,2,4,4,3,3,3,3,3,3,3,2,4,4,4,4,4,3,4,4,4,4,3,4,4,3,3,3,3,3,4,2,3,4,4,2,4,3,3,,3,,3,3,3,3,4,2,3,2,2,3,3,4,,,,3,3,3,3,3,3,3,
|
||||
4/12/2022 11:54:00,4/12/2022 12:28:00,0,100,2075,1,2022-04-12T12:28:0,R_2Cf5SDkJPX3o8nN,42.80099487,-71.3085022,anonymous,EN,1,160315,3,4,4,4,4,5,3,5,4,4,4,4,4,4,4,4,4,4,4,5,5,5,4,4,5,5,5,5,5,5,5,4,4,3,4,4,4,4,4,4,3,4,4,4,,,,,4,4,4,4,2,3,3,2,4,4,4,4,,,,4,4,4,3,3,3,3,I believe our school is one of the best schools in the state.
|
||||
4/12/2022 8:35:00,4/12/2022 8:46:00,0,100,677,1,2022-04-12T8:46:0,R_3nH5VhPzOOToip2,42.80099487,-71.3085022,anonymous,EN,1,160320,4,4,4,3,3,4,3,2,4,3,3,3,3,3,3,2,4,4,3,4,4,4,3,4,3,3,3,4,4,4,4,4,3,3,3,3,4,3,3,3,3,1,3,3,3,4,4,3,3,3,3,3,5,3,3,1,3,3,3,3,3,3,3,3,3,4,2,3,2,3,
|
||||
4/26/2022 18:04:00,4/26/2022 18:12:00,0,100,461,1,2022-04-26T18:12:0,R_2YyMMrbhvm5hSei,42.1094,-71.1759,anonymous,EN,1,160320,5,5,4,4,4,5,4,2,4,5,4,4,3,3,4,4,5,3,4,5,4,4,4,4,4,3,3,4,4,4,4,4,3,3,3,3,3,3,3,3,4,2,4,4,4,4,4,4,4,4,4,4,5,3,3,3,4,3,3,3,3,4,3,4,4,4,3,3,3,3,
|
||||
4/14/2022 10:49:00,4/14/2022 10:58:00,0,100,571,1,2022-04-14T10:58:0,R_3HXLF9WU8EGbPlO,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,3,3,5,3,3,4,3,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,5,5,4,4,4,4,3,4,4,4,4,4,4,4,4,5,4,5,4,,,,,4,4,4,4,2,4,4,2,4,4,3,3,,,,4,3,3,2,3,3,3,
|
||||
4/20/2022 8:14:00,4/20/2022 8:23:00,0,100,525,1,2022-04-20T8:23:0,R_RsIR2Gb6Yn0cmqt,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,,,4,4,,3,3,3,3,4,4,3,4,4,,,4,4,4,5,4,5,3,4,3,4,4,4,4,4,4,4,4,4,4,,,4,3,4,4,,,,,4,4,4,4,1,4,3,3,5,4,4,4,,,,,,,2,3,3,3,
|
||||
4/6/2022 14:38:00,4/6/2022 14:48:00,0,100,622,1,2022-04-06T14:48:0,R_2ByREr8gGEAMRrW,41.9261,-71.3011,anonymous,EN,1,160505,3,3,3,4,2,5,3,3,3,2,4,3,3,3,2,3,4,3,3,4,4,4,3,4,3,3,4,3,4,3,3,3,3,3,3,3,4,3,2,3,4,3,4,3,2,3,2,3,3,3,2,3,5,3,2,3,3,2,2,3,3,3,3,3,2,2,3,3,3,4,
|
||||
3/30/2022 14:34:00,3/30/2022 15:11:00,0,100,2220,1,2022-03-30T15:11:0,R_30q7bpQXknFEnmj,41.88600159,-71.34570313,anonymous,EN,1,160305,5,4,5,4,4,5,4,2,4,4,4,4,3,,4,3,4,4,4,5,5,4,5,4,3,,,,4,3,3,3,4,3,4,4,4,4,5,,,,,,4,4,5,5,4,4,4,5,5,3,,,,4,,4,3,3,3,4,4,4,4,4,4,,
|
||||
4/13/2022 16:22:00,4/13/2022 16:32:00,0,100,638,1,2022-04-13T16:32:0,R_1Ok3PwIJ4dnsKSg,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,5,4,5,4,2,5,4,4,4,4,5,5,4,4,4,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,4,3,3,4,4,4,4,4,4,4,4,5,5,4,4,3,3,5,4,3,4,3,3,4,4,4,4,3,3,3,3,
|
||||
4/14/2022 10:26:00,4/14/2022 10:41:00,0,100,864,1,2022-04-14T10:41:0,R_2ccQQdCMamX7SNI,41.9261,-71.3011,anonymous,EN,1,160045,4,3,4,4,4,4,3,3,4,4,4,3,2,4,3,3,4,3,4,3,2,4,4,3,3,4,4,4,5,5,4,4,4,3,4,4,4,4,3,4,5,4,4,5,3,4,4,4,4,4,4,5,3,4,4,3,3,4,3,4,3,3,4,3,4,4,2,3,3,3,
|
||||
4/28/2022 6:34:00,4/28/2022 7:02:00,0,100,1688,1,2022-04-28T7:2:0,R_3EXUZXrFS7o7LtX,41.9261,-71.3011,anonymous,EN,1,160050,4,4,3,4,4,5,4,5,4,4,4,4,4,4,4,4,5,5,5,3,3,3,4,4,5,3,3,4,4,3,3,3,4,4,4,4,3,3,4,5,5,5,5,5,4,,3,,4,4,4,4,3,4,3,3,5,4,4,4,,,,3,3,3,4,4,4,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:33:00,0,100,667,1,2022-04-13T16:33:0,R_1LhrVU2WTuIPflA,41.9261,-71.3011,anonymous,EN,1,160045,5,4,4,3,4,5,4,2,4,4,4,4,2,3,3,3,4,3,4,4,4,4,4,4,3,3,3,3,4,4,4,4,3,3,3,3,3,2,3,3,4,3,4,4,4,4,4,4,4,4,4,4,5,4,4,2,3,4,4,4,3,3,3,3,3,3,3,3,3,3,
|
||||
4/12/2022 8:57:00,4/12/2022 9:12:00,0,100,918,1,2022-04-12T9:12:0,R_5oKlysin9zpMvYd,42.80099487,-71.3085022,anonymous,EN,1,160320,5,5,5,4,3,4,4,2,4,4,4,3,3,3,3,2,5,3,4,4,3,3,3,3,4,3,3,4,3,3,4,3,3,3,3,3,3,3,4,4,4,3,4,3,3,3,4,4,4,4,4,5,4,3,3,3,3,3,3,3,3,4,3,3,3,4,3,3,3,3,
|
||||
4/12/2022 10:11:00,4/12/2022 10:17:00,0,38,352,0,2022-04-19T10:18:0,R_27OH74teLuxbGZK,,,anonymous,EN,1,160315,,,,4,3,5,3,2,3,3,3,3,,,,,,,,,,,,,,4,4,4,,,,,3,3,4,,,,,,,,,,,,,,3,3,3,4,,,,,,,,,,,,,,,3,4,,,
|
||||
4/13/2022 16:22:00,4/13/2022 16:36:00,0,100,862,1,2022-04-13T16:36:0,R_Oe6bU59iR9i7bu9,41.9261,-71.3011,anonymous,EN,1,160045,4,5,4,5,4,5,4,1,4,4,4,4,3,4,3,3,3,3,3,4,5,4,4,4,3,4,5,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,,4,,4,4,4,4,5,,,,4,4,,4,,,,3,3,3,3,4,3,4,
|
||||
4/27/2022 14:32:00,4/27/2022 14:43:00,0,100,656,1,2022-04-27T14:43:0,R_2SBqOuuutyfsxgX,42.801,-71.3085,anonymous,EN,1,160320,4,3,4,2,3,5,4,2,4,4,4,3,3,4,3,3,4,2,3,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,4,3,4,4,3,4,3,4,3,3,3,4,4,4,3,4,2,3,2,3,3,3,3,2,2,2,3,3,3,3,3,3,3,
|
||||
4/6/2022 14:42:00,4/6/2022 15:19:00,0,100,2227,1,2022-04-06T15:19:0,R_ZjAkY9hxSv5lwlz,41.9261,-71.3011,anonymous,EN,1,160505,3,3,3,2,2,2,3,,,,,,1,2,3,2,,,,2,2,2,,,,1,1,2,2,1,2,2,,,,3,2,3,2,3,2,1,2,1,,,,,,,,,3,2,2,1,2,2,2,2,,,,,,,2,3,2,3,"Let's stop trying to ""train"" staff to differentiate and ""manage"" problems. Managing problems is not the same as solving problems. Please give schools, all schools, more staff across the board - more teachers, subs, nurses, counselors, deans, etc."
|
||||
4/13/2022 10:41:00,4/13/2022 12:24:00,0,100,6179,1,2022-04-13T12:24:0,R_1IS59wLXsbnfZWz,42.801,-71.3085,anonymous,EN,1,160320,5,4,5,5,5,4,4,5,4,3,5,4,4,4,4,4,5,4,5,5,5,5,5,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4,5,4,3,4,4,,,,,4,3,3,4,3,4,3,3,4,5,4,5,,,,3,4,4,4,5,3,3,
|
||||
3/30/2022 16:49:00,3/30/2022 17:11:00,0,100,1352,1,2022-03-30T17:11:0,R_3siqHL7YUPQNy6t,42.24630737,-70.99720001,anonymous,EN,1,160315,4,4,4,4,4,4,4,4,4,4,4,4,3,5,4,3,4,3,4,4,4,4,4,4,4,3,3,3,3,4,4,3,3,3,3,4,3,4,4,4,3,1,2,2,3,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,4,4,4,3,4,3,4,
|
||||
4/26/2022 11:39:00,4/27/2022 14:58:00,0,100,98336,1,2022-04-27T14:58:0,R_2sckf3XlCEEsIDT,42.801,-71.3085,anonymous,EN,1,160320,5,4,4,4,4,3,3,5,4,4,4,4,3,3,3,3,4,4,4,5,4,4,3,3,3,3,3,4,4,4,4,3,4,3,3,3,3,3,3,4,3,2,3,3,,,,,4,3,4,4,5,3,3,3,4,4,3,4,,,,3,3,3,3,4,3,3,
|
||||
4/6/2022 14:35:00,4/6/2022 14:43:00,0,100,481,1,2022-04-06T14:43:0,R_2ZObkhAJ6hxAsze,41.9261,-71.3011,anonymous,EN,1,160505,3,3,3,3,3,4,4,2,4,3,3,4,2,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,3,3,3,3,1,3,3,3,3,3,3,2,3,3,4,3,2,2,1,3,3,3,3,3,3,3,3,3,3,2,2,2,2,
|
||||
4/12/2022 14:32:00,4/12/2022 14:41:00,0,100,549,1,2022-04-12T14:41:0,R_3kjmufdQp8G2YRh,42.80099487,-71.3085022,anonymous,EN,1,160320,4,4,4,2,3,3,4,3,3,3,4,3,4,4,4,4,3,3,4,5,3,4,4,4,4,3,3,3,4,4,4,3,4,4,3,3,3,3,3,4,4,2,3,4,4,,3,,3,3,3,4,4,3,3,2,3,3,3,3,,,,2,3,3,3,3,3,3,
|
||||
3/30/2022 15:07:00,3/30/2022 15:17:00,0,100,636,1,2022-03-30T15:17:0,R_pmCcuSLCaqJ3fKp,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,4,4,5,4,,,,,,4,4,4,4,,,,5,5,5,,,,,,,4,4,4,4,,,,4,4,3,3,4,4,3,3,3,,,,,,,,,5,4,4,4,4,4,3,4,,,,,,,3,3,3,3,
|
||||
4/13/2022 15:45:00,4/13/2022 15:57:00,0,100,731,1,2022-04-13T15:57:0,R_3kA5qjw2DV3vIFw,41.9261,-71.3011,anonymous,EN,1,160035,5,5,5,4,4,5,4,,4,4,3,4,3,4,4,4,,,,5,4,5,4,4,4,4,4,4,,,4,4,4,,,3,4,4,4,4,4,3,4,4,4,,4,,3,4,,4,2,,,,,4,,,,,,4,3,3,3,4,3,4,
|
||||
4/6/2022 14:46:00,4/6/2022 14:53:00,0,100,470,1,2022-04-06T14:53:0,R_2aPI16M0HLXcmly,41.9261,-71.3011,anonymous,EN,1,160505,3,3,3,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,3,2,3,3,3,3,4,4,4,3,1,2,2,3,3,3,3,3,3,3,3,3,4,3,3,3,4,3,3,3,3,4,3,3,3,3,3,4,4,4,3,3,1,4,
|
||||
4/13/2022 16:24:00,4/13/2022 16:38:00,0,100,823,1,2022-04-13T16:38:0,R_1gMZVSgEOeBl91L,41.9261,-71.3011,anonymous,EN,1,160045,4,4,3,5,5,4,3,4,4,3,3,3,3,3,3,3,3,4,4,3,4,3,3,4,3,3,3,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,3,3,3,3,3,3,3,3,3,5,4,4,4,3,4,4,3,3,3,3,3,4,3,4,4,5,4,
|
||||
4/13/2022 10:35:00,4/13/2022 10:42:00,0,100,422,1,2022-04-13T10:42:0,R_6Yyph5HHyputCRX,41.9261,-71.3011,anonymous,EN,1,160001,4,4,4,4,4,5,4,,,,,,4,4,3,4,,,,4,4,4,,,,4,4,4,4,3,4,3,,,,3,4,4,3,4,3,3,4,4,,,,,,,,,5,4,3,2,4,4,3,4,,,,,,,3,3,3,4,
|
||||
4/13/2022 15:42:00,4/13/2022 15:52:00,0,100,554,1,2022-04-13T15:52:0,R_1PZVw4RQ8inK9aB,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,5,5,5,5,4,4,4,4,5,5,5,5,5,4,,4,5,5,5,5,5,5,,,4,4,4,4,4,5,5,5,4,4,4,4,4,5,5,5,5,3,4,4,4,5,5,5,5,5,4,4,3,5,5,5,5,4,4,4,4,5,5,3,4,4,4,
|
||||
4/13/2022 16:22:00,4/13/2022 16:32:00,0,100,646,1,2022-04-13T16:32:0,R_2c8aMoZXNkAltNy,41.9261,-71.3011,anonymous,EN,1,160045,5,5,5,5,4,5,4,5,4,4,4,4,4,5,4,4,4,4,4,5,5,5,5,5,5,4,4,4,5,4,4,4,5,4,4,4,4,4,4,4,5,4,5,5,4,4,5,4,4,4,4,5,5,4,3,3,4,4,4,4,3,3,4,4,5,4,4,5,3,4,
|
||||
3/30/2022 14:33:00,3/30/2022 14:46:00,0,100,801,1,2022-03-30T14:46:0,R_2sSbTyKCKzOMGBr,41.88600159,-71.34570313,anonymous,EN,1,160305,4,4,4,2,2,4,4,2,4,4,4,3,3,3,3,2,4,3,3,4,3,4,3,3,3,4,4,3,3,3,3,3,3,3,3,2,3,3,3,3,3,2,3,3,3,3,3,3,4,4,3,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,3,4,
|
||||
4/13/2022 15:39:00,4/13/2022 15:50:00,0,100,679,1,2022-04-13T15:50:0,R_3MgJXQhwZ7cESCK,41.9261,-71.3011,anonymous,EN,1,160001,5,5,5,5,5,5,5,,,,,,5,5,5,5,,,,5,5,5,,,,4,5,4,5,5,5,5,,,,4,5,4,5,5,5,4,5,5,,,,,,,,,5,4,3,4,5,5,5,5,,,,,,,3,4,4,5,
|
||||
3/30/2022 14:35:00,3/30/2022 14:40:00,0,100,302,1,2022-03-30T14:40:0,R_2AQdPJtrJy0HiWC,41.92610168,-71.30110168,anonymous,EN,1,160315,5,4,3,3,3,3,3,3,3,3,3,3,1,3,2,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,3,3,3,3,3,3,,3,2,3,3,3,3,3,3,3,3,4,4,3,3,5,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,
|
||||
4/27/2022 22:23:00,4/27/2022 22:32:00,0,100,502,1,2022-04-27T22:32:0,R_Uuxq2KsuZkU7aOR,41.9261,-71.3011,anonymous,EN,1,160050,5,4,4,5,4,4,4,2,4,4,5,4,4,4,3,4,4,4,4,4,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,4,3,4,4,4,4,4,,,,,4,4,4,4,5,3,4,3,4,4,4,4,,,,4,4,4,3,3,3,3,
|
||||
4/27/2022 10:31:00,4/27/2022 10:42:00,0,100,625,1,2022-04-27T10:42:0,R_3MzpvcHRdlAOsPK,41.9261,-71.3011,anonymous,EN,1,160050,4,4,4,4,4,4,4,3,3,3,4,4,4,3,3,3,3,3,4,4,3,3,3,3,3,4,4,3,4,4,4,4,3,3,3,4,3,4,3,3,4,3,3,3,3,,3,,4,4,3,4,3,3,3,3,4,3,3,3,,,,3,3,3,4,4,4,5,
|
||||
4/6/2022 14:43:00,4/6/2022 14:50:00,0,100,431,1,2022-04-06T14:50:0,R_3iR4tpkl5ldAbuR,41.9261,-71.3011,anonymous,EN,1,160505,4,4,5,3,4,4,4,4,4,4,4,5,4,4,4,3,2,3,4,4,4,4,4,4,4,2,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,5,4,4,4,4,4,4,4,3,4,4,4,3,4,4,4,4,4,
|
||||
4/14/2022 12:45:00,4/14/2022 12:51:00,0,100,353,1,2022-04-14T12:51:0,R_Q4fVkcjv1EookQp,41.9261,-71.3011,anonymous,EN,1,160045,4,4,4,,,5,,,4,4,4,4,3,3,3,3,3,3,3,,,,,,,,,,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,,,,,3,3,3,3,3,3,3,3,,,,,,,,3,3,3,,,,,
|
||||
4/14/2022 12:47:00,4/14/2022 12:53:00,0,100,326,1,2022-04-14T12:53:0,R_1hNlkiH9XCC6jIA,41.9261,-71.3011,anonymous,EN,1,160045,3,3,3,3,3,3,3,3,3,3,3,3,4,4,3,4,3,3,4,3,3,3,3,3,3,2,2,4,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,,,,,3,3,3,3,3,3,3,3,3,3,3,3,,,,3,3,3,2,3,2,2,
|
||||
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -1,445 +0,0 @@
|
|||
StartDate,EndDate,Status,IPAddress,Progress,Duration (in seconds),Finished,RecordedDate,ResponseId,LocationLatitude,LocationLongitude,DistributionChannel,UserLanguage,District,DESE ID,t-prep-q1,t-prep-q2,t-prep-q3,t-pcom-q1,t-pcom-q2,t-pcom-q3,t-pcom-q4,t-pcom-q5,t-ieff-q1,t-ieff-q2,t-ieff-q3,t-ieff-q4,t-qupd-q3,t-qupd-q2,t-qupd-q1,t-qupd-q4,t-coll-q1,t-coll-q2,t-coll-q3,t-prtr-q1,t-prtr-q2,t-prtr-q3,t-inle-q1,t-inle-q2,t-inle-q3,t-pvic-q1,t-pvic-q2,t-pvic-q3,t-psup-q1,t-psup-q2,t-psup-q3,t-psup-q4,t-acch-q1,t-acch-q2,t-acch-q3,t-reso-q1,t-reso-q2,t-reso-q3,t-reso-q4,t-reso-q5,t-sust-q1,t-sust-q2,t-sust-q3,t-sust-q4,t-curv-q1,t-curv-q2,t-curv-q3,t-curv-q4,t-cure-q1,t-cure-q2,t-cure-q3,t-cure-q4,t-peng-q1,t-peng-q2,t-peng-q3,t-peng-q4,t-ceng-q1,t-ceng-q2,t-ceng-q3,t-ceng-q4,t-sach-q1,t-sach-q2,t-sach-q3,t-psol-q1,t-psol-q2,t-psol-q3,t-expa-q2,t-expa-q3,t-phya-q2,t-phya-q3,Q81,Q83_1,Q84_1,Q85,Q89_1,Q85
|
||||
3/1/22 15:43,3/1/22 15:59,0,96.252.99.186,100,936,1,2022-03-01T15:59:7,R_3IYPGRQCEvcXcOS,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,3,3,3,3,2,5,3,5,4,2,5,2,2,3,3,3,3,4,3,3,3,2,3,3,4,4,3,4,4,4,2,4,5,5,3,3,4,4,3,4,3,2,4,5,4,5,2,4,1,4,5,4,5,2,4,3,4,5,4,4,4,4,4,4,5,4,5,.,9,4,.,,
|
||||
3/1/22 15:43,3/1/22 16:08,0,96.252.99.186,100,1478,1,2022-03-01T16:8:2,R_3qpyHYlPJWNjcUb,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,5,3,4,5,5,5,5,4,4,4,3,4,2,3,4,3,3,3,4,3,3,3,3,4,4,4,4,4,3,4,4,4,4,4,5,2,3,3,3,3,3,4,5,4,4,4,4,3,5,5,2,3,3,3,4,4,4,4,4,4,4,3,5,3,3,,4,3,"As a general education teacher, I do not know the amount of time students spend per week physically active or in arts classes.",,
|
||||
3/1/22 15:14,3/1/22 15:32,0,108.49.219.202,100,1097,1,2022-03-01T15:32:38,R_2rSdEugKnw7DgjH,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,5,5,4,3,2,4,4,4,4,3,3,3,3,3,3,3,4,5,4,4,4,4,4,4,4,4,3,4,4,3,3,3,3,3,3,2,5,4,2,2,2,3,2,4,4,3,2,2,3,3,3,2,,,3,3,3,5,4,3,3,3,3,3,4,3,5,,5,3,"As a specialist without a classroom, many of these questions do not apply to me.",,
|
||||
4/5/22 14:44,4/5/22 14:56,0,96.230.20.18,100,758,1,2022-04-05T14:56:53,R_1otNinOImBbq9pZ,42.481,-71.1563,anonymous,EN,6,3440020,5,4,5,4,3,2,2,3,5,4,4,5,2,1,2,2,1,2,1,1,3,1,1,1,1,5,5,4,4,4,4,4,2,3,2,2,1,2,1,1,2,1,1,1,5,3,4,2,4,4,4,4,5,,,,5,5,,,3,3,3,3,3,4,2,3,2,3,"There are things asked here that teachers in my school want to do, such as collaboration and talking about students, but there is no time!",6,5,Comment boxes in different categories could allow teachers to be more specific when some questions are not black and white to respond to,,
|
||||
3/1/22 15:43,3/1/22 16:13,0,96.252.99.186,100,1756,1,2022-03-01T16:13:10,R_12a6Q9v6Vuxl7yN,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,2,5,4,2,5,4,5,3,2,2,2,1,4,4,3,2,2,2,1,3,2,3,3,3,4,4,4,4,2,2,4,5,3,3,4,5,2,4,3,3,1,4,2,4,3,3,3,5,2,3,3,2,2,4,1,4,3,2,2,2,2,1,4,5,4,4,"I think it would be important to ask teachers what class(es) they are answering the question about in the survey. For example, I answered the questions based on a 9th grade co-taught class, but I also teach a 12 grade class in which many of the answers would not apply.",7,7,"For some of the questions, I would have loved a ""does not apply"" answer.",,
|
||||
3/1/22 15:41,3/1/22 15:49,0,96.252.99.186,100,477,1,2022-03-01T15:49:14,R_3gOcSFhMShi8Uwt,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,3,2,5,3,1,4,5,5,4,2,1,1,1,2,3,3,4,4,4,3,4,3,3,3,4,4,4,4,4,4,3,3,1,2,1,1,5,4,1,2,2,3,3,3,3,3,4,4,4,5,5,4,3,2,2,2,4,3,3,3,3,3,3,4,3,5,5,,8,3,I am a school psychologist so these questions weren't really applicable ,,
|
||||
3/1/22 15:27,3/1/22 15:39,0,108.49.219.202,100,722,1,2022-03-01T15:39:18,R_VLwPRZv8phCapbP,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,5,5,5,5,2,5,5,5,5,5,5,5,5,5,3,5,5,5,5,5,5,5,4,4,5,5,5,5,4,5,5,5,5,5,3,2,5,4,3,4,4,5,4,5,5,5,4,3,4,5,5,5,5,4,5,5,5,5,5,5,4,4,4,3,5,4,5,,9,9,I answered based on typical years not pandemic years - where parent visitation has not been allowed.,,
|
||||
3/1/22 15:32,3/1/22 15:58,0,108.49.219.202,100,1526,1,2022-03-01T15:58:12,R_31LO3Jdc3rygBYj,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,5,4,3,4,1,5,4,4,5,2,1,2,1,3,2,4,4,4,4,4,5,3,4,4,4,4,4,4,4,2,4,2,2,2,2,2,4,3,1,1,1,4,3,4,4,2,3,3,3,5,3,2,1,4,2,2,2,4,4,4,2,3,4,3,3,3,3,"This school has some of the most talented, capable and dedicated teachers. Unfortunately, pressure from state, district, upper admin etc., reduces the their ability to use their expertise. Staff constantly feel as if they are being told there ways are not sufficient. There is not enough room here.",5,4,"I do not think the questions on tis survey give an accurate portrayal of the things going well, the things that need fixing, the morale, or what is really happening in our classrooms and district. The amazing staff in this district is extremely undervalued. Upper admin is destroying morale.",,
|
||||
3/1/22 15:38,3/1/22 15:55,0,96.252.99.186,100,1025,1,2022-03-01T15:55:25,R_2YEtY2DYHS8ry1j,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,5,5,4,5,5,5,5,3,3,2,2,5,4,5,5,5,5,5,5,4,3,3,4,5,5,5,4,5,4,4,3,3,4,3,4,4,3,5,5,4,5,5,5,4,4,4,4,5,5,5,3,4,5,4,5,5,4,4,4,4,4,5,5,5,5,,9,,I hate doing this survey. I never get any feedback. I have no idea if my perceptions are the same as others in my school. This feels like a waste of time.,,
|
||||
4/5/22 14:43,4/5/22 14:57,0,96.230.20.18,100,806,1,2022-04-05T14:57:9,R_b9mbfsMpRsIV0Gd,42.4532,-71.1428,anonymous,EN,6,3440020,4,4,4,5,4,5,3,3,5,5,5,4,3,1,2,2,3,3,2,2,2,3,2,2,2,4,4,4,4,4,4,4,4,4,4,2,2,2,2,3,4,3,3,3,4,3,4,4,3,3,3,4,5,3,3,3,4,3,3,4,4,4,3,3,3,4,3,4,3,3,,5,6,"I think there should be a question about how we perceive our school is affected by district administrator's decisions. To follow up from that question, we should be asked if district administrator's make decisions with or without our consideration or our professional judgement.",,
|
||||
3/1/22 15:44,3/1/22 16:02,0,96.252.99.186,100,1079,1,2022-03-01T16:2:9,R_2ydcjJMFVrwrZPv,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,4,3,1,4,4,4,4,2,1,2,1,4,3,2,3,2,2,2,2,2,3,3,3,4,4,4,3,4,4,4,4,3,3,3,3,2,3,2,3,4,4,3,4,3,4,3,4,3,4,3,3,2,3,3,3,3,4,4,3,3,3,3,3,3,4,It has been difficult with the pandemic.,5,3,I would like to see the aggregate results. I would like to know how my school responded compared to me.,,
|
||||
3/1/22 15:43,3/1/22 15:57,0,96.252.99.186,100,841,1,2022-03-01T15:57:35,R_1FnbKp5FkT9nb8e,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,5,4,4,3,2,4,4,5,4,3,3,2,3,4,3,5,4,4,4,3,4,3,3,3,4,4,4,4,4,4,3,4,5,5,4,4,5,4,4,5,5,4,5,5,4,4,3,3,4,4,4,4,2,4,4,2,4,5,4,4,4,4,5,3,4,4,5,,8,5,"I'm unsure about answering questions dealing with how much my principal knows, or how much creative / athletic time kids are getting per week. ",,
|
||||
4/5/22 14:43,4/5/22 14:58,0,108.26.156.8,100,891,1,2022-04-05T14:58:6,R_2CZm6gjLSD7Lx12,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,5,4,5,5,3,2,5,4,3,5,2,3,4,3,4,3,4,3,4,4,2,3,3,3,4,4,5,4,4,4,3,4,3,3,3,3,3,5,4,3,3,3,4,4,4,3,3,4,4,4,5,5,4,3,4,5,3,5,4,3,3,4,4,4,2,2,3,3,,,,In my answers is my belief that we can always progress. I would rarely place the highest level because I always think there is room for improvement.,,
|
||||
3/1/22 17:09,3/1/22 17:19,0,73.61.212.24,100,652,1,2022-03-01T17:19:54,R_3JkgJTAXp1HY70m,42.59449768,-71.35710144,anonymous,EN,6,3440305,5,5,5,3,2,3,1,1,5,5,5,5,1,2,1,1,4,1,2,1,1,1,1,1,1,4,4,4,3,3,4,4,4,3,4,4,3,2,3,4,3,3,3,3,4,5,5,4,3,2,2,2,3,2,2,1,3,2,2,2,4,4,4,4,4,3,2,3,3,3,"The school has a toxic environment currently. Administration does not help out staff, but rather works to get rid of staff and hire cheaper. Administrators are rarely seen in hallways and classrooms. We get initiative after initiative with no direction.",9,5,"In the past four years that we have been completing this survey, we only saw the results after the first year. Since then, we never have. Our administrators appear to have no desire to make the environment better and are not there to support and care for the students.",,
|
||||
2/26/22 14:56,3/1/22 15:04,0,108.49.219.202,100,259715,1,2022-03-01T15:4:56,R_3PhhFNM1A30N7VN,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,4,3,3,3,2,2,4,4,3,4,1,1,2,1,3,3,1,4,3,3,3,3,2,3,3,4,3,2,3,3,3,3,3,3,2,2,4,4,4,2,1,3,3,3,3,4,4,4,4,4,2,3,3,3,3,3,3,3,4,4,4,2,3,3,3,3,2,3,,7,5,"It would be helpful to have an option of ""not sure"" or ""does not apply"" - as there are some aspects of the school that I don't have enough knowledge about.",,
|
||||
3/2/22 8:29,3/2/22 8:41,0,96.252.99.186,100,707,1,2022-03-02T8:41:8,R_1MXIRPpevchXoJe,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,,,1,3,1,5,4,4,3,,,1,,3,,,4,4,,4,,,,,5,,,,,,,,3,4,4,,4,,,,,3,,4,,2,1,,4,1,,,,,,,,3,3,,,,,,,,,"So many unknowns given I am a long-term sub, in this school less than a month.",8,5,Many questions do not apply to my position in the school. I do not teach regular classes.,,
|
||||
3/1/22 14:56,3/1/22 15:09,0,108.49.219.202,100,820,1,2022-03-01T15:9:47,R_DLVBZRQsH5vH9zr,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,3,4,4,4,5,4,5,4,4,4,3,2,3,2,3,3,3,3,3,2,2,4,4,3,3,3,3,3,3,3,3,3,3,3,2,2,3,1,3,4,1,2,2,3,3,3,3,4,4,4,4,3,3,3,3,4,3,3,3,2,2,3,3,3,3,2,3,2,3,N/A,5,3,N/A,,
|
||||
3/1/22 16:13,3/1/22 16:24,0,108.49.219.202,100,682,1,2022-03-01T16:24:29,R_9oDm2ZDgzb4nYn7,42.48100281,-71.15630341,anonymous,EN,6,3440305,2,5,5,5,5,5,5,2,3,5,5,5,2,2,1,2,5,4,3,4,4,4,5,5,5,3,4,4,4,4,3,2,3,3,5,1,1,1,2,2,2,2,2,3,3,4,3,4,3,2,2,3,4,5,4,4,2,2,2,2,4,4,4,3,5,5,3,3,3,3,N/a,4,4,N/A,,
|
||||
3/1/22 16:13,3/1/22 16:28,0,108.49.219.202,100,894,1,2022-03-01T16:28:9,R_2ClcajGuzwss0Mg,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,2,4,3,1,4,4,4,4,1,1,1,1,4,2,3,2,2,4,3,3,2,2,2,4,3,3,3,2,4,2,4,2,2,2,2,3,5,2,2,2,3,1,5,1,3,2,4,3,2,4,4,1,4,3,3,3,4,4,4,2,2,4,2,3,2,3,our curriculum for math is outdated and does not reflect what the state standards are for their grade level,3,3,needs to ask a bout specific subject/content areas,,
|
||||
3/1/22 16:13,3/1/22 16:25,0,108.49.219.202,100,744,1,2022-03-01T16:25:37,R_BEZTFBsNuBIlISR,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,2,2,5,4,2,4,4,4,4,3,3,4,3,4,2,3,4,3,4,4,4,4,4,4,3,4,3,4,4,4,4,4,3,3,3,3,3,4,3,4,5,4,4,4,4,4,4,4,4,3,3,3,3,3,4,4,4,3,3,3,3,3,3,3,3,3,4,no,3,3,no,,
|
||||
3/1/22 14:51,3/1/22 15:21,0,108.49.219.202,100,1828,1,2022-03-01T15:21:59,R_xr5ZPZom00adM1X,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,2,3,3,2,5,4,4,5,4,3,3,4,3,4,2,4,4,4,4,3,5,5,4,4,4,4,4,4,4,3,3,3,3,4,4,4,4,4,4,4,4,3,4,3,4,4,4,3,2,5,4,4,3,3,3,3,3,3,3,3,3,3,3,3,4,4,5,none,7,5,none,,
|
||||
3/1/22 16:14,3/1/22 16:34,0,108.49.219.202,100,1236,1,2022-03-01T16:34:37,R_1diuuToRYEsvDdk,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,2,5,1,1,4,4,4,4,2,4,1,1,4,2,3,1,1,1,3,4,1,3,3,3,4,3,4,3,4,5,2,3,5,3,4,4,4,3,3,4,4,5,4,4,5,5,3,4,3,4,5,,4,4,4,4,5,5,4,3,3,3,3,3,3,3,Our administration spends more time on trying to fire it's staff and nitpick everything rather than support teachers and help them become successful.,6,4,"Questions about the ""climate"" in our building regarding administrators would be far more helpful. We are a strong academic school, but the staff is miserable. Our administrators don't value us at all and find us expendable. Those are the questions you should be asking!",,
|
||||
3/1/22 15:47,3/1/22 16:19,0,96.252.99.186,100,1925,1,2022-03-01T16:19:26,R_31vo3QnkubWAwuC,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,2,5,3,2,5,4,5,4,5,4,4,5,5,2,3,5,5,5,2,2,3,4,4,4,3,4,3,3,4,4,5,4,4,4,4,5,4,3,4,3,2,4,2,2,2,2,2,4,5,5,3,2,3,4,3,3,3,2,2,2,3,4,3,5,3,5,,4,3,"quite, somewhat, etc. these terms are difficult to pin down. a Likert scale would have been more accurate in capturing my opinions. a n/a is necessary for many questions for which I have no information to provide",,
|
||||
3/1/22 15:47,3/1/22 15:57,0,96.252.99.186,100,622,1,2022-03-01T15:57:42,R_2mHBmZt1S5ADDPj,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,3,3,4,4,3,5,4,4,4,3,3,2,3,4,3,3,4,4,4,3,3,2,3,3,4,3,3,4,4,5,3,5,4,3,3,3,5,4,3,4,4,4,5,5,5,4,4,4,4,4,4,3,3,3,4,4,4,5,5,4,4,5,4,3,5,3,5,,5,3,some of the questions are ones in which we have no basis or experience to answer.,,
|
||||
3/1/22 15:34,3/1/22 15:57,0,96.252.99.186,100,1360,1,2022-03-01T15:57:18,R_2fGMYLfrb9JOT2s,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,2,1,5,4,5,4,1,1,1,1,3,3,3,3,2,2,2,2,2,3,3,4,3,4,4,4,3,3,3,3,3,3,3,4,3,3,2,3,4,5,5,5,3,2,1,1,2,4,3,1,4,3,2,3,4,4,4,3,4,4,3,4,2,3,"The upper administration (i.e. superintendent, ass't. superintendent) are completely out of touch with what we do and what we should be doing at the high school. Consequently there has been a steady deterioration in both the morale among teachers, and the level of education provided for students.",8,5,"Some of the questions should have had ""not applicable"" or ""unknown"" as answer choices.",,
|
||||
3/1/22 14:57,3/1/22 15:12,0,108.49.219.202,100,950,1,2022-03-01T15:12:52,R_RQ64ZNjbIjmNvsR,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,4,5,4,5,4,2,5,4,4,4,3,3,4,3,4,4,4,2,3,2,2,3,3,5,4,4,4,4,4,3,3,3,2,3,3,3,2,3,3,2,3,4,4,4,3,4,2,3,4,4,5,3,3,2,4,2,2,3,2,3,2,4,3,4,4,4,4,5,no,1,9,Some questions aren't pertinent to a specialist.,,
|
||||
3/1/22 16:13,3/1/22 16:26,0,108.49.219.202,100,775,1,2022-03-01T16:26:6,R_2Eo9ZCaIgIIC3qy,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,4,4,2,2,5,4,4,4,4,4,5,4,5,4,5,4,4,4,5,4,3,3,3,4,4,4,4,4,4,4,4,5,5,5,4,5,5,3,3,4,4,5,5,5,3,2,3,4,3,3,4,2,3,4,5,4,5,5,4,3,4,4,3,3,2,3,,9,5,"Some questions did not apply to me or I had no idea how to answer, so guessed.",,
|
||||
3/1/22 16:17,3/1/22 16:34,0,100.0.163.57,100,1033,1,2022-03-01T16:34:26,R_3JLE8KoaV4gVstA,42.48429871,-71.09519958,anonymous,EN,6,3440305,5,4,5,2,2,3,1,2,4,4,4,4,2,3,1,2,3,1,1,1,1,2,1,2,1,3,3,4,3,3,3,3,4,3,3,4,3,3,1,4,4,3,4,3,2,2,4,4,3,3,3,3,2,5,3,2,3,3,2,3,4,3,3,3,3,3,2,3,2,2,,6,6,"Some questions were not relevant to my teaching situation, There should be an ""I do not know"" or ""Not applicable"" option.",,
|
||||
3/1/22 15:43,3/1/22 15:57,0,96.252.99.186,100,838,1,2022-03-01T15:57:39,R_1IsaZVyOghEPCls,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,4,3,2,5,4,5,4,4,3,3,3,4,3,3,3,2,3,1,3,2,3,3,4,3,3,3,4,5,4,5,3,4,3,4,4,4,3,4,3,4,4,5,4,4,3,3,3,2,4,4,2,2,3,3,3,5,5,5,4,4,4,3,5,4,5,,5,4,"The scale is weird - i.e. ""A Little Hard""?",,
|
||||
3/1/22 15:43,3/1/22 15:54,0,96.252.99.186,100,682,1,2022-03-01T15:54:43,R_3PLFp0DYGrR4ujf,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,3,3,3,2,1,5,5,5,4,4,4,3,2,3,3,3,3,2,2,3,3,3,3,3,4,3,3,4,3,4,3,4,4,4,3,4,3,3,4,4,4,3,4,3,3,4,3,3,4,4,4,4,3,3,3,3,4,4,3,3,4,4,4,3,4,3,5,,7,5,"There are two ""5s"" in these last two scales. ",,
|
||||
3/1/22 15:43,3/1/22 16:02,0,96.252.99.186,100,1104,1,2022-03-01T16:2:3,R_234gyzoiaZ2A2EY,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,5,4,,4,5,5,4,2,2,2,2,4,3,3,4,4,4,4,4,5,2,2,2,3,3,3,2,3,2,5,4,3,3,3,3,3,3,4,4,1,4,3,4,5,5,3,4,5,4,5,3,3,3,5,4,2,3,2,3,4,3,3,5,4,5,,7,3,"There should be an option for not applicable. Also, there are 2 5's. And I tried to enter a number lower than 3 and I was not allowed to submit. So basically, this is not accurate data.
|
||||
",,
|
||||
3/1/22 14:56,3/1/22 15:15,0,108.49.219.202,100,1137,1,2022-03-01T15:15:51,R_Utn1VXJSI3mQSGd,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,4,4,5,3,2,4,4,4,4,4,3,4,4,4,3,5,3,5,4,1,2,3,4,4,4,4,4,4,3,4,4,4,3,2,3,1,3,4,2,3,2,4,2,4,1,4,4,3,4,5,4,3,1,5,4,3,3,4,3,3,5,4,4,3,3,4,4,,7,4,There were some questions that needed to be clarified.,,
|
||||
3/1/22 16:18,3/1/22 16:32,0,96.252.99.186,100,866,1,2022-03-01T16:32:28,R_cOU6ze0lTyluviV,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,5,5,3,2,5,4,5,5,4,4,5,4,5,3,4,5,5,4,5,4,4,,,4,4,3,4,4,5,4,5,3,2,3,3,5,2,5,,,3,5,5,5,5,5,3,4,4,4,3,,4,4,3,4,3,4,3,,4,4,4,,,,,6,5,"There were some questions to which I had no idea of the answers. Some of these questions, I didn't answer. Some I just guessed the answer.",,
|
||||
3/1/22 16:13,3/1/22 16:25,0,108.49.219.202,100,735,1,2022-03-01T16:25:31,R_23ai9E3IFmIXyxn,42.48100281,-71.15630341,anonymous,EN,6,3440305,2,2,4,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,2,1,2,1,1,3,3,4,3,3,3,3,3,3,2,1,2,3,2,2,3,2,4,3,5,2,4,4,2,2,3,2,3,2,4,1,3,3,1,2,3,3,3,4,4,4,2,4,3,3,,9,9,These final slider questions are broken. ,,
|
||||
3/1/22 15:44,3/1/22 16:20,0,96.252.99.186,100,2156,1,2022-03-01T16:20:6,R_3KW9jQnuFN9D69C,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,5,4,4,2,4,2,1,4,3,4,4,4,2,2,2,3,3,2,3,2,3,2,3,2,3,3,4,4,3,3,4,2,2,4,3,3,3,2,5,3,2,4,3,2,4,5,3,2,2,2,3,2,3,3,2,3,3,2,3,3,3,3,2,2,2,3,5,3,4,"I think trust in and by administrators is important and should be asked about: ""Do you trust that your administrators are competent and are making good educational decisions?"" ""Do you feel that your administrators trust you to make good educational decisions?"" etc. ",7,6,"This survey had so many questions I couldn't possibly answer accurately for the high school level. Are kids bullied? Not in my class, but I'm sure out in the halls. Is my curriculum rigorous? Totally depends--my AP class yes, but not my lower level classes. Are parents involved in fundraising? Etc.",,
|
||||
3/1/22 14:57,3/1/22 15:11,0,108.49.219.202,100,811,1,2022-03-01T15:11:20,R_TbFujmgFsX4LZzr,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,5,3,2,3,3,2,4,4,4,4,2,1,2,1,2,1,2,4,4,3,2,2,1,4,4,4,4,4,4,4,3,4,3,2,3,2,2,4,4,1,1,1,4,3,5,3,3,3,4,5,5,2,2,2,3,3,3,3,4,4,4,3,4,4,1,1,2,3,We are not given any coherent curriculum and are expected to make everything up/ gather free resources from the internet for topics like science and social studies.,6,3,"This survey is the last thing I need to be doing. Then when I am almost done, I get a million errors about my placement of the dot under ""how interesting were the questions."" They aren't. Also, the MCIEA website has not been updated since 2019. Judy Evans doesn't even work here anymore. ",,
|
||||
3/1/22 14:57,3/1/22 15:19,0,108.49.219.202,100,1323,1,2022-03-01T15:19:38,R_2CqEeVSf1U2YCXz,42.48100281,-71.15630341,anonymous,EN,6,3440040,3,4,4,5,5,5,5,2,4,4,4,5,2,3,4,3,5,4,4,4,5,4,2,3,3,5,3,4,4,5,4,3,4,2,3,3,3,3,1,3,3,1,1,2,5,1,4,1,3,4,4,5,4,3,4,3,5,4,4,4,3,4,3,4,3,3,3,3,3,4,,5,5,This survey should allow us to make clarifying comments about our responses to the questions.,,
|
||||
3/1/22 15:14,3/1/22 15:26,0,108.49.219.202,100,742,1,2022-03-01T15:26:32,R_2AMTHsWx7omMRig,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,4,5,4,4,5,5,5,5,5,3,3,4,3,4,3,4,4,4,3,5,3,3,4,4,3,4,3,3,3,3,3,4,4,4,3,4,4,3,4,4,2,3,3,4,4,4,4,3,3,4,5,5,4,3,2,3,4,3,3,4,4,4,4,3,3,3,3,3,3,,2,3,Too long.,,
|
||||
3/1/22 16:14,3/1/22 16:27,0,108.49.219.202,100,777,1,2022-03-01T16:27:20,R_1LzgS9Q0LdM2wmh,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,4,3,3,4,1,2,5,5,5,4,1,1,1,1,4,4,3,4,4,3,2,3,2,3,3,3,3,3,4,3,4,2,2,1,2,2,1,2,4,1,3,3,1,1,4,1,5,5,4,5,3,2,2,1,3,3,4,3,4,4,4,3,3,4,4,4,3,3,xxx,2,3,xxxx,,
|
||||
3/1/22 15:00,3/1/22 15:21,0,108.49.219.202,100,1309,1,2022-03-01T15:21:52,R_XSpD9xG0Wu2ryEN,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,4,5,4,2,5,2,1,5,5,5,4,1,1,1,1,1,1,1,4,4,2,3,2,4,3,5,4,4,3,4,3,2,3,2,3,3,3,1,4,2,1,3,3,5,3,5,5,3,3,3,3,5,4,3,1,4,4,3,3,3,4,3,3,4,3,3,3,3,3,"Many of these questions I really did not know the answer to becuase of pandemic restrictions. Parents are not allowed in the school, so I really don't know the extent of their involvement. I am very frustrated with our administration. The leadership in Winchester is lacking.",9,4,You really should tailor it to reflect the times in which we are teaching.,,
|
||||
2/28/22 21:36,2/28/22 21:49,0,108.7.220.42,100,756,1,2022-02-28T21:49:18,R_1r8HGFglBQkPxSq,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,4,5,2,2,2,1,5,4,3,4,2,1,2,2,3,3,3,3,3,3,2,3,3,3,3,4,3,3,4,3,3,3,1,3,2,2,3,3,2,1,1,2,3,5,4,3,5,5,5,5,2,5,4,2,3,3,2,3,4,4,3,3,3,3,3,3,2,2,,5,5,"You should have a separate survey for art, music and PE teachers as our role is different in the building than a general classroom teacher.",,
|
||||
3/1/22 15:41,3/3/22 8:40,0,96.252.99.186,41,147547,0,2022-03-10T8:40:54,R_1pRuYQGh84kU6u0,,,anonymous,EN,6,3440505,,,,,,,,,4,4,4,4,,,,,,,,5,5,5,,,,,,,4,4,4,3,4,3,4,,,,,,4,3,4,4,,,,,4,4,4,4,,,,,,,,,4,4,4,,,,,,,,,,,,,
|
||||
3/1/22 15:46,3/1/22 16:13,0,74.104.157.247,100,1654,1,2022-03-01T16:13:54,R_1P01SzwDACaer1W,42.41879272,-71.15570068,anonymous,EN,6,3440505,5,5,5,4,4,5,4,4,4,4,4,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,4,4,4,4,4,4,4,4,4,4,4,5,4,5,4,2,3,4,4,4,5,4,4,4,4,4,3,5,3,5,,7,6,,,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,450,1,2022-03-01T16:20:42,R_3P66wXOZoxV9qst,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,4,4,3,3,3,4,4,4,4,4,4,4,4,,3,3,3,3,4,4,4,4,3,3,3,4,3,3,3,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,3,4,4,4,3,4,4,3,3,5,4,3,4,3,3,3,4,4,4,3,3,4,4,,7,5,,,
|
||||
3/1/22 13:25,3/1/22 15:32,0,108.49.219.202,100,7602,1,2022-03-01T15:32:12,R_1mW2xeuNO8zkQUl,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,4,5,4,3,5,5,4,4,3,3,4,3,4,4,5,4,4,4,4,4,4,4,,4,4,4,4,4,4,4,4,3,3,3,4,4,4,4,4,4,3,4,4,4,4,3,3,4,3,3,4,4,,3,,3,5,4,4,4,4,4,,,,,,9,8,,,
|
||||
3/1/22 15:20,3/1/22 15:30,0,108.49.219.202,100,644,1,2022-03-01T15:30:46,R_2D7V0hfdqZ8kEpM,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,5,5,5,4,2,4,4,4,4,3,4,3,3,4,3,4,4,4,4,4,4,4,3,5,4,4,4,4,4,4,3,4,4,4,4,4,4,4,3,4,3,3,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,3,4,4,4,4,4,3,3,3,4,,9,8,,,
|
||||
3/1/22 15:45,3/1/22 16:02,0,96.252.99.186,100,1045,1,2022-03-01T16:2:33,R_ea093URC5JS01uF,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,5,4,4,4,4,5,4,5,3,4,4,4,4,4,3,4,4,4,5,4,4,4,5,4,4,4,5,4,4,4,5,4,4,4,4,4,4,4,4,4,4,4,5,5,4,5,3,5,5,5,4,5,4,4,4,4,4,3,3,4,4,5,5,5,,6,4,,,
|
||||
3/1/22 14:28,3/1/22 14:58,0,108.49.219.202,100,1824,1,2022-03-01T14:58:35,R_2S9A9dTtOlpZgKC,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,4,4,4,5,3,3,4,4,4,4,3,3,4,4,4,3,4,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,3,3,2,2,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,3,4,3,4,4,4,3,3,3,3,,8,8,,,
|
||||
3/1/22 14:54,3/1/22 15:02,0,108.49.219.202,100,428,1,2022-03-01T15:2:5,R_3G3bqQT5yYN2enD,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,5,4,4,4,4,3,4,4,4,4,4,3,3,3,4,3,5,5,4,5,4,4,3,4,3,4,4,4,4,4,4,4,4,3,4,4,3,4,4,4,3,3,4,4,4,4,4,4,4,4,5,4,4,4,2,4,4,4,4,4,4,3,3,4,3,3,4,5,,8,4,,,
|
||||
3/2/22 14:38,3/2/22 14:51,0,108.49.219.202,100,811,1,2022-03-02T14:51:37,R_2f0TbRkJHGrfbr7,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,4,4,4,3,2,5,4,4,4,4,4,3,4,4,3,,4,4,4,4,4,4,3,3,4,4,3,4,4,4,4,4,4,3,4,3,3,4,3,3,3,4,4,4,5,4,4,4,4,4,4,4,3,3,4,4,4,5,4,4,3,4,3,3,4,3,4,,7,7,,,
|
||||
3/1/22 14:56,3/1/22 15:23,0,108.49.219.202,100,1621,1,2022-03-01T15:23:7,R_23TzHyiSliHtHEI,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,3,3,5,3,5,4,4,4,4,3,4,4,3,4,3,4,4,3,3,3,3,4,4,4,4,4,4,4,4,3,4,3,3,4,3,4,4,3,3,3,4,4,4,4,4,3,3,3,3,5,3,3,2,3,4,4,4,4,3,3,3,4,4,3,3,4,4,,,,,,
|
||||
3/1/22 16:13,3/1/22 16:25,0,108.49.219.202,100,710,1,2022-03-01T16:25:30,R_4GRpsfEHQFnKpUt,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,5,5,5,5,3,4,5,5,5,4,4,4,4,4,4,4,5,5,5,5,5,5,3,3,4,5,5,4,4,4,4,4,5,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,5,4,4,4,3,4,5,4,4,4,4,4,4,4,4,3,4,3,4,,7,7,,,
|
||||
3/1/22 14:56,3/1/22 15:33,0,108.49.219.202,100,2274,1,2022-03-01T15:33:57,R_1Q3nc8p6ypoNbfO,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,3,4,5,4,3,4,4,4,5,4,3,4,3,4,4,4,4,4,5,4,4,3,3,3,4,4,4,4,4,3,3,3,4,3,4,3,4,4,3,4,4,4,4,4,4,3,3,3,4,4,3,3,3,3,3,3,4,3,4,3,3,4,3,3,3,3,3,,7,4,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,524,1,2022-03-01T16:22:31,R_STX4PcNU0P96ehr,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,5,3,3,3,2,2,2,4,4,4,3,2,3,2,2,3,3,3,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,3,4,3,3,3,3,2,3,3,3,3,2,3,,6,3,,,
|
||||
3/1/22 15:45,3/1/22 15:55,0,96.252.99.186,100,606,1,2022-03-01T15:55:14,R_24Ad7rv43rrrWDx,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,4,3,3,4,4,4,4,3,4,3,4,4,4,4,5,5,4,4,4,4,4,5,5,4,4,4,4,4,3,5,4,4,4,3,5,5,5,5,5,4,4,5,5,4,4,4,4,4,4,4,3,4,5,3,4,5,4,4,3,4,4,3,4,3,4,,9,7,,,
|
||||
3/1/22 16:14,3/1/22 16:29,0,108.49.219.202,100,842,1,2022-03-01T16:29:1,R_XSpJx4rWBOQf6zn,42.48100281,-71.15630341,anonymous,EN,6,3440305,3,4,,5,4,5,,4,4,4,4,4,3,3,4,3,3,5,4,4,5,3,4,4,4,3,3,5,4,4,4,4,4,4,3,2,4,3,4,4,5,4,4,4,4,3,4,4,4,4,4,4,3,,,,4,,,,4,3,3,4,4,4,,,,,,8,7,,,
|
||||
3/1/22 15:45,3/1/22 16:12,0,96.252.99.186,100,1644,1,2022-03-01T16:12:28,R_R7XsORcXisi23V7,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,3,4,3,2,4,4,5,4,3,4,3,3,4,3,3,3,3,3,3,3,3,3,3,4,4,4,4,3,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4,3,5,3,4,4,3,3,4,3,4,4,4,4,3,4,4,3,4,3,5,,8,5,,,
|
||||
3/1/22 17:01,3/1/22 17:13,0,96.252.99.186,100,675,1,2022-03-01T17:13:8,R_3QVrRLTlAjBA9RD,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,5,3,3,3,3,3,3,3,4,3,3,4,2,2,4,3,3,4,4,3,4,4,4,3,3,3,3,3,4,3,4,4,5,4,4,4,3,4,4,3,4,4,3,4,4,4,4,3,3,3,3,4,4,4,4,4,3,4,5,4,4,4,3,3,3,4,3,4,,8,7,,,
|
||||
3/1/22 14:37,3/1/22 14:54,0,108.49.219.202,100,1003,1,2022-03-01T14:54:5,R_2Xp1I1wPU2HFHzm,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,5,4,4,5,4,2,4,4,4,4,4,4,4,4,5,3,5,4,4,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,3,4,5,4,4,4,4,4,4,4,3,3,3,3,4,4,2,3,5,5,,9,7,,,
|
||||
3/1/22 14:51,3/1/22 15:29,0,108.49.219.202,100,2268,1,2022-03-01T15:29:35,R_XIeomVofiiuPZ61,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,4,4,5,4,5,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,5,3,4,4,5,4,5,5,3,4,4,4,5,4,5,5,3,4,4,5,4,4,3,3,4,4,2,3,2,3,,8,5,,,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,474,1,2022-03-01T16:21:39,R_OIJlIbVU2pJljzz,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,3,3,4,3,1,4,4,4,3,3,3,3,3,4,4,3,3,3,3,4,4,3,3,3,4,3,3,4,3,3,4,3,4,4,4,4,4,4,3,4,4,3,4,4,4,3,3,3,5,5,4,4,3,4,4,3,4,4,4,3,4,4,4,3,4,3,5,,6,3,,,
|
||||
4/5/22 14:44,4/5/22 14:53,0,73.123.168.16,100,548,1,2022-04-05T14:53:11,R_3puwxlgnGQdlNiB,42.4532,-71.1428,anonymous,EN,6,3440020,4,4,4,5,5,4,4,2,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4,5,4,4,4,4,4,4,4,4,3,3,4,3,3,4,3,3,3,4,4,4,4,4,4,4,4,5,3,3,3,4,4,3,4,4,4,3,4,4,4,2,3,2,2,,8,7,,,
|
||||
3/1/22 15:48,3/1/22 16:14,0,96.252.99.186,100,1560,1,2022-03-01T16:14:7,R_3I3TjJc1AUELOpQ,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,4,4,3,4,2,4,3,4,4,2,2,2,2,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,4,4,5,4,3,3,3,3,3,4,4,3,3,3,3,3,3,3,3,3,4,4,4,3,4,4,3,4,4,4,4,3,4,It is a great school but there are still unique challenges that go under the radar because of the overall high function style of the school. Because of the status of the town in general some things are believed not to exist but students still have challenges to face.,8,6,,,
|
||||
3/16/22 10:31,3/16/22 13:11,0,96.252.99.186,100,9570,1,2022-03-16T13:11:19,R_1FfYKRZtlbRNN5K,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,3,4,4,4,5,3,3,4,4,4,3,3,4,3,3,3,3,4,4,4,4,4,4,4,4,4,5,5,4,5,5,4,4,4,3,3,3,3,4,4,3,4,4,4,4,4,4,3,3,4,4,5,5,5,5,4,5,4,4,5,4,4,4,4,5,3,4,4,3,,7,7,,,
|
||||
3/1/22 14:53,3/1/22 15:23,0,108.49.219.202,100,1783,1,2022-03-01T15:23:25,R_3qyg0C3aQE4GSaI,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,3,4,4,3,4,3,3,4,4,3,4,3,3,3,4,5,3,4,3,3,3,3,3,3,3,3,4,4,3,4,3,4,3,3,3,3,3,3,4,4,3,2,3,4,4,3,4,4,4,4,5,5,4,3,2,3,4,3,4,3,3,3,4,3,4,2,3,5,4,"I often don't know the reason why some things are mandated, like this survey for example. What will it lead to? ",7,5,,,
|
||||
3/1/22 14:58,3/1/22 15:12,0,108.49.219.202,100,834,1,2022-03-01T15:12:19,R_26mavbxpj5jGZ51,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,4,4,4,3,3,4,3,3,4,4,4,3,4,5,4,3,4,4,4,5,3,4,4,3,2,3,3,3,3,3,3,4,3,4,4,4,3,4,4,2,4,3,3,4,4,4,4,3,3,5,4,3,4,2,4,3,3,5,3,3,3,3,3,3,3,3,3,4,There were no questions about classroom management strategies - what works and what doesn't work. ,6,5,,,
|
||||
3/1/22 15:04,3/1/22 15:18,0,96.252.99.186,100,830,1,2022-03-01T15:18:7,R_3RybAOz3ErpXwao,42.45320129,-71.14279938,anonymous,EN,6,3440505,,,5,5,4,4,4,,4,4,4,4,3,4,4,4,4,4,3,5,5,5,4,4,4,,,4,5,4,4,4,5,4,5,,,3,3,5,5,5,4,4,,,5,5,,,,,5,5,5,,3,3,3,5,5,4,,4,4,4,4,5,3,4,,8,,,,
|
||||
3/1/22 16:05,3/1/22 16:21,0,72.74.93.34,100,929,1,2022-03-01T16:21:5,R_1r9BkCGB5waLq08,42.25059509,-71.12860107,anonymous,EN,6,3440025,4,4,4,4,4,4,3,2,4,4,4,4,4,3,4,4,4,4,4,5,4,5,4,4,4,3,4,4,5,4,4,4,3,4,4,3,5,4,4,4,4,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,4,4,3,3,4,4,4,3,4,3,2,2,3,3,,9,,,,
|
||||
3/1/22 15:33,3/1/22 15:42,0,96.252.99.186,100,552,1,2022-03-01T15:42:20,R_3qJA2fDnKURr88P,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,2,3,3,3,4,4,5,4,3,3,3,3,4,3,4,4,4,3,4,4,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,3,4,3,4,4,5,4,4,3,4,4,4,3,4,4,3,3,3,3,4,4,4,3,4,4,2,3,4,5,,8,6,,,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,434,1,2022-03-01T16:20:27,R_22mLoJBOOIScxA3,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,4,4,4,5,5,4,3,3,4,3,3,4,3,3,4,4,3,5,3,4,4,4,4,3,4,4,4,3,4,4,4,4,4,4,4,3,2,3,5,5,4,4,3,4,4,4,4,4,4,5,5,2,4,3,4,3,3,3,3,3,3,3,4,4,4,4,3,4,,9,7,,,
|
||||
3/1/22 16:13,3/1/22 16:28,0,108.49.219.202,100,851,1,2022-03-01T16:28:9,R_2QswpMg1OyjCmSZ,42.48100281,-71.15630341,anonymous,EN,6,3440305,3,4,3,3,3,4,3,2,4,4,4,4,4,4,4,4,4,3,3,5,4,5,4,4,4,3,3,3,3,3,3,3,4,3,3,3,4,3,3,4,4,3,4,3,4,4,4,4,3,3,3,4,3,3,3,1,4,4,4,4,4,4,4,3,3,3,3,5,3,5,,,,,,
|
||||
3/1/22 15:10,3/1/22 15:19,0,108.49.219.202,100,530,1,2022-03-01T15:19:21,R_2V26xkJFkXupvQR,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,3,2,4,4,2,4,4,4,3,2,2,2,2,4,3,4,4,4,4,3,3,4,4,4,4,4,3,4,3,3,4,3,3,3,3,3,3,4,4,3,4,3,4,4,3,3,4,4,4,4,3,4,5,3,3,3,3,4,4,4,3,4,3,3,4,4,5,,7,5,,,
|
||||
3/1/22 14:51,3/1/22 15:12,0,108.49.219.202,100,1277,1,2022-03-01T15:12:58,R_1INtF9SWwkIX7SH,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,5,5,5,5,4,5,5,5,5,4,3,3,4,4,4,4,5,5,5,5,5,5,4,4,4,4,4,4,4,5,4,5,5,5,3,3,3,4,3,3,4,3,4,4,4,5,,,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,3,3,4,4,,9,9,,,
|
||||
3/1/22 15:45,3/1/22 16:17,0,96.252.99.186,100,1907,1,2022-03-01T16:17:27,R_1MKu5FWlX1uDhA8,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,5,5,3,4,4,4,4,4,4,4,4,4,3,3,3,4,4,4,3,3,4,2,2,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,5,5,5,3,5,5,5,5,5,4,4,3,4,4,4,4,4,4,3,4,5,4,5,,8,7,,,
|
||||
3/1/22 16:13,3/1/22 16:25,0,108.49.219.202,100,725,1,2022-03-01T16:25:21,R_1i4Auxmck0DubLF,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,4,4,5,3,4,4,4,4,4,3,3,3,4,4,4,4,3,4,4,4,3,3,3,4,4,4,4,3,4,3,4,2,3,3,3,4,4,3,3,3,4,3,4,4,5,5,4,4,2,4,4,3,3,4,4,4,4,4,4,4,4,3,2,3,4,5,,7,6,,,
|
||||
4/5/22 14:45,4/5/22 15:06,0,96.230.20.18,100,1248,1,2022-04-05T15:6:23,R_1hAtuZ9VntYplRP,42.481,-71.1563,anonymous,EN,6,3440020,5,4,4,2,4,4,4,5,5,5,5,4,4,4,4,4,3,4,4,5,4,4,5,4,3,5,5,4,5,3,4,4,4,4,4,4,4,4,2,4,5,4,5,4,3,4,4,4,4,3,3,4,3,4,4,3,4,4,3,3,3,4,4,3,4,4,3,3,3,4,,9,9,,,
|
||||
3/1/22 15:41,3/1/22 15:54,0,96.252.99.186,100,746,1,2022-03-01T15:54:6,R_3eeEOAu38r6dVOU,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,5,4,4,4,4,3,5,4,5,3,3,2,2,3,4,3,4,4,4,4,3,4,3,4,4,4,4,4,4,4,4,4,4,5,5,5,4,5,4,4,4,4,4,4,4,4,3,2,2,4,3,4,4,3,3,3,3,4,4,4,4,4,4,4,3,4,3,4,,8,5,,,
|
||||
3/1/22 15:25,3/1/22 15:34,0,108.49.219.202,100,556,1,2022-03-01T15:34:20,R_1pDWJBlBxHHA1ko,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,5,4,5,4,2,4,4,4,5,4,4,5,5,5,4,5,5,5,5,5,5,5,4,4,4,5,5,4,4,5,5,5,4,3,3,4,4,4,2,5,5,4,4,5,4,4,4,4,4,5,5,5,4,4,4,4,4,5,5,4,4,4,5,3,4,3,4,,9,8,,,
|
||||
3/1/22 15:34,3/1/22 15:58,0,96.252.99.186,100,1407,1,2022-03-01T15:58:17,R_0eOg3LjY6WaKWFH,42.45320129,-71.14279938,anonymous,EN,6,3440505,,4,4,4,4,5,4,2,4,4,4,4,3,4,3,3,4,3,4,4,4,3,3,3,3,3,3,4,4,4,4,4,4,3,4,3,3,3,3,4,3,2,3,3,4,4,4,3,3,3,4,4,5,4,5,5,4,3,2,4,4,4,4,3,4,4,2,4,4,5,,5,5,,,
|
||||
3/1/22 15:41,3/1/22 16:09,0,96.252.99.186,100,1644,1,2022-03-01T16:9:16,R_r7nBQ2GNElUKaOZ,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,4,2,5,4,4,5,3,3,3,4,4,4,4,4,3,3,4,3,3,4,4,4,4,4,,4,4,4,4,4,5,,4,4,3,3,4,4,4,5,5,5,5,5,4,5,3,5,5,3,4,4,4,4,4,4,4,4,4,4,3,5,5,5,,7,5,,,
|
||||
3/4/22 14:16,3/7/22 9:10,0,96.252.99.186,100,240814,1,2022-03-07T9:10:28,R_263mJpOvZJGXbYv,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,4,4,4,4,3,2,4,4,5,4,4,4,4,3,4,2,4,4,5,3,3,3,3,3,3,4,4,4,4,3,4,3,4,3,3,4,3,4,3,3,4,4,3,3,4,4,3,3,3,4,4,2,3,2,3,4,3,4,4,4,4,3,4,4,4,5,3,5,some of these questions don't apply and it would be nice if you had an answer that would allow you to say that.,7,3,,,
|
||||
3/1/22 15:14,3/1/22 15:30,0,108.49.219.202,100,947,1,2022-03-01T15:30:14,R_3enz1y1R6nssBvO,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,4,5,4,4,4,4,3,4,3,2,3,2,4,3,4,5,4,4,5,4,5,3,3,4,5,4,4,3,4,4,4,3,3,3,3,4,4,3,3,4,4,4,5,4,4,3,3,3,4,4,4,2,4,3,3,4,4,4,,4,4,4,2,3,3,4,,,,,,
|
||||
3/1/22 15:10,3/1/22 15:19,0,108.49.219.202,100,556,1,2022-03-01T15:19:29,R_uernpDObrd09QhH,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,4,4,5,3,4,4,4,4,4,4,3,3,3,4,3,4,3,4,4,3,4,4,4,4,4,4,4,3,3,3,3,3,5,4,3,4,4,4,2,2,2,3,4,4,4,3,3,3,4,5,4,4,3,3,3,3,3,5,4,4,3,4,3,3,4,4,4,,8,7,,,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,484,1,2022-03-01T16:21:15,R_1N538LoOSBis8lz,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,5,2,2,4,3,3,3,3,3,3,4,3,3,3,3,2,3,5,5,4,4,4,4,3,3,4,3,3,4,3,3,3,3,2,4,4,3,4,4,3,3,3,4,3,3,4,2,2,3,3,3,3,3,2,4,3,3,3,3,3,3,3,3,4,3,5,3,3,,7,4,,,
|
||||
3/1/22 15:33,3/1/22 15:59,0,71.233.227.113,100,1576,1,2022-03-01T15:59:46,R_2rutiqmMo2XnaDD,42.39349365,-71.18360138,anonymous,EN,6,3440505,4,4,4,4,4,5,3,3,4,3,4,3,3,4,3,3,5,4,4,3,3,3,4,4,4,3,3,3,3,3,3,3,3,3,4,4,4,4,3,4,2,2,2,2,4,4,4,3,4,4,4,4,2,2,3,3,5,4,3,4,3,3,3,3,3,4,3,4,2,3,,7,7,,,
|
||||
3/1/22 14:57,3/1/22 15:20,0,108.49.219.202,100,1383,1,2022-03-01T15:20:4,R_3etaWb44yIJ5xpT,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,4,4,4,3,5,5,5,4,3,3,3,2,4,3,3,4,3,4,3,3,3,4,3,4,4,4,4,4,4,4,3,3,5,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,3,5,5,2,2,3,4,4,4,4,4,4,4,4,3,3,3,3,,8,5,,,
|
||||
3/1/22 14:49,3/1/22 14:59,0,108.49.219.202,100,618,1,2022-03-01T14:59:38,R_2ZZDqh7j4q6Dwyb,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,5,5,5,5,4,3,4,4,4,4,3,3,3,3,5,4,5,4,4,5,4,5,5,4,4,4,5,4,4,4,4,4,4,3,3,4,3,5,5,3,4,4,5,4,4,4,5,5,5,5,5,5,5,5,4,5,4,5,5,4,4,5,5,5,3,3,3,3,,8,6,,,
|
||||
3/1/22 14:20,3/1/22 15:46,0,108.49.219.202,100,5183,1,2022-03-01T15:46:39,R_rjovvxfOKq7KQCJ,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,5,4,4,3,4,2,4,4,4,4,3,3,4,3,4,2,2,4,4,4,3,3,3,4,4,4,4,4,4,3,4,3,4,3,3,3,3,4,2,2,4,3,5,3,5,4,3,3,3,3,4,3,3,2,5,4,3,4,4,4,4,3,4,4,3,3,3,3,,6,5,,,
|
||||
3/1/22 15:23,3/1/22 15:31,0,108.49.219.202,100,461,1,2022-03-01T15:31:5,R_vcLnp3smUaPB3Ud,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,4,4,4,4,3,5,4,4,4,4,4,3,4,4,3,4,5,5,5,4,4,4,5,5,4,4,4,4,4,3,3,3,4,4,4,3,4,3,3,2,2,4,4,4,4,4,4,4,4,2,3,4,3,4,4,4,4,3,3,3,2,4,3,3,4,4,4,,9,7,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,549,1,2022-03-01T16:22:18,R_8jksXkmbS4lJfUZ,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,5,5,5,2,4,5,4,5,4,3,3,3,4,4,4,4,4,3,4,3,4,4,3,3,3,3,4,4,3,4,4,4,4,4,4,3,4,5,4,4,5,4,4,5,4,4,3,4,4,3,3,4,2,4,4,3,4,5,4,4,3,4,4,3,3,3,3,,9,7,,,
|
||||
3/1/22 15:43,3/1/22 16:07,0,96.252.99.186,100,1448,1,2022-03-01T16:7:47,R_1jln3QZEoltpEaC,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,3,4,2,4,4,4,3,4,4,4,4,3,4,4,5,5,4,4,3,4,4,4,5,3,3,4,4,4,4,5,4,4,4,4,5,4,4,3,3,4,5,5,4,3,3,3,3,2,3,3,2,4,4,3,4,4,4,4,4,3,3,3,4,4,5,,9,7,,,
|
||||
3/1/22 14:53,3/1/22 15:02,0,108.49.219.202,100,556,1,2022-03-01T15:2:45,R_1zaMEmdScyZNqZX,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,4,4,5,3,1,4,4,4,4,3,4,4,4,5,3,4,4,2,4,3,4,3,3,4,4,4,5,4,4,3,4,3,3,3,4,3,4,4,3,4,4,3,4,4,4,3,3,3,4,5,5,5,4,3,4,4,4,3,3,3,4,4,4,3,3,3,3,,,,,,
|
||||
3/1/22 15:35,3/1/22 16:01,0,96.252.99.186,100,1521,1,2022-03-01T16:1:18,R_2xKObwhyZrFGqDs,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,3,4,5,4,4,4,4,5,3,3,3,3,4,4,,4,4,3,3,4,4,3,,,,3,4,4,4,4,4,4,4,3,4,3,5,4,3,4,4,2,4,4,4,3,3,3,3,2,3,,,4,4,,4,4,3,3,3,2,3,,,3,5,,6,,,,
|
||||
3/1/22 14:51,3/1/22 15:12,0,108.49.219.202,100,1215,1,2022-03-01T15:12:8,R_2ylS37stOtcS24h,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,3,3,3,3,2,4,4,4,3,2,3,3,3,3,2,2,3,3,4,4,4,4,4,4,4,3,3,4,3,3,2,2,4,3,2,2,3,4,2,2,2,4,4,4,4,3,3,3,4,3,3,3,,,3,3,4,3,3,3,2,2,3,2,2,4,4,,9,8,,,
|
||||
3/1/22 14:57,3/1/22 15:08,0,108.49.219.202,100,695,1,2022-03-01T15:8:44,R_3nxbnBbuhmfA874,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,3,3,3,3,3,3,4,3,3,4,2,2,2,2,3,3,3,3,2,3,3,2,2,3,3,3,3,2,2,2,3,3,3,3,2,2,2,3,4,3,4,3,3,3,4,4,3,3,3,4,4,1,2,1,4,3,3,3,3,3,3,3,3,3,1,1,3,3,,9,9,,,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,482,1,2022-03-01T16:21:30,R_2DSOqClqwUas9iw,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,4,2,2,5,2,1,4,4,4,4,3,4,3,3,4,4,3,3,3,4,3,4,3,3,3,3,3,3,3,2,3,3,3,4,4,3,4,4,3,2,3,3,4,4,4,3,3,3,3,4,5,3,4,4,3,3,3,3,4,3,3,3,3,3,3,4,3,4,,7,6,,,
|
||||
3/1/22 15:50,3/1/22 16:16,0,96.252.99.186,100,1537,1,2022-03-01T16:16:31,R_1IbG8P6DkNy42PX,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,3,4,4,4,5,5,3,3,3,4,4,3,3,2,3,2,3,2,3,3,3,4,3,4,3,4,3,3,4,3,3,4,4,4,4,4,4,3,4,5,5,4,4,4,4,4,3,4,3,2,4,3,3,4,4,4,4,4,3,4,4,4,3,2,,6,5,,,
|
||||
3/1/22 16:21,3/1/22 16:33,0,108.49.219.202,100,715,1,2022-03-01T16:33:3,R_3KOZCcsVZKeJNVs,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,4,3,3,4,3,1,5,4,4,4,3,3,4,3,4,2,4,4,3,4,3,3,3,3,3,4,4,3,4,4,3,3,2,3,3,4,3,3,2,2,2,2,4,4,4,4,3,3,3,3,3,4,3,2,3,4,3,3,4,4,4,4,3,3,3,4,2,3,,8,5,,,
|
||||
3/1/22 15:19,3/1/22 16:07,0,108.49.219.202,100,2876,1,2022-03-01T16:7:53,R_3GcAmqqIvBHYz0e,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,4,4,4,5,3,2,4,4,4,3,3,3,4,4,4,2,4,4,3,4,4,4,4,3,3,4,4,4,4,4,4,4,3,4,4,4,3,4,4,3,4,5,4,4,4,4,4,3,4,5,5,4,3,3,3,4,4,5,4,4,4,3,4,4,2,3,1,2,,6,4,,,
|
||||
3/1/22 14:29,3/1/22 21:36,0,98.229.180.62,100,25661,1,2022-03-01T21:36:59,R_27ExthIfZGgDEbN,42.45710754,-71.22100067,anonymous,EN,6,3440025,4,4,4,4,4,3,4,1,4,4,4,4,4,4,4,4,3,4,4,5,4,5,5,5,4,5,5,4,4,4,4,4,3,3,3,3,5,5,5,4,4,2,4,4,4,3,4,4,4,4,4,4,5,5,5,5,3,4,4,4,3,3,3,4,4,3,3,3,3,3,,8,6,,,
|
||||
3/1/22 14:56,3/1/22 15:09,0,108.49.219.202,100,782,1,2022-03-01T15:9:52,R_1P7QDKuPcxAmzlp,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,5,4,4,5,4,2,4,4,4,4,3,3,4,4,4,2,3,3,4,3,2,3,3,3,3,4,4,4,4,4,4,4,3,3,3,3,2,2,4,2,2,2,4,4,4,4,4,4,3,4,5,4,4,4,4,4,3,4,4,4,4,4,4,4,2,3,3,4,,8,8,,,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,426,1,2022-03-01T16:20:52,R_2awrHU4Z0GMSMZx,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,4,3,5,3,4,4,3,5,5,3,4,3,4,4,3,3,4,3,5,4,4,3,3,3,3,3,4,3,3,4,3,4,4,4,5,2,5,4,1,4,3,5,4,4,4,4,4,4,4,4,4,3,,3,4,4,4,5,4,4,3,4,4,3,4,3,4,,6,6,,,
|
||||
3/1/22 18:01,3/1/22 18:13,0,73.123.193.92,100,751,1,2022-03-01T18:13:46,R_0lb8ZZu9j4mKVod,42.46090698,-71.00740051,anonymous,EN,6,3440505,5,5,5,4,3,4,4,2,4,4,5,4,3,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,3,3,4,4,4,3,4,4,3,4,4,4,5,5,4,3,2,2,3,2,3,3,1,3,3,3,3,4,4,4,3,3,4,4,4,3,4,,7,5,,,
|
||||
3/1/22 15:35,3/1/22 15:51,0,96.252.99.186,100,960,1,2022-03-01T15:51:23,R_24s8CqffYQeVIQh,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,5,5,5,3,5,5,5,5,3,2,3,4,4,3,4,4,4,4,4,4,3,4,4,5,5,5,5,5,4,4,4,4,5,4,5,5,5,3,3,4,4,4,5,4,3,3,3,4,4,4,4,3,4,5,3,5,4,4,3,4,4,4,4,5,3,5,,8,3,,,
|
||||
3/1/22 15:35,3/1/22 15:47,0,73.114.137.37,100,756,1,2022-03-01T15:47:40,R_4JEdjyf3HTNDf8d,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,5,4,5,5,4,5,5,5,5,4,3,4,4,5,5,5,4,4,4,4,5,5,4,4,3,3,3,4,3,4,3,4,3,5,5,3,4,5,5,5,5,4,4,4,4,5,5,5,5,5,5,5,5,3,4,3,3,4,4,4,3,4,4,3,3,3,3,,9,6,,,
|
||||
3/1/22 15:42,3/1/22 15:56,0,96.252.99.186,100,838,1,2022-03-01T15:56:30,R_10CNIOgFWgS5F2p,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,4,3,5,4,4,3,4,4,4,4,4,1,4,4,4,4,4,4,3,4,4,5,4,4,4,4,4,3,5,5,4,4,3,4,3,3,4,4,5,4,5,4,4,3,3,4,5,5,5,3,4,4,4,4,5,5,5,3,3,5,3,5,3,5,,9,5,,,
|
||||
3/1/22 14:55,3/1/22 15:29,0,108.49.219.202,100,2014,1,2022-03-01T15:29:8,R_1HplRDDbvnl9zzA,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,4,4,4,4,3,1,5,4,4,5,3,3,4,4,4,3,3,3,3,3,3,3,2,4,4,4,5,5,4,4,4,3,4,3,3,3,3,4,4,2,3,4,3,4,4,4,4,4,4,4,3,5,5,2,4,4,4,4,5,4,4,4,4,4,3,4,4,4,,7,5,,,
|
||||
3/1/22 15:42,3/1/22 15:51,0,96.252.99.186,100,545,1,2022-03-01T15:51:21,R_1o7H9q0FDNBGkHH,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,4,3,4,4,4,4,4,4,4,4,4,3,4,3,2,2,3,2,2,3,3,3,4,4,4,3,4,4,4,3,3,3,3,4,3,2,3,3,4,4,5,4,4,4,4,5,3,3,3,2,3,4,3,4,4,4,3,4,4,4,4,5,4,4,Winchester is a lovely community. ,6,5,,,
|
||||
3/1/22 14:53,3/1/22 15:04,0,108.49.219.202,100,657,1,2022-03-01T15:4:8,R_3k5hELXK7Oq0dW0,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,4,5,4,4,3,2,4,4,3,4,4,3,4,4,4,2,3,3,2,4,2,4,3,4,4,3,3,3,3,3,4,3,3,3,5,5,4,5,5,2,3,4,5,3,4,4,3,3,3,4,5,4,4,3,4,4,3,4,4,4,4,3,4,4,3,3,4,4,,8,8,,,
|
||||
3/1/22 15:34,3/1/22 15:46,0,96.252.99.186,100,724,1,2022-03-01T15:46:47,R_1ILAhJTXDUeH6iJ,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,5,4,4,5,4,3,4,3,4,3,4,2,3,4,4,4,4,2,2,2,3,2,2,3,3,3,3,4,3,3,3,2,4,3,4,3,3,4,3,2,3,3,3,3,4,4,3,3,3,4,4,3,3,2,2,2,3,3,3,3,2,3,3,4,3,4,3,5,,6,,,,
|
||||
3/1/22 14:54,3/1/22 15:06,0,108.49.219.202,100,722,1,2022-03-01T15:6:15,R_2Cy2wVB9YZY5Wnj,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,3,5,5,4,4,4,2,5,4,5,4,3,5,4,3,5,3,5,4,4,5,4,4,4,3,3,4,4,5,4,4,4,3,3,3,4,5,4,5,5,3,3,3,4,3,4,4,4,4,4,4,5,4,4,3,4,4,2,4,4,3,3,2,4,4,3,3,4,5,,8,6,,,
|
||||
3/1/22 14:24,3/1/22 14:33,0,108.49.219.202,100,539,1,2022-03-01T14:33:22,R_w6Hzqtq9cLcVsPf,42.48100281,-71.15630341,anonymous,EN,6,3440040,2,3,3,5,5,5,4,2,3,3,3,4,2,2,3,3,3,3,5,3,4,3,3,4,3,4,4,4,4,3,4,3,4,4,3,3,3,2,3,4,4,3,4,3,3,3,4,3,4,2,2,4,5,4,4,2,4,4,4,3,3,4,3,3,3,4,3,3,3,4,,6,4,,,
|
||||
3/1/22 15:14,3/1/22 15:19,0,108.49.219.202,100,337,1,2022-03-01T15:19:46,R_2tJVB10c0Rb6Zag,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,4,4,4,3,4,4,4,4,2,2,2,2,5,3,4,4,4,4,4,4,4,4,4,3,3,2,3,2,4,3,3,3,3,3,2,3,3,1,3,3,3,3,4,4,3,3,3,3,5,3,3,2,3,3,3,4,4,4,4,3,3,2,3,4,3,4,,8,8,,,
|
||||
2/26/22 12:03,2/26/22 12:10,0,24.34.85.42,100,439,1,2022-02-26T12:10:47,R_1JIKbQHxMtdm1Jb,42.59370422,-71.02220154,anonymous,EN,6,3440025,5,4,5,5,5,4,4,2,5,4,4,4,3,3,3,4,4,4,4,4,4,5,5,5,4,5,5,5,5,4,5,4,5,5,4,4,5,4,3,4,5,5,4,4,5,4,5,4,3,3,3,5,4,4,5,5,4,5,5,5,4,4,4,3,3,4,2,3,3,4,,8,5,,,
|
||||
3/1/22 15:37,3/1/22 15:54,0,108.7.214.75,100,1024,1,2022-03-01T15:54:24,R_xnPN55SVPAZPa9z,42.36599731,-71.22709656,anonymous,EN,6,3440505,5,4,5,3,4,4,3,2,4,4,4,4,2,2,3,3,3,2,4,3,2,2,3,2,3,,,4,4,4,4,4,4,3,4,3,4,4,3,4,4,3,4,4,4,4,4,4,4,4,3,5,3,,,,,3,,3,5,4,4,4,3,3,,,,,,8,5,,,
|
||||
3/1/22 14:35,3/1/22 16:57,0,108.49.120.2,100,8522,1,2022-03-01T16:57:58,R_ZEGvhA1eRv3iwVz,42.52780151,-71.10399628,anonymous,EN,6,3440005,4,4,5,5,3,4,3,4,4,4,3,4,4,3,3,3,4,3,5,3,2,4,2,3,2,3,3,4,4,4,3,3,4,3,4,3,3,3,2,3,3,1,3,3,4,3,4,3,3,3,2,3,5,,4,,3,,,,4,4,4,4,4,4,2,3,3,4,,6,5,,,
|
||||
3/1/22 14:54,3/1/22 15:12,0,108.49.219.202,100,1099,1,2022-03-01T15:12:24,R_2AL29LZzJQrfJyp,42.48100281,-71.15630341,anonymous,EN,6,3440005,3,2,3,4,3,5,4,2,3,3,3,3,3,2,4,3,5,2,4,3,2,2,2,2,2,3,3,3,3,2,3,3,3,4,2,3,4,3,3,3,4,3,2,3,4,4,4,3,3,2,2,3,3,3,3,2,3,3,3,3,4,4,3,4,3,3,1,3,4,5,,8,7,,,
|
||||
3/1/22 15:41,3/1/22 15:47,0,174.196.205.53,100,318,1,2022-03-01T15:47:10,R_1jOskxFShALHx0h,42.36599731,-71.22709656,anonymous,EN,6,3440505,5,5,3,4,4,3,4,3,4,4,4,4,4,4,4,5,3,3,3,5,5,5,5,5,5,3,3,3,3,3,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,2,2,5,2,5,5,3,5,4,4,4,3,4,3,3,3,3,3,,7,6,,,
|
||||
3/1/22 14:54,3/1/22 15:03,0,108.49.219.202,100,544,1,2022-03-01T15:3:16,R_110dlRekRt0RJfP,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,4,4,4,5,4,2,4,4,4,4,2,3,3,3,4,3,5,2,3,4,3,4,2,3,3,3,4,4,4,3,4,4,4,3,4,4,3,5,5,2,3,3,5,3,4,4,3,4,4,5,5,4,3,2,3,4,4,4,3,3,3,3,4,4,3,3,3,3,,6,5,,,
|
||||
3/1/22 15:38,3/1/22 15:48,0,96.252.99.186,100,611,1,2022-03-01T15:48:33,R_3k5OdvFBdAPo0gY,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,3,4,4,3,4,3,4,4,4,3,4,3,3,2,2,3,3,4,3,2,2,4,4,3,3,3,3,3,4,3,3,3,3,4,4,4,4,5,5,4,4,4,4,4,4,4,4,2,2,4,3,4,4,4,2,4,4,3,4,5,5,5,4,4,5,4,4,2,4,,3,,,,
|
||||
3/1/22 15:43,3/1/22 15:54,0,96.252.99.186,100,654,1,2022-03-01T15:54:26,R_2ARy7DB7CFXlfHt,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,2,3,4,4,2,5,4,5,5,3,3,3,3,3,3,4,5,5,5,4,4,4,2,2,3,3,3,3,3,4,4,5,4,4,4,4,5,4,3,4,4,4,4,5,4,3,3,3,4,4,4,4,4,4,4,3,4,4,4,4,3,4,4,4,5,3,4,,6,4,,,
|
||||
3/1/22 14:56,3/1/22 15:13,0,108.49.219.202,100,995,1,2022-03-01T15:13:20,R_1lgkJODJ39Npfrq,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,5,5,4,5,4,5,4,4,4,4,3,3,4,3,5,5,5,5,5,5,5,4,5,5,5,4,5,4,4,4,4,3,4,3,3,3,3,4,5,2,2,2,4,4,5,4,4,4,4,4,5,5,5,4,3,5,4,5,4,4,4,4,4,4,5,5,4,4,"Parents participate in different ways due to the pandemic. The are ZOOM GUest Readers weekly, help organize materials for hands on projects and send into school-send in photos and videos to connect the home school learning. The zoom in and share traditions,",7,7,,,
|
||||
4/5/22 14:42,4/5/22 14:50,0,96.230.20.18,100,449,1,2022-04-05T14:50:18,R_ABCKzxGBVghRqk9,42.4532,-71.1428,anonymous,EN,6,3440020,4,4,5,4,3,4,3,3,4,4,3,4,3,3,3,3,4,2,3,2,1,3,2,2,2,4,4,3,3,3,3,2,2,2,2,3,2,3,2,2,3,2,2,2,3,3,3,3,4,3,3,2,5,4,4,4,2,2,2,3,3,3,3,3,3,3,3,3,2,3,,5,3,,,
|
||||
3/1/22 16:09,3/1/22 18:07,0,96.252.99.186,100,7077,1,2022-03-01T18:7:29,R_27Ce4RUTWvCled1,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,3,1,4,4,4,4,3,4,4,3,3,3,3,3,3,3,2,2,3,4,4,4,4,4,4,4,4,3,4,4,4,3,3,4,3,3,4,4,5,4,5,4,3,3,3,4,3,4,3,4,2,4,4,4,5,5,4,3,3,4,3,5,3,5,,6,5,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,572,1,2022-03-01T16:22:43,R_24dD8JJ6AJd9iRF,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,2,3,3,3,3,4,3,4,3,2,3,3,3,4,4,4,3,3,2,4,4,3,3,3,3,3,3,3,3,3,5,3,3,3,3,2,4,5,1,4,4,3,4,3,4,3,4,4,5,2,3,3,1,4,3,2,3,3,3,3,3,3,4,4,5,3,4,,5,,,,
|
||||
3/1/22 14:58,3/1/22 15:29,0,108.49.219.202,100,1830,1,2022-03-01T15:29:2,R_3WajHfr0ANGEj3H,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,5,5,5,5,4,3,5,5,5,4,3,3,3,3,4,3,5,4,4,5,3,4,3,4,4,4,5,4,4,4,5,3,4,4,3,3,2,5,3,3,3,3,5,3,4,3,4,4,4,5,5,4,4,3,4,5,4,5,3,3,3,3,4,3,4,4,3,4,,9,5,,,
|
||||
3/1/22 15:44,3/1/22 16:06,0,96.252.99.186,100,1320,1,2022-03-01T16:6:3,R_1rN94Kpe4hpjvL5,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,4,3,4,5,3,2,4,3,4,4,3,4,4,3,3,3,4,4,3,2,3,4,3,3,3,2,3,3,3,3,4,3,4,3,2,4,2,4,5,2,4,4,2,3,4,4,3,3,3,4,5,3,4,2,3,3,4,3,4,4,3,3,2,3,4,5,4,5,,7,5,,,
|
||||
3/1/22 15:49,3/1/22 16:21,0,96.252.99.186,100,1902,1,2022-03-01T16:21:37,R_7WjJdUE23ntSyEV,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,4,4,5,5,4,5,4,4,4,4,4,4,3,3,4,3,4,4,4,4,,,4,4,4,4,4,5,5,4,4,5,4,5,5,5,3,3,4,3,4,5,4,4,3,1,2,3,5,5,3,5,4,3,5,4,4,3,4,4,3,5,4,3,,"As teachers we tend to be very Liberal, (In the modern day sense) and I feel it sways a cultural bias concerning the current politics of the day",8,6,,,
|
||||
3/1/22 14:58,3/1/22 15:11,0,108.49.219.202,100,768,1,2022-03-01T15:11:8,R_1QGWMWQAh8MfomT,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,4,4,5,4,3,5,5,5,4,4,4,4,4,4,2,5,4,4,4,4,4,3,3,4,5,5,4,4,4,4,3,4,4,5,4,5,5,5,2,3,4,4,4,4,2,4,3,3,3,4,4,4,5,2,4,4,5,4,3,3,3,4,4,2,3,3,4,,7,5,,,
|
||||
3/1/22 16:14,3/1/22 16:25,0,108.20.186.77,100,690,1,2022-03-01T16:25:44,R_1IgyJt0quVWyfiP,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,3,5,3,2,4,5,5,3,4,4,4,5,4,2,3,3,4,5,4,5,4,3,3,3,3,4,3,3,4,4,4,4,4,4,3,4,4,3,3,4,5,4,5,3,4,3,3,5,5,5,4,3,4,4,3,5,5,4,4,3,3,3,3,3,3,3,,8,5,,,
|
||||
3/1/22 15:43,3/1/22 15:54,0,96.252.99.186,100,674,1,2022-03-01T15:54:37,R_1JIPLJp6xUPQLVn,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,4,5,3,5,4,3,4,5,4,3,5,3,3,3,3,3,3,4,4,3,3,,5,4,4,4,4,5,5,5,5,4,3,5,5,4,4,4,3,4,4,5,5,5,5,5,5,2,4,3,2,4,4,,,5,4,4,4,4,5,3,4,,,,7,5,,,
|
||||
3/1/22 10:06,3/1/22 13:46,0,108.49.219.202,100,13147,1,2022-03-01T13:46:3,R_1myCmtwlC05CvQI,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,4,4,3,4,2,4,4,4,3,2,3,3,3,3,2,4,4,5,5,4,4,3,3,3,3,4,3,3,3,3,4,2,3,3,4,3,3,4,2,3,3,4,4,4,4,3,3,3,4,5,5,5,4,2,3,3,3,4,4,3,4,3,3,4,5,4,5,,,,,,
|
||||
3/1/22 15:43,3/1/22 15:59,0,96.252.99.186,100,946,1,2022-03-01T15:59:1,R_XhbE0wXxUDOcSWJ,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,3,3,3,2,4,4,4,4,3,3,2,3,5,4,3,3,3,3,4,4,3,3,3,4,4,4,4,4,5,3,4,3,3,3,3,4,4,2,4,5,4,4,5,4,2,2,3,3,3,4,3,2,3,3,2,3,4,5,4,3,4,3,3,4,3,4,,7,4,,,
|
||||
3/1/22 15:43,3/1/22 15:58,0,96.252.99.186,100,907,1,2022-03-01T15:58:44,R_3fvfAdD0xXbNICy,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,5,4,5,3,4,4,4,4,2,2,2,2,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,3,4,4,4,5,5,3,3,5,4,4,5,5,4,4,4,4,2,4,4,2,4,4,3,4,5,4,5,3,4,4,4,5,4,5,,8,6,,,
|
||||
3/1/22 14:57,3/1/22 15:08,0,108.49.219.202,100,625,1,2022-03-01T15:8:7,R_1n86Lmp9sxKeLZL,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,4,4,4,5,4,2,4,4,3,4,4,3,4,4,4,2,4,4,3,4,3,4,3,5,5,4,4,4,3,3,4,4,4,3,4,4,2,4,5,2,3,3,4,4,4,4,5,5,5,5,5,3,3,3,4,4,3,4,3,3,3,4,4,4,2,2,3,3,,6,5,,,
|
||||
4/5/22 14:43,4/5/22 14:55,0,96.230.20.18,100,758,1,2022-04-05T14:55:58,R_1r9CMCopAmzZ25q,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,4,2,2,2,3,5,4,4,3,3,2,2,2,3,2,1,2,3,3,3,2,2,2,3,3,4,3,3,3,3,3,3,3,2,2,3,2,2,4,2,2,2,3,4,4,4,2,2,2,3,5,3,3,3,4,3,3,3,3,3,3,3,3,3,2,3,3,4,,7,5,,,
|
||||
3/1/22 15:44,3/1/22 16:01,0,96.252.99.186,100,1034,1,2022-03-01T16:1:33,R_2sYEvJE6HkFTGAG,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,3,4,4,5,4,3,4,4,5,3,5,2,3,4,5,3,4,3,4,2,3,4,3,3,3,3,3,4,4,3,4,2,4,4,5,3,3,4,3,4,3,4,3,4,5,4,3,3,3,3,3,5,4,2,3,3,2,4,4,4,4,3,4,5,5,4,3,5,,7,5,,,
|
||||
3/1/22 15:41,3/1/22 15:52,0,96.252.99.186,100,627,1,2022-03-01T15:52:16,R_2PmRrJAzUKm0z8f,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,3,3,3,5,4,4,4,2,2,1,2,5,4,4,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,3,3,4,4,4,3,3,3,4,4,5,4,3,3,3,3,5,3,3,2,4,4,4,3,4,3,3,3,3,4,4,5,4,5,,7,,,,
|
||||
3/1/22 12:54,3/1/22 13:06,0,108.49.219.202,100,704,1,2022-03-01T13:6:8,R_3OiFcqoNljOLEOF,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,4,4,4,2,4,4,4,4,3,2,3,2,3,1,3,3,3,4,2,2,3,4,4,4,4,4,4,4,4,4,4,3,4,4,2,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,4,5,4,4,3,3,3,2,4,3,5,,9,3,,,
|
||||
3/1/22 15:47,3/1/22 16:01,0,96.252.99.186,100,823,1,2022-03-01T16:1:0,R_2xLTybvORVgdjuF,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,3,2,4,4,5,4,2,3,2,3,4,4,4,4,4,4,3,3,4,3,3,4,4,5,4,4,4,3,5,3,4,3,4,5,5,3,4,4,4,4,5,4,4,3,3,4,4,5,5,3,3,4,4,5,4,5,4,4,4,4,2,3,2,3,,9,7,,,
|
||||
3/1/22 16:13,3/1/22 16:30,0,108.49.219.202,100,1037,1,2022-03-01T16:30:23,R_3EglC7TiueQi5Qj,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,5,3,5,2,2,4,4,3,4,3,3,2,4,3,2,4,4,5,4,4,4,3,3,3,4,4,4,4,3,4,4,4,2,3,2,2,3,3,2,3,3,3,3,3,4,5,5,4,4,3,3,3,2,3,3,3,3,3,4,4,2,4,4,3,4,3,5,,7,5,,,
|
||||
3/1/22 15:43,3/1/22 15:51,0,96.252.99.186,100,470,1,2022-03-01T15:51:37,R_3TRbfI6i2MciTN7,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,5,3,2,5,4,4,4,3,2,2,2,4,4,4,3,3,4,3,4,4,3,3,3,3,3,4,3,4,4,4,3,4,3,4,4,5,4,4,4,3,4,5,3,4,4,5,5,3,5,5,3,4,4,4,4,4,4,4,5,4,4,5,5,5,5,,7,3,,,
|
||||
3/1/22 15:20,3/1/22 15:27,0,108.49.219.202,100,399,1,2022-03-01T15:27:35,R_yrwGFzX4YCpEFWN,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,3,4,4,3,1,4,4,4,4,3,3,4,3,2,2,2,4,4,4,3,4,4,5,5,4,4,4,4,4,4,4,4,3,4,4,4,5,4,2,3,3,4,4,4,4,4,4,3,3,4,3,4,2,4,4,3,3,3,3,3,4,4,4,2,2,3,3,,9,6,,,
|
||||
3/1/22 15:47,3/1/22 16:01,0,96.252.99.186,100,845,1,2022-03-01T16:1:51,R_2t9z0WHjr0iVQrs,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,5,4,3,5,4,4,4,4,3,4,4,5,4,4,2,2,2,2,3,3,3,4,4,3,4,3,3,3,2,5,4,4,3,3,5,4,3,3,4,3,4,4,4,4,4,4,4,3,3,3,3,3,3,4,4,3,3,3,3,3,4,1,4,2,3,,8,5,,,
|
||||
3/1/22 15:41,3/1/22 15:59,0,96.252.99.186,100,1099,1,2022-03-01T15:59:49,R_3Ood87xwFldIOzU,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,4,4,4,4,4,4,5,5,5,4,4,2,2,2,4,4,4,4,3,4,3,4,3,3,4,4,4,3,4,3,3,3,4,4,4,2,4,4,4,3,2,3,3,3,4,4,2,2,2,2,5,3,3,3,4,4,3,4,3,4,4,2,3,3,3,5,3,4,no,6,5,,,
|
||||
3/1/22 14:58,3/1/22 15:07,0,108.49.219.202,100,537,1,2022-03-01T15:7:43,R_1k01u1QfCsUWgxj,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,5,5,5,5,4,5,,4,4,4,4,3,3,3,3,4,3,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,5,5,3,4,3,2,4,4,4,4,4,4,3,5,4,4,4,4,4,5,3,2,,5,4,,4,3,4,4,3,4,5,3,3,3,3,,8,5,,,
|
||||
3/1/22 16:13,3/1/22 16:23,0,108.49.219.202,100,619,1,2022-03-01T16:23:59,R_24Hvs0SxQt9oXsl,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,4,4,4,5,4,2,4,4,4,4,4,4,4,4,3,3,5,5,5,5,5,5,4,3,3,3,3,4,4,3,3,3,4,2,3,4,4,5,4,3,4,4,4,3,4,4,5,3,4,5,5,4,4,2,4,4,2,4,3,4,3,3,3,4,3,5,2,3,,8,8,,,
|
||||
3/1/22 15:20,3/1/22 15:37,0,108.49.219.202,100,1043,1,2022-03-01T15:37:43,R_3dFc47wp8sC1j5z,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,4,4,4,3,2,4,4,3,5,2,2,4,3,2,1,3,5,3,4,4,4,3,4,4,4,4,4,4,3,4,3,4,2,4,3,4,4,,,,,4,3,4,4,3,3,2,3,5,5,4,3,,4,,4,5,4,4,4,4,5,3,3,3,3,,6,5,,,
|
||||
3/1/22 15:41,3/1/22 16:20,0,96.252.99.186,100,2354,1,2022-03-01T16:20:40,R_AbtH2GZAjraHXk5,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,3,2,2,4,3,3,3,3,3,3,3,4,2,4,3,3,2,3,3,4,4,4,4,3,3,4,4,4,3,5,3,3,3,3,4,3,3,4,4,4,4,4,3,3,3,3,3,2,3,3,1,3,3,3,3,4,4,4,4,3,3,1,5,3,5,,6,3,,,
|
||||
3/1/22 15:20,3/1/22 15:27,0,108.49.219.202,100,394,1,2022-03-01T15:27:5,R_1OoF4faOxNIEVDE,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,4,3,3,4,3,1,4,4,3,5,2,2,3,3,4,2,3,4,4,5,4,4,4,3,4,3,3,3,3,2,3,3,2,4,4,4,4,4,4,3,2,2,4,4,4,4,3,3,3,4,5,4,4,2,4,4,2,4,3,3,3,3,3,3,3,3,3,4,,7,7,,,
|
||||
3/1/22 14:56,3/1/22 15:10,0,108.49.219.202,100,817,1,2022-03-01T15:10:32,R_3HLDP7JcZzktzqD,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,5,4,5,5,4,4,3,4,3,4,5,3,2,2,2,4,3,3,5,5,5,4,4,4,4,4,3,4,4,4,4,3,3,3,3,3,3,1,5,4,3,4,3,2,3,4,3,5,5,5,4,4,4,3,3,4,4,4,4,4,4,4,4,4,4,3,3,3,4,,6,5,,,
|
||||
3/1/22 15:24,3/1/22 15:36,0,108.49.219.202,100,722,1,2022-03-01T15:36:29,R_2VjR4Rxk6QaWDaJ,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,4,5,3,2,4,3,4,4,3,3,3,2,3,2,4,4,4,5,4,4,3,4,4,3,4,3,4,3,2,2,2,4,3,4,2,3,4,3,3,2,3,2,3,3,4,3,3,4,5,3,3,2,2,2,1,4,3,3,3,2,4,4,3,4,3,3,,9,6,,,
|
||||
3/1/22 15:16,3/1/22 15:23,0,108.49.219.202,100,431,1,2022-03-01T15:23:58,R_24FQVQU9YAA8dmq,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,4,3,4,4,1,3,3,5,3,2,3,3,4,2,2,3,4,3,4,3,3,3,3,5,3,4,4,3,3,4,4,3,3,3,3,2,3,4,2,3,3,4,2,4,3,4,4,4,4,5,3,3,1,3,3,3,3,3,3,3,4,4,4,2,3,4,4,,7,5,,,
|
||||
3/1/22 15:14,3/1/22 15:26,0,108.49.219.202,100,723,1,2022-03-01T15:26:29,R_2vigDH9d8jXzyYs,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,4,5,4,1,4,4,4,4,3,2,3,2,5,1,2,4,3,3,3,4,3,3,3,3,4,4,3,2,4,4,4,3,3,3,3,3,4,3,4,4,3,3,5,5,4,3,2,3,5,5,4,3,4,4,3,3,3,3,3,4,4,4,3,4,3,3,,6,5,,,
|
||||
4/5/22 14:43,4/5/22 14:57,0,96.230.20.18,100,808,1,2022-04-05T14:57:6,R_6gOOSVeH8OqAy8V,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,5,5,4,5,3,2,4,4,3,4,3,3,4,3,5,3,3,2,2,3,3,3,2,4,4,4,4,3,4,3,3,4,3,4,4,4,3,4,4,3,2,4,4,4,4,4,4,3,3,4,3,4,4,2,4,3,3,3,2,4,2,3,3,3,2,2,5,5,,7,6,,,
|
||||
3/1/22 15:14,3/1/22 15:27,0,108.49.219.202,100,754,1,2022-03-01T15:27:11,R_6lmOCqo2nva0xqx,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,5,4,3,4,2,2,4,4,4,4,2,2,2,2,4,2,2,4,3,4,4,4,4,4,4,4,3,4,4,3,4,4,4,2,3,2,3,4,4,3,3,3,4,2,4,4,3,4,3,4,5,3,2,3,2,2,2,3,5,4,4,3,3,4,3,3,3,3,The curriculum directors do not believe in a system wide curriculum. This has led to disconnects between schools. Teachers are creating the curriculum as they go. Teachers want a curriculum!,6,6,,,
|
||||
3/1/22 15:44,3/1/22 16:08,0,96.252.99.186,100,1444,1,2022-03-01T16:8:57,R_21iHBETLHfyNov2,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,4,2,4,4,5,4,3,3,3,3,4,4,4,4,4,3,3,4,4,3,4,4,4,4,5,4,4,4,5,4,4,4,4,5,5,5,5,5,4,5,5,5,4,4,3,5,3,4,4,3,2,2,2,2,5,5,5,4,4,4,3,5,3,5,,8,3,,,
|
||||
3/1/22 14:56,3/1/22 15:14,0,108.49.219.202,100,1081,1,2022-03-01T15:14:48,R_3qWP1Mi8PYFRACW,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,5,4,5,4,5,2,5,5,4,5,3,3,4,5,4,2,4,4,4,4,3,3,3,4,4,4,4,4,4,4,4,4,4,5,5,4,2,5,5,5,5,5,4,4,5,4,3,3,5,4,5,4,3,2,4,4,3,4,4,5,4,3,3,2,4,4,4,5,,6,5,,,
|
||||
3/1/22 15:31,3/1/22 15:38,0,73.186.44.201,100,397,1,2022-03-01T15:38:17,R_1oFhXtM3Jw5DcJE,42.55749512,-71.17359924,anonymous,EN,6,3440505,5,5,5,5,4,4,3,2,5,4,5,3,5,3,3,4,4,2,4,4,3,4,4,4,4,3,3,4,4,4,4,4,4,3,3,5,5,5,3,4,4,3,5,5,4,5,5,4,3,2,4,3,3,5,4,2,5,4,4,4,4,5,4,3,4,5,3,5,3,5,,9,8,,,
|
||||
3/1/22 14:56,3/1/22 15:10,0,108.49.219.202,100,794,1,2022-03-01T15:10:13,R_bfROQV046t7VaEh,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,5,4,4,4,3,5,5,5,5,2,2,4,4,4,3,5,4,4,5,3,3,3,4,4,4,5,4,4,4,4,4,4,3,3,3,2,4,5,3,3,3,4,3,4,5,4,5,4,4,5,3,3,3,5,3,3,3,3,3,4,4,4,4,3,3,2,2,,7,,,,
|
||||
3/1/22 15:42,3/1/22 15:53,0,96.252.99.186,100,674,1,2022-03-01T15:53:44,R_pi0WDeFSd9dT10R,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,4,2,5,5,5,5,4,4,3,3,4,4,4,4,4,2,3,4,3,3,3,3,2,3,3,4,4,4,4,4,5,5,5,5,3,2,3,4,5,4,5,4,5,4,5,5,2,4,4,5,5,4,4,4,4,5,5,5,4,4,3,4,4,4,,5,4,,,
|
||||
3/1/22 15:45,3/1/22 15:52,0,96.252.99.186,100,453,1,2022-03-01T15:52:44,R_1FxHUAGmK7gBdmC,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,5,3,5,5,5,5,5,4,5,5,5,4,5,4,5,4,4,4,4,3,3,4,4,4,4,3,4,4,4,5,5,4,5,5,4,4,5,5,5,5,5,5,4,4,4,4,3,3,3,1,3,3,4,4,4,4,5,5,4,5,1,4,4,5,,8,4,,,
|
||||
3/1/22 14:56,3/2/22 10:40,0,108.49.219.202,50,71080,0,2022-03-09T10:40:53,R_1QzU95RlJqcWf9a,,,anonymous,EN,6,3440045,5,4,5,,,,,,4,4,4,4,,,,,5,4,4,3,3,3,,,,,,,,,,,,,,4,3,3,3,4,4,3,4,3,3,3,4,3,,,,,4,4,4,2,,,,,,,,,,,1,2,,,,,,,,
|
||||
3/1/22 15:08,3/1/22 15:24,0,108.49.219.202,100,975,1,2022-03-01T15:24:19,R_2aS7Nn1PaNZYn23,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,3,4,4,5,5,3,4,4,3,3,4,3,2,3,3,2,4,3,2,4,3,4,2,3,3,3,3,4,3,2,4,2,4,2,3,3,3,4,4,2,2,3,4,3,4,3,5,4,3,5,5,5,5,4,4,4,4,4,3,3,3,4,4,4,2,3,4,5,,8,6,,,
|
||||
3/1/22 14:46,3/1/22 14:58,0,108.49.219.202,100,757,1,2022-03-01T14:58:49,R_2Vlq9PJujeZiNpt,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,4,4,5,4,4,4,4,3,4,2,2,3,2,5,3,4,5,5,5,5,5,5,4,4,4,5,5,4,4,4,3,4,3,3,5,5,3,4,2,3,3,4,3,4,4,4,4,4,4,5,4,4,4,4,5,5,5,3,3,3,4,4,4,2,3,3,4,,9,8,,,
|
||||
4/5/22 14:42,4/5/22 14:58,0,96.230.20.18,100,938,1,2022-04-05T14:58:38,R_3lSMYBozW1utUbM,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,4,3,3,4,3,1,4,4,4,5,2,4,2,3,4,2,4,4,4,3,3,3,3,5,5,3,4,4,4,3,3,3,2,3,3,3,2,2,2,2,3,2,4,2,4,4,4,4,4,5,3,4,4,3,3,3,3,3,4,4,4,3,4,3,2,3,3,4,Our school has had a lot of principal turnover recently. In the last 4 years we have had 3 principals (and now one acting principal while our principal is on leave).,6,5,,,
|
||||
3/1/22 16:13,3/1/22 16:21,0,96.252.99.186,100,460,1,2022-03-01T16:21:6,R_yBxFGq0GtiM4Egh,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,3,4,3,2,5,5,5,5,3,4,5,5,4,2,2,4,5,4,4,4,4,4,3,4,4,3,4,4,4,3,4,5,5,4,5,5,4,4,4,5,4,5,5,5,5,4,3,4,5,5,4,2,3,4,3,3,5,5,5,5,4,4,5,5,3,5,,5,5,,,
|
||||
3/1/22 16:12,3/1/22 16:18,0,96.252.99.186,100,367,1,2022-03-01T16:18:31,R_1QG7xAL5jUnMo4P,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,3,3,4,4,2,5,5,5,5,2,3,2,3,4,4,4,3,3,3,3,3,2,3,3,3,4,4,4,4,3,3,4,3,3,3,3,5,3,3,3,4,4,5,5,5,3,3,3,3,4,4,4,4,4,4,3,4,5,5,5,4,4,4,3,5,3,5,,3,3,,,
|
||||
3/1/22 14:31,3/1/22 15:03,0,108.49.219.202,100,1929,1,2022-03-01T15:3:28,R_d5AR94Kzu4LoY3n,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,5,5,5,5,4,1,3,4,3,4,3,3,4,4,2,3,4,4,5,5,3,4,4,4,5,4,4,4,4,4,3,3,4,4,4,3,3,5,5,5,4,4,3,3,4,4,5,4,4,5,2,4,4,4,3,3,3,4,3,3,3,4,4,4,2,2,2,3,,5,3,,,
|
||||
3/1/22 14:56,3/1/22 15:09,0,108.49.219.202,100,731,1,2022-03-01T15:9:6,R_2ali6W3otRqVnaN,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,5,4,4,5,3,2,4,5,5,3,3,2,3,3,4,2,3,4,2,3,2,2,3,4,4,4,4,4,4,4,3,3,3,3,4,4,3,4,4,2,3,3,3,3,3,3,3,2,3,4,3,2,2,1,3,3,2,2,3,3,3,3,3,3,3,3,3,4,,8,3,,,
|
||||
3/1/22 15:43,3/1/22 16:06,0,96.252.99.186,100,1375,1,2022-03-01T16:6:29,R_2dPUGiLCNkvCr6W,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,3,2,5,4,4,4,2,2,2,3,3,2,3,4,5,3,3,3,4,3,2,4,4,4,4,4,4,3,4,4,5,5,5,5,4,3,4,4,4,4,5,4,4,4,3,4,5,4,4,3,4,3,3,3,4,5,3,3,4,4,3,5,3,5,,6,4,,,
|
||||
3/1/22 15:38,3/1/22 15:52,0,96.252.99.186,100,850,1,2022-03-01T15:52:17,R_1K1g0VJZsKn0cVq,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,4,2,3,2,2,1,4,4,4,4,2,3,1,2,,,3,4,4,3,4,3,4,3,3,4,4,4,4,4,,3,4,3,3,3,3,5,,,,,2,3,4,3,3,3,3,3,3,,5,4,3,3,3,3,4,4,4,4,4,,,,4,5,,5,5,,,
|
||||
4/5/22 14:43,4/5/22 14:58,0,96.230.20.18,100,918,1,2022-04-05T14:58:33,R_byMrZwiXsYEFqQV,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,4,4,2,5,4,2,4,3,3,4,2,2,2,2,3,3,3,2,4,3,2,2,2,4,4,4,5,5,4,4,3,3,4,3,4,4,2,4,4,3,4,4,3,4,4,4,4,4,3,5,3,4,4,3,4,3,3,4,3,3,3,3,4,3,,,5,5,,5,5,,,
|
||||
3/1/22 15:43,3/1/22 16:13,0,96.252.99.186,100,1827,1,2022-03-01T16:13:44,R_3323tMHCFdi6at5,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,5,4,3,3,4,4,5,4,3,5,3,3,4,3,5,4,2,3,2,4,4,3,3,3,3,3,3,4,4,3,5,2,4,2,3,3,3,3,5,5,3,3,4,4,4,5,3,5,4,5,5,3,3,,3,4,5,4,4,3,4,3,3,5,3,5,,8,6,,,
|
||||
3/1/22 15:10,3/1/22 15:38,0,108.49.219.202,100,1682,1,2022-03-01T15:38:53,R_1jkvVe7tfLiEdSa,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,5,4,5,5,3,4,5,4,4,3,1,3,1,4,2,4,5,5,5,4,4,4,3,3,3,4,4,4,4,3,3,4,3,3,4,3,4,4,2,3,2,4,3,4,3,4,4,4,4,5,4,4,3,2,4,3,4,4,4,4,3,4,3,4,4,4,4,,5,4,,,
|
||||
3/1/22 15:48,3/1/22 16:20,0,96.252.99.186,100,1918,1,2022-03-01T16:20:2,R_3JKvZsviWg87wKd,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,2,3,5,4,4,4,3,3,3,3,3,3,3,2,1,2,2,2,2,3,3,4,3,3,4,4,3,3,3,3,3,3,3,4,4,3,4,4,3,4,4,4,5,5,4,5,2,3,3,3,3,3,3,3,4,4,4,3,3,4,3,5,3,5,"Since Covid, we have become quite isolated and divided as a staff. We need someone to bring us back together again. As teachers, we plan with student SEL on our minds all of the time, but it does not seem like the administration has staff's social/emotional well being in mind at all when making deci",7,6,,,
|
||||
3/1/22 15:17,3/1/22 15:27,0,108.49.219.202,100,583,1,2022-03-01T15:27:4,R_qU74FxfmOqKq6VX,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,4,4,2,2,4,4,4,4,2,2,3,3,4,2,4,4,5,5,4,4,5,4,4,5,4,3,4,4,4,4,4,4,2,3,2,4,4,3,4,4,3,3,3,4,4,4,4,4,5,2,2,1,4,2,2,3,4,4,3,3,3,4,3,3,3,3,,5,5,,,
|
||||
3/1/22 14:57,3/1/22 15:09,0,108.49.219.202,100,743,1,2022-03-01T15:9:33,R_2ffkNntWAIbDEPA,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,5,5,5,5,2,5,5,4,4,4,4,4,4,5,4,5,4,5,4,3,3,3,3,3,4,5,5,4,4,4,4,5,2,4,3,2,5,5,3,4,4,5,4,5,4,4,4,5,4,5,4,4,1,5,5,5,5,3,3,4,4,4,4,3,4,3,4,,6,6,,,
|
||||
3/1/22 15:14,3/1/22 15:37,0,108.49.219.202,100,1332,1,2022-03-01T15:37:10,R_3qroZXGKj8gRmfS,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,2,4,3,2,5,4,4,4,3,3,3,2,5,3,4,5,5,5,5,5,5,4,4,4,4,4,4,3,4,4,3,3,4,3,2,3,4,2,5,4,5,4,4,4,3,3,3,4,5,4,4,3,3,4,4,5,3,3,3,3,4,4,2,3,3,3,,9,7,,,
|
||||
3/1/22 16:13,3/2/22 10:03,0,73.38.248.242,40,64228,0,2022-03-09T10:3:39,R_upPwDd9yEHgAerL,,,anonymous,EN,6,3440305,,,,4,4,4,3,2,,,,,,,,,,,,,,,3,3,3,,,,4,2,4,4,4,4,4,,,,,,2,1,2,3,,,,,,,,,3,3,3,2,,,,,,,,,,,,,,,,,,,,
|
||||
3/1/22 14:53,3/1/22 15:04,0,108.49.219.202,100,634,1,2022-03-01T15:4:14,R_8ueUDtUh1u9YRc5,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,4,3,3,3,3,1,4,4,4,4,3,1,3,1,4,2,4,3,2,2,2,2,2,4,5,3,4,3,3,3,3,3,3,3,3,3,2,3,3,1,1,3,4,3,4,4,3,3,3,3,5,3,3,2,2,2,2,2,3,3,3,3,3,4,2,3,2,3,,8,5,,,
|
||||
3/1/22 15:47,3/1/22 15:57,0,96.252.99.186,100,640,1,2022-03-01T15:57:44,R_RXhgPVLX1phi3u1,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,3,2,5,4,5,4,4,2,2,2,5,4,4,5,5,5,4,4,4,3,4,4,3,3,3,4,5,4,5,3,3,3,4,4,3,4,4,4,5,4,5,5,5,5,4,5,4,4,3,2,3,3,3,4,5,5,5,4,3,3,3,4,4,5,,8,5,,,
|
||||
4/5/22 14:43,4/5/22 14:54,0,96.230.20.18,100,664,1,2022-04-05T14:54:20,R_3376lsbLItdknMi,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,4,2,3,5,3,2,4,4,4,3,3,3,3,3,5,2,4,2,2,3,2,2,2,4,4,4,4,3,4,4,3,4,2,3,3,4,2,5,4,2,3,3,2,3,4,3,3,4,3,4,5,4,3,2,5,4,4,4,3,3,3,3,4,4,2,3,2,3,,5,4,,,
|
||||
3/1/22 15:43,3/1/22 15:56,0,96.252.99.186,100,779,1,2022-03-01T15:56:47,R_28N7HLFR6BhBlth,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,3,2,5,3,4,5,3,4,3,4,4,3,3,4,2,3,3,3,2,3,3,4,3,4,3,3,4,3,4,3,3,3,3,5,3,1,1,2,3,3,4,3,5,4,4,4,3,3,5,3,3,3,3,3,4,4,3,3,4,4,3,4,2,3,,9,,,,
|
||||
3/1/22 15:43,3/1/22 15:52,0,96.252.99.186,100,554,1,2022-03-01T15:52:59,R_28MWxtH2Ze2Hrnq,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,5,3,2,4,4,4,4,3,3,3,3,5,3,5,3,2,4,3,3,2,3,4,4,4,5,4,4,4,3,4,5,5,5,4,4,4,2,4,4,4,4,5,5,3,3,3,3,3,5,4,2,3,3,3,3,4,4,3,3,4,4,5,5,5,5,,7,5,,,
|
||||
3/1/22 14:33,3/1/22 14:54,0,108.49.219.202,100,1244,1,2022-03-01T14:54:37,R_23V1VolH71Qfi6v,42.48100281,-71.15630341,anonymous,EN,6,3440505,5,4,4,3,3,4,3,1,4,3,3,4,2,2,3,3,4,4,3,2,3,3,3,4,2,3,4,4,4,3,4,4,2,3,2,3,3,3,2,4,4,3,4,2,5,3,4,3,2,4,3,4,4,2,2,1,4,4,2,3,5,4,3,3,3,2,2,2,4,4,,7,5,,,
|
||||
3/1/22 16:14,3/1/22 16:19,0,108.49.219.202,66,311,0,2022-03-08T16:19:26,R_Di9ZdEio5JyidcB,,,anonymous,EN,6,3440305,3,4,4,4,3,3,3,1,4,4,4,4,2,3,3,2,,,,1,1,2,2,3,2,,,,,,,,,,,2,3,3,1,3,,,,,4,4,4,3,3,3,3,3,4,2,2,2,2,3,2,2,,,,,,,2,3,2,2,,,,,,
|
||||
3/1/22 15:40,3/1/22 16:11,0,96.252.99.186,100,1823,1,2022-03-01T16:11:23,R_OcInTlOfnpasWDT,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,4,4,3,5,4,5,5,3,3,1,3,5,4,5,4,3,2,3,4,4,3,3,4,4,4,4,4,4,4,4,2,3,3,4,5,4,3,4,,3,2,4,3,5,5,5,5,4,5,5,,3,4,4,4,,4,3,4,4,5,3,,3,5,,7,3,,,
|
||||
3/1/22 14:56,3/1/22 15:40,0,108.49.219.202,58,2631,0,2022-03-08T15:40:52,R_1LbQRSaNeAbFp04,,,anonymous,EN,6,3440040,5,4,4,,,,,,4,4,4,4,1,2,2,2,,,,,,,2,3,2,4,4,4,,,,,3,3,3,,,,,,4,2,2,2,3,3,3,3,,,,,,,,,3,2,2,3,2,2,2,2,3,3,2,2,,,,,,,,
|
||||
4/5/22 14:43,4/6/22 8:49,0,96.230.20.18,34,65165,0,2022-04-13T8:49:22,R_86OPkhzo1E6e9pf,,,anonymous,EN,6,3440020,,,,,,,,,,,,,3,3,2,3,,,,1,1,2,,,,4,,3,,,,,,,,2,,3,2,1,,,,,,,,,,,,,,,,,,,,,,,,1,3,1,2,2,,,,,,,,
|
||||
3/1/22 14:56,3/1/22 15:21,0,108.49.219.202,100,1531,1,2022-03-01T15:21:35,R_O3CQv2NX1WmPGet,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,4,3,3,5,3,3,4,4,4,4,2,3,3,2,5,4,5,3,3,4,3,4,3,4,4,3,5,5,4,3,5,4,4,2,2,2,4,4,3,1,3,4,3,3,4,3,4,4,4,5,5,3,4,5,4,4,4,4,3,3,3,4,3,4,3,4,2,2,,9,7,,,
|
||||
3/1/22 15:43,3/1/22 15:58,0,96.252.99.186,100,870,1,2022-03-01T15:58:24,R_2fCdBszMCOh74k5,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,2,3,3,2,2,4,4,4,4,3,1,3,1,4,5,3,3,3,1,4,3,3,4,4,4,3,4,4,3,4,4,4,4,4,4,4,4,5,3,4,4,4,4,5,4,3,3,3,4,4,5,4,4,4,4,4,4,3,4,4,4,4,5,4,5,3,5,,7,,,,
|
||||
3/1/22 15:14,3/1/22 15:26,0,108.49.219.202,100,740,1,2022-03-01T15:26:37,R_1j6QzxFqlW3wXxK,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,4,4,4,3,1,5,4,4,4,2,1,3,3,4,2,4,5,4,5,4,4,5,3,3,4,4,4,4,4,3,4,3,3,4,3,3,4,3,2,2,2,4,4,4,4,3,3,3,4,5,4,3,2,3,4,3,4,3,3,3,4,4,2,3,4,3,4,,4,3,,,
|
||||
3/1/22 15:45,3/1/22 15:59,0,96.252.99.186,100,825,1,2022-03-01T15:59:24,R_6WLABUFyxmaUlfr,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,2,2,1,4,3,4,3,2,2,1,2,4,3,4,3,3,4,3,3,3,3,3,4,4,4,4,4,4,4,4,4,3,3,4,5,3,3,3,3,3,4,4,4,3,3,2,3,2,4,3,1,3,4,2,4,3,3,3,4,3,4,2,4,2,5,,4,3,,,
|
||||
3/2/22 8:31,3/2/22 12:07,0,108.49.219.202,100,12970,1,2022-03-02T12:7:43,R_yTRmNuEMIa9YxLr,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,4,4,4,4,4,4,3,4,4,4,4,1,1,2,1,4,2,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,2,3,3,3,4,3,1,2,2,4,3,5,4,3,4,3,4,5,4,4,2,2,3,2,3,4,4,4,4,3,3,2,3,3,3,,8,5,,,
|
||||
3/1/22 15:19,3/1/22 15:28,0,108.49.219.202,100,521,1,2022-03-01T15:28:30,R_2aJ4Ti4lxbK0pu5,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,3,2,2,1,1,4,4,3,4,2,1,4,2,1,1,2,3,3,3,3,3,3,2,3,3,3,4,3,3,4,3,2,3,4,3,3,4,4,3,3,3,4,4,4,3,3,3,4,4,5,3,3,1,3,4,3,4,1,2,2,3,3,4,3,3,2,3,,7,5,,,
|
||||
3/1/22 16:13,3/1/22 16:35,0,108.49.219.202,100,1305,1,2022-03-01T16:35:0,R_2rtRj3ajQOiMpK9,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,2,2,5,4,3,4,3,3,3,2,2,2,2,3,1,2,5,4,4,4,4,4,2,3,3,3,2,2,2,3,2,4,1,2,2,1,3,3,1,3,2,4,3,3,3,2,2,3,4,2,2,2,2,2,4,2,2,2,3,3,3,4,4,3,3,3,3,,5,4,,,
|
||||
3/1/22 15:48,3/1/22 15:56,0,96.252.99.186,100,498,1,2022-03-01T15:56:32,R_81FUFkUXx7wwFRn,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,2,4,2,3,1,4,4,4,3,3,2,2,2,3,2,3,3,1,3,4,2,2,3,3,3,4,3,4,4,5,3,4,3,3,3,3,5,4,3,4,4,4,4,5,4,3,4,2,3,4,2,4,4,2,4,4,4,5,4,4,4,3,4,4,5,4,5,,7,4,,,
|
||||
3/1/22 14:56,3/1/22 15:10,0,108.49.219.202,100,826,1,2022-03-01T15:10:31,R_2dDV7h5lIlkux2E,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,5,5,5,4,3,5,5,5,5,2,2,2,3,4,2,4,5,5,5,5,4,4,5,5,4,4,4,4,4,5,4,4,3,3,3,2,4,5,2,3,3,4,5,4,4,4,4,3,5,5,3,3,3,4,4,4,4,3,3,3,3,5,4,3,3,3,4,,8,6,,,
|
||||
3/1/22 15:40,3/1/22 16:41,0,96.252.99.186,100,3687,1,2022-03-01T16:41:45,R_37PS5WiIyaXuVvb,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,5,4,2,5,3,2,4,4,4,4,2,1,2,2,4,4,4,2,3,3,3,3,3,2,3,4,3,4,3,3,3,3,5,5,5,4,3,4,3,2,3,3,4,4,5,3,3,3,3,3,4,3,2,2,2,3,2,3,5,4,3,3,3,3,3,5,4,5,,,,,,
|
||||
3/1/22 15:43,3/1/22 16:48,0,96.252.99.186,100,3931,1,2022-03-01T16:48:54,R_wZVev7P7hfScohj,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,4,4,1,4,3,4,4,1,2,2,2,4,4,4,3,3,3,3,3,3,3,3,4,4,3,3,3,4,3,4,3,3,3,4,5,3,1,3,3,3,3,4,4,5,5,3,4,2,5,4,2,4,4,3,4,4,5,4,3,4,4,3,5,3,5,"There are too many new initiatives, programs, best practices theories being explored and not nearly enough time to implement them well. Give teachers time to do teach and not micromanage and require them to prove that they actually teach.",6,5,,,
|
||||
4/5/22 14:42,4/5/22 14:51,0,96.230.20.18,100,555,1,2022-04-05T14:51:54,R_26ezgJ5bkbhJoCd,42.481,-71.1563,anonymous,EN,6,3440020,4,4,5,4,2,5,3,2,4,4,4,4,3,3,3,2,4,3,3,2,3,3,2,2,2,4,4,4,4,4,4,4,4,4,3,2,2,3,2,3,5,1,2,2,4,3,3,4,4,4,3,5,5,4,3,2,2,2,2,2,3,2,3,3,3,4,3,3,4,4,,6,7,,,
|
||||
3/1/22 15:11,3/1/22 15:19,0,108.49.219.202,100,470,1,2022-03-01T15:19:1,R_sMQTdXlhIUXgLND,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,4,4,3,2,1,4,4,4,3,2,2,2,2,3,2,3,4,4,4,2,2,4,4,4,4,4,4,4,4,4,3,3,2,5,3,4,4,3,2,3,2,2,1,4,3,4,4,3,4,5,4,4,4,3,4,4,2,3,3,3,3,4,3,2,2,3,3,,6,4,,,
|
||||
3/1/22 15:43,3/1/22 15:56,0,96.252.99.186,100,750,1,2022-03-01T15:56:19,R_1eFShm4nREgBFeQ,42.45320129,-71.14279938,anonymous,EN,6,3440505,3,4,4,5,5,5,3,3,3,4,4,4,2,2,2,2,4,5,5,3,3,3,3,3,3,4,3,4,5,4,4,3,4,4,5,4,4,4,3,5,5,1,4,4,4,4,5,4,4,3,3,3,5,4,5,5,4,4,4,5,4,4,3,2,2,2,4,5,4,4,,9,5,,,
|
||||
3/1/22 15:14,3/1/22 15:35,0,108.49.219.202,100,1298,1,2022-03-01T15:35:51,R_2akwrIBx0NMFE1E,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,5,5,5,5,5,2,5,5,5,5,2,2,3,2,5,2,4,4,4,3,4,4,4,4,4,4,4,4,4,3,4,3,4,2,3,3,2,4,4,3,4,3,5,3,4,4,4,3,4,4,5,2,2,1,4,4,3,3,4,4,4,4,4,4,3,3,3,3,,7,7,,,
|
||||
3/1/22 16:14,3/1/22 16:24,0,76.127.195.188,100,600,1,2022-03-01T16:24:10,R_2dWU2D0bsxlVUS0,41.92610168,-71.30110168,anonymous,EN,6,3440305,5,5,5,3,3,2,4,2,5,3,4,5,3,2,2,3,4,3,4,2,3,1,2,2,2,2,3,2,3,3,3,2,4,3,4,3,3,3,4,3,4,2,,,4,4,5,4,4,4,4,4,2,3,3,,4,4,4,4,4,4,4,4,4,5,3,4,3,4,,,,,,
|
||||
4/5/22 14:43,4/5/22 15:05,0,96.230.20.18,100,1322,1,2022-04-05T15:5:48,R_3nTrxGTLkBpdnUy,42.481,-71.1563,anonymous,EN,6,3440020,4,3,4,4,4,5,1,1,4,4,3,4,3,3,3,2,3,2,1,3,2,3,1,2,1,4,4,4,3,4,2,2,3,4,3,3,4,4,2,3,4,3,4,4,4,3,4,3,3,3,3,4,4,3,3,2,4,3,2,4,4,3,3,3,4,3,3,4,5,5,,5,6,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,546,1,2022-03-01T16:22:59,R_2RPbEuxITaBXSEa,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,2,2,3,1,2,5,5,5,5,2,2,3,4,4,3,2,4,5,4,3,3,2,3,3,3,3,4,4,3,4,4,2,3,3,3,3,3,4,2,3,3,4,3,4,4,2,2,2,4,4,4,2,2,4,3,3,3,3,4,4,3,3,3,2,3,3,3,,5,3,,,
|
||||
3/1/22 14:54,3/1/22 15:07,0,173.48.112.218,100,790,1,2022-03-01T15:7:48,R_1jpm3uuBVlmX1QR,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,4,4,4,4,3,5,5,5,4,2,2,3,2,4,5,5,5,5,5,4,4,4,4,4,4,4,4,4,3,4,3,4,4,4,4,4,5,5,2,3,3,5,4,5,4,2,2,2,2,5,3,4,4,4,2,4,4,4,4,4,3,4,4,2,2,3,3,,5,5,,,
|
||||
3/1/22 16:13,3/1/22 16:18,0,108.49.219.202,100,338,1,2022-03-01T16:18:45,R_29hsrWNrLJbDkWK,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,3,3,2,3,2,1,5,3,2,3,3,2,4,1,3,3,4,2,1,1,1,2,1,3,3,4,3,3,3,3,3,2,3,3,2,3,2,3,2,1,2,1,2,3,2,2,3,2,2,2,3,2,2,1,3,2,2,2,4,3,3,3,2,2,2,4,4,3,,6,3,,,
|
||||
3/1/22 15:38,3/1/22 15:51,0,96.252.99.186,100,778,1,2022-03-01T15:51:50,R_3n1m4yNjeWSpVgI,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,4,4,5,4,2,5,5,5,5,3,3,2,2,3,4,4,3,3,3,3,3,3,3,3,4,3,4,4,3,4,4,5,3,3,3,5,5,4,2,5,5,4,5,5,4,3,3,3,4,5,5,4,3,2,4,2,3,5,5,5,4,4,4,2,4,4,5,,8,3,,,
|
||||
3/1/22 16:17,3/1/22 16:29,0,24.61.82.113,100,678,1,2022-03-01T16:29:14,R_Aj60zj4n2LaEsXT,42.41879272,-71.15570068,anonymous,EN,6,3440305,4,4,2,2,2,3,1,1,4,4,4,3,3,3,3,3,4,2,4,4,3,3,3,4,4,3,3,4,3,3,3,3,5,4,5,3,4,3,3,3,1,2,2,2,3,2,5,4,5,5,4,5,4,3,3,3,3,3,3,3,5,5,4,3,3,3,3,4,2,3,,6,4,,,
|
||||
3/1/22 15:00,3/1/22 15:23,0,108.49.219.202,100,1363,1,2022-03-01T15:23:16,R_1g1qZeLqdR4EpcO,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,2,2,2,2,1,5,4,3,5,2,3,3,3,3,,3,2,2,2,2,2,2,,,3,3,4,4,3,3,3,3,4,2,2,3,2,2,2,2,3,4,4,4,4,4,4,3,4,3,3,,,,2,3,3,4,4,4,4,4,4,2,3,,,,8,7,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,511,1,2022-03-01T16:22:9,R_vIgBvJBhhY5HQuB,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,3,5,3,1,3,4,3,5,3,3,4,3,4,2,4,4,4,5,2,3,2,2,2,3,3,3,3,3,3,4,3,3,3,5,4,4,4,2,3,3,3,5,5,4,4,4,4,5,3,3,3,1,3,3,3,2,5,4,4,5,4,4,3,3,3,3,,9,6,,,
|
||||
3/2/22 9:41,3/2/22 9:53,0,96.252.99.186,100,715,1,2022-03-02T9:53:47,R_1GB5OnjdNEK5BM7,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,5,3,5,5,5,5,5,3,2,2,4,4,5,2,1,2,2,3,2,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,4,5,5,5,5,5,5,5,4,5,5,4,4,4,4,4,5,5,5,4,5,4,5,5,5,5,,1,3,,,
|
||||
3/1/22 16:16,3/1/22 16:26,0,74.104.166.77,100,563,1,2022-03-01T16:26:7,R_2B5tD10YDQvoHGV,42.42799377,-71.0617981,anonymous,EN,6,3440305,5,5,5,4,4,4,4,2,5,5,5,5,2,2,2,2,4,3,4,3,3,5,3,4,3,3,3,3,3,4,4,3,4,3,3,5,5,5,5,4,3,2,3,3,4,3,5,4,4,4,3,5,4,3,4,2,3,2,2,3,3,4,3,2,3,3,3,3,3,2,,8,3,,,
|
||||
3/1/22 16:13,3/1/22 16:23,0,108.49.219.202,100,609,1,2022-03-01T16:23:18,R_2P83wYN4WRwFRcl,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,4,2,4,3,1,4,3,3,4,3,4,4,3,4,3,4,2,1,2,3,3,2,2,3,2,3,2,3,2,3,3,3,3,3,3,,5,4,1,2,2,4,4,4,4,5,5,4,4,3,2,2,,3,2,5,3,3,3,3,5,3,3,,,,,,7,5,,,
|
||||
3/1/22 15:44,3/1/22 16:17,0,96.252.99.186,100,1985,1,2022-03-01T16:17:14,R_3M69vfdef2gN3C7,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,2,2,4,3,5,3,3,2,2,2,4,3,4,3,4,3,4,3,3,3,4,4,4,4,4,3,4,3,4,4,4,4,3,4,5,4,4,5,4,4,5,5,2,2,1,2,4,5,5,5,4,4,5,4,5,5,5,4,4,5,3,5,3,4,,8,6,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,546,1,2022-03-01T16:22:28,R_2aFWinmEvnY3YYC,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,2,2,3,1,2,4,4,4,5,2,3,3,2,2,5,2,1,1,1,2,2,1,3,3,3,2,2,2,2,2,3,2,2,3,2,2,3,3,1,2,2,3,1,3,2,3,3,3,2,2,2,2,2,2,4,3,3,2,3,3,3,3,3,3,3,3,3,we need more questions about how the administration treats the faculty,9,5,,,
|
||||
3/1/22 16:13,3/1/22 16:34,0,76.127.234.5,100,1288,1,2022-03-01T16:34:47,R_22KOhsvYt4Fg1HX,42.78259277,-71.10289764,anonymous,EN,6,3440305,5,5,4,3,3,4,4,2,4,4,5,3,3,5,2,3,4,2,3,4,3,2,5,5,3,3,4,4,4,3,4,4,5,5,4,3,2,2,2,4,5,4,4,5,4,4,5,4,4,4,3,5,3,3,2,1,4,4,4,4,5,5,3,3,3,3,4,5,3,5,"Difficult to assess people/areas with which I have little experience. Suggest adding a ""not applicable (NA)"" option.",9,5,,,
|
||||
3/1/22 14:57,3/1/22 15:40,0,108.49.219.202,100,2599,1,2022-03-01T15:40:32,R_1goxudpyZJTAJmu,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,5,5,5,3,3,4,4,4,4,3,4,4,2,4,3,4,2,3,2,1,2,1,3,4,4,4,4,4,4,3,4,3,3,5,4,2,3,5,3,3,2,4,3,4,3,4,4,4,5,5,5,3,2,4,3,4,4,2,3,2,3,4,4,2,3,3,3,,8,6,,,
|
||||
3/1/22 14:57,3/1/22 15:16,0,108.49.219.202,100,1151,1,2022-03-01T15:16:28,R_SVPkTXLatsDwlsB,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,5,4,4,2,3,1,5,4,4,5,3,5,4,4,4,3,4,2,2,3,2,2,2,4,4,4,4,4,4,3,4,4,4,3,4,3,2,3,4,2,2,2,4,4,4,4,4,3,4,4,5,5,5,1,3,4,4,4,3,4,3,4,3,3,2,3,3,3,"It's a challenge to find time in the week to carve out as intervention time & that intervention is on classroom teachers. Social/emotional needs are high this year & seem to have been rising over the past several years; however, we don't have adequate staff to meet those needs with 1 psychologist.",9,8,,,
|
||||
3/1/22 15:49,3/1/22 16:17,0,96.252.99.186,100,1655,1,2022-03-01T16:17:18,R_3p4JSEXdTf1BSyd,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,2,4,3,1,5,4,5,5,3,2,3,3,2,2,4,4,5,4,3,3,3,4,4,4,4,4,4,4,4,3,4,5,5,5,4,5,4,3,4,4,4,4,4,4,5,4,4,4,2,4,2,1,3,4,3,4,5,5,5,3,3,5,4,5,4,5,,6,3,,,
|
||||
3/1/22 15:41,3/1/22 16:06,0,96.252.99.186,100,1506,1,2022-03-01T16:6:25,R_1Q9EUfzHEZ2o9Re,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,2,2,5,1,3,4,5,4,3,2,2,2,1,3,4,3,4,1,3,4,4,3,3,4,3,3,3,3,3,4,4,4,4,3,3,4,5,3,1,2,4,4,4,4,4,3,3,3,1,5,2,2,2,4,4,4,3,5,4,4,3,4,3,3,3,3,3,,5,5,,,
|
||||
3/1/22 15:43,3/1/22 15:58,0,174.242.65.154,100,874,1,2022-03-01T15:58:1,R_1QMbr5yc9TvQy8E,42.37249756,-71.18139648,anonymous,EN,6,3440505,5,5,5,4,4,4,4,2,5,5,5,5,2,2,2,2,5,5,5,4,4,4,4,4,4,3,3,3,4,3,4,4,5,4,5,3,3,3,3,4,3,3,3,3,5,5,5,5,4,4,4,4,2,2,2,2,3,4,2,3,5,5,5,4,4,4,3,4,3,3,We all work very hard to do our best!,8,3,,,
|
||||
3/1/22 14:56,3/1/22 15:20,0,108.49.219.202,100,1418,1,2022-03-01T15:20:29,R_3HHSFqTIJz8630s,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,5,5,4,4,2,5,4,4,4,3,3,4,4,3,3,4,3,3,4,2,3,3,4,3,4,5,4,4,4,4,5,5,2,3,4,2,4,1,1,2,2,4,3,3,3,4,5,4,5,5,5,5,4,4,4,5,5,5,4,4,4,4,5,3,3,3,3,,7,6,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,567,1,2022-03-01T16:22:36,R_2cuyxGaUjnC7KAX,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,5,5,5,4,2,4,3,3,5,4,4,3,3,4,3,1,5,4,3,4,4,5,4,3,4,5,5,3,4,4,4,4,4,1,3,5,5,5,2,2,2,2,3,4,4,5,3,3,3,4,3,2,3,2,5,3,3,3,5,4,3,3,4,5,3,4,3,4,,9,7,,,
|
||||
3/1/22 15:20,3/1/22 15:31,0,108.49.219.202,100,672,1,2022-03-01T15:31:57,R_11XiGbazAmsXh2y,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,3,4,5,4,3,4,4,4,4,4,4,5,5,3,4,2,5,5,3,5,5,4,3,3,5,5,5,4,4,3,2,2,3,3,2,3,5,5,5,5,5,2,4,3,3,3,2,2,3,5,4,3,3,5,5,5,5,4,4,3,2,4,5,3,3,4,5,,8,6,,,
|
||||
4/5/22 14:44,4/5/22 15:06,0,98.229.28.221,100,1364,1,2022-04-05T15:6:46,R_31LOH5WRZCWsDQh,42.3364,-71.0326,anonymous,EN,6,3440020,5,4,5,3,2,5,2,4,4,5,5,5,4,4,3,4,5,4,3,2,4,3,2,2,2,4,5,2,5,4,4,4,3,4,3,3,3,4,2,3,5,2,2,2,4,4,4,4,5,5,5,5,5,4,3,2,4,3,2,3,5,4,4,4,4,4,3,4,3,4,,8,7,,,
|
||||
3/1/22 7:40,3/1/22 7:59,0,108.49.219.202,100,1141,1,2022-03-01T7:59:50,R_2QyBPYSWpYzeJxC,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,2,2,4,2,1,4,4,4,4,3,2,2,2,4,2,4,2,1,2,1,1,1,3,3,3,3,4,4,3,3,3,3,2,4,3,3,3,4,2,3,3,4,2,4,3,3,3,3,4,4,3,3,2,4,2,4,3,4,4,4,4,4,4,1,1,3,3,,9,5,,,
|
||||
3/1/22 15:41,3/1/22 16:51,0,74.104.160.85,100,4174,1,2022-03-01T16:51:17,R_1GOHEaJrIXZtHzG,42.41430664,-71.1765976,anonymous,EN,6,3440505,5,5,5,3,2,5,3,3,5,5,5,5,2,2,2,2,4,4,3,4,5,3,4,4,3,3,3,3,3,3,4,4,3,3,4,3,3,2,3,5,2,3,3,3,5,5,4,4,5,5,5,5,2,3,5,2,3,4,3,4,3,4,3,4,4,4,5,5,5,5,,9,7,,,
|
||||
3/1/22 17:14,3/1/22 17:24,0,73.234.172.77,100,595,1,2022-03-01T17:24:20,R_1QJJvt0QFNdZ7ju,42.373703,-71.12840271,anonymous,EN,6,3440505,5,5,5,4,4,4,3,3,4,4,4,4,3,4,2,3,4,4,4,2,1,1,1,1,1,2,2,4,4,4,4,3,4,3,4,3,3,2,2,3,3,2,3,3,4,4,4,4,4,4,3,4,3,4,4,4,3,4,2,3,5,4,4,5,4,4,3,4,4,5,,6,5,,,
|
||||
3/1/22 16:13,3/1/22 16:23,0,108.49.219.202,100,638,1,2022-03-01T16:23:50,R_RRJLGLKWKjRWBhv,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,2,2,4,2,1,5,5,5,5,3,2,4,3,3,2,3,4,3,4,4,4,2,3,4,4,4,4,4,3,4,4,4,3,3,4,1,4,4,3,4,3,5,5,5,4,4,4,3,5,2,5,4,3,3,4,2,4,5,4,4,4,4,3,3,4,2,2,,8,5,,,
|
||||
3/1/22 14:54,3/1/22 15:08,0,108.49.219.202,100,826,1,2022-03-01T15:8:6,R_1f0NaOkG8A3q0mA,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,3,4,4,4,5,3,1,4,4,3,4,4,3,4,4,3,2,3,2,1,4,2,2,2,4,4,3,4,4,4,3,4,3,3,3,4,3,3,4,5,2,2,5,5,3,4,4,3,4,3,5,4,5,3,1,2,4,3,3,5,5,5,3,5,,2,2,4,4,,8,8,,,
|
||||
4/5/22 14:42,4/5/22 14:53,0,24.34.250.23,100,661,1,2022-04-05T14:53:41,R_11apCp7haj99Qjn,42.4945,-71.0715,anonymous,EN,6,3440020,5,4,4,4,2,5,1,3,4,4,4,3,2,2,2,2,5,3,3,4,5,4,4,4,4,5,5,4,4,4,4,3,4,3,3,2,3,4,2,3,5,2,3,3,4,3,4,4,3,3,3,3,5,2,2,1,4,4,3,3,4,4,4,3,4,4,1,1,3,3,,5,4,,,
|
||||
3/1/22 15:14,3/1/22 16:25,0,108.49.219.202,100,4255,1,2022-03-01T16:25:31,R_2ZTAASgZcVdr7Aj,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,4,5,3,3,2,3,2,4,4,4,4,2,1,2,1,3,3,4,5,5,5,5,5,5,3,3,4,4,4,4,3,4,2,4,2,3,4,3,2,3,2,2,1,4,3,4,3,3,3,3,4,5,4,3,1,3,4,4,4,4,3,3,4,4,4,3,4,3,4,,8,8,,,
|
||||
4/5/22 14:43,4/5/22 15:02,0,96.230.20.18,100,1108,1,2022-04-05T15:2:3,R_3dG7GJ6io88ICKF,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,4,4,4,5,3,2,5,5,5,5,3,2,4,2,4,3,2,4,3,3,1,1,1,4,5,5,4,4,4,4,4,3,3,2,2,3,2,5,4,3,4,3,4,4,4,4,3,4,3,5,4,3,3,1,4,4,3,3,3,3,3,4,3,3,2,3,3,3,,5,5,,,
|
||||
3/1/22 14:53,3/1/22 15:01,0,108.49.219.202,100,501,1,2022-03-01T15:1:29,R_3KrpLEgK0FQUjAS,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,5,5,3,5,2,3,4,4,4,5,3,3,3,3,4,2,3,3,3,3,1,2,1,4,4,4,3,4,4,3,4,4,4,3,5,4,3,3,3,3,2,3,4,4,5,5,4,4,2,5,5,4,2,2,3,3,2,3,5,5,4,4,4,5,3,3,5,5,,8,5,,,
|
||||
3/1/22 14:38,3/1/22 15:30,0,108.49.219.202,100,3120,1,2022-03-01T15:30:30,R_2TMO7rXj0vzqMka,42.48100281,-71.15630341,anonymous,EN,6,3440040,2,3,3,5,5,4,5,4,4,4,4,4,1,3,4,3,3,5,3,2,1,2,2,2,3,4,4,4,4,3,4,4,4,4,4,3,3,2,4,4,5,1,2,2,4,1,4,2,3,4,4,4,5,4,3,4,4,4,4,4,5,4,4,4,4,4,2,2,3,3,,,,,,
|
||||
3/1/22 14:54,3/1/22 15:08,0,108.49.219.202,100,811,1,2022-03-01T15:8:3,R_77FDWzbe7Q5OJnH,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,5,4,4,4,3,2,4,4,4,5,3,2,2,3,2,3,,5,5,5,4,4,4,4,5,4,4,4,4,3,3,3,3,5,2,3,3,3,4,4,3,3,4,3,3,3,5,5,1,2,,,,,4,4,4,4,5,5,5,1,4,4,2,2,3,3,,8,5,,,
|
||||
3/7/22 20:02,3/7/22 20:28,0,73.100.38.104,100,1617,1,2022-03-07T20:28:57,R_Cld8Zu7H77iCjEB,42.55940247,-71.57389832,anonymous,EN,6,3440045,5,5,5,4,3,5,4,2,5,5,5,5,3,3,4,4,5,4,5,5,5,5,4,5,4,5,4,3,4,4,3,3,4,3,3,5,5,5,3,4,4,2,2,2,5,4,5,5,5,5,4,5,5,4,3,1,1,3,3,3,5,4,4,4,4,4,2,3,4,4,,9,6,,,
|
||||
3/1/22 15:43,3/1/22 15:52,0,96.252.99.186,100,579,1,2022-03-01T15:52:50,R_3KZ1IOUkT0IqJIz,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,3,3,4,2,1,4,4,4,5,1,2,2,1,3,2,2,3,2,3,2,3,4,3,3,4,4,4,4,4,3,2,4,4,3,3,3,4,4,3,3,4,4,4,5,4,5,4,3,4,2,5,4,2,1,3,2,3,4,4,4,4,3,4,3,4,3,5,,4,3,,,
|
||||
3/1/22 15:45,3/1/22 15:58,0,75.69.239.158,100,784,1,2022-03-01T15:58:11,R_sXSDJHaid22beH7,42.81329346,-70.88140106,anonymous,EN,6,3440505,5,5,4,4,4,4,4,2,5,4,4,4,4,3,2,3,4,4,4,2,1,1,2,3,2,4,3,4,3,3,3,3,4,4,4,4,4,2,4,4,3,5,5,5,5,4,5,4,3,3,3,3,2,2,2,1,3,3,3,3,3,4,4,4,4,5,5,5,5,5,,,,,,
|
||||
3/1/22 14:56,3/1/22 15:20,0,108.49.219.202,100,1438,1,2022-03-01T15:20:1,R_3fQ7B3ojAwkdSIt,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,5,5,3,2,5,5,5,5,2,1,2,2,5,4,5,4,4,4,4,4,3,4,5,4,4,4,3,3,4,3,4,2,2,3,1,4,4,2,2,2,5,3,4,3,4,4,4,4,5,4,4,2,4,4,3,5,3,3,3,3,4,4,3,3,4,5,,8,5,,,
|
||||
3/1/22 15:44,3/1/22 15:56,0,96.252.99.186,100,739,1,2022-03-01T15:56:33,R_9XH0Tq9HRk5YrCx,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,4,4,5,4,5,5,1,1,2,2,5,3,4,2,1,3,2,2,2,3,3,3,4,4,4,4,3,3,3,3,3,3,3,4,3,3,3,2,3,4,4,4,2,2,2,2,3,5,5,4,2,2,3,3,4,4,3,3,3,3,3,4,4,5,,8,5,,,
|
||||
3/1/22 15:27,3/1/22 15:54,0,108.49.219.202,100,1622,1,2022-03-01T15:54:42,R_3QPZ1GuV4lNGxfL,42.48100281,-71.15630341,anonymous,EN,6,3440005,3,3,4,3,3,5,2,5,4,4,4,4,1,2,2,1,4,2,3,1,1,2,1,1,1,3,3,3,2,2,2,2,3,3,3,2,3,3,2,4,3,1,2,2,4,3,4,3,2,3,3,3,5,4,4,5,2,3,3,3,3,4,4,1,3,3,1,3,3,3,The culture is unhappy at our school. We do not feel we have any leadership.,8,7,,,
|
||||
3/1/22 16:54,3/1/22 17:17,0,108.49.219.202,100,1393,1,2022-03-01T17:17:57,R_2ahsnf0BY5ra8FH,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,2,4,1,1,5,4,4,5,3,3,3,3,4,4,2,2,2,1,3,3,2,3,3,3,3,4,4,3,4,3,4,3,3,3,3,4,4,1,4,3,3,4,5,5,5,5,5,5,3,4,4,2,4,4,4,4,5,4,4,4,4,4,3,5,3,5,I think my school has a greater than typical level of staff turnover. This is partially due to low morale in the building and a perceived lack of support from administrators. There is also a lack of support for young teachers (the tendency is to dismiss staff rather than help them grow as educators),7,5,,,
|
||||
4/5/22 14:36,4/5/22 14:55,0,96.230.20.18,100,1124,1,2022-04-05T14:55:40,R_3NIeXoFgKbedVwk,42.481,-71.1563,anonymous,EN,6,3440020,5,4,4,3,3,5,3,2,4,4,3,3,1,2,3,1,3,2,2,2,2,1,1,1,1,3,3,3,3,4,3,3,3,3,3,3,4,4,2,4,4,1,2,1,3,3,3,3,4,4,3,4,5,3,4,4,5,3,3,4,2,3,3,4,4,4,1,1,3,3,Our school has not had strong leadership in the past number of years and it is affecting the culture in a significant way. ,9,6,,,
|
||||
4/5/22 14:42,4/5/22 14:49,0,96.230.20.18,100,435,1,2022-04-05T14:49:56,R_1NyoA3GocR0bGqP,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,4,3,5,3,3,4,4,4,4,3,3,3,3,4,2,3,1,1,1,1,1,1,5,4,5,5,4,5,4,4,3,4,3,5,5,2,4,4,3,3,3,4,4,4,4,5,4,4,5,5,4,4,3,4,4,2,4,4,4,4,4,4,4,3,3,3,3,,7,5,,,
|
||||
3/1/22 17:18,3/1/22 17:28,0,173.48.229.237,100,594,1,2022-03-01T17:28:49,R_3Ej6ApAfwDefAi9,42.52780151,-71.10399628,anonymous,EN,6,3440305,5,5,,4,4,3,1,3,5,5,5,4,3,4,3,3,4,1,5,3,1,4,3,1,2,3,3,3,4,4,4,,5,4,4,4,4,4,2,4,5,2,4,5,4,5,5,5,4,4,2,4,3,5,4,1,5,4,4,4,5,4,4,4,4,4,3,4,3,3,,8,5,,,
|
||||
3/1/22 15:14,3/1/22 15:28,0,96.252.99.186,100,851,1,2022-03-01T15:28:55,R_1Gyo6alhrtWti0r,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,3,4,2,2,5,4,5,2,2,2,1,2,4,4,4,5,3,2,2,3,2,4,2,4,3,4,4,4,4,3,5,3,3,3,2,5,3,3,3,4,4,4,5,3,1,1,2,2,5,3,4,2,2,3,2,3,5,4,4,3,3,3,3,3,3,3,,3,5,,,
|
||||
3/2/22 13:07,3/2/22 13:14,0,108.49.219.202,100,396,1,2022-03-02T13:14:24,R_1rH1jMza4WasJ3M,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,3,5,3,2,5,5,5,5,4,4,4,4,4,4,4,2,1,1,2,2,1,3,3,3,4,4,4,4,4,5,4,4,5,5,3,5,5,1,4,4,4,5,5,4,5,5,5,5,3,4,4,3,4,4,3,4,4,5,4,3,3,5,3,3,3,3,,7,5,,,
|
||||
3/1/22 14:55,3/1/22 15:16,0,108.49.219.202,100,1208,1,2022-03-01T15:16:4,R_2w7z1vU76OqwXQx,42.48100281,-71.15630341,anonymous,EN,6,3440040,3,3,5,5,4,5,4,2,5,5,5,5,1,1,2,3,2,5,4,3,4,4,1,2,2,5,4,4,4,3,4,4,4,4,3,2,2,2,2,3,5,2,5,3,4,2,4,2,2,3,3,3,3,3,4,2,2,3,3,3,2,4,4,4,3,3,3,3,3,4,,5,5,,,
|
||||
3/1/22 14:53,3/1/22 15:16,0,108.49.219.202,100,1362,1,2022-03-01T15:16:5,R_2dKMZT350LCBz50,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,3,3,3,3,3,5,5,4,5,1,2,3,3,4,3,3,4,5,5,4,4,4,,4,4,4,4,4,4,4,2,2,4,4,2,3,4,5,2,2,2,4,4,4,4,5,4,4,5,5,4,4,1,4,,,4,4,4,3,3,4,4,1,1,2,2,,7,6,,,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,545,1,2022-03-01T16:22:14,R_2QJlSbwZu0csuNP,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,2,2,5,1,4,4,4,4,4,3,3,2,2,3,4,3,4,2,5,4,4,3,3,3,4,4,4,4,4,4,3,3,1,1,3,1,4,5,1,4,4,5,4,5,5,4,4,4,5,4,3,3,2,5,4,5,4,5,5,4,3,4,4,3,3,3,3,,7,7,,,
|
||||
3/1/22 16:13,3/8/22 15:55,0,108.49.219.202,73,603696,0,2022-03-15T16:55:35,R_1r38a12KIjH7xDx,,,anonymous,EN,6,3440305,,,,5,4,5,3,2,5,5,5,5,3,3,3,1,4,4,4,1,1,3,,,,,,,3,3,3,3,4,3,4,,,,,,3,2,4,3,,,,,5,5,3,5,5,4,3,1,3,3,5,4,3,3,3,4,4,4,2,4,3,3,,,,,,
|
||||
3/1/22 16:14,3/1/22 16:23,0,108.49.219.202,100,536,1,2022-03-01T16:23:7,R_1eXH9prAqrOem7Y,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,5,3,2,2,1,1,5,4,4,4,3,3,3,3,3,2,1,3,3,3,3,3,3,3,3,5,4,4,4,4,4,3,3,3,2,2,1,3,2,4,1,1,5,3,3,3,5,5,5,4,4,4,4,5,3,3,3,3,5,5,5,3,3,3,2,3,3,5,,6,3,,,
|
||||
4/5/22 14:42,4/5/22 14:51,0,96.230.20.18,100,521,1,2022-04-05T14:51:31,R_3DeopoUydcQ8dix,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,4,4,5,4,1,5,5,5,5,5,5,4,4,5,3,5,1,4,1,2,2,2,4,5,4,5,5,4,3,4,4,4,4,3,4,1,3,5,2,4,4,5,4,5,4,5,5,5,5,5,4,5,3,5,4,5,4,3,4,4,4,4,5,3,3,3,3,,8,8,,,
|
||||
4/5/22 14:44,4/5/22 14:54,0,107.77.225.125,100,613,1,2022-04-05T14:54:50,R_1FskZHdGoMT2euF,40.738,-73.9858,anonymous,EN,6,3440020,4,4,4,4,4,5,1,2,4,4,3,4,3,3,4,3,3,3,4,1,1,1,1,1,1,4,4,4,4,3,4,3,3,1,3,1,2,2,1,1,3,1,3,3,4,2,4,3,3,4,4,4,5,3,3,2,4,3,2,2,3,4,4,3,4,4,2,3,2,3,,7,5,,,
|
||||
4/5/22 14:44,4/5/22 14:55,0,96.230.20.18,100,716,1,2022-04-05T14:55:59,R_2YVsCarAmNVVKvn,42.481,-71.1563,anonymous,EN,6,3440020,5,5,5,3,3,5,3,1,5,4,4,4,3,1,3,2,4,3,2,1,4,2,1,1,1,5,5,4,4,4,4,4,3,2,3,3,4,3,3,2,4,2,1,2,4,2,4,3,3,3,3,4,3,3,2,1,4,3,1,3,3,3,3,3,3,3,2,3,3,3,,8,5,,,
|
||||
4/5/22 14:43,4/5/22 14:52,0,96.230.20.18,100,550,1,2022-04-05T14:52:44,R_s6wlvyQUM7iDC3n,42.481,-71.1563,anonymous,EN,6,3440020,5,4,5,4,3,4,2,1,4,4,4,4,2,2,2,2,2,1,2,2,2,2,2,2,2,5,5,4,2,3,3,3,2,4,2,2,2,3,2,3,4,1,1,4,2,1,3,2,3,2,2,3,5,2,2,1,4,1,,2,3,3,3,2,1,2,2,2,4,4,,6,4,,,
|
||||
3/1/22 16:13,3/2/22 9:33,0,108.49.219.202,100,62445,1,2022-03-02T9:33:57,R_2xy2mnMExqGjskF,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,2,2,1,1,4,3,5,3,1,1,1,1,4,2,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,2,3,3,2,2,3,4,4,1,3,2,5,4,5,3,2,1,1,2,2,2,3,1,3,3,2,3,4,4,3,3,2,4,3,3,3,3,,9,5,,,
|
||||
4/5/22 14:43,4/5/22 14:51,0,96.230.20.18,100,472,1,2022-04-05T14:51:5,R_2rIsUhPgdMNeoc7,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,3,3,3,3,1,5,5,5,5,3,3,3,3,5,3,3,4,5,5,5,5,5,3,3,4,4,4,4,3,4,4,4,2,3,3,1,2,4,1,2,2,5,4,5,5,4,4,4,4,5,3,5,2,5,4,4,4,4,4,4,4,5,5,2,2,2,3,"I fully support the efforts of my principal and I feel as though she has not been given a fair chance and my colleagues have been extremely rude, unfair, and disrespectful to her. ",7,,,,
|
||||
3/1/22 15:51,3/1/22 16:01,0,108.49.234.56,100,555,1,2022-03-01T16:1:1,R_qUWcTSvB04oGzvP,42.55110168,-71.2559967,anonymous,EN,6,3440505,5,5,4,5,5,5,4,2,5,4,4,4,3,4,4,3,4,4,4,2,1,3,3,2,1,2,2,4,4,4,4,3,5,5,5,4,4,4,4,5,3,1,4,4,5,4,2,5,2,2,2,4,4,4,4,4,4,4,1,3,5,5,5,4,4,4,3,5,3,5,,8,8,,,
|
||||
3/1/22 14:57,3/1/22 15:14,0,108.49.219.202,100,993,1,2022-03-01T15:14:14,R_2dgvGaeVECNISXW,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,5,5,5,5,5,1,5,4,5,5,1,2,4,2,4,4,4,4,3,2,2,3,3,4,4,3,4,4,4,3,3,3,3,3,2,1,1,4,4,2,4,4,3,3,4,1,4,3,3,3,5,3,3,1,4,4,2,4,4,4,4,3,3,3,1,2,3,4,,2,,,,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,503,1,2022-03-01T16:21:38,R_wMfIyGgzvNzO82l,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,4,4,3,2,4,4,4,4,4,3,3,3,4,3,3,1,1,2,1,1,1,2,2,3,2,2,2,2,3,2,1,4,3,3,2,2,2,1,1,2,4,4,4,4,4,4,4,4,3,2,2,2,2,2,1,1,2,3,3,4,4,4,2,3,2,3,,7,4,,,
|
||||
3/1/22 16:13,3/1/22 16:26,0,108.49.219.202,100,752,1,2022-03-01T16:26:17,R_1myNRnTBwm706Rp,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,3,5,1,1,4,4,4,4,1,1,1,3,3,3,3,4,4,4,4,4,3,3,3,3,4,3,3,3,4,3,3,1,5,5,5,5,2,1,3,3,4,2,4,4,3,3,3,4,2,3,3,1,4,2,2,2,5,4,4,4,4,3,3,4,3,3,,9,5,,,
|
||||
4/5/22 14:42,4/5/22 14:55,0,96.230.20.18,100,753,1,2022-04-05T14:55:25,R_30qxvuIadjw8LkI,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,4,2,4,2,1,5,5,5,5,2,1,2,1,2,2,3,4,4,4,3,3,2,4,4,4,3,3,4,4,3,4,3,3,5,5,1,2,4,2,3,4,4,4,4,4,5,4,3,5,5,2,5,1,4,3,3,3,3,3,4,3,3,4,3,3,3,4,I'm concerned with how much parents dictate programs during and after school.,6,3,,,
|
||||
3/1/22 15:39,3/1/22 16:07,0,96.252.99.186,100,1687,1,2022-03-01T16:7:18,R_1IHuHkqPbHMmztP,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,2,2,2,2,5,4,5,3,2,2,2,3,4,2,2,4,2,3,2,3,2,5,4,4,4,4,4,4,4,2,4,3,3,4,2,5,4,2,4,2,4,4,5,4,1,1,1,2,2,3,2,1,4,4,2,4,4,4,4,3,4,2,3,4,3,5,,2,3,,,
|
||||
3/1/22 16:13,3/1/22 16:28,0,108.49.219.202,100,896,1,2022-03-01T16:28:34,R_RQPXnt4ZxjoUht7,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,2,2,5,1,2,5,4,5,5,2,2,2,2,3,3,2,1,1,1,1,1,1,3,4,3,4,4,4,3,3,3,3,1,2,1,1,2,3,2,3,3,4,3,4,4,4,3,4,4,3,2,2,2,3,3,2,3,3,3,3,4,4,5,3,3,1,3,,8,5,,,
|
||||
3/2/22 6:37,3/2/22 7:10,0,108.49.219.202,100,1999,1,2022-03-02T7:10:26,R_2SeEu7B5NGZBUsk,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,2,2,2,1,1,4,4,4,5,2,2,1,1,4,3,2,1,1,3,1,3,2,3,3,3,3,3,3,3,2,2,1,1,4,4,2,3,2,1,1,1,4,4,4,4,1,2,2,3,3,1,4,1,4,4,3,3,3,3,3,1,3,3,3,3,3,4,,9,3,,,
|
||||
4/5/22 14:43,4/5/22 14:53,0,96.230.20.18,100,589,1,2022-04-05T14:53:17,R_XMMiqZeRnLIQnLP,42.4532,-71.1428,anonymous,EN,6,3440020,4,3,5,3,2,2,4,1,4,4,4,4,2,1,2,2,3,1,1,1,4,2,1,1,1,3,4,4,4,3,4,3,4,4,3,2,2,1,1,3,1,2,2,3,4,3,4,4,2,3,4,4,5,3,3,1,4,4,3,4,3,3,3,1,3,3,1,1,2,2,,7,5,,,
|
||||
4/5/22 14:45,4/5/22 14:54,0,107.77.224.10,100,582,1,2022-04-05T14:54:50,R_1LFOH8S09qSW8DK,40.6627,-73.9138,anonymous,EN,6,3440020,5,5,5,5,4,5,5,5,5,5,5,5,4,,4,3,5,1,3,1,3,1,2,2,1,3,3,4,5,5,5,5,5,4,5,4,4,4,2,2,5,2,3,3,4,4,5,5,4,4,4,4,5,5,5,5,4,4,4,5,3,4,4,4,5,4,2,2,3,4,,,,,,
|
||||
3/1/22 11:27,3/1/22 11:35,0,108.49.219.202,100,483,1,2022-03-01T11:35:6,R_31tNrDszFHJzDvP,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,5,5,4,4,4,5,4,3,4,2,2,2,1,5,5,5,4,5,5,5,5,5,5,5,4,4,4,4,4,3,3,2,4,3,3,3,5,3,2,1,2,5,4,5,5,3,3,2,2,5,3,2,1,5,5,2,5,5,4,4,3,4,4,3,3,4,4,,6,5,,,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,440,1,2022-03-01T16:20:31,R_1eDeiug11sFHHI8,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,5,5,5,4,2,5,5,5,5,3,3,2,2,3,3,3,3,2,3,3,3,2,4,4,4,3,2,3,3,4,4,3,2,2,2,2,3,3,2,2,2,5,5,5,4,5,5,5,5,5,2,2,1,2,3,3,4,5,5,4,3,3,3,2,2,2,2,,9,,,,
|
||||
3/1/22 15:43,3/1/22 15:51,0,96.252.99.186,100,475,1,2022-03-01T15:51:19,R_BzTP5ZOOZFd7o1r,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,2,3,1,1,4,4,4,5,1,4,1,1,2,3,3,2,4,2,3,3,2,4,4,4,4,4,4,4,3,2,4,3,3,4,1,5,2,5,2,2,2,4,4,3,2,1,1,1,4,4,3,2,4,4,4,4,5,4,4,4,3,4,3,4,3,4,,,,,,
|
||||
3/1/22 16:15,3/1/22 16:36,0,108.49.219.202,100,1252,1,2022-03-01T16:36:42,R_3RxuXtm5lGPhIZl,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,4,5,1,2,5,5,5,5,3,3,2,3,3,3,4,2,2,2,1,2,1,4,4,5,4,4,4,4,2,4,1,1,2,3,3,3,4,2,,3,1,4,4,3,4,4,4,4,3,4,4,3,2,3,1,2,5,4,4,4,3,3,2,2,2,2,"Classroom teachers are rarely given the opportunity to contribute to major school decisions- all top-down.
|
||||
We have a ""gotcha"" evaluation system- evaluators look for things to ding you on while overlooking the positive aspects of your lesson/teaching.
|
||||
We have a terrible staff retention rate!
|
||||
",7,3,,,
|
||||
3/2/22 10:24,3/3/22 13:22,0,108.49.219.202,100,97098,1,2022-03-03T13:22:40,R_2QRmo6ZSYY86syC,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,5,2,1,2,1,1,5,5,5,4,1,1,1,1,5,5,1,3,1,1,3,3,2,2,2,1,2,2,2,1,2,2,3,3,2,3,1,1,3,3,2,3,2,3,2,3,3,2,4,5,1,2,2,2,3,2,1,2,3,2,2,4,4,3,1,3,1,3,,7,7,,,
|
||||
3/1/22 16:14,3/1/22 16:20,0,108.49.219.202,100,379,1,2022-03-01T16:20:29,R_24wl7pqCpvLN8Yy,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,2,2,5,2,1,5,5,5,5,2,2,3,4,2,1,2,4,3,5,3,3,3,4,5,4,4,5,5,5,3,3,3,3,4,3,3,5,2,2,1,1,3,4,4,3,3,3,3,2,2,4,4,3,2,2,4,3,5,5,5,4,4,5,5,5,3,4,,9,4,,,
|
||||
3/1/22 15:31,3/1/22 15:38,0,96.252.99.186,100,430,1,2022-03-01T15:38:57,R_tRHOdN2ZWoKwNQR,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,5,2,5,1,1,4,5,5,4,1,1,2,2,5,3,3,1,1,1,1,1,1,3,4,3,3,4,4,3,3,3,4,3,3,3,5,5,3,3,3,3,3,3,4,3,2,2,3,3,2,2,3,1,1,3,2,2,3,3,3,3,3,3,4,5,4,4,,5,5,,,
|
||||
4/5/22 18:47,4/5/22 18:57,0,71.174.112.229,100,616,1,2022-04-05T18:57:30,R_3DcDGg0KD9v8sEX,42.5575,-71.1736,anonymous,EN,6,3440020,5,5,5,4,4,2,3,2,5,5,5,4,3,2,3,2,5,2,4,1,4,1,1,1,1,4,5,3,4,4,4,3,3,3,3,3,3,2,1,2,5,1,3,4,5,3,4,4,4,4,4,5,5,4,3,3,5,4,2,5,4,4,4,2,3,4,1,2,3,4,"I just want to clarify that my responses were based on my experiences with our principal who is on leave, not our acting interim principal. The well-being of staff has not been made a priority until somewhat recently.",9,4,,,
|
||||
3/1/22 16:13,3/1/22 16:23,0,108.49.233.12,100,645,1,2022-03-01T16:23:58,R_2TYwG3XDq83Fbr4,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,4,,2,2,1,1,5,5,4,4,2,2,,1,2,1,2,1,1,1,1,1,1,4,4,4,3,3,3,3,2,2,2,3,3,3,3,4,3,1,4,4,4,3,4,4,,,,,,,,,2,2,2,2,5,4,4,,,,,,2,,,5,3,,,
|
||||
3/1/22 18:22,3/1/22 18:49,0,73.143.71.194,100,1622,1,2022-03-01T18:49:31,R_pL4roW1xPGfTwYN,42.52780151,-71.10399628,anonymous,EN,6,3440305,5,5,5,4,2,3,1,1,5,4,4,3,2,1,1,2,4,3,4,1,1,1,1,1,1,3,3,3,4,5,4,3,3,2,2,3,3,1,1,4,2,2,4,3,5,4,3,4,1,1,1,1,3,4,5,1,3,1,3,3,3,3,3,2,3,4,3,4,2,3,Morale is horrible. Principal sits in his office with the door shut. He is not interested in discussions. He dislikes the town. He constantly tells us how out of place he feels in Winchester. This impacts his leadership of the school. He is rude and does not ever speak to the staff.,9,5,,,
|
||||
4/5/22 14:43,4/5/22 14:55,0,96.230.20.18,100,738,1,2022-04-05T14:55:57,R_1OxfutmNfLVfKaU,42.4532,-71.1428,anonymous,EN,6,3440020,5,3,5,5,2,5,1,2,5,5,4,5,1,1,2,1,4,2,1,1,1,1,1,1,1,3,3,2,3,2,3,3,2,2,2,2,3,1,1,4,2,1,1,1,4,2,3,2,4,5,5,5,5,2,2,2,3,3,1,2,1,4,2,3,2,4,3,3,4,4,,6,5,,,
|
||||
3/1/22 18:21,3/1/22 18:29,0,146.115.124.118,100,466,1,2022-03-01T18:29:13,R_21c9SamQaWCMQfg,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,3,4,2,1,5,5,5,5,1,1,1,1,3,1,1,1,1,1,1,1,1,3,3,3,3,4,3,3,5,2,4,1,1,1,2,3,2,1,2,2,5,4,5,5,3,2,2,3,3,1,1,1,5,3,3,3,5,5,5,1,3,4,4,4,4,4,,7,5,,,
|
||||
3/1/22 16:13,3/1/22 16:23,0,108.20.118.207,100,639,1,2022-03-01T16:23:47,R_2s0CEeuFEJgfI3P,42.52780151,-71.10399628,anonymous,EN,6,3440305,5,5,5,2,2,5,1,1,5,5,5,5,1,3,1,1,2,1,5,1,1,1,1,1,1,3,3,3,2,2,2,2,1,1,1,1,3,1,1,3,1,1,1,1,5,1,1,1,5,3,3,5,5,4,3,3,1,1,1,1,3,4,3,1,1,3,1,1,2,2,,9,9,,,
|
||||
3/1/22 14:55,3/1/22 15:01,0,172.58.222.206,100,363,1,2022-03-01T15:1:59,R_3vD4TMuIUeFUehb,42.29029846,-71.07980347,anonymous,EN,6,3440040,3,4,4,3,3,5,5,3,4,5,4,4,4,4,5,5,3,3,4,4,4,3,3,3,3,4,4,4,4,4,5,4,5,4,4,3,3,3,3,2,4,3,4,4,,,,,3,3,3,3,2,2,2,2,4,4,3,2,,,,3,3,3,2,3,2,3,,9,6,,7,
|
||||
3/1/22 16:14,3/1/22 16:20,0,108.49.219.202,40,369,0,2022-03-08T16:20:16,R_WkBVrv9XofDTRhD,,,anonymous,EN,6,3440305,3,3,4,3,4,3,3,3,,,,,,,,,3,3,3,,,,3,3,3,,,,3,3,3,3,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,3,,,,,,,,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,410,1,2022-03-01T16:20:23,R_1CHhLkEfDaFm3XG,42.48100281,-71.15630341,anonymous,EN,6,3440305,3,4,4,3,3,5,5,2,3,4,5,3,2,2,4,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,,,,,3,3,3,3,3,3,3,3,2,2,4,4,,,,3,3,3,3,3,3,,Survey is too long,,,,,Survey way too long
|
||||
3/1/22 20:23,3/1/22 20:30,0,100.0.191.194,100,417,1,2022-03-01T20:30:12,R_3lK7eCYemXN2CrD,42.49450684,-71.07150269,anonymous,EN,6,3440505,4,3,4,3,2,2,2,3,4,3,3,3,2,3,4,3,3,4,4,1,1,1,1,3,3,2,2,4,4,3,4,3,3,4,3,3,2,3,3,4,4,2,3,3,,,,,3,3,3,3,1,5,5,4,1,1,1,2,,,,3,2,2,3,3,2,5,,4,6,,4,
|
||||
3/1/22 16:13,3/1/22 16:20,0,73.89.103.226,100,433,1,2022-03-01T16:20:25,R_3n8luwo21LNu13a,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,2,2,3,4,2,4,3,4,3,3,3,3,3,4,4,4,3,3,3,3,3,3,2,3,3,3,4,3,3,4,4,3,3,3,3,3,2,5,3,3,3,,,,,4,3,3,3,1,4,3,1,3,3,3,3,,,,3,3,3,3,4,2,4,,8,5,,5,
|
||||
3/1/22 19:49,3/1/22 19:57,0,172.58.221.241,79,445,0,2022-03-08T19:57:28,R_2bUff4yQAjChCDV,,,anonymous,EN,6,3440305,4,4,4,4,4,2,3,2,4,3,4,5,3,3,3,2,3,4,3,,,,3,3,3,3,3,4,4,3,4,3,3,3,2,2,2,3,2,2,,,,,,,,,3,4,4,3,,,,,3,3,2,4,,,,3,3,3,3,4,3,3,,,,,,
|
||||
3/2/22 12:13,3/2/22 12:21,0,108.49.219.202,100,467,1,2022-03-02T12:21:29,R_xls2aJPaHzmT69z,42.48100281,-71.15630341,anonymous,EN,6,3440305,,,,4,5,3,4,3,2,1,1,,1,1,1,1,4,3,4,1,1,1,1,1,1,4,5,5,4,,5,5,3,1,1,1,2,2,3,3,2,1,4,3,,,,,1,1,1,1,4,4,4,4,3,3,3,3,,,,,,,,,,,,,,,,
|
||||
3/1/22 16:14,3/1/22 16:22,0,108.49.219.202,100,474,1,2022-03-01T16:22:3,R_3Db9B5fp5iaE9jl,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,3,4,3,1,4,4,4,4,2,2,1,2,4,4,4,3,3,3,4,4,2,4,4,4,4,4,4,4,4,4,4,2,3,3,3,4,4,3,3,4,,,,,4,4,4,4,1,3,3,3,4,4,3,4,,,,3,4,4,3,3,3,3,,4,4,,3,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,501,1,2022-03-01T16:21:52,R_3PMLB3z26hqj5Sr,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,3,4,3,3,5,5,5,5,1,1,1,1,3,3,3,1,1,1,1,1,1,3,3,3,3,3,3,3,1,1,1,3,2,3,3,1,3,3,3,3,,,,,5,5,5,5,3,3,3,2,3,3,3,3,,,,3,3,3,3,3,3,3,There is a huge disconnect between the principal and the rest of the staff.,,,,,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,505,1,2022-03-01T16:21:37,R_28PcsubolTUPiOE,42.48100281,-71.15630341,anonymous,EN,6,3440305,2,4,4,3,4,4,2,4,4,4,4,3,2,2,2,2,3,3,3,3,1,2,3,3,3,3,3,4,3,3,4,3,3,3,3,2,2,2,3,3,2,3,2,2,,,,,2,2,2,2,1,3,3,3,4,4,3,4,,,,3,3,3,3,4,3,4,,9,5,,2,
|
||||
3/1/22 16:13,3/1/22 16:21,0,108.49.219.202,100,509,1,2022-03-01T16:21:31,R_3FJYp9bmfRRutyE,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,4,4,5,2,2,4,4,4,5,2,2,2,2,2,3,2,3,2,3,2,3,2,4,4,4,3,2,3,3,2,2,1,2,2,2,2,3,5,2,3,3,,,,,3,3,3,5,1,4,4,2,3,3,3,2,,,,4,3,3,3,3,2,3,N/A,5,5,,4,
|
||||
4/5/22 14:43,4/5/22 14:52,0,96.230.20.18,100,510,1,2022-04-05T14:52:10,R_pipttIi6VYEMSEF,42.4532,-71.1428,anonymous,EN,6,3440020,4,5,5,4,4,5,4,3,4,4,4,5,3,4,4,4,4,4,4,2,2,2,2,2,2,3,3,3,4,4,4,4,3,2,3,1,3,3,2,3,4,3,4,4,,,,,4,4,4,5,2,4,3,3,3,4,2,4,,,,3,3,3,1,3,3,3,,7,3,,5,
|
||||
3/1/22 15:47,3/1/22 15:56,0,96.252.99.186,100,523,1,2022-03-01T15:56:32,R_27go9uGhO2GmkNM,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,5,5,4,5,5,5,5,5,4,3,3,3,3,,,4,4,4,4,3,2,3,4,4,3,3,4,3,4,3,4,4,4,5,5,5,4,2,4,4,,,,,5,5,5,5,1,5,5,3,,,,,,,,4,4,4,3,5,4,5,,,,,,
|
||||
3/1/22 16:17,3/1/22 16:26,0,108.49.219.202,100,525,1,2022-03-01T16:26:17,R_1K9dogHIRhOqRLS,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,5,4,4,3,2,4,3,3,3,2,1,1,2,5,3,4,3,2,5,4,3,3,2,3,3,4,3,3,3,3,3,4,3,3,4,1,5,5,2,4,4,,,,,4,4,2,4,5,4,5,4,3,3,3,3,,,,3,2,3,3,3,3,3,,7,5,,2,
|
||||
3/1/22 16:12,3/1/22 16:22,0,96.252.99.186,100,548,1,2022-03-01T16:22:6,R_1jr2e0SVjfU70mP,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,5,4,4,3,4,4,5,5,5,4,4,4,4,3,4,4,5,4,5,5,5,5,5,5,5,4,5,4,4,4,4,4,4,4,4,5,5,4,5,5,,,,,4,4,4,5,1,,,2,5,3,3,4,,,,4,4,4,4,5,5,5,,8,6,,6,
|
||||
3/1/22 15:03,3/1/22 15:12,0,108.49.219.202,100,562,1,2022-03-01T15:12:42,R_SC2V7L1BxNJFKU1,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,5,5,5,5,5,5,5,4,4,4,3,3,3,2,5,5,5,5,5,5,5,5,5,3,4,4,5,5,5,4,4,3,4,4,3,3,2,4,5,5,5,5,,,,,5,5,5,5,5,4,4,3,5,5,5,5,,,,4,4,4,3,3,2,3,,9,9,,5,
|
||||
3/1/22 14:54,3/1/22 15:04,0,108.49.219.202,100,565,1,2022-03-01T15:4:4,R_3qmuXipnRr3qQPA,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,4,4,3,3,3,2,4,2,2,4,3,2,2,2,4,,4,4,4,5,4,4,3,,3,3,4,4,4,3,3,4,3,4,3,4,2,4,4,2,3,3,,,,,4,5,3,5,3,3,,2,,4,,4,,,,2,3,2,3,4,3,4,,7,5,,3,"I'm a librarian but also a teacher; the guidance said to take this version of the survey, but I do teach in a space within the library that serves as a classroom, and I'm not sure this version was entirely relevant to my role."
|
||||
3/1/22 15:20,3/1/22 15:30,0,108.49.219.202,100,615,1,2022-03-01T15:30:51,R_bCM6nkSjgWlMf4J,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,4,4,4,4,3,3,4,4,4,3,2,3,3,4,4,2,2,4,4,4,4,4,4,3,3,4,4,3,4,3,3,4,3,3,3,3,3,4,4,3,4,4,,,,,4,3,4,5,3,4,4,3,2,3,2,3,,,,4,3,4,2,2,4,5,,8,6,,8,
|
||||
3/1/22 16:13,3/1/22 16:23,0,108.49.219.202,100,625,1,2022-03-01T16:23:31,R_2f1FQ2A1skqmXIT,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,4,3,3,,2,3,3,,3,2,2,2,3,4,2,3,4,3,3,3,4,3,3,,4,4,4,4,3,5,4,3,3,3,2,2,2,4,3,,4,,,,,4,4,3,3,3,5,3,1,5,4,4,4,,,,3,2,,2,3,2,3,,6,5,,3,
|
||||
3/1/22 16:13,3/1/22 16:24,0,108.49.219.202,100,649,1,2022-03-01T16:24:41,R_1eCSSETg43bMEn3,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,4,4,5,3,3,4,4,5,4,3,2,4,3,3,2,3,5,5,5,5,5,5,3,3,4,3,3,3,3,3,3,3,2,1,3,2,2,3,2,3,3,,,,,3,3,2,5,1,3,2,1,3,3,2,3,,,,2,2,2,2,3,2,3,"The principal is a very strong leader. The assistant principals are also supportive, caring and engaged.",2,4,,2,"As a support personnel, it was difficult to answer many of these questions. I wish I could have selected ""does not apply"" instead of having to choose an answer."
|
||||
4/5/22 14:46,4/5/22 14:57,0,174.192.1.101,27,694,0,2022-04-12T14:57:36,R_1LLO6CBwxsIXust,,,anonymous,EN,6,3440020,5,5,5,,,,,,,,,,,,,,4,4,4,,,,,,,,,,5,4,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,,,,,,
|
||||
3/1/22 15:45,3/1/22 15:57,0,96.252.99.186,100,700,1,2022-03-01T15:57:25,R_2aXKbeZQmfgxG3I,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,3,3,4,4,2,4,4,5,3,3,3,4,2,4,3,4,3,1,3,3,3,2,3,3,3,3,4,4,3,4,3,4,5,4,5,5,4,3,2,4,4,,,,,4,4,4,5,5,5,5,3,3,2,2,4,,,,3,3,3,3,5,3,5,,6,6,,7,
|
||||
3/1/22 16:13,3/1/22 16:25,0,66.30.200.24,100,703,1,2022-03-01T16:25:38,R_3P2sVjijhvyIsdX,42.41879272,-71.15570068,anonymous,EN,6,3440305,,,3,3,4,3,3,1,3,3,3,3,2,3,3,3,3,3,3,4,4,3,3,3,3,3,,3,3,3,3,3,3,3,3,3,3,3,3,3,4,2,4,4,,,,,1,1,1,4,1,3,3,3,2,2,2,2,,,,1,1,1,3,3,3,3,,5,3,,2,
|
||||
3/1/22 15:41,3/1/22 15:53,0,96.252.99.186,100,705,1,2022-03-01T15:53:24,R_5yxOJEMGbDiDbPz,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,3,3,5,5,5,4,3,2,1,2,4,3,4,4,2,3,4,4,2,4,4,3,3,3,4,4,4,3,5,4,4,3,5,5,5,3,4,5,,,,,4,4,2,5,1,5,5,5,2,3,5,5,,,,3,3,2,3,3,3,5,,9,3,,4,
|
||||
4/5/22 14:43,4/5/22 14:55,0,96.230.20.18,100,724,1,2022-04-05T14:55:36,R_1ocpCBo14g30BJK,42.481,-71.1563,anonymous,EN,6,3440020,5,5,5,4,2,4,3,3,5,5,5,4,2,1,3,3,3,2,4,2,1,1,1,2,2,4,5,3,5,3,3,4,3,3,2,3,3,4,1,3,3,2,1,1,,,,,3,2,3,5,3,4,3,2,3,3,3,3,,,,1,3,3,2,2,3,4,,5,5,,3,
|
||||
3/1/22 16:14,3/1/22 16:26,0,108.49.219.202,100,738,1,2022-03-01T16:26:33,R_33qbjnZ6Yh7OacB,42.48100281,-71.15630341,anonymous,EN,6,3440305,3,2,3,4,4,5,3,5,3,3,3,3,4,3,3,4,4,4,4,4,4,3,3,3,2,4,4,4,4,4,4,3,4,4,4,3,3,2,3,4,3,3,3,4,,,,,1,1,1,4,1,2,2,1,3,3,3,2,,,,1,1,2,3,4,3,3,,6,4,,2,
|
||||
3/1/22 15:13,3/1/22 15:26,0,108.49.219.202,100,767,1,2022-03-01T15:26:34,R_Oql7RT67bsHHitb,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,3,5,4,2,5,5,5,4,3,4,4,3,4,3,3,5,5,4,5,4,5,4,5,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,3,4,,,,,3,3,1,4,3,4,4,2,4,4,4,4,,,,3,4,3,2,3,3,4,,8,7,,3,
|
||||
3/1/22 14:56,3/1/22 15:10,0,108.49.219.202,100,804,1,2022-03-01T15:10:3,R_3sBslOF3kT4kqNR,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,5,4,3,3,3,3,1,5,4,5,5,1,2,2,2,2,2,2,3,3,2,3,4,4,4,4,3,3,3,4,3,4,4,3,3,2,3,3,2,2,2,3,4,,,,,5,5,4,5,5,5,4,3,4,3,4,3,,,,3,3,3,2,3,3,4,,8,5,,4,
|
||||
3/1/22 14:46,3/1/22 14:59,0,108.49.219.202,100,822,1,2022-03-01T14:59:47,R_1l4aVOblLkMzKpZ,42.48100281,-71.15630341,anonymous,EN,6,3440040,4,4,5,4,3,5,3,5,4,4,4,4,4,3,3,3,4,4,4,3,3,4,1,1,2,4,4,5,4,3,4,3,4,4,3,3,2,3,2,3,3,5,3,3,,,,,3,4,4,4,4,3,3,2,3,3,3,3,,,,4,4,4,3,3,4,4,,8,5,,6,
|
||||
3/1/22 16:13,3/1/22 16:28,0,108.49.219.202,100,856,1,2022-03-01T16:28:6,R_2f3Dl4YK7TaBvtr,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,5,5,5,5,3,5,3,3,4,3,3,3,2,1,3,4,5,3,3,3,4,4,3,2,2,3,4,4,3,3,4,3,4,3,3,5,3,4,3,3,2,4,,,,,3,3,2,4,1,4,3,1,3,4,2,3,,,,3,3,3,3,4,4,4,"I think the survey lacks appropriate responses such as ""does not apply.""",8,7,,5," I think the survey lacks appropriate responses such as ""does not apply."" Also, not all roles create content; those questions are not universally appropriate."
|
||||
3/1/22 15:14,3/1/22 15:31,0,108.49.219.202,100,1018,1,2022-03-01T15:31:30,R_21h4dJyXDKqOOG6,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,4,4,3,4,2,5,5,5,4,3,3,2,3,4,,4,5,5,5,4,4,4,,,4,4,4,4,4,4,4,3,4,4,4,2,4,4,,4,4,,,,,4,4,3,4,3,4,4,4,,4,,4,,,,4,4,4,3,,3,,,9,5,,3,
|
||||
3/1/22 16:13,3/1/22 16:30,0,173.48.82.238,100,1018,1,2022-03-01T16:30:50,R_9zQVSBzcgR6syBj,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,4,4,2,4,3,2,3,3,4,3,3,4,3,3,2,2,3,3,3,3,3,4,2,3,3,4,3,3,3,3,3,3,4,2,2,2,3,3,4,2,3,4,,,,,3,3,3,4,2,3,3,3,3,4,2,4,,,,3,2,1,3,3,3,3,,9,5,,3,
|
||||
3/1/22 15:20,3/1/22 15:39,0,108.49.219.202,100,1117,1,2022-03-01T15:39:31,R_0B1FWMGkBAUfhL3,42.48100281,-71.15630341,anonymous,EN,6,3440045,,4,4,4,4,5,4,5,4,4,5,5,2,1,3,2,5,4,5,4,5,4,4,5,4,,,,4,4,4,3,3,3,3,2,2,3,2,3,4,3,3,4,,,,,4,,4,4,,3,3,4,3,4,4,4,,,,4,4,4,,,,,,6,3,,4,
|
||||
3/1/22 16:13,3/1/22 16:32,0,108.49.219.202,100,1125,1,2022-03-01T16:32:6,R_Z1Wz8CyVm76oMkp,42.48100281,-71.15630341,anonymous,EN,6,3440305,,4,4,4,4,4,2,1,4,4,4,3,3,4,3,2,5,,5,4,2,4,4,4,,3,3,4,4,4,,4,4,5,5,3,2,3,3,4,4,4,5,5,,,,,4,4,,,1,4,4,5,4,4,3,4,,,,2,3,3,3,3,3,3,,8,6,,5,Make different survey for support professional
|
||||
3/2/22 8:09,3/2/22 8:27,0,96.252.99.186,100,1131,1,2022-03-02T8:27:52,R_1OIfS5si1PHNT6p,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,3,4,4,4,2,3,1,3,4,4,3,3,4,3,3,4,3,3,4,4,,3,4,4,3,4,4,4,4,4,4,4,2,4,3,4,2,3,4,3,2,4,3,,,,,1,1,1,1,1,4,4,2,,4,,4,,,,3,3,3,3,3,3,3,,7,5,,4,
|
||||
3/1/22 16:17,3/1/22 16:37,0,108.49.219.202,100,1153,1,2022-03-01T16:37:0,R_BRrb36p3kfU5HAl,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,5,4,2,2,3,2,2,4,4,4,4,1,2,1,1,2,3,2,1,2,2,1,1,2,3,3,3,3,3,4,4,3,1,4,1,3,2,1,2,3,2,3,2,,,,,2,1,1,2,2,2,2,1,2,2,2,3,,,,3,4,2,2,2,2,3,I am a Speech-Language Pathologist and many of these questions were not reflective of my job.,3,3,,3,"Please recognize that related service providers (SLP, OT, PT, Pysch) also do sped evaluations.None of the questions look at sped evals and how much time this takes up, as well as lack of RTI in this district, causing an increase in sped referrals and a disproportionately high number of sped students"
|
||||
3/1/22 14:54,3/1/22 15:16,0,108.49.219.202,100,1340,1,2022-03-01T15:16:44,R_3PNQb028dvGP2Wu,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,5,4,5,5,4,5,4,5,5,2,1,3,2,5,4,4,5,5,5,4,5,4,4,4,4,5,4,4,3,4,4,4,3,3,3,3,4,5,2,3,3,,,,,3,3,4,5,5,5,5,2,3,4,3,4,,,,4,4,4,4,5,3,5,,8,6,,7,
|
||||
3/1/22 16:13,3/1/22 16:38,0,100.0.4.163,100,1519,1,2022-03-01T16:38:43,R_2zMapJuEG875udI,42.45320129,-71.14279938,anonymous,EN,6,3440305,4,2,4,2,2,4,3,2,3,3,4,3,3,2,4,2,3,3,3,5,4,4,4,3,4,4,4,4,4,4,5,3,3,1,3,2,4,4,2,2,3,3,1,1,,,,,1,1,1,4,4,3,3,1,3,3,,3,,,,2,3,4,3,3,3,4,,7,7,,7,
|
||||
3/1/22 15:11,3/1/22 15:36,0,96.92.186.25,100,1540,1,2022-03-01T15:36:44,R_3JC2jsN1vRlljTU,42.52780151,-71.10399628,anonymous,EN,6,3440040,5,5,5,5,5,5,4,4,4,4,5,4,2,2,3,4,3,3,5,4,4,4,4,4,2,5,5,5,5,5,5,4,4,3,3,4,4,4,5,5,5,4,5,5,,,,,3,2,3,3,2,3,3,1,5,4,3,4,,,,3,4,4,2,2,2,2,,9,6,,7,
|
||||
3/1/22 14:51,3/1/22 15:21,0,108.49.219.202,100,1826,1,2022-03-01T15:21:54,R_2aOJohjSDISBHBS,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,4,4,5,4,4,4,4,4,4,3,3,4,3,4,3,4,3,3,4,3,4,4,4,4,4,3,4,4,3,4,4,4,3,3,3,3,2,4,3,3,3,,,,,3,3,3,4,3,5,5,2,3,4,3,4,,,,2,4,3,2,3,3,4,,7,5,,5,
|
||||
3/1/22 15:45,3/1/22 16:16,0,96.252.99.186,100,1865,1,2022-03-01T16:16:23,R_qO8UXe3BskI6ivn,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,5,4,4,1,5,5,5,5,3,3,4,4,4,4,5,4,4,3,4,4,3,4,5,5,4,4,4,4,4,4,4,4,4,4,4,5,4,3,5,5,,,,,5,5,5,5,1,4,4,4,4,4,4,5,,,,4,5,5,3,3,3,3,N/A,9,5,,8,
|
||||
3/2/22 10:46,3/2/22 11:35,0,96.252.99.186,100,2941,1,2022-03-02T11:35:56,R_2v5IsVBwe6MERAi,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,3,5,5,5,4,2,4,3,3,4,4,5,3,4,2,3,3,4,3,5,5,5,4,3,3,4,4,3,3,3,4,4,4,3,3,3,3,5,5,5,3,3,,,,,5,4,3,4,1,4,5,4,4,5,4,4,,,,2,2,2,5,4,4,3,,8,6,,6,I am curious as to why you want to do this
|
||||
2/28/22 12:35,2/28/22 13:25,0,108.49.219.202,100,2971,1,2022-02-28T13:25:3,R_4H4ExhHyFxyvpfz,42.48100281,-71.15630341,anonymous,EN,6,3440005,3,5,5,5,5,2,5,2,4,4,3,4,3,2,2,2,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,5,4,4,4,,,,,5,5,4,5,5,5,5,5,4,5,5,5,,,,4,3,3,3,3,3,3,,7,5,,3,
|
||||
3/2/22 9:53,3/2/22 11:15,0,96.252.99.186,100,4973,1,2022-03-02T11:15:56,R_2Vl6GI6Q2JLTuTz,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,5,4,5,5,4,,4,4,4,3,1,3,2,2,,5,,1,1,1,2,1,1,3,4,4,4,4,4,3,3,3,1,3,3,3,2,4,3,1,5,4,,,,,4,5,5,5,2,4,4,4,5,2,1,1,,,,4,3,4,3,3,,,"""Power is in tearing human minds to pieces and putting them together again in new shapes of your own choosing"" E.A.B Many of the students and staff have expressed in various ways that this is the mission of DESE and WHS.
|
||||
|
||||
",,,,,
|
||||
3/1/22 14:58,3/1/22 15:23,0,108.49.219.202,100,1509,1,2022-03-01T15:23:40,R_2zdsC5HUOLcacrX,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,5,2,1,5,4,3,4,5,5,5,1,2,2,1,3,3,2,3,3,3,2,2,2,3,3,4,3,2,3,2,2,3,2,1,1,1,1,1,2,2,1,2,2,,3,,4,5,4,4,5,2,3,2,5,3,2,3,,,,2,4,4,3,3,2,2,"Regular education teachers, administration and staff should be required to take SEI class and take more EL PD in the district to help teachers remember that being an EL or speaking another language is enriching for school culture and community and not a weakness. We need to place more value on Els",5,5,,4,"Ask if El teachers/ Els feel welcomed when they enter the regular education classroom. Ask if our opinions matter on education, safety and technology. El teachers are are experts in their field. El students should be allowed to stay in the regular ed class and not be separated or receive lass help"
|
||||
3/1/22 15:43,3/1/22 15:59,0,96.252.99.186,100,926,1,2022-03-01T15:59:5,R_32ReTqnh18Vb2wZ,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,4,4,1,4,4,4,4,4,4,4,4,3,3,4,4,4,4,4,4,4,3,3,4,3,4,3,3,3,3,4,4,4,5,3,4,3,3,3,3,4,,3,,4,4,4,4,4,4,4,2,3,3,2,3,,,,3,3,3,4,5,4,5,,9,5,,7,
|
||||
3/1/22 16:14,3/1/22 16:24,0,108.49.219.202,100,564,1,2022-03-01T16:24:9,R_2pMlMnMsDNuOUeZ,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,4,5,4,5,3,1,5,4,5,4,2,1,1,1,5,,4,2,1,3,2,3,3,3,3,4,4,4,4,3,4,3,5,2,2,4,1,3,2,2,,,5,,5,,1,1,2,2,2,2,,,4,3,2,4,,,,4,3,,2,2,2,2,,,,,,
|
||||
3/1/22 16:13,3/1/22 16:33,0,108.49.219.202,100,1203,1,2022-03-01T16:33:26,R_20ZkbpAM9KQo6lO,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,5,2,2,2,3,2,4,4,5,4,3,4,4,3,3,3,4,4,3,3,4,3,4,4,5,4,4,4,4,4,4,3,4,3,4,3,3,5,4,4,5,5,4,,5,,5,4,5,5,4,5,4,3,3,4,3,4,,,,3,4,3,3,3,3,3,Parents have a lot of power and usually get what they want even if the teaching staff doesn't agree that it is in the best interest of the student. ,8,3,,4,"There were still many general education questions that I really didn't know how to answer. I am the one and only EL teacher, and I have no common planning time with other teachers. I can speak for how the school responds to EL parents but not to parents overall. Thank you!"
|
||||
3/1/22 16:54,3/1/22 17:20,0,100.0.173.151,100,1609,1,2022-03-01T17:20:52,R_2dtLP7MQc00KJgj,42.49450684,-71.07150269,anonymous,EN,6,3440040,4,4,4,4,3,4,3,3,4,4,4,4,3,3,3,3,2,3,3,3,3,3,4,4,3,3,4,4,3,3,3,3,4,4,4,3,3,3,2,3,4,3,3,3,3,,4,,4,4,4,4,3,2,2,2,3,3,3,3,,,,3,3,4,2,2,3,3,,7,6,,5,"Questions regarding how I teach students would be beneficial, specifically whether I push in to classrooms or pull out students. The difference in the 2 types of teaching models is great."
|
||||
4/5/22 14:42,4/5/22 14:51,0,96.230.20.18,100,516,1,2022-04-05T14:51:13,R_Oe7Q2IGcP4BiKQx,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,4,4,5,4,4,4,4,4,4,4,4,3,4,4,3,3,3,2,2,1,1,1,3,4,4,4,4,4,4,4,3,3,3,4,4,4,3,4,2,3,3,4,,4,,4,5,5,5,5,2,3,3,4,3,3,4,,,,3,4,4,2,3,3,3,,7,5,,7,
|
||||
4/3/22 19:23,4/5/22 15:09,0,96.230.20.18,100,157573,1,2022-04-05T15:9:33,R_2D1adokVW4JiCzi,42.4532,-71.1428,anonymous,EN,6,3440020,4,5,5,4,5,5,4,4,5,5,5,4,4,4,4,4,4,3,3,4,4,3,2,3,3,4,4,4,4,4,4,3,4,3,3,3,3,4,2,3,4,3,3,2,4,,4,,4,4,5,5,5,3,4,3,4,4,3,4,,,,4,4,4,3,4,3,3,,,,,,
|
||||
3/1/22 15:14,3/1/22 15:29,0,108.49.219.202,100,890,1,2022-03-01T15:29:32,R_2w6rqDAIXvvHdNN,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,4,5,4,3,4,4,4,4,3,4,4,4,3,4,4,4,3,2,3,3,3,4,3,3,4,4,4,4,4,4,4,4,3,3,3,3,5,4,4,4,4,4,,4,,3,3,3,3,3,4,4,3,3,3,3,4,,,,3,3,4,3,3,4,5,,8,,,8,
|
||||
3/1/22 16:14,3/1/22 16:44,0,108.49.219.202,100,1800,1,2022-03-01T16:44:4,R_8e9QTWvT1dGCFpL,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,5,4,3,5,3,3,4,4,4,3,2,4,3,3,4,3,3,4,3,4,3,4,3,3,3,3,3,4,4,3,4,3,3,3,3,3,3,4,4,3,4,3,4,,4,,3,3,3,4,5,3,,,3,3,,,,,,3,3,4,3,4,3,4,,6,4,,5,
|
||||
3/1/22 16:13,3/1/22 16:23,0,174.242.145.113,100,555,1,2022-03-01T16:23:15,R_1i8agoyz2EroJPE,42.35620117,-71.06310272,anonymous,EN,6,3440305,5,5,5,4,4,4,3,2,4,4,4,4,3,3,2,3,4,3,3,3,3,4,4,4,4,4,4,3,4,4,4,3,4,3,3,3,4,3,3,4,4,4,4,4,4,,4,,4,4,3,4,3,3,4,4,4,4,3,3,,,,3,4,3,3,3,3,3,,8,5,,4,
|
||||
3/1/22 15:43,3/2/22 8:08,0,96.252.99.186,100,59106,1,2022-03-02T8:8:52,R_2qCwTwv0au1vwpY,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,5,3,3,5,5,5,5,4,4,4,5,4,4,5,5,5,5,5,4,4,5,5,5,5,4,5,5,5,4,5,5,5,5,5,5,5,4,5,5,5,,5,,4,3,4,5,5,5,5,2,4,5,4,5,,,,5,3,4,4,5,4,5,,9,9,,9,
|
||||
3/1/22 16:13,3/1/22 16:30,0,108.49.219.202,100,1031,1,2022-03-01T16:30:32,R_839ZPzGbPTHIMRH,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,4,4,4,3,3,3,4,4,4,3,4,3,4,3,4,2,4,4,4,4,4,4,4,5,5,4,3,3,4,4,3,3,3,3,3,3,2,3,3,3,3,3,4,,3,,3,3,3,4,5,4,4,2,3,4,3,4,,,,3,3,2,3,4,4,4,,6,5,,6,
|
||||
3/1/22 15:03,3/1/22 15:22,0,108.49.219.202,100,1148,1,2022-03-01T15:22:45,R_1F2gveOWgDVmuJQ,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,5,4,5,4,5,5,5,5,5,4,4,4,4,4,4,5,5,4,5,5,4,5,5,5,4,4,5,4,4,5,4,3,4,4,4,3,5,4,4,4,5,4,,5,,4,4,4,3,4,4,4,3,4,4,4,5,,,,4,4,4,3,3,2,3,,7,5,,6,
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,568,1,2022-03-01T16:22:36,R_27go5BGK32TjoNl,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,4,4,4,5,4,2,4,4,4,4,2,3,2,3,4,3,4,4,4,4,3,3,3,4,4,4,3,3,4,3,4,3,5,3,3,3,3,4,3,2,3,3,4,,4,,3,3,3,4,5,4,4,2,3,4,3,4,,,,3,4,4,3,3,3,3,,9,5,,3,Ask questions about our workloads and about our relationship/interactions with the Special Ed Supervisor.
|
||||
3/1/22 15:46,3/1/22 16:15,0,96.252.99.186,100,1748,1,2022-03-01T16:15:34,R_3jcZbUj4Qk5LD7d,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,5,4,2,4,4,4,4,4,4,4,4,3,3,4,3,3,4,4,4,3,4,4,4,3,3,3,3,4,3,4,3,4,4,4,4,4,3,3,4,4,,3,,4,4,3,4,5,2,2,2,3,4,4,4,,,,4,3,3,3,4,3,5,,7,6,,3,
|
||||
3/1/22 14:54,3/1/22 15:02,0,108.49.219.202,100,519,1,2022-03-01T15:2:58,R_2awNGeMwGBHNahi,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,4,5,4,5,4,5,4,4,4,4,3,3,3,3,5,5,5,4,4,4,3,4,2,3,4,4,4,4,4,4,3,4,3,3,2,4,3,4,4,3,3,4,4,,4,,4,3,3,4,5,3,4,4,3,4,3,4,,,,3,3,3,3,4,3,5,,8,7,,6,
|
||||
3/1/22 15:41,3/1/22 15:56,0,96.252.99.186,100,911,1,2022-03-01T15:56:46,R_3OiasiQKQEkugL3,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,5,4,2,4,3,4,3,3,3,3,3,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,4,3,5,4,4,2,3,4,4,4,3,3,4,,4,,3,3,4,4,5,4,4,2,2,3,3,4,,,,2,3,3,3,3,3,3,,8,6,,7,
|
||||
3/1/22 15:43,3/1/22 15:54,0,96.252.99.186,100,680,1,2022-03-01T15:54:54,R_RawAl41L6YbJUAh,42.45320129,-71.14279938,anonymous,EN,6,3440505,3,4,4,4,2,5,3,2,4,4,2,4,2,3,4,4,4,3,3,3,4,3,3,4,4,4,4,3,4,3,3,3,3,4,3,3,4,5,3,4,5,4,2,4,3,,3,,3,5,5,4,3,3,3,3,4,4,4,4,,,,4,4,4,3,3,3,3,,4,5,,5,
|
||||
3/1/22 15:21,3/1/22 15:28,0,108.49.219.202,100,425,1,2022-03-01T15:28:49,R_2zc1t3qbWKfr8fB,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,3,4,3,3,5,5,5,5,3,3,3,3,4,3,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,3,3,3,4,,5,,3,3,3,3,5,4,4,4,4,4,4,4,,,,3,4,3,2,3,2,3,,9,5,,5,
|
||||
3/1/22 15:20,3/1/22 15:29,0,108.49.219.202,100,563,1,2022-03-01T15:29:29,R_1IMfms9EgF2bggs,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,4,5,3,5,5,5,5,5,5,5,3,3,4,3,5,5,5,5,5,5,5,5,5,4,5,4,4,4,4,4,4,3,3,2,3,5,4,4,5,5,4,,4,,4,4,3,4,5,5,4,4,4,5,4,5,,,,4,5,4,4,4,3,4,,9,7,,6,
|
||||
3/1/22 15:43,3/1/22 16:18,0,96.252.99.186,100,2083,1,2022-03-01T16:18:26,R_2dnDINJ5txQZJFh,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,4,3,5,4,5,4,4,4,4,4,4,3,4,4,5,5,4,5,4,4,4,5,4,4,5,5,5,5,5,3,4,4,3,5,5,5,4,4,3,,5,,3,3,4,4,5,4,3,2,5,5,3,4,,,,3,3,4,4,5,4,5,,8,6,,5,
|
||||
3/1/22 16:15,3/1/22 16:26,0,108.49.219.202,100,652,1,2022-03-01T16:26:14,R_6sCBR6s2JClppJv,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,3,3,5,4,3,4,4,4,4,4,4,3,4,4,4,4,3,3,3,4,4,3,3,3,3,4,4,4,4,5,4,5,3,4,3,2,2,3,3,5,4,4,,3,,4,5,4,5,5,3,3,3,4,5,3,4,,,,3,4,3,3,3,3,3,,8,5,,7,
|
||||
3/1/22 14:51,3/1/22 15:51,0,108.49.219.202,100,3583,1,2022-03-01T15:51:23,R_26nbRl66BLN9HzP,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,4,4,4,4,3,4,4,4,4,2,4,3,2,4,4,4,5,4,4,3,4,5,3,3,4,4,4,4,4,3,3,4,3,3,3,2,4,5,3,4,3,3,,4,,3,3,2,3,3,4,4,3,3,3,4,4,,,,4,3,2,2,3,4,4,,6,5,,3,"As a special educator, I had to take a best guess on many questions that pertain more to classroom teachers, or that we wouldn't necessarily have knowledge of"
|
||||
3/1/22 15:33,3/1/22 15:46,0,96.252.99.186,100,786,1,2022-03-01T15:46:8,R_XnReM90L7pMrv6V,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,3,5,4,4,4,4,2,4,4,5,5,3,3,3,4,4,5,4,4,3,4,5,4,3,4,4,4,4,4,4,4,4,4,4,3,3,5,3,3,4,3,4,4,3,,4,,5,4,4,4,2,4,3,1,3,3,4,4,,,,4,4,4,3,5,3,5,N/A ,9,5,,7,N/A
|
||||
3/1/22 15:13,3/1/22 15:26,0,108.49.219.202,100,772,1,2022-03-01T15:26:43,R_9pD3MQP41D6JlnP,42.48100281,-71.15630341,anonymous,EN,6,3440045,5,5,5,5,4,5,4,2,5,4,5,4,3,3,2,2,5,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,5,5,4,4,4,3,3,3,4,,4,,3,3,4,5,4,3,3,2,3,4,3,4,,,,3,3,3,3,3,4,4,,8,6,,6,
|
||||
3/1/22 16:13,3/2/22 12:02,0,108.49.219.202,49,71348,0,2022-03-09T12:2:21,R_2EiY2yDG89aBCIr,,,anonymous,EN,6,3440305,,,,5,5,5,5,1,4,4,5,5,,,,,4,5,5,,,,5,4,5,4,5,5,4,5,5,4,,,,,,,,,5,5,5,5,,,,,,,,,,,,,5,5,5,5,,,,,,,,,,,,,,,,
|
||||
4/5/22 14:32,4/5/22 14:43,0,96.230.20.18,38,648,0,2022-04-12T14:43:50,R_1hALJPwGLocKXWL,,,anonymous,EN,6,3440020,,,,,,,,,,,,,2,3,1,3,,,,,,,,,,,,,,,,,3,3,3,,,,,,,,,,3,,3,,3,3,4,3,5,2,2,2,3,3,2,3,,,,,,,,,,,,,,,,
|
||||
3/1/22 14:40,3/1/22 14:54,0,108.49.219.202,100,859,1,2022-03-01T14:54:48,R_2UfPHRIYU6BUI3u,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,5,4,4,5,5,5,5,5,5,5,5,5,5,5,5,4,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,3,4,4,2,4,4,3,5,5,4,,5,,4,4,4,4,5,2,3,3,5,5,3,3,,,,3,3,4,3,3,4,5,The staff at Muraco are experts in their fields. They work collaboratively and joyfully every day. ,9,7,,9,Thank you for the opportunity.
|
||||
3/1/22 14:54,3/1/22 15:11,0,108.49.219.202,100,1026,1,2022-03-01T15:11:36,R_1hLLEsFk4iVDTBj,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,5,2,2,3,3,1,4,4,4,4,3,3,3,3,2,2,3,3,2,4,3,4,3,5,4,4,4,4,4,4,4,4,4,3,5,4,5,4,4,4,4,4,4,,4,,3,3,3,4,5,4,4,3,3,3,3,3,,,,2,4,3,3,3,3,4,,7,5,,7,
|
||||
3/1/22 15:41,3/1/22 15:53,0,96.252.99.186,100,688,1,2022-03-01T15:53:6,R_30vKflaskk8jTwi,42.45320129,-71.14279938,anonymous,EN,6,3440505,3,5,5,2,4,5,3,3,3,4,4,3,3,4,3,5,3,3,4,4,5,3,3,4,4,3,3,3,4,3,3,3,4,3,5,4,5,5,2,4,4,2,3,4,3,,4,,3,4,3,5,5,3,3,2,3,4,3,4,,,,3,3,3,4,4,4,5,,9,5,,6,
|
||||
3/1/22 15:44,3/1/22 16:51,0,96.252.99.186,100,4019,1,2022-03-01T16:51:16,R_PGuJdw88PStRexj,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,5,4,5,5,5,5,4,5,5,5,5,5,5,4,4,4,5,5,5,4,4,5,5,5,5,4,5,5,5,3,3,4,5,5,5,5,5,5,5,5,5,4,,4,,3,2,3,4,5,5,5,2,4,5,4,5,,,,4,4,4,3,3,2,5,,9,8,,9,
|
||||
2/26/22 12:42,2/26/22 12:53,0,96.237.239.170,100,676,1,2022-02-26T12:53:56,R_rqXb5x49LlumWYN,42.53010559,-71.75530243,anonymous,EN,6,3440025,4,4,5,3,3,4,3,2,4,5,5,4,4,4,4,3,3,1,3,2,2,3,3,3,2,5,4,5,4,4,4,4,3,3,3,4,4,4,3,3,4,3,3,3,4,,4,,4,4,4,4,4,4,4,3,3,3,2,3,,,,3,3,3,2,2,3,4,,8,6,,7,
|
||||
3/1/22 14:18,3/1/22 14:44,0,108.49.219.202,100,1567,1,2022-03-01T14:44:8,R_0wHKUvf4FzeavXX,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,5,4,4,2,4,3,3,4,5,5,2,3,3,3,3,3,3,3,3,4,4,4,3,5,5,4,4,3,4,4,3,3,3,4,4,4,4,5,3,3,3,3,5,,2,,3,3,3,4,5,4,4,5,4,4,4,4,,,,3,4,2,3,3,2,2,,8,3,,3,
|
||||
3/1/22 16:13,3/1/22 16:27,0,108.49.219.202,100,873,1,2022-03-01T16:27:49,R_vpKxRhsses1iQSd,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,4,4,5,4,5,4,4,4,3,4,4,3,4,4,4,4,4,2,2,3,4,3,4,4,4,5,5,4,4,5,4,4,4,4,4,4,5,4,3,4,4,3,,3,,3,3,3,5,1,3,4,4,3,5,3,4,,,,2,4,3,5,5,3,3,,9,5,,,
|
||||
3/1/22 16:38,3/1/22 16:53,0,71.245.225.63,100,859,1,2022-03-01T16:53:17,R_3CT8A06qIwA9P9Q,42.43780518,-71.22389984,anonymous,EN,6,3440505,4,5,5,4,4,4,4,4,5,5,5,4,3,2,2,3,5,,4,4,3,3,3,3,3,,,,5,4,5,4,5,3,5,3,4,4,4,5,4,3,3,5,4,,5,,4,4,,4,3,,,,3,4,,5,,,,,,,,,,,"I am a new hire during the pandemic and only work with a very small subset of high needs special education students, so my understanding of whole school trends is limited. ",7,6,,6,
|
||||
3/1/22 14:41,3/1/22 15:07,0,108.49.219.202,100,1586,1,2022-03-01T15:7:54,R_2EEoy6rXrYqnzn6,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,5,5,5,5,4,4,4,5,5,5,3,5,3,3,4,3,5,3,3,4,3,4,4,3,3,4,4,4,4,4,4,4,3,3,3,3,2,3,4,2,3,3,4,,4,,2,3,3,4,5,4,4,3,4,4,4,4,,,,2,3,4,2,3,3,3,,7,5,,5,
|
||||
3/1/22 16:15,3/1/22 16:30,0,108.49.219.202,100,850,1,2022-03-01T16:30:9,R_3DjSX85i9xyctPd,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,3,3,3,5,5,4,5,4,3,3,4,3,3,4,4,3,3,4,4,4,3,3,4,3,3,3,3,2,4,1,4,3,3,3,3,4,5,2,3,4,5,,4,,3,3,3,3,5,3,4,4,3,4,4,3,,,,3,2,2,3,3,3,3,,9,9,,9,
|
||||
3/1/22 16:16,3/1/22 16:23,0,96.252.99.186,100,461,1,2022-03-01T16:23:44,R_3kKW6BqSsmK5Ihm,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,4,5,4,2,5,5,5,5,5,4,3,3,3,2,4,5,5,5,4,4,4,3,4,3,5,5,5,4,5,2,5,4,4,5,3,5,4,3,3,4,4,,5,,4,4,4,5,5,3,3,2,4,4,4,4,,,,4,4,4,3,5,3,5,,5,4,,3,
|
||||
3/1/22 15:21,3/1/22 15:32,0,108.49.219.202,100,696,1,2022-03-01T15:32:52,R_1l9ICQJcTGQOUiS,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,3,3,5,3,3,5,5,5,5,4,3,4,3,4,2,5,5,4,4,4,4,3,4,4,5,4,4,4,4,3,4,4,4,4,3,3,4,3,3,4,4,4,,4,,2,2,2,3,4,5,4,2,2,3,4,3,,,,3,3,3,3,3,3,5,,7,5,,5,
|
||||
3/1/22 14:40,3/1/22 15:18,0,108.49.219.202,100,2294,1,2022-03-01T15:18:37,R_2qmj7B5FRaKIeme,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,4,4,5,5,5,5,1,4,4,5,5,3,3,2,3,5,4,4,3,3,4,4,4,3,3,3,3,4,4,3,2,3,3,2,2,3,4,3,4,2,2,3,3,3,,4,,3,3,3,4,5,4,3,2,3,3,4,4,,,,4,4,3,3,4,3,3,,5,4,,3,
|
||||
3/1/22 16:13,3/1/22 16:33,0,108.49.219.202,100,1213,1,2022-03-01T16:33:17,R_1N3X5ogdTyOKiXL,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,5,4,4,5,5,5,4,4,5,4,4,5,4,4,4,5,5,3,3,5,4,4,1,3,3,3,4,4,4,2,4,3,3,3,3,5,2,4,2,2,3,3,4,,4,,4,4,3,4,5,4,4,2,4,5,3,4,,,,4,4,3,3,3,3,3,,5,5,,5,
|
||||
3/1/22 15:44,3/1/22 15:59,0,96.252.99.186,100,917,1,2022-03-01T15:59:29,R_1BVPCfJjjJsvnCd,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,5,4,5,4,2,4,4,4,4,2,2,2,2,4,3,4,4,5,4,4,4,3,3,4,4,4,4,4,4,5,4,5,4,4,4,4,5,4,3,4,4,4,,5,,3,3,3,3,5,5,5,3,3,3,2,3,,,,3,3,2,4,5,3,5,,8,5,,6,
|
||||
3/1/22 14:50,3/1/22 15:07,0,108.49.219.202,100,1069,1,2022-03-01T15:7:51,R_USbqAvX7L7YQM0N,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,4,4,5,4,5,4,2,4,4,4,4,2,2,3,1,3,1,4,4,4,4,3,3,3,4,5,4,4,4,4,4,3,4,3,3,3,3,3,4,4,2,3,3,4,,4,,4,4,4,4,5,3,3,2,5,4,4,4,,,,2,2,3,3,3,3,3,,4,3,,5,
|
||||
3/1/22 15:31,3/1/22 15:58,0,96.252.99.186,100,1585,1,2022-03-01T15:58:7,R_25YBKuifRit1NRQ,42.45320129,-71.14279938,anonymous,EN,6,3440505,3,4,5,5,4,5,3,4,3,3,4,3,3,3,2,3,3,2,4,2,3,2,1,3,2,5,5,5,4,4,4,3,4,3,4,3,3,3,5,5,4,4,3,3,3,,5,,4,4,3,5,3,4,5,4,4,3,3,3,,,,4,3,4,3,3,3,3,,3,6,,4,
|
||||
4/5/22 14:43,4/5/22 14:53,0,96.230.20.18,100,600,1,2022-04-05T14:53:11,R_O3RjHML8nw7CGZ3,42.4532,-71.1428,anonymous,EN,6,3440020,5,4,5,4,4,3,3,2,4,4,4,2,2,4,2,3,3,4,4,3,3,2,1,1,2,4,4,4,4,4,4,3,4,3,4,3,3,4,2,3,4,2,1,2,4,,4,,4,3,3,4,3,2,2,3,4,3,2,3,,,,3,3,3,3,3,3,4,,8,8,,6,
|
||||
3/1/22 15:08,3/1/22 15:31,0,108.49.219.202,92,1360,0,2022-03-08T15:31:3,R_2qBDgojWfIikLTL,,,anonymous,EN,6,3440025,5,5,5,5,5,5,,2,5,5,5,5,2,2,2,2,5,5,5,4,4,4,4,5,4,5,5,5,4,4,4,4,5,4,4,4,4,4,4,5,5,4,5,5,4,,4,,2,3,4,4,5,5,4,4,4,4,3,4,,,,4,3,3,3,3,3,3,,,,,,
|
||||
3/1/22 14:56,3/1/22 15:06,0,108.49.219.202,100,568,1,2022-03-01T15:6:27,R_2bTetODB7Oatyn2,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,4,2,2,4,3,3,4,3,4,3,3,4,4,3,4,2,3,3,3,2,3,2,3,4,3,3,3,4,3,2,3,4,4,2,3,3,1,3,4,2,3,3,3,,4,,2,2,2,3,3,3,3,2,2,4,3,1,,,,4,3,2,4,5,5,5,,7,5,,6,
|
||||
3/1/22 16:13,3/1/22 16:26,0,108.49.219.202,100,788,1,2022-03-01T16:26:13,R_1hHfOjH9gCdbyj6,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,5,4,5,3,2,5,4,5,4,3,4,4,3,4,3,4,4,2,4,4,4,4,3,3,4,4,4,4,4,4,3,4,2,2,3,4,4,4,4,1,2,3,,2,,2,3,3,3,5,3,3,2,2,2,3,3,,,,3,4,4,4,5,3,3,,9,7,,8,
|
||||
3/1/22 15:46,3/1/22 16:05,0,96.252.99.186,100,1149,1,2022-03-01T16:5:31,R_2QM1RsUuuPXiISy,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,4,3,5,2,3,4,4,4,4,3,3,3,2,4,3,3,1,1,1,2,2,2,4,4,4,3,3,3,3,5,4,4,3,3,3,3,5,3,3,4,4,5,,5,,3,2,3,3,5,3,3,2,4,3,2,3,,,,3,3,3,3,4,3,4,,5,5,,6,
|
||||
3/1/22 14:53,3/1/22 15:27,0,108.49.219.202,100,2049,1,2022-03-01T15:27:10,R_3G34GSlAbmkwhal,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,4,5,4,4,4,3,2,5,4,3,4,2,2,1,1,4,4,4,3,2,3,4,3,3,4,5,4,3,3,3,3,4,3,4,3,3,3,2,4,3,2,3,3,2,,4,,3,3,4,4,5,5,5,3,3,4,3,4,,,,4,3,2,2,2,3,3,,3,,,,Survey was not appropriate for my grade level
|
||||
3/1/22 16:13,3/1/22 16:22,0,108.49.219.202,100,541,1,2022-03-01T16:22:20,R_9tMKCYHrj9D6dIR,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,2,2,2,3,2,4,4,4,3,2,2,1,2,1,2,2,3,2,3,2,3,2,3,3,3,3,3,3,3,3,2,2,3,5,4,4,5,,,,,4,,4,,4,4,4,4,5,2,2,2,4,4,2,2,,,,3,3,3,3,4,2,2,,8,6,,4,"Include more specific questions about providing specially designed instruction, testing, writing IEPs. "
|
||||
3/1/22 16:14,3/1/22 16:25,0,108.49.219.202,100,666,1,2022-03-01T16:25:10,R_2qwLEotnmVUAAYh,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,3,4,3,2,5,5,5,4,2,2,2,2,3,2,3,5,5,5,5,5,4,3,3,3,4,3,4,3,4,3,4,2,3,3,3,3,3,4,2,4,3,,4,,4,3,4,5,5,3,3,2,3,3,3,3,,,,4,3,3,3,5,3,3,,9,5,,8,
|
||||
3/1/22 14:56,3/1/22 15:07,0,108.49.219.202,100,629,1,2022-03-01T15:7:28,R_31dwQbzcwB8W3V3,42.48100281,-71.15630341,anonymous,EN,6,3440025,5,5,5,4,4,5,3,2,5,5,5,5,2,2,2,2,4,3,4,3,2,3,4,4,3,5,5,4,4,4,4,4,4,4,4,5,5,4,3,2,4,4,4,4,5,,5,,4,4,4,4,5,4,4,1,4,4,3,4,,,,4,3,4,3,3,5,5,,8,6,,6,
|
||||
3/1/22 15:18,3/1/22 15:27,0,108.49.219.202,67,535,0,2022-03-08T15:27:37,R_1NErgR4sr8S3vMQ,,,anonymous,EN,6,3440005,4,4,4,3,3,5,2,5,4,4,5,4,,,,,4,5,3,,,,,,,,,,2,3,2,2,3,3,3,2,3,3,2,4,4,2,3,3,4,,4,,4,3,3,4,5,4,4,5,,,,,,,,1,3,3,,,,,,,,,,
|
||||
3/1/22 15:47,3/1/22 16:12,0,96.252.99.186,100,1455,1,2022-03-01T16:12:14,R_BAsHPI6XHlaoW09,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,4,4,5,4,2,3,3,4,3,1,2,1,2,4,4,4,4,3,4,4,4,3,5,5,4,4,4,4,4,4,4,4,3,4,3,3,5,5,2,4,3,3,,4,,3,2,3,2,5,5,4,2,3,4,4,4,,,,4,3,2,1,2,3,3,,4,3,,3,
|
||||
3/1/22 14:32,3/2/22 9:10,0,108.49.219.202,25,67127,0,2022-03-09T9:11:48,R_2Yfgh0URCl3AXrU,,,anonymous,EN,6,3440045,,,,3,3,4,3,2,4,4,5,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3,,,,,,
|
||||
3/2/22 7:50,3/2/22 7:57,0,96.252.99.186,100,453,1,2022-03-02T7:57:39,R_1JS1Re5XdSyCdNJ,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,3,5,3,2,4,4,5,4,2,2,1,2,5,3,3,2,2,2,3,2,2,3,4,4,4,4,4,3,4,4,4,3,3,3,2,5,4,3,3,3,4,,5,,4,5,4,5,5,4,5,2,4,3,3,3,,,,4,4,4,3,5,3,5,,5,,,5,
|
||||
3/1/22 18:31,3/1/22 18:45,0,209.6.121.99,100,858,1,2022-03-01T18:45:59,R_3PpMCKOyGe9eKk9,42.41879272,-71.15570068,anonymous,EN,6,3440305,5,4,5,3,3,5,1,2,4,4,5,3,3,3,2,2,5,4,4,2,3,3,2,3,2,3,3,3,3,3,4,3,3,3,2,3,2,4,1,4,2,2,,,5,,5,,3,3,3,3,5,5,4,3,2,3,1,3,,,,4,4,4,3,3,3,3,,5,4,,4,"You don't ask any questions about our direct supervision, processing of state paperwork, support around the law, and the effectiveness of the special education process in our building."
|
||||
3/1/22 16:14,3/1/22 16:25,0,108.49.219.202,100,665,1,2022-03-01T16:25:44,R_1r06m3hlU3Zy57l,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,5,3,2,5,3,2,4,4,4,3,2,2,3,2,4,2,5,4,3,5,2,5,4,3,3,3,3,3,4,3,4,3,4,2,4,4,3,4,3,3,5,3,5,,4,,4,4,3,5,5,1,2,1,5,2,2,3,,,,3,3,3,3,4,3,3,,9,,,,"Allowing for some open ended responses to acknowledge the vast differences between ""special education students""."
|
||||
2/28/22 13:11,3/1/22 14:57,0,108.49.219.202,100,92737,1,2022-03-01T14:57:17,R_dgkXdA20IyA4vJL,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,5,4,4,5,3,5,4,5,5,5,3,3,3,2,5,3,5,2,2,4,2,4,2,5,5,4,4,4,3,3,2,2,2,3,3,3,2,3,4,2,1,2,4,,4,,3,3,3,3,5,3,3,2,4,4,3,4,,,,4,4,5,3,3,3,3,,7,5,,5,
|
||||
4/5/22 14:43,4/5/22 15:02,0,108.49.65.47,100,1097,1,2022-04-05T15:2:4,R_1pGrfTZ2bsbDBnn,42.481,-71.1563,anonymous,EN,6,3440020,4,4,5,2,2,3,2,2,4,3,4,4,1,1,2,1,4,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,4,3,2,2,3,1,3,2,1,1,1,4,,3,,3,3,2,5,3,3,3,1,3,3,2,2,,,,3,2,3,2,3,2,3,,7,5,,4,
|
||||
3/1/22 14:24,3/1/22 14:36,0,155.33.134.3,100,681,1,2022-03-01T14:36:3,R_3EETxQR49iOygRW,42.34269714,-71.09220123,anonymous,EN,6,3440025,3,3,4,5,5,5,3,3,3,4,5,3,5,5,3,5,4,5,5,4,4,5,4,4,4,,5,4,5,5,5,5,5,5,4,3,4,4,4,5,3,2,4,4,3,,5,,2,1,1,2,5,,,,,,,,,,,4,4,3,3,4,3,3,,9,7,,,
|
||||
3/1/22 14:53,3/1/22 15:02,0,108.49.219.202,100,548,1,2022-03-01T15:2:45,R_555b8eckSPiStCV,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,4,4,4,3,5,3,4,4,4,4,4,3,2,2,2,5,1,3,2,2,4,2,2,1,4,4,4,4,4,4,4,4,4,2,3,4,3,3,5,4,3,3,4,4,,4,,4,4,2,3,5,5,4,1,4,4,1,4,,,,3,4,3,2,3,4,5,,8,5,,5,
|
||||
4/5/22 14:43,4/5/22 14:54,0,96.230.20.18,100,642,1,2022-04-05T14:54:24,R_2aY8W90joveuOFz,42.4532,-71.1428,anonymous,EN,6,3440020,3,3,3,4,4,5,2,2,3,3,3,3,2,1,2,2,3,2,4,2,3,2,1,1,1,4,4,4,4,3,4,3,4,1,3,2,2,2,2,2,4,1,1,1,5,,4,,2,2,3,4,5,4,4,3,3,4,2,2,,,,3,3,3,2,2,3,3,"Our school does not have a RTI process.We have on interventionist besides in reading and we do not have a solid process for RTI. Usually, students get referred for special ed, instead of getting intervention. We do not have a systematic phonics program.",5,4,,4,
|
||||
3/1/22 15:47,3/1/22 16:00,0,96.252.99.186,100,780,1,2022-03-01T16:0:2,R_1rjiZfbZji2LSZa,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,4,3,5,5,3,5,4,5,4,3,3,3,3,4,4,3,3,3,4,3,4,3,3,3,3,2,2,2,2,4,4,4,4,4,3,2,4,5,5,4,4,3,,2,,3,4,4,3,5,2,4,2,4,4,4,4,,,,3,2,1,2,2,1,1,,4,5,,3,
|
||||
3/1/22 15:29,3/1/22 15:38,0,67.189.250.110,100,525,1,2022-03-01T15:38:39,R_1myFgbm0xpu29U7,42.36599731,-71.22709656,anonymous,EN,6,3440025,5,5,5,2,3,3,2,1,5,4,5,5,2,2,2,2,3,2,3,4,4,5,3,3,3,3,3,4,3,3,4,3,4,3,2,2,2,1,1,2,3,1,3,4,3,,4,,3,3,3,4,2,4,5,3,2,2,2,3,,,,3,4,3,3,3,4,4,,9,5,,6,
|
||||
3/1/22 16:13,3/1/22 16:26,0,108.49.219.202,100,776,1,2022-03-01T16:26:45,R_3eEXbQwh2nX6FSp,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,5,5,3,3,5,4,2,5,5,5,5,2,4,1,4,4,2,4,3,2,3,3,3,2,3,3,3,3,3,4,3,4,4,4,5,5,5,4,5,3,4,1,4,4,,5,,4,1,3,4,5,4,4,3,4,4,3,4,,,,3,4,4,3,3,2,2,,7,5,,3,
|
||||
4/5/22 14:43,4/5/22 14:52,0,96.230.20.18,100,533,1,2022-04-05T14:52:10,R_2ZIm4E1e630m1zf,42.481,-71.1563,anonymous,EN,6,3440020,5,4,5,2,2,5,3,3,5,5,5,5,4,2,3,2,2,1,3,2,1,3,2,2,1,4,4,4,3,4,4,4,4,3,3,2,4,3,3,2,4,3,4,4,4,,4,,3,4,4,3,4,3,3,5,1,3,2,3,,,,4,4,4,3,4,2,3,N/A,5,4,,4,N/A
|
||||
3/1/22 13:42,3/1/22 15:18,0,108.49.219.202,100,5753,1,2022-03-01T15:18:17,R_1NEaCxW33r9fwB3,42.48100281,-71.15630341,anonymous,EN,6,3440045,4,5,5,5,5,5,3,2,5,4,5,4,2,2,2,2,5,3,4,5,5,5,5,5,4,5,5,4,5,4,5,4,4,4,4,2,5,5,2,4,5,3,5,5,3,,5,,2,3,3,4,5,4,3,2,4,4,4,4,,,,3,3,3,2,2,3,4,,9,5,,6,"I felt like it was hard to answer the questions about culturally relevant instruction as most of the teaching I do is very targeted to specific goals and skills, not necessarily material that could include cultural elements. "
|
||||
3/1/22 17:32,3/1/22 17:39,0,72.74.49.17,100,442,1,2022-03-01T17:39:25,R_1RYG9e4DnrATPlD,42.4178009,-71.11340332,anonymous,EN,6,3440505,4,4,3,4,3,5,2,1,5,5,5,4,2,2,2,3,2,4,4,3,1,2,2,4,4,4,4,4,4,4,4,4,4,2,5,4,3,4,2,5,4,2,3,3,5,,2,,4,4,3,4,5,5,5,2,2,4,4,4,,,,4,4,3,4,5,3,5,,9,9,,8,
|
||||
3/1/22 14:56,3/1/22 15:11,0,108.49.219.202,100,902,1,2022-03-01T15:11:56,R_2Bfc4ecapcL8Sti,42.48100281,-71.15630341,anonymous,EN,6,3440040,5,5,5,5,5,5,3,2,4,5,5,4,1,4,1,4,4,4,4,3,5,4,1,2,2,4,4,3,3,3,3,3,4,4,4,3,3,4,1,1,5,1,5,5,4,,5,,3,3,5,4,5,3,3,3,4,3,4,3,,,,4,4,5,3,3,3,3,,6,3,,4,
|
||||
3/1/22 16:14,3/1/22 16:22,0,108.49.219.202,100,515,1,2022-03-01T16:22:47,R_1jqbaE8dmmjsxT3,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,4,2,4,3,1,4,4,4,4,1,1,1,1,2,1,2,1,1,1,1,1,1,2,2,1,3,3,3,2,4,3,4,1,4,4,2,4,3,3,3,3,4,,4,,2,2,2,2,4,4,4,1,1,3,2,2,,,,3,3,2,2,5,2,2,,8,7,,3,
|
||||
4/5/22 14:43,4/5/22 14:55,0,96.230.20.18,100,732,1,2022-04-05T14:55:17,R_3OcYktKi9ChhBwl,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,4,3,5,2,2,5,4,5,4,2,2,1,1,4,2,4,1,4,1,1,2,2,5,5,4,4,4,4,4,3,3,2,2,2,3,3,4,5,2,4,4,4,,4,,4,4,3,5,5,4,4,5,4,4,3,4,,,,3,3,3,3,3,4,5,,8,6,,4,"make n/a a response
|
||||
make questions that pertain to therapists (OT, PT, SLP, psychs)"
|
||||
3/1/22 15:36,3/1/22 15:48,0,96.252.99.186,100,760,1,2022-03-01T15:48:49,R_2S63MECHj2v2K5T,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,3,2,3,1,1,4,4,4,2,2,2,2,2,2,4,3,2,2,1,2,2,2,2,2,3,3,2,3,2,5,2,5,4,3,2,2,4,3,1,2,2,2,,5,,1,2,2,3,5,2,2,5,1,2,2,2,,,,2,3,4,3,4,3,5,,6,4,,5,
|
||||
4/5/22 13:53,4/5/22 14:04,0,96.230.20.18,100,667,1,2022-04-05T14:4:36,R_2qt3tkvNoMdsvFQ,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,3,3,4,2,3,5,5,5,5,2,1,1,1,2,3,2,3,3,4,2,1,1,5,5,1,4,4,4,5,2,3,3,3,4,5,5,5,4,4,4,4,2,,3,,2,2,2,3,5,5,4,5,4,4,4,4,,,,3,3,2,2,3,3,3,,8,3,,2,
|
||||
3/1/22 14:34,3/1/22 14:51,0,108.49.219.202,100,1011,1,2022-03-01T14:51:41,R_3NxMbN8qgL79zOK,42.48100281,-71.15630341,anonymous,EN,6,3440040,3,2,5,5,5,5,4,3,4,4,5,3,4,3,3,4,4,,4,5,5,4,5,5,4,5,5,4,5,4,4,4,4,2,3,2,2,2,4,2,2,1,1,1,3,,2,,2,3,3,4,5,,2,1,4,4,3,2,,,,4,3,3,1,2,1,1,,8,5,,4,
|
||||
3/1/22 16:14,3/1/22 16:31,0,108.49.219.202,100,1047,1,2022-03-01T16:31:46,R_21BxsmwVsIdsmhQ,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,5,5,3,3,5,3,1,4,5,5,4,1,1,1,1,3,2,3,1,1,1,1,1,1,3,4,3,2,3,2,2,4,4,4,1,2,2,2,2,3,1,1,1,4,,5,,4,4,4,3,5,1,1,1,4,3,3,3,,,,4,4,3,3,3,2,3,,5,4,,5,
|
||||
3/1/22 16:13,3/1/22 16:19,0,108.49.219.202,100,355,1,2022-03-01T16:19:3,R_3O8JntCd8MvrnlB,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,3,3,4,2,,,,,,3,3,3,3,,,,4,4,4,,,,3,3,4,4,4,4,3,,,,4,4,4,3,3,4,3,4,4,,,,,,,,,5,3,3,2,3,3,3,3,,,,,,,3,4,3,3,,8,7,,8,
|
||||
4/5/22 14:43,4/5/22 14:48,0,96.230.20.18,100,357,1,2022-04-05T14:48:58,R_0jFvuQSbeKNZg3f,42.4532,-71.1428,anonymous,EN,6,3440020,5,5,5,4,4,4,4,,,,,,3,2,2,3,,,,1,2,2,,,,3,3,3,4,4,5,4,,,,3,4,4,2,3,5,3,5,3,,,,,,,,,5,3,3,3,2,4,2,4,,,,,,,2,2,3,3,,9,5,,8,
|
||||
3/1/22 15:34,3/1/22 15:40,0,96.252.99.186,100,365,1,2022-03-01T15:40:42,R_BCV5txXHfI2YCk1,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,5,4,5,2,,,,,,2,2,3,2,,,,3,4,5,,,,3,3,4,4,4,4,5,,,,5,5,5,3,5,5,3,5,3,,,,,,,,,5,2,2,1,2,4,3,4,,,,,,,5,5,5,5,,9,5,,7,
|
||||
3/1/22 15:44,3/1/22 15:50,0,96.252.99.186,100,374,1,2022-03-01T15:50:24,R_9HmsT4Frch7WNrz,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,5,4,4,4,4,4,,,,,,2,4,3,4,,,,3,4,3,,,,3,3,4,4,4,4,4,,,,4,4,4,4,5,5,3,4,4,,,,,,,,,5,4,4,5,4,3,4,4,,,,,,,4,4,4,4,,7,7,,8,
|
||||
3/11/22 13:41,3/11/22 13:47,0,96.252.99.186,49,377,0,2022-03-18T14:47:48,R_3MyfkruzxiJYw1y,,,anonymous,EN,6,3440505,4,4,5,,,,,,,,,,4,5,4,4,,,,,,,,,,4,3,4,,,,,,,,3,4,4,3,5,5,1,4,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
3/1/22 15:44,3/1/22 15:51,0,96.252.99.186,100,402,1,2022-03-01T15:51:5,R_rrQ9I2E9A59CITL,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,4,3,3,3,,,,,,3,4,2,3,,,,4,4,4,,,,2,2,3,3,3,3,3,,,,3,3,3,3,4,4,3,4,4,,,,,,,,,5,3,3,1,3,4,2,3,,,,,,,3,5,4,5,,7,3,,7,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,426,1,2022-03-01T16:21:0,R_Wj7STJeRyeQ3GyB,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,4,4,2,2,5,2,,,,,,2,2,2,2,,,,2,2,2,,,,3,3,4,4,4,4,3,,,,1,2,2,2,3,4,1,4,3,,,,,,,,,5,3,2,2,2,3,3,3,,,,,,,4,3,3,3,,5,5,,4,
|
||||
3/1/22 16:13,3/1/22 16:20,0,108.49.219.202,100,428,1,2022-03-01T16:20:14,R_2TBHawxkXH1CZMg,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,4,3,3,4,,,,,,2,2,2,2,,,,4,4,4,,,,3,3,4,3,4,4,3,,,,3,4,4,2,5,5,3,4,4,,,,,,,,,4,4,4,3,3,4,3,4,,,,,,,2,3,2,2,,5,4,,4,
|
||||
3/1/22 9:07,3/1/22 9:15,0,108.49.219.202,100,442,1,2022-03-01T9:15:6,R_DpBl49wzRZEXCkV,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,4,3,5,3,,,,,,2,2,1,1,,,,4,5,5,,,,4,4,3,4,3,4,4,,,,4,4,3,2,3,4,2,3,4,,,,,,,,,5,5,5,3,3,3,2,3,,,,,,,3,3,3,3,,7,,,3,
|
||||
3/1/22 15:07,3/1/22 15:15,0,108.49.219.202,100,477,1,2022-03-01T15:15:55,R_vP824AHDA2AavUR,42.48100281,-71.15630341,anonymous,EN,6,3440005,4,4,4,4,4,4,3,,,,,,2,1,1,1,,,,4,4,4,,,,3,3,3,3,3,4,3,,,,2,3,3,2,3,4,1,3,2,,,,,,,,,4,,,,2,3,,3,,,,,,,4,4,5,5,,9,6,,7,
|
||||
3/1/22 15:41,3/1/22 15:49,0,96.252.99.186,100,492,1,2022-03-01T15:49:28,R_1CKO1ulT7mxaLip,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,4,3,3,5,2,,,,,,2,2,2,2,,,,2,2,2,,,,3,3,3,3,3,3,3,,,,2,2,2,1,4,3,1,2,2,,,,,,,,,4,5,4,4,1,2,1,4,,,,,,,3,5,2,3,,9,5,,3,
|
||||
3/1/22 16:15,3/1/22 16:23,0,174.196.193.164,100,497,1,2022-03-01T16:23:22,R_3ryeKOqdfVFtDRT,42.34979248,-71.07649994,anonymous,EN,6,3440505,5,5,5,2,4,3,4,,,,,,3,3,2,2,,,,3,4,2,,,,3,3,4,4,4,4,4,,,,3,3,3,4,4,4,3,4,4,,,,,,,,,4,3,4,2,3,4,3,4,,,,,,,4,5,4,5,,8,5,,6,
|
||||
3/1/22 14:54,3/1/22 15:03,0,108.49.219.202,100,523,1,2022-03-01T15:3:7,R_XTUleSamhTxrNBv,42.48100281,-71.15630341,anonymous,EN,6,3440005,5,5,4,4,4,5,3,,,,,,3,3,3,4,,,,4,4,5,,,,3,4,3,4,3,3,3,,,,3,4,4,3,4,4,1,2,2,,,,,,,,,4,4,4,1,4,4,3,4,,,,,,,3,3,3,3,,4,5,,3,
|
||||
3/1/22 16:13,3/1/22 16:22,0,73.123.168.2,100,546,1,2022-03-01T16:22:29,R_rdmTUmUjYzQCts5,42.45320129,-71.14279938,anonymous,EN,6,3440305,5,3,5,5,2,5,3,,,,,,4,5,5,5,,,,5,5,5,,,,3,3,4,4,4,4,4,,,,3,5,5,3,5,5,2,5,5,,,,,,,,,5,2,3,1,5,5,3,5,,,,,,,4,5,3,3,,9,6,,8,
|
||||
3/1/22 15:32,3/1/22 15:41,0,96.252.99.186,100,547,1,2022-03-01T15:41:21,R_1GJI1YFh4m7tTpm,42.45320129,-71.14279938,anonymous,EN,6,3440505,4,4,4,4,2,3,2,,,,,,2,2,2,3,,,,3,3,3,,,,3,3,3,3,3,3,3,,,,3,4,4,3,4,3,2,4,3,,,,,,,,,5,5,4,3,1,2,1,2,,,,,,,3,4,3,5,We would benefit from more counseling support. We have a sub counselor right now that floats around and is male and it would be helpful to have more counseling support for the increased mental health issues. We also need more support programs for kids who aren't in special education. ,6,4,,6,
|
||||
3/1/22 15:36,3/1/22 15:46,0,96.252.99.186,100,564,1,2022-03-01T15:46:21,R_2BmxOGV1ZvAdODQ,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,4,4,4,5,4,,,,,,4,4,2,4,,,,4,3,3,,,,3,3,3,4,4,4,4,,,,4,4,2,3,4,4,3,5,4,,,,,,,,,5,3,3,2,3,3,2,3,,,,,,,2,3,1,5,"I'm a new school nurse and I think many of the questions didn't apply to my experience. An NA option would have allowed for more accurate responses. So far I have found the administration to be welcoming, caring, and the students to be very respectful. I am very happy at WHS. ",9,5,,2,NA option. This survey didn't really apply to school nursing.
|
||||
3/1/22 15:44,3/1/22 15:54,0,71.184.93.38,100,588,1,2022-03-01T15:54:33,R_336ZtdQon4U6f0x,42.65080261,-71.16069794,anonymous,EN,6,3440505,5,5,5,4,4,5,1,,,,,,3,3,2,2,,,,1,1,1,,,,1,1,2,5,4,3,3,,,,3,4,5,3,3,3,4,2,3,,,,,,,,,5,5,5,5,3,3,2,3,,,,,,,5,5,5,5,,9,5,,8,
|
||||
3/1/22 15:40,3/1/22 15:52,0,96.252.99.186,100,666,1,2022-03-01T15:52:1,R_1K85VMDfrLzZ6nD,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,4,5,5,4,4,,,,,,4,4,3,4,,,,5,5,5,,,,4,4,4,4,4,4,4,,,,5,5,4,4,5,5,5,5,5,,,,,,,,,5,5,5,5,5,5,5,5,,,,,,,4,5,3,3,,5,3,,3,
|
||||
3/1/22 16:13,3/1/22 16:25,0,108.49.219.202,100,673,1,2022-03-01T16:25:3,R_9TzpWrE3tVX4EHT,42.48100281,-71.15630341,anonymous,EN,6,3440305,5,2,5,4,2,3,3,,,,,,2,4,3,4,,,,4,4,4,,,,3,3,4,4,4,4,4,,,,4,4,4,3,4,4,2,3,2,,,,,,,,,5,4,3,2,2,3,2,4,,,,,,,4,5,3,3,,4,7,,4,
|
||||
3/1/22 16:13,3/1/22 16:25,0,108.49.219.202,100,697,1,2022-03-01T16:25:7,R_1EYyBlGjkTs8fMq,42.48100281,-71.15630341,anonymous,EN,6,3440305,3,4,4,3,3,4,3,,,,,,4,4,4,3,,,,4,4,5,,,,3,3,3,3,3,3,3,,,,3,3,3,3,3,4,2,3,3,,,,,,,,,5,3,3,5,2,3,3,3,,,,,,,3,4,3,3,,7,7,,5,
|
||||
3/1/22 15:03,3/1/22 15:16,0,108.49.219.202,100,746,1,2022-03-01T15:16:26,R_2czn9Jzw84N8oJc,42.48100281,-71.15630341,anonymous,EN,6,3440025,4,4,4,3,2,5,2,,,,,,1,4,3,1,,,,4,3,3,,,,4,4,4,4,4,4,3,,,,2,2,3,1,4,4,1,4,3,,,,,,,,,2,4,4,3,3,4,2,4,,,,,,,2,2,3,3,,6,5,,3,
|
||||
3/1/22 15:44,3/1/22 15:57,0,96.252.99.186,100,767,1,2022-03-01T15:57:11,R_3LhyITdmkLKCmP8,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,5,5,2,4,5,3,,,,,,3,4,4,4,,,,3,3,3,,,,3,3,3,4,4,4,4,,,,3,4,4,4,5,4,3,5,5,,,,,,,,,4,5,5,4,3,3,3,4,,,,,,,4,5,3,5,,8,6,,6,
|
||||
3/1/22 16:13,3/1/22 16:26,0,108.49.219.202,100,779,1,2022-03-01T16:26:5,R_3Gg0kXzYwpyN22i,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,4,4,3,2,3,2,,,,,,1,2,2,1,,,,3,3,4,,,,3,3,3,3,3,4,4,,,,3,3,3,1,3,4,2,4,4,,,,,,,,,4,4,3,1,3,3,2,3,,,,,,,3,3,2,3,,,,,,
|
||||
3/1/22 16:51,3/1/22 17:08,0,173.48.116.134,100,1020,1,2022-03-01T17:8:28,R_z5VkwmjPhVW5GvL,42.48100281,-71.15630341,anonymous,EN,6,3440505,5,5,5,5,4,5,1,,,,,,3,3,3,3,,,,2,3,4,,,,3,3,4,4,4,3,3,,,,4,3,3,4,5,4,2,4,3,,,,,,,,,5,4,4,1,2,3,2,2,,,,,,,4,5,4,5,"These are really the right questions, for example a few parents are extremely involved but there is little volunteer opportunities nor are PTA meetings at night. Its a wealthy community for some but not for all and that is were we don't connect.
|
||||
There are not enough ""chairs for all kids to take arts",5,3,,2,"some of us have daily contact with some parents: is your school inclusive? are all students treated equally? Do you feel valued, supported, included, rather than protected or defended by principal.
|
||||
Does your principal communicate, lead by example...."
|
||||
3/1/22 15:44,3/1/22 16:07,0,96.252.99.186,100,1402,1,2022-03-01T16:7:48,R_2VryNwk8xH4qygs,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,2,1,,,,,,1,1,2,1,,,,3,2,2,,,,3,3,4,4,4,4,4,,,,3,3,3,3,4,4,2,4,3,,,,,,,,,5,5,5,5,4,4,3,4,,,,,,,4,5,4,4,,5,5,,3,
|
||||
3/1/22 15:47,3/1/22 16:19,0,96.252.99.186,100,1920,1,2022-03-01T16:19:38,R_1DA3T1dt4q2iT5j,42.45320129,-71.14279938,anonymous,EN,6,3440505,5,4,5,4,4,4,4,,,,,,4,3,3,3,,,,5,5,5,,,,3,3,4,4,4,5,4,,,,3,4,4,4,5,4,3,5,5,,,,,,,,,5,3,4,2,4,4,3,4,,,,,,,3,4,3,5,,9,5,,3,
|
||||
3/1/22 15:15,3/1/22 17:01,0,73.69.141.0,100,6358,1,2022-03-01T17:1:55,R_3OjmQFol7Tevh2L,42.39959717,-71.12460327,anonymous,EN,6,3440040,5,5,5,2,2,5,3,,,,,,4,4,4,4,,,,4,3,5,,,,3,4,4,4,4,4,4,,,,4,4,4,4,4,4,1,1,1,,,,,,,,,5,3,3,3,4,4,3,4,,,,,,,2,3,2,3,I am split between two schools (half and half) ,8,4,,2,A lot of this was irrelevant/difficult to comment on as a school psychologist working with a high needs population (students in the therapeutic program)
|
||||
3/1/22 16:39,3/3/22 9:18,0,108.49.219.202,100,146300,1,2022-03-03T9:18:4,R_2ty8u4Y20VRG3Q6,42.48100281,-71.15630341,anonymous,EN,6,3440305,4,3,4,4,,3,2,,,,,,3,4,4,3,,,,4,3,4,,,,4,4,3,4,3,4,3,,,,2,4,3,2,4,4,2,4,3,,,,,,,,,5,,,,3,3,,3,,,,,,,3,3,3,3,,3,3,,5,
|
||||
|
|
|
@ -61,11 +61,11 @@ namespace :data do
|
|||
|
||||
puts 'Resetting response rates'
|
||||
ResponseRateLoader.reset
|
||||
puts "=====================> Completed loading #{ResponseRate.count} survey responses"
|
||||
puts "=====================> Completed loading #{ResponseRate.count} response rates"
|
||||
|
||||
puts 'Resetting race scores'
|
||||
RaceScoreLoader.reset(fast_processing: false)
|
||||
puts "=====================> Completed loading #{RaceScore.count} survey responses"
|
||||
puts "=====================> Completed loading #{RaceScore.count} race scores"
|
||||
|
||||
Rails.cache.clear
|
||||
end
|
||||
|
|
|
|||
|
|
@ -128,4 +128,13 @@ namespace :one_off do
|
|||
end
|
||||
pp output
|
||||
end
|
||||
|
||||
desc 'list the most recent admin data values'
|
||||
task list_recent_admin_data_values: :environment do
|
||||
range = 4.weeks.ago..1.second.ago
|
||||
values = AdminDataValue.where(updated_at: range).group(:admin_data_item).count.map do |item|
|
||||
[item[0].admin_data_item_id, item[0].scale.measure.measure_id]
|
||||
end
|
||||
puts values
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ describe StudentLoader do
|
|||
let(:non_binary) { Gender.find_by_qualtrics_code(4) }
|
||||
let(:unknown_gender) { Gender.find_by_qualtrics_code(99) }
|
||||
|
||||
before :each do
|
||||
before :all do
|
||||
Rails.application.load_seed
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -23,14 +23,10 @@ describe SurveyResponsesDataLoader do
|
|||
let(:non_binary) { Gender.find_by_qualtrics_code 4 }
|
||||
let(:unknown_gender) { Gender.find_by_qualtrics_code 99 }
|
||||
|
||||
before :each do
|
||||
before :all do
|
||||
Rails.application.load_seed
|
||||
end
|
||||
|
||||
after :each do
|
||||
DatabaseCleaner.clean
|
||||
end
|
||||
|
||||
describe 'self.load_data' do
|
||||
context 'loading teacher survey responses' do
|
||||
before :each do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue